From 85bd13e1cf87116fb6263b945802f58b91bb87fe Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Wed, 9 Aug 2023 10:37:29 -0400 Subject: [PATCH] chore: generate --- src/grammar.json | 210 +- src/node-types.json | 98 + src/parser.c | 173768 ++++++++++++++++++++---------------- src/tree_sitter/parser.h | 16 +- 4 files changed, 96954 insertions(+), 77138 deletions(-) diff --git a/src/grammar.json b/src/grammar.json index 42cb098..f9e6438 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2002,6 +2002,18 @@ "type_definition": { "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "__extension__" + }, + { + "type": "BLANK" + } + ] + }, { "type": "STRING", "value": "typedef" @@ -2061,6 +2073,13 @@ } ] }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_specifier" + } + }, { "type": "STRING", "value": ";" @@ -2925,7 +2944,7 @@ } }, "function_declarator": { - "type": "PREC", + "type": "PREC_RIGHT", "value": 1, "content": { "type": "SEQ", @@ -2946,6 +2965,18 @@ "name": "parameter_list" } }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "gnu_asm_expression" + }, + { + "type": "BLANK" + } + ] + }, { "type": "REPEAT", "content": { @@ -3352,6 +3383,18 @@ "type": "STRING", "value": "inline" }, + { + "type": "STRING", + "value": "__inline" + }, + { + "type": "STRING", + "value": "__inline__" + }, + { + "type": "STRING", + "value": "__forceinline" + }, { "type": "STRING", "value": "thread_local" @@ -3385,6 +3428,10 @@ "type": "STRING", "value": "__restrict__" }, + { + "type": "STRING", + "value": "__extension__" + }, { "type": "STRING", "value": "_Atomic" @@ -4902,10 +4949,18 @@ "type": "SYMBOL", "name": "sizeof_expression" }, + { + "type": "SYMBOL", + "name": "alignof_expression" + }, { "type": "SYMBOL", "name": "offsetof_expression" }, + { + "type": "SYMBOL", + "name": "builtin_va_arg" + }, { "type": "SYMBOL", "name": "generic_expression" @@ -6025,6 +6080,61 @@ ] } }, + "alignof_expression": { + "type": "PREC", + "value": 8, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "__alignof__" + }, + { + "type": "STRING", + "value": "__alignof" + }, + { + "type": "STRING", + "value": "_alignof" + }, + { + "type": "STRING", + "value": "alignof" + }, + { + "type": "STRING", + "value": "_Alignof" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "type_descriptor" + } + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + } + }, "offsetof_expression": { "type": "PREC", "value": 9, @@ -6071,6 +6181,47 @@ ] } }, + "builtin_va_arg": { + "type": "PREC", + "value": 15, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "__builtin_va_arg" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "type_descriptor" + } + }, + { + "type": "STRING", + "value": ")" + } + ] + } + }, "generic_expression": { "type": "PREC", "value": 15, @@ -6692,8 +6843,25 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_expression" + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "__extension__" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] }, { "type": "SYMBOL", @@ -6714,8 +6882,25 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_expression" + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "__extension__" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] }, { "type": "SYMBOL", @@ -7427,12 +7612,25 @@ "concatenated_string": { "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "string_literal" + } + ] + }, { "type": "SYMBOL", "name": "string_literal" }, { - "type": "REPEAT1", + "type": "REPEAT", "content": { "type": "CHOICE", "members": [ diff --git a/src/node-types.json b/src/node-types.json index d839e4f..bc30629 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -55,6 +55,10 @@ "type": "_expression", "named": true, "subtypes": [ + { + "type": "alignof_expression", + "named": true + }, { "type": "assignment_expression", "named": true @@ -63,6 +67,10 @@ "type": "binary_expression", "named": true }, + { + "type": "builtin_va_arg", + "named": true + }, { "type": "call_expression", "named": true @@ -420,6 +428,22 @@ ] } }, + { + "type": "alignof_expression", + "named": true, + "fields": { + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_descriptor", + "named": true + } + ] + } + } + }, { "type": "argument_list", "named": true, @@ -831,6 +855,32 @@ "named": true, "fields": {} }, + { + "type": "builtin_va_arg", + "named": true, + "fields": { + "argument": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_descriptor", + "named": true + } + ] + } + } + }, { "type": "call_expression", "named": true, @@ -1673,6 +1723,10 @@ { "type": "attribute_specifier", "named": true + }, + { + "type": "gnu_asm_expression", + "named": true } ] } @@ -3442,6 +3496,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "attribute_specifier", + "named": true + }, { "type": "type_qualifier", "named": true @@ -3877,6 +3935,10 @@ "type": "^=", "named": false }, + { + "type": "_Alignof", + "named": false + }, { "type": "_Atomic", "named": false @@ -3889,6 +3951,14 @@ "type": "_Noreturn", "named": false }, + { + "type": "__alignof", + "named": false + }, + { + "type": "__alignof__", + "named": false + }, { "type": "__asm__", "named": false @@ -3901,6 +3971,10 @@ "type": "__based", "named": false }, + { + "type": "__builtin_va_arg", + "named": false + }, { "type": "__cdecl", "named": false @@ -3913,10 +3987,26 @@ "type": "__declspec", "named": false }, + { + "type": "__extension__", + "named": false + }, { "type": "__fastcall", "named": false }, + { + "type": "__forceinline", + "named": false + }, + { + "type": "__inline", + "named": false + }, + { + "type": "__inline__", + "named": false + }, { "type": "__restrict__", "named": false @@ -3941,10 +4031,18 @@ "type": "__vectorcall", "named": false }, + { + "type": "_alignof", + "named": false + }, { "type": "_unaligned", "named": false }, + { + "type": "alignof", + "named": false + }, { "type": "asm", "named": false diff --git a/src/parser.c b/src/parser.c index 7947f56..2e6aae7 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,15 +14,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2037 -#define LARGE_STATE_COUNT 540 -#define SYMBOL_COUNT 302 +#define STATE_COUNT 2249 +#define LARGE_STATE_COUNT 668 +#define SYMBOL_COUNT 314 #define ALIAS_COUNT 3 -#define TOKEN_COUNT 142 +#define TOKEN_COUNT 152 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 36 #define MAX_ALIAS_SEQUENCE_LENGTH 9 -#define PRODUCTION_ID_COUNT 121 +#define PRODUCTION_ID_COUNT 126 enum { sym_identifier = 1, @@ -67,268 +67,280 @@ enum { anon_sym_LT_LT = 40, anon_sym_GT_GT = 41, anon_sym_SEMI = 42, - anon_sym_typedef = 43, - anon_sym_extern = 44, - anon_sym___attribute__ = 45, - anon_sym_COLON_COLON = 46, - anon_sym_LBRACK_LBRACK = 47, - anon_sym_RBRACK_RBRACK = 48, - anon_sym___declspec = 49, - anon_sym___based = 50, - anon_sym___cdecl = 51, - anon_sym___clrcall = 52, - anon_sym___stdcall = 53, - anon_sym___fastcall = 54, - anon_sym___thiscall = 55, - anon_sym___vectorcall = 56, - sym_ms_restrict_modifier = 57, - sym_ms_unsigned_ptr_modifier = 58, - sym_ms_signed_ptr_modifier = 59, - anon_sym__unaligned = 60, - anon_sym___unaligned = 61, - anon_sym_LBRACE = 62, - anon_sym_RBRACE = 63, - anon_sym_signed = 64, - anon_sym_unsigned = 65, - anon_sym_long = 66, - anon_sym_short = 67, - anon_sym_LBRACK = 68, - anon_sym_RBRACK = 69, - anon_sym_EQ = 70, - anon_sym_static = 71, - anon_sym_auto = 72, - anon_sym_register = 73, - anon_sym_inline = 74, - anon_sym_thread_local = 75, - anon_sym___thread = 76, - anon_sym_const = 77, - anon_sym_constexpr = 78, - anon_sym_volatile = 79, - anon_sym_restrict = 80, - anon_sym___restrict__ = 81, - anon_sym__Atomic = 82, - anon_sym__Noreturn = 83, - anon_sym_noreturn = 84, - sym_primitive_type = 85, - anon_sym_enum = 86, - anon_sym_COLON = 87, - anon_sym_struct = 88, - anon_sym_union = 89, - anon_sym_if = 90, - anon_sym_else = 91, - anon_sym_switch = 92, - anon_sym_case = 93, - anon_sym_default = 94, - anon_sym_while = 95, - anon_sym_do = 96, - anon_sym_for = 97, - anon_sym_return = 98, - anon_sym_break = 99, - anon_sym_continue = 100, - anon_sym_goto = 101, - anon_sym_QMARK = 102, - anon_sym_STAR_EQ = 103, - anon_sym_SLASH_EQ = 104, - anon_sym_PERCENT_EQ = 105, - anon_sym_PLUS_EQ = 106, - anon_sym_DASH_EQ = 107, - anon_sym_LT_LT_EQ = 108, - anon_sym_GT_GT_EQ = 109, - anon_sym_AMP_EQ = 110, - anon_sym_CARET_EQ = 111, - anon_sym_PIPE_EQ = 112, - anon_sym_DASH_DASH = 113, - anon_sym_PLUS_PLUS = 114, - anon_sym_sizeof = 115, - anon_sym_offsetof = 116, - anon_sym__Generic = 117, - anon_sym_asm = 118, - anon_sym___asm__ = 119, - anon_sym_DOT = 120, - anon_sym_DASH_GT = 121, - sym_number_literal = 122, - anon_sym_L_SQUOTE = 123, - anon_sym_u_SQUOTE = 124, - anon_sym_U_SQUOTE = 125, - anon_sym_u8_SQUOTE = 126, - anon_sym_SQUOTE = 127, - aux_sym_char_literal_token1 = 128, - anon_sym_L_DQUOTE = 129, - anon_sym_u_DQUOTE = 130, - anon_sym_U_DQUOTE = 131, - anon_sym_u8_DQUOTE = 132, - anon_sym_DQUOTE = 133, - aux_sym_string_literal_token1 = 134, - sym_escape_sequence = 135, - sym_system_lib_string = 136, - sym_true = 137, - sym_false = 138, - anon_sym_NULL = 139, - anon_sym_nullptr = 140, - sym_comment = 141, - sym_translation_unit = 142, - sym_preproc_include = 143, - sym_preproc_def = 144, - sym_preproc_function_def = 145, - sym_preproc_params = 146, - sym_preproc_call = 147, - sym_preproc_if = 148, - sym_preproc_ifdef = 149, - sym_preproc_else = 150, - sym_preproc_elif = 151, - sym_preproc_elifdef = 152, - sym_preproc_if_in_field_declaration_list = 153, - sym_preproc_ifdef_in_field_declaration_list = 154, - sym_preproc_else_in_field_declaration_list = 155, - sym_preproc_elif_in_field_declaration_list = 156, - sym__preproc_expression = 157, - sym_preproc_parenthesized_expression = 158, - sym_preproc_defined = 159, - sym_preproc_unary_expression = 160, - sym_preproc_call_expression = 161, - sym_preproc_argument_list = 162, - sym_preproc_binary_expression = 163, - sym_function_definition = 164, - sym_declaration = 165, - sym_type_definition = 166, - sym__declaration_modifiers = 167, - sym__declaration_specifiers = 168, - sym_linkage_specification = 169, - sym_attribute_specifier = 170, - sym_attribute = 171, - sym_attribute_declaration = 172, - sym_ms_declspec_modifier = 173, - sym_ms_based_modifier = 174, - sym_ms_call_modifier = 175, - sym_ms_unaligned_ptr_modifier = 176, - sym_ms_pointer_modifier = 177, - sym_declaration_list = 178, - sym__declarator = 179, - sym__field_declarator = 180, - sym__type_declarator = 181, - sym__abstract_declarator = 182, - sym_parenthesized_declarator = 183, - sym_parenthesized_field_declarator = 184, - sym_parenthesized_type_declarator = 185, - sym_abstract_parenthesized_declarator = 186, - sym_attributed_declarator = 187, - sym_attributed_field_declarator = 188, - sym_attributed_type_declarator = 189, - sym_pointer_declarator = 190, - sym_pointer_field_declarator = 191, - sym_pointer_type_declarator = 192, - sym_abstract_pointer_declarator = 193, - sym_function_declarator = 194, - sym_function_field_declarator = 195, - sym_function_type_declarator = 196, - sym_abstract_function_declarator = 197, - sym_array_declarator = 198, - sym_array_field_declarator = 199, - sym_array_type_declarator = 200, - sym_abstract_array_declarator = 201, - sym_init_declarator = 202, - sym_compound_statement = 203, - sym_storage_class_specifier = 204, - sym_type_qualifier = 205, - sym__type_specifier = 206, - sym_sized_type_specifier = 207, - sym_enum_specifier = 208, - sym_enumerator_list = 209, - sym_struct_specifier = 210, - sym_union_specifier = 211, - sym_field_declaration_list = 212, - sym__field_declaration_list_item = 213, - sym_field_declaration = 214, - sym_bitfield_clause = 215, - sym_enumerator = 216, - sym_variadic_parameter = 217, - sym_parameter_list = 218, - sym_parameter_declaration = 219, - sym_attributed_statement = 220, - sym_labeled_statement = 221, - sym__top_level_expression_statement = 222, - sym_expression_statement = 223, - sym_if_statement = 224, - sym_else_clause = 225, - sym_switch_statement = 226, - sym_case_statement = 227, - sym_while_statement = 228, - sym_do_statement = 229, - sym_for_statement = 230, - sym_return_statement = 231, - sym_break_statement = 232, - sym_continue_statement = 233, - sym_goto_statement = 234, - sym__expression = 235, - sym__expression_not_binary = 236, - sym_comma_expression = 237, - sym_conditional_expression = 238, - sym_assignment_expression = 239, - sym_pointer_expression = 240, - sym_unary_expression = 241, - sym_binary_expression = 242, - sym_update_expression = 243, - sym_cast_expression = 244, - sym_type_descriptor = 245, - sym_sizeof_expression = 246, - sym_offsetof_expression = 247, - sym_generic_expression = 248, - sym_subscript_expression = 249, - sym_call_expression = 250, - sym_gnu_asm_expression = 251, - sym_gnu_asm_qualifier = 252, - sym_gnu_asm_output_operand_list = 253, - sym_gnu_asm_output_operand = 254, - sym_gnu_asm_input_operand_list = 255, - sym_gnu_asm_input_operand = 256, - sym_gnu_asm_clobber_list = 257, - sym_gnu_asm_goto_list = 258, - sym_argument_list = 259, - sym_field_expression = 260, - sym_compound_literal_expression = 261, - sym_parenthesized_expression = 262, - sym_initializer_list = 263, - sym_initializer_pair = 264, - sym_subscript_designator = 265, - sym_field_designator = 266, - sym_char_literal = 267, - sym_concatenated_string = 268, - sym_string_literal = 269, - sym_null = 270, - sym__empty_declaration = 271, - sym_macro_type_specifier = 272, - aux_sym_translation_unit_repeat1 = 273, - aux_sym_preproc_params_repeat1 = 274, - aux_sym_preproc_if_repeat1 = 275, - aux_sym_preproc_if_in_field_declaration_list_repeat1 = 276, - aux_sym_preproc_argument_list_repeat1 = 277, - aux_sym_declaration_repeat1 = 278, - aux_sym_type_definition_repeat1 = 279, - aux_sym_type_definition_repeat2 = 280, - aux_sym__declaration_specifiers_repeat1 = 281, - aux_sym_attribute_declaration_repeat1 = 282, - aux_sym_attributed_declarator_repeat1 = 283, - aux_sym_pointer_declarator_repeat1 = 284, - aux_sym_function_declarator_repeat1 = 285, - aux_sym_sized_type_specifier_repeat1 = 286, - aux_sym_enumerator_list_repeat1 = 287, - aux_sym_field_declaration_repeat1 = 288, - aux_sym_parameter_list_repeat1 = 289, - aux_sym_case_statement_repeat1 = 290, - aux_sym_generic_expression_repeat1 = 291, - aux_sym_gnu_asm_expression_repeat1 = 292, - aux_sym_gnu_asm_output_operand_list_repeat1 = 293, - aux_sym_gnu_asm_input_operand_list_repeat1 = 294, - aux_sym_gnu_asm_clobber_list_repeat1 = 295, - aux_sym_gnu_asm_goto_list_repeat1 = 296, - aux_sym_argument_list_repeat1 = 297, - aux_sym_initializer_list_repeat1 = 298, - aux_sym_initializer_pair_repeat1 = 299, - aux_sym_concatenated_string_repeat1 = 300, - aux_sym_string_literal_repeat1 = 301, - alias_sym_field_identifier = 302, - alias_sym_statement_identifier = 303, - alias_sym_type_identifier = 304, + anon_sym___extension__ = 43, + anon_sym_typedef = 44, + anon_sym_extern = 45, + anon_sym___attribute__ = 46, + anon_sym_COLON_COLON = 47, + anon_sym_LBRACK_LBRACK = 48, + anon_sym_RBRACK_RBRACK = 49, + anon_sym___declspec = 50, + anon_sym___based = 51, + anon_sym___cdecl = 52, + anon_sym___clrcall = 53, + anon_sym___stdcall = 54, + anon_sym___fastcall = 55, + anon_sym___thiscall = 56, + anon_sym___vectorcall = 57, + sym_ms_restrict_modifier = 58, + sym_ms_unsigned_ptr_modifier = 59, + sym_ms_signed_ptr_modifier = 60, + anon_sym__unaligned = 61, + anon_sym___unaligned = 62, + anon_sym_LBRACE = 63, + anon_sym_RBRACE = 64, + anon_sym_signed = 65, + anon_sym_unsigned = 66, + anon_sym_long = 67, + anon_sym_short = 68, + anon_sym_LBRACK = 69, + anon_sym_RBRACK = 70, + anon_sym_EQ = 71, + anon_sym_static = 72, + anon_sym_auto = 73, + anon_sym_register = 74, + anon_sym_inline = 75, + anon_sym___inline = 76, + anon_sym___inline__ = 77, + anon_sym___forceinline = 78, + anon_sym_thread_local = 79, + anon_sym___thread = 80, + anon_sym_const = 81, + anon_sym_constexpr = 82, + anon_sym_volatile = 83, + anon_sym_restrict = 84, + anon_sym___restrict__ = 85, + anon_sym__Atomic = 86, + anon_sym__Noreturn = 87, + anon_sym_noreturn = 88, + sym_primitive_type = 89, + anon_sym_enum = 90, + anon_sym_COLON = 91, + anon_sym_struct = 92, + anon_sym_union = 93, + anon_sym_if = 94, + anon_sym_else = 95, + anon_sym_switch = 96, + anon_sym_case = 97, + anon_sym_default = 98, + anon_sym_while = 99, + anon_sym_do = 100, + anon_sym_for = 101, + anon_sym_return = 102, + anon_sym_break = 103, + anon_sym_continue = 104, + anon_sym_goto = 105, + anon_sym_QMARK = 106, + anon_sym_STAR_EQ = 107, + anon_sym_SLASH_EQ = 108, + anon_sym_PERCENT_EQ = 109, + anon_sym_PLUS_EQ = 110, + anon_sym_DASH_EQ = 111, + anon_sym_LT_LT_EQ = 112, + anon_sym_GT_GT_EQ = 113, + anon_sym_AMP_EQ = 114, + anon_sym_CARET_EQ = 115, + anon_sym_PIPE_EQ = 116, + anon_sym_DASH_DASH = 117, + anon_sym_PLUS_PLUS = 118, + anon_sym_sizeof = 119, + anon_sym___alignof__ = 120, + anon_sym___alignof = 121, + anon_sym__alignof = 122, + anon_sym_alignof = 123, + anon_sym__Alignof = 124, + anon_sym_offsetof = 125, + anon_sym___builtin_va_arg = 126, + anon_sym__Generic = 127, + anon_sym_asm = 128, + anon_sym___asm__ = 129, + anon_sym_DOT = 130, + anon_sym_DASH_GT = 131, + sym_number_literal = 132, + anon_sym_L_SQUOTE = 133, + anon_sym_u_SQUOTE = 134, + anon_sym_U_SQUOTE = 135, + anon_sym_u8_SQUOTE = 136, + anon_sym_SQUOTE = 137, + aux_sym_char_literal_token1 = 138, + anon_sym_L_DQUOTE = 139, + anon_sym_u_DQUOTE = 140, + anon_sym_U_DQUOTE = 141, + anon_sym_u8_DQUOTE = 142, + anon_sym_DQUOTE = 143, + aux_sym_string_literal_token1 = 144, + sym_escape_sequence = 145, + sym_system_lib_string = 146, + sym_true = 147, + sym_false = 148, + anon_sym_NULL = 149, + anon_sym_nullptr = 150, + sym_comment = 151, + sym_translation_unit = 152, + sym_preproc_include = 153, + sym_preproc_def = 154, + sym_preproc_function_def = 155, + sym_preproc_params = 156, + sym_preproc_call = 157, + sym_preproc_if = 158, + sym_preproc_ifdef = 159, + sym_preproc_else = 160, + sym_preproc_elif = 161, + sym_preproc_elifdef = 162, + sym_preproc_if_in_field_declaration_list = 163, + sym_preproc_ifdef_in_field_declaration_list = 164, + sym_preproc_else_in_field_declaration_list = 165, + sym_preproc_elif_in_field_declaration_list = 166, + sym__preproc_expression = 167, + sym_preproc_parenthesized_expression = 168, + sym_preproc_defined = 169, + sym_preproc_unary_expression = 170, + sym_preproc_call_expression = 171, + sym_preproc_argument_list = 172, + sym_preproc_binary_expression = 173, + sym_function_definition = 174, + sym_declaration = 175, + sym_type_definition = 176, + sym__declaration_modifiers = 177, + sym__declaration_specifiers = 178, + sym_linkage_specification = 179, + sym_attribute_specifier = 180, + sym_attribute = 181, + sym_attribute_declaration = 182, + sym_ms_declspec_modifier = 183, + sym_ms_based_modifier = 184, + sym_ms_call_modifier = 185, + sym_ms_unaligned_ptr_modifier = 186, + sym_ms_pointer_modifier = 187, + sym_declaration_list = 188, + sym__declarator = 189, + sym__field_declarator = 190, + sym__type_declarator = 191, + sym__abstract_declarator = 192, + sym_parenthesized_declarator = 193, + sym_parenthesized_field_declarator = 194, + sym_parenthesized_type_declarator = 195, + sym_abstract_parenthesized_declarator = 196, + sym_attributed_declarator = 197, + sym_attributed_field_declarator = 198, + sym_attributed_type_declarator = 199, + sym_pointer_declarator = 200, + sym_pointer_field_declarator = 201, + sym_pointer_type_declarator = 202, + sym_abstract_pointer_declarator = 203, + sym_function_declarator = 204, + sym_function_field_declarator = 205, + sym_function_type_declarator = 206, + sym_abstract_function_declarator = 207, + sym_array_declarator = 208, + sym_array_field_declarator = 209, + sym_array_type_declarator = 210, + sym_abstract_array_declarator = 211, + sym_init_declarator = 212, + sym_compound_statement = 213, + sym_storage_class_specifier = 214, + sym_type_qualifier = 215, + sym__type_specifier = 216, + sym_sized_type_specifier = 217, + sym_enum_specifier = 218, + sym_enumerator_list = 219, + sym_struct_specifier = 220, + sym_union_specifier = 221, + sym_field_declaration_list = 222, + sym__field_declaration_list_item = 223, + sym_field_declaration = 224, + sym_bitfield_clause = 225, + sym_enumerator = 226, + sym_variadic_parameter = 227, + sym_parameter_list = 228, + sym_parameter_declaration = 229, + sym_attributed_statement = 230, + sym_labeled_statement = 231, + sym__top_level_expression_statement = 232, + sym_expression_statement = 233, + sym_if_statement = 234, + sym_else_clause = 235, + sym_switch_statement = 236, + sym_case_statement = 237, + sym_while_statement = 238, + sym_do_statement = 239, + sym_for_statement = 240, + sym_return_statement = 241, + sym_break_statement = 242, + sym_continue_statement = 243, + sym_goto_statement = 244, + sym__expression = 245, + sym__expression_not_binary = 246, + sym_comma_expression = 247, + sym_conditional_expression = 248, + sym_assignment_expression = 249, + sym_pointer_expression = 250, + sym_unary_expression = 251, + sym_binary_expression = 252, + sym_update_expression = 253, + sym_cast_expression = 254, + sym_type_descriptor = 255, + sym_sizeof_expression = 256, + sym_alignof_expression = 257, + sym_offsetof_expression = 258, + sym_builtin_va_arg = 259, + sym_generic_expression = 260, + sym_subscript_expression = 261, + sym_call_expression = 262, + sym_gnu_asm_expression = 263, + sym_gnu_asm_qualifier = 264, + sym_gnu_asm_output_operand_list = 265, + sym_gnu_asm_output_operand = 266, + sym_gnu_asm_input_operand_list = 267, + sym_gnu_asm_input_operand = 268, + sym_gnu_asm_clobber_list = 269, + sym_gnu_asm_goto_list = 270, + sym_argument_list = 271, + sym_field_expression = 272, + sym_compound_literal_expression = 273, + sym_parenthesized_expression = 274, + sym_initializer_list = 275, + sym_initializer_pair = 276, + sym_subscript_designator = 277, + sym_field_designator = 278, + sym_char_literal = 279, + sym_concatenated_string = 280, + sym_string_literal = 281, + sym_null = 282, + sym__empty_declaration = 283, + sym_macro_type_specifier = 284, + aux_sym_translation_unit_repeat1 = 285, + aux_sym_preproc_params_repeat1 = 286, + aux_sym_preproc_if_repeat1 = 287, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 288, + aux_sym_preproc_argument_list_repeat1 = 289, + aux_sym_declaration_repeat1 = 290, + aux_sym_type_definition_repeat1 = 291, + aux_sym_type_definition_repeat2 = 292, + aux_sym_type_definition_repeat3 = 293, + aux_sym__declaration_specifiers_repeat1 = 294, + aux_sym_attribute_declaration_repeat1 = 295, + aux_sym_attributed_declarator_repeat1 = 296, + aux_sym_pointer_declarator_repeat1 = 297, + aux_sym_sized_type_specifier_repeat1 = 298, + aux_sym_enumerator_list_repeat1 = 299, + aux_sym_field_declaration_repeat1 = 300, + aux_sym_parameter_list_repeat1 = 301, + aux_sym_case_statement_repeat1 = 302, + aux_sym_generic_expression_repeat1 = 303, + aux_sym_gnu_asm_expression_repeat1 = 304, + aux_sym_gnu_asm_output_operand_list_repeat1 = 305, + aux_sym_gnu_asm_input_operand_list_repeat1 = 306, + aux_sym_gnu_asm_clobber_list_repeat1 = 307, + aux_sym_gnu_asm_goto_list_repeat1 = 308, + aux_sym_argument_list_repeat1 = 309, + aux_sym_initializer_list_repeat1 = 310, + aux_sym_initializer_pair_repeat1 = 311, + aux_sym_concatenated_string_repeat1 = 312, + aux_sym_string_literal_repeat1 = 313, + alias_sym_field_identifier = 314, + alias_sym_statement_identifier = 315, + alias_sym_type_identifier = 316, }; static const char * const ts_symbol_names[] = { @@ -375,6 +387,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_LT_LT] = "<<", [anon_sym_GT_GT] = ">>", [anon_sym_SEMI] = ";", + [anon_sym___extension__] = "__extension__", [anon_sym_typedef] = "typedef", [anon_sym_extern] = "extern", [anon_sym___attribute__] = "__attribute__", @@ -407,6 +420,9 @@ static const char * const ts_symbol_names[] = { [anon_sym_auto] = "auto", [anon_sym_register] = "register", [anon_sym_inline] = "inline", + [anon_sym___inline] = "__inline", + [anon_sym___inline__] = "__inline__", + [anon_sym___forceinline] = "__forceinline", [anon_sym_thread_local] = "thread_local", [anon_sym___thread] = "__thread", [anon_sym_const] = "const", @@ -448,7 +464,13 @@ static const char * const ts_symbol_names[] = { [anon_sym_DASH_DASH] = "--", [anon_sym_PLUS_PLUS] = "++", [anon_sym_sizeof] = "sizeof", + [anon_sym___alignof__] = "__alignof__", + [anon_sym___alignof] = "__alignof", + [anon_sym__alignof] = "_alignof", + [anon_sym_alignof] = "alignof", + [anon_sym__Alignof] = "_Alignof", [anon_sym_offsetof] = "offsetof", + [anon_sym___builtin_va_arg] = "__builtin_va_arg", [anon_sym__Generic] = "_Generic", [anon_sym_asm] = "asm", [anon_sym___asm__] = "__asm__", @@ -579,7 +601,9 @@ static const char * const ts_symbol_names[] = { [sym_cast_expression] = "cast_expression", [sym_type_descriptor] = "type_descriptor", [sym_sizeof_expression] = "sizeof_expression", + [sym_alignof_expression] = "alignof_expression", [sym_offsetof_expression] = "offsetof_expression", + [sym_builtin_va_arg] = "builtin_va_arg", [sym_generic_expression] = "generic_expression", [sym_subscript_expression] = "subscript_expression", [sym_call_expression] = "call_expression", @@ -613,11 +637,11 @@ static const char * const ts_symbol_names[] = { [aux_sym_declaration_repeat1] = "declaration_repeat1", [aux_sym_type_definition_repeat1] = "type_definition_repeat1", [aux_sym_type_definition_repeat2] = "type_definition_repeat2", + [aux_sym_type_definition_repeat3] = "type_definition_repeat3", [aux_sym__declaration_specifiers_repeat1] = "_declaration_specifiers_repeat1", [aux_sym_attribute_declaration_repeat1] = "attribute_declaration_repeat1", [aux_sym_attributed_declarator_repeat1] = "attributed_declarator_repeat1", [aux_sym_pointer_declarator_repeat1] = "pointer_declarator_repeat1", - [aux_sym_function_declarator_repeat1] = "function_declarator_repeat1", [aux_sym_sized_type_specifier_repeat1] = "sized_type_specifier_repeat1", [aux_sym_enumerator_list_repeat1] = "enumerator_list_repeat1", [aux_sym_field_declaration_repeat1] = "field_declaration_repeat1", @@ -683,6 +707,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_LT_LT] = anon_sym_LT_LT, [anon_sym_GT_GT] = anon_sym_GT_GT, [anon_sym_SEMI] = anon_sym_SEMI, + [anon_sym___extension__] = anon_sym___extension__, [anon_sym_typedef] = anon_sym_typedef, [anon_sym_extern] = anon_sym_extern, [anon_sym___attribute__] = anon_sym___attribute__, @@ -715,6 +740,9 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_auto] = anon_sym_auto, [anon_sym_register] = anon_sym_register, [anon_sym_inline] = anon_sym_inline, + [anon_sym___inline] = anon_sym___inline, + [anon_sym___inline__] = anon_sym___inline__, + [anon_sym___forceinline] = anon_sym___forceinline, [anon_sym_thread_local] = anon_sym_thread_local, [anon_sym___thread] = anon_sym___thread, [anon_sym_const] = anon_sym_const, @@ -756,7 +784,13 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_DASH_DASH] = anon_sym_DASH_DASH, [anon_sym_PLUS_PLUS] = anon_sym_PLUS_PLUS, [anon_sym_sizeof] = anon_sym_sizeof, + [anon_sym___alignof__] = anon_sym___alignof__, + [anon_sym___alignof] = anon_sym___alignof, + [anon_sym__alignof] = anon_sym__alignof, + [anon_sym_alignof] = anon_sym_alignof, + [anon_sym__Alignof] = anon_sym__Alignof, [anon_sym_offsetof] = anon_sym_offsetof, + [anon_sym___builtin_va_arg] = anon_sym___builtin_va_arg, [anon_sym__Generic] = anon_sym__Generic, [anon_sym_asm] = anon_sym_asm, [anon_sym___asm__] = anon_sym___asm__, @@ -887,7 +921,9 @@ static const TSSymbol ts_symbol_map[] = { [sym_cast_expression] = sym_cast_expression, [sym_type_descriptor] = sym_type_descriptor, [sym_sizeof_expression] = sym_sizeof_expression, + [sym_alignof_expression] = sym_alignof_expression, [sym_offsetof_expression] = sym_offsetof_expression, + [sym_builtin_va_arg] = sym_builtin_va_arg, [sym_generic_expression] = sym_generic_expression, [sym_subscript_expression] = sym_subscript_expression, [sym_call_expression] = sym_call_expression, @@ -921,11 +957,11 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_declaration_repeat1] = aux_sym_declaration_repeat1, [aux_sym_type_definition_repeat1] = aux_sym_type_definition_repeat1, [aux_sym_type_definition_repeat2] = aux_sym_type_definition_repeat2, + [aux_sym_type_definition_repeat3] = aux_sym_type_definition_repeat3, [aux_sym__declaration_specifiers_repeat1] = aux_sym__declaration_specifiers_repeat1, [aux_sym_attribute_declaration_repeat1] = aux_sym_attribute_declaration_repeat1, [aux_sym_attributed_declarator_repeat1] = aux_sym_attributed_declarator_repeat1, [aux_sym_pointer_declarator_repeat1] = aux_sym_pointer_declarator_repeat1, - [aux_sym_function_declarator_repeat1] = aux_sym_function_declarator_repeat1, [aux_sym_sized_type_specifier_repeat1] = aux_sym_sized_type_specifier_repeat1, [aux_sym_enumerator_list_repeat1] = aux_sym_enumerator_list_repeat1, [aux_sym_field_declaration_repeat1] = aux_sym_field_declaration_repeat1, @@ -1120,6 +1156,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym___extension__] = { + .visible = true, + .named = false, + }, [anon_sym_typedef] = { .visible = true, .named = false, @@ -1248,6 +1288,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym___inline] = { + .visible = true, + .named = false, + }, + [anon_sym___inline__] = { + .visible = true, + .named = false, + }, + [anon_sym___forceinline] = { + .visible = true, + .named = false, + }, [anon_sym_thread_local] = { .visible = true, .named = false, @@ -1412,10 +1464,34 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym___alignof__] = { + .visible = true, + .named = false, + }, + [anon_sym___alignof] = { + .visible = true, + .named = false, + }, + [anon_sym__alignof] = { + .visible = true, + .named = false, + }, + [anon_sym_alignof] = { + .visible = true, + .named = false, + }, + [anon_sym__Alignof] = { + .visible = true, + .named = false, + }, [anon_sym_offsetof] = { .visible = true, .named = false, }, + [anon_sym___builtin_va_arg] = { + .visible = true, + .named = false, + }, [anon_sym__Generic] = { .visible = true, .named = false, @@ -1942,10 +2018,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_alignof_expression] = { + .visible = true, + .named = true, + }, [sym_offsetof_expression] = { .visible = true, .named = true, }, + [sym_builtin_va_arg] = { + .visible = true, + .named = true, + }, [sym_generic_expression] = { .visible = true, .named = true, @@ -2078,6 +2162,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_type_definition_repeat3] = { + .visible = false, + .named = false, + }, [aux_sym__declaration_specifiers_repeat1] = { .visible = false, .named = false, @@ -2094,10 +2182,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_function_declarator_repeat1] = { - .visible = false, - .named = false, - }, [aux_sym_sized_type_specifier_repeat1] = { .visible = false, .named = false, @@ -2318,8 +2402,8 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [63] = {.index = 100, .length = 2}, [64] = {.index = 102, .length = 1}, [65] = {.index = 103, .length = 2}, - [66] = {.index = 105, .length = 3}, - [67] = {.index = 108, .length = 2}, + [66] = {.index = 105, .length = 2}, + [67] = {.index = 107, .length = 3}, [68] = {.index = 110, .length = 2}, [69] = {.index = 112, .length = 3}, [70] = {.index = 115, .length = 2}, @@ -2335,43 +2419,48 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [80] = {.index = 135, .length = 2}, [81] = {.index = 137, .length = 1}, [83] = {.index = 138, .length = 3}, - [84] = {.index = 141, .length = 3}, - [85] = {.index = 144, .length = 2}, - [86] = {.index = 146, .length = 1}, - [87] = {.index = 147, .length = 2}, + [84] = {.index = 141, .length = 2}, + [85] = {.index = 143, .length = 2}, + [86] = {.index = 145, .length = 3}, + [87] = {.index = 148, .length = 1}, [88] = {.index = 149, .length = 2}, [89] = {.index = 151, .length = 2}, - [90] = {.index = 153, .length = 3}, - [91] = {.index = 156, .length = 2}, - [92] = {.index = 158, .length = 1}, - [93] = {.index = 159, .length = 2}, - [94] = {.index = 161, .length = 2}, - [95] = {.index = 163, .length = 3}, - [96] = {.index = 166, .length = 3}, - [97] = {.index = 169, .length = 2}, - [98] = {.index = 171, .length = 2}, - [99] = {.index = 173, .length = 3}, - [100] = {.index = 176, .length = 3}, - [101] = {.index = 179, .length = 2}, - [102] = {.index = 181, .length = 2}, - [103] = {.index = 183, .length = 1}, - [104] = {.index = 184, .length = 4}, - [105] = {.index = 188, .length = 3}, - [106] = {.index = 191, .length = 3}, - [107] = {.index = 194, .length = 4}, - [108] = {.index = 198, .length = 3}, - [109] = {.index = 201, .length = 3}, - [110] = {.index = 204, .length = 2}, - [111] = {.index = 206, .length = 2}, - [112] = {.index = 29, .length = 1}, - [113] = {.index = 208, .length = 5}, - [114] = {.index = 213, .length = 4}, - [115] = {.index = 217, .length = 4}, - [116] = {.index = 221, .length = 2}, - [117] = {.index = 223, .length = 2}, - [118] = {.index = 225, .length = 5}, - [119] = {.index = 230, .length = 2}, - [120] = {.index = 232, .length = 3}, + [90] = {.index = 153, .length = 2}, + [91] = {.index = 155, .length = 2}, + [92] = {.index = 157, .length = 3}, + [93] = {.index = 160, .length = 2}, + [94] = {.index = 162, .length = 1}, + [95] = {.index = 163, .length = 2}, + [96] = {.index = 165, .length = 2}, + [97] = {.index = 167, .length = 3}, + [98] = {.index = 170, .length = 3}, + [99] = {.index = 173, .length = 2}, + [100] = {.index = 175, .length = 3}, + [101] = {.index = 178, .length = 2}, + [102] = {.index = 180, .length = 2}, + [103] = {.index = 182, .length = 3}, + [104] = {.index = 185, .length = 3}, + [105] = {.index = 188, .length = 2}, + [106] = {.index = 190, .length = 2}, + [107] = {.index = 192, .length = 1}, + [108] = {.index = 193, .length = 4}, + [109] = {.index = 197, .length = 3}, + [110] = {.index = 200, .length = 3}, + [111] = {.index = 203, .length = 3}, + [112] = {.index = 206, .length = 4}, + [113] = {.index = 210, .length = 3}, + [114] = {.index = 213, .length = 3}, + [115] = {.index = 216, .length = 2}, + [116] = {.index = 218, .length = 2}, + [117] = {.index = 29, .length = 1}, + [118] = {.index = 220, .length = 5}, + [119] = {.index = 225, .length = 4}, + [120] = {.index = 229, .length = 4}, + [121] = {.index = 233, .length = 2}, + [122] = {.index = 235, .length = 2}, + [123] = {.index = 237, .length = 5}, + [124] = {.index = 242, .length = 2}, + [125] = {.index = 244, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2541,12 +2630,12 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_declarator, 3}, {field_type, 1}, [105] = + {field_declarator, 3}, + {field_type, 2}, + [107] = {field_declarator, 2}, {field_declarator, 3, .inherited = true}, {field_type, 1}, - [108] = - {field_declarator, 3}, - {field_type, 2}, [110] = {field_name, 0}, {field_value, 2}, @@ -2590,136 +2679,153 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [137] = {field_size, 2}, [138] = - {field_declarator, 3}, - {field_declarator, 4, .inherited = true}, - {field_type, 1}, - [141] = {field_declarator, 3}, {field_declarator, 4, .inherited = true}, {field_type, 2}, - [144] = + [141] = {field_declarator, 4}, {field_type, 2}, - [146] = + [143] = + {field_declarator, 4}, + {field_type, 3}, + [145] = + {field_declarator, 3}, + {field_declarator, 4, .inherited = true}, + {field_type, 1}, + [148] = {field_body, 5}, - [147] = + [149] = {field_body, 5}, {field_initializer, 2}, - [149] = + [151] = {field_member, 4}, {field_type, 2}, - [151] = + [153] = + {field_argument, 2}, + {field_type, 4}, + [155] = {field_operand, 1}, {field_operand, 2, .inherited = true}, - [153] = + [157] = {field_assembly_code, 2}, {field_input_operands, 4}, {field_output_operands, 3}, - [156] = + [160] = {field_assembly_code, 3}, {field_output_operands, 4}, - [158] = + [162] = {field_declarator, 4}, - [159] = + [163] = {field_declarator, 0}, {field_size, 3}, - [161] = + [165] = {field_designator, 0}, {field_value, 2}, - [163] = + [167] = {field_declarator, 4}, {field_declarator, 5, .inherited = true}, {field_type, 2}, - [166] = + [170] = + {field_declarator, 4}, + {field_declarator, 5, .inherited = true}, + {field_type, 3}, + [173] = + {field_declarator, 5}, + {field_type, 3}, + [175] = {field_declarator, 1}, {field_declarator, 3, .inherited = true}, {field_type, 0, .inherited = true}, - [169] = + [178] = {field_body, 6}, {field_update, 4}, - [171] = + [180] = {field_body, 6}, {field_condition, 3}, - [173] = + [182] = {field_body, 6}, {field_initializer, 2}, {field_update, 4}, - [176] = + [185] = {field_body, 6}, {field_condition, 3}, {field_initializer, 2}, - [179] = + [188] = {field_body, 6}, {field_initializer, 2}, - [181] = + [190] = {field_operand, 0, .inherited = true}, {field_operand, 1, .inherited = true}, - [183] = + [192] = {field_register, 1}, - [184] = + [193] = {field_assembly_code, 2}, {field_clobbers, 5}, {field_input_operands, 4}, {field_output_operands, 3}, - [188] = + [197] = {field_assembly_code, 3}, {field_input_operands, 5}, {field_output_operands, 4}, - [191] = + [200] = + {field_declarator, 5}, + {field_declarator, 6, .inherited = true}, + {field_type, 3}, + [203] = {field_body, 7}, {field_condition, 3}, {field_update, 5}, - [194] = + [206] = {field_body, 7}, {field_condition, 3}, {field_initializer, 2}, {field_update, 5}, - [198] = + [210] = {field_body, 7}, {field_initializer, 2}, {field_update, 5}, - [201] = + [213] = {field_body, 7}, {field_condition, 4}, {field_initializer, 2}, - [204] = + [216] = {field_constraint, 0}, {field_value, 2}, - [206] = + [218] = {field_register, 1}, {field_register, 2, .inherited = true}, - [208] = + [220] = {field_assembly_code, 2}, {field_clobbers, 5}, {field_goto_labels, 6}, {field_input_operands, 4}, {field_output_operands, 3}, - [213] = + [225] = {field_assembly_code, 3}, {field_clobbers, 6}, {field_input_operands, 5}, {field_output_operands, 4}, - [217] = + [229] = {field_body, 8}, {field_condition, 4}, {field_initializer, 2}, {field_update, 6}, - [221] = + [233] = {field_register, 0, .inherited = true}, {field_register, 1, .inherited = true}, - [223] = + [235] = {field_label, 1}, {field_label, 2, .inherited = true}, - [225] = + [237] = {field_assembly_code, 3}, {field_clobbers, 6}, {field_goto_labels, 7}, {field_input_operands, 5}, {field_output_operands, 4}, - [230] = + [242] = {field_label, 0, .inherited = true}, {field_label, 1, .inherited = true}, - [232] = + [244] = {field_constraint, 3}, {field_symbol, 1}, {field_value, 5}, @@ -2775,7 +2881,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [82] = { [1] = alias_sym_field_identifier, }, - [88] = { + [89] = { [4] = alias_sym_field_identifier, }, }; @@ -2791,52 +2897,52 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3] = 3, [4] = 3, [5] = 2, - [6] = 3, + [6] = 2, [7] = 2, - [8] = 2, - [9] = 2, + [8] = 3, + [9] = 3, [10] = 3, - [11] = 3, + [11] = 2, [12] = 12, [13] = 13, - [14] = 14, + [14] = 13, [15] = 15, - [16] = 13, - [17] = 17, - [18] = 18, - [19] = 13, - [20] = 15, - [21] = 15, - [22] = 15, - [23] = 15, - [24] = 13, - [25] = 25, - [26] = 13, - [27] = 25, - [28] = 28, + [16] = 12, + [17] = 12, + [18] = 13, + [19] = 19, + [20] = 20, + [21] = 12, + [22] = 22, + [23] = 13, + [24] = 24, + [25] = 13, + [26] = 12, + [27] = 15, + [28] = 15, [29] = 29, - [30] = 29, + [30] = 30, [31] = 31, - [32] = 31, - [33] = 33, - [34] = 29, - [35] = 25, - [36] = 31, - [37] = 31, - [38] = 38, - [39] = 38, + [32] = 29, + [33] = 31, + [34] = 30, + [35] = 31, + [36] = 30, + [37] = 37, + [38] = 29, + [39] = 39, [40] = 29, - [41] = 41, - [42] = 38, - [43] = 31, - [44] = 33, - [45] = 25, - [46] = 33, - [47] = 38, - [48] = 29, - [49] = 38, - [50] = 33, - [51] = 33, + [41] = 39, + [42] = 31, + [43] = 39, + [44] = 15, + [45] = 30, + [46] = 31, + [47] = 30, + [48] = 39, + [49] = 39, + [50] = 29, + [51] = 51, [52] = 52, [53] = 53, [54] = 54, @@ -2846,29 +2952,29 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [58] = 58, [59] = 56, [60] = 54, - [61] = 58, - [62] = 55, - [63] = 57, - [64] = 56, - [65] = 56, - [66] = 55, - [67] = 58, - [68] = 54, + [61] = 55, + [62] = 57, + [63] = 58, + [64] = 58, + [65] = 57, + [66] = 56, + [67] = 57, + [68] = 57, [69] = 55, - [70] = 55, - [71] = 54, - [72] = 57, - [73] = 58, + [70] = 54, + [71] = 58, + [72] = 54, + [73] = 55, [74] = 56, - [75] = 58, - [76] = 57, - [77] = 57, + [75] = 56, + [76] = 55, + [77] = 58, [78] = 54, - [79] = 58, - [80] = 56, + [79] = 55, + [80] = 57, [81] = 54, - [82] = 55, - [83] = 57, + [82] = 58, + [83] = 56, [84] = 84, [85] = 84, [86] = 84, @@ -2929,7 +3035,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [141] = 141, [142] = 142, [143] = 143, - [144] = 90, + [144] = 144, [145] = 145, [146] = 146, [147] = 147, @@ -2940,1418 +3046,1418 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [152] = 152, [153] = 153, [154] = 154, - [155] = 155, - [156] = 133, - [157] = 113, - [158] = 130, - [159] = 129, - [160] = 132, - [161] = 124, - [162] = 94, - [163] = 106, - [164] = 93, - [165] = 96, - [166] = 124, - [167] = 95, - [168] = 98, - [169] = 97, - [170] = 99, - [171] = 103, - [172] = 100, - [173] = 101, - [174] = 102, - [175] = 125, - [176] = 104, - [177] = 107, - [178] = 123, - [179] = 128, - [180] = 105, - [181] = 126, + [155] = 90, + [156] = 156, + [157] = 157, + [158] = 158, + [159] = 159, + [160] = 160, + [161] = 161, + [162] = 162, + [163] = 163, + [164] = 164, + [165] = 165, + [166] = 166, + [167] = 167, + [168] = 168, + [169] = 169, + [170] = 170, + [171] = 171, + [172] = 144, + [173] = 140, + [174] = 128, + [175] = 122, + [176] = 121, + [177] = 126, + [178] = 93, + [179] = 125, + [180] = 95, + [181] = 124, [182] = 123, - [183] = 108, - [184] = 109, - [185] = 110, - [186] = 111, - [187] = 112, - [188] = 92, - [189] = 127, - [190] = 131, - [191] = 114, - [192] = 115, - [193] = 122, - [194] = 116, - [195] = 117, - [196] = 118, - [197] = 119, - [198] = 120, - [199] = 121, - [200] = 147, - [201] = 142, - [202] = 141, - [203] = 135, - [204] = 138, - [205] = 90, - [206] = 149, - [207] = 136, - [208] = 146, - [209] = 140, - [210] = 150, - [211] = 148, - [212] = 90, - [213] = 151, - [214] = 152, - [215] = 90, - [216] = 134, - [217] = 153, - [218] = 154, - [219] = 145, - [220] = 155, - [221] = 143, - [222] = 137, - [223] = 139, - [224] = 119, - [225] = 91, - [226] = 114, - [227] = 113, - [228] = 92, - [229] = 112, - [230] = 111, - [231] = 110, - [232] = 109, - [233] = 110, - [234] = 108, - [235] = 109, - [236] = 105, - [237] = 106, - [238] = 104, - [239] = 111, - [240] = 128, - [241] = 102, - [242] = 101, - [243] = 100, - [244] = 112, - [245] = 92, - [246] = 113, - [247] = 114, - [248] = 115, - [249] = 132, - [250] = 116, - [251] = 133, - [252] = 117, - [253] = 118, - [254] = 119, - [255] = 120, - [256] = 107, - [257] = 103, - [258] = 96, - [259] = 98, - [260] = 99, + [183] = 110, + [184] = 91, + [185] = 102, + [186] = 103, + [187] = 104, + [188] = 105, + [189] = 106, + [190] = 107, + [191] = 108, + [192] = 131, + [193] = 132, + [194] = 133, + [195] = 116, + [196] = 134, + [197] = 120, + [198] = 135, + [199] = 136, + [200] = 137, + [201] = 138, + [202] = 94, + [203] = 122, + [204] = 96, + [205] = 97, + [206] = 98, + [207] = 139, + [208] = 99, + [209] = 100, + [210] = 102, + [211] = 109, + [212] = 111, + [213] = 112, + [214] = 113, + [215] = 114, + [216] = 115, + [217] = 117, + [218] = 118, + [219] = 119, + [220] = 92, + [221] = 127, + [222] = 129, + [223] = 130, + [224] = 148, + [225] = 147, + [226] = 146, + [227] = 145, + [228] = 101, + [229] = 141, + [230] = 143, + [231] = 142, + [232] = 90, + [233] = 90, + [234] = 162, + [235] = 167, + [236] = 163, + [237] = 149, + [238] = 150, + [239] = 152, + [240] = 153, + [241] = 156, + [242] = 157, + [243] = 158, + [244] = 165, + [245] = 169, + [246] = 166, + [247] = 90, + [248] = 161, + [249] = 164, + [250] = 160, + [251] = 159, + [252] = 168, + [253] = 170, + [254] = 171, + [255] = 151, + [256] = 137, + [257] = 105, + [258] = 115, + [259] = 114, + [260] = 118, [261] = 103, - [262] = 121, - [263] = 99, - [264] = 98, - [265] = 116, - [266] = 107, - [267] = 117, - [268] = 123, - [269] = 128, - [270] = 105, - [271] = 118, - [272] = 104, - [273] = 119, - [274] = 122, - [275] = 131, - [276] = 93, - [277] = 96, - [278] = 127, - [279] = 126, - [280] = 125, - [281] = 120, - [282] = 124, - [283] = 93, - [284] = 121, - [285] = 122, - [286] = 124, - [287] = 125, - [288] = 95, - [289] = 126, - [290] = 127, - [291] = 131, - [292] = 128, - [293] = 95, - [294] = 123, - [295] = 107, - [296] = 97, - [297] = 97, - [298] = 103, + [262] = 119, + [263] = 113, + [264] = 112, + [265] = 104, + [266] = 111, + [267] = 109, + [268] = 92, + [269] = 127, + [270] = 129, + [271] = 105, + [272] = 106, + [273] = 130, + [274] = 148, + [275] = 147, + [276] = 146, + [277] = 145, + [278] = 144, + [279] = 143, + [280] = 142, + [281] = 141, + [282] = 140, + [283] = 139, + [284] = 138, + [285] = 136, + [286] = 135, + [287] = 134, + [288] = 107, + [289] = 133, + [290] = 101, + [291] = 132, + [292] = 131, + [293] = 91, + [294] = 128, + [295] = 122, + [296] = 121, + [297] = 126, + [298] = 100, [299] = 99, - [300] = 98, - [301] = 130, - [302] = 129, - [303] = 94, - [304] = 96, - [305] = 106, - [306] = 102, - [307] = 95, - [308] = 101, - [309] = 100, - [310] = 97, - [311] = 133, - [312] = 132, - [313] = 130, - [314] = 129, - [315] = 94, - [316] = 100, - [317] = 101, - [318] = 131, - [319] = 102, - [320] = 104, - [321] = 105, - [322] = 106, - [323] = 108, - [324] = 109, - [325] = 110, - [326] = 111, - [327] = 112, - [328] = 92, - [329] = 113, - [330] = 114, - [331] = 94, - [332] = 115, - [333] = 116, - [334] = 129, - [335] = 130, - [336] = 117, - [337] = 118, - [338] = 108, - [339] = 120, - [340] = 121, - [341] = 122, - [342] = 132, - [343] = 115, - [344] = 93, - [345] = 133, - [346] = 125, - [347] = 126, - [348] = 127, - [349] = 349, - [350] = 134, - [351] = 351, - [352] = 352, - [353] = 353, - [354] = 354, - [355] = 355, - [356] = 148, - [357] = 149, - [358] = 358, - [359] = 359, - [360] = 360, - [361] = 361, - [362] = 151, - [363] = 363, - [364] = 364, - [365] = 365, - [366] = 355, - [367] = 367, - [368] = 368, - [369] = 353, - [370] = 352, - [371] = 358, - [372] = 349, - [373] = 152, - [374] = 359, - [375] = 375, - [376] = 349, - [377] = 377, - [378] = 377, - [379] = 349, - [380] = 352, - [381] = 360, - [382] = 382, - [383] = 361, - [384] = 153, - [385] = 385, - [386] = 155, - [387] = 363, - [388] = 137, - [389] = 377, - [390] = 353, - [391] = 354, - [392] = 139, - [393] = 355, - [394] = 358, - [395] = 359, - [396] = 364, - [397] = 360, - [398] = 361, - [399] = 363, - [400] = 141, - [401] = 364, - [402] = 365, - [403] = 367, - [404] = 368, - [405] = 365, - [406] = 367, - [407] = 375, - [408] = 143, - [409] = 377, - [410] = 145, - [411] = 352, - [412] = 382, - [413] = 375, - [414] = 354, - [415] = 385, - [416] = 367, - [417] = 385, - [418] = 140, - [419] = 368, - [420] = 353, - [421] = 354, - [422] = 353, - [423] = 136, - [424] = 355, - [425] = 358, - [426] = 138, - [427] = 359, - [428] = 360, - [429] = 361, - [430] = 142, - [431] = 363, - [432] = 364, - [433] = 365, - [434] = 367, - [435] = 368, - [436] = 150, - [437] = 375, - [438] = 351, - [439] = 375, - [440] = 150, - [441] = 135, - [442] = 377, - [443] = 351, - [444] = 368, - [445] = 349, - [446] = 368, - [447] = 385, - [448] = 365, - [449] = 138, - [450] = 367, - [451] = 365, - [452] = 364, - [453] = 363, - [454] = 364, - [455] = 361, - [456] = 360, - [457] = 359, - [458] = 358, - [459] = 352, - [460] = 363, - [461] = 355, - [462] = 142, - [463] = 354, - [464] = 361, - [465] = 360, - [466] = 359, - [467] = 382, - [468] = 358, - [469] = 355, - [470] = 134, - [471] = 135, - [472] = 136, - [473] = 382, - [474] = 351, - [475] = 148, - [476] = 354, - [477] = 353, - [478] = 149, - [479] = 385, - [480] = 382, - [481] = 151, - [482] = 152, - [483] = 153, - [484] = 154, - [485] = 155, - [486] = 385, - [487] = 137, - [488] = 382, - [489] = 139, - [490] = 141, - [491] = 143, - [492] = 146, - [493] = 147, - [494] = 352, - [495] = 145, - [496] = 349, - [497] = 377, - [498] = 375, - [499] = 154, - [500] = 146, - [501] = 147, - [502] = 351, - [503] = 140, + [300] = 108, + [301] = 93, + [302] = 95, + [303] = 91, + [304] = 102, + [305] = 103, + [306] = 104, + [307] = 117, + [308] = 110, + [309] = 106, + [310] = 107, + [311] = 108, + [312] = 110, + [313] = 116, + [314] = 120, + [315] = 123, + [316] = 124, + [317] = 98, + [318] = 125, + [319] = 97, + [320] = 96, + [321] = 94, + [322] = 96, + [323] = 97, + [324] = 98, + [325] = 99, + [326] = 100, + [327] = 101, + [328] = 94, + [329] = 109, + [330] = 111, + [331] = 112, + [332] = 113, + [333] = 114, + [334] = 115, + [335] = 117, + [336] = 118, + [337] = 119, + [338] = 92, + [339] = 127, + [340] = 129, + [341] = 130, + [342] = 148, + [343] = 147, + [344] = 146, + [345] = 145, + [346] = 144, + [347] = 143, + [348] = 142, + [349] = 141, + [350] = 101, + [351] = 140, + [352] = 125, + [353] = 124, + [354] = 123, + [355] = 139, + [356] = 138, + [357] = 137, + [358] = 136, + [359] = 110, + [360] = 108, + [361] = 135, + [362] = 125, + [363] = 134, + [364] = 131, + [365] = 132, + [366] = 133, + [367] = 134, + [368] = 133, + [369] = 124, + [370] = 135, + [371] = 123, + [372] = 136, + [373] = 137, + [374] = 132, + [375] = 138, + [376] = 139, + [377] = 140, + [378] = 141, + [379] = 142, + [380] = 143, + [381] = 144, + [382] = 145, + [383] = 146, + [384] = 147, + [385] = 148, + [386] = 130, + [387] = 129, + [388] = 116, + [389] = 131, + [390] = 127, + [391] = 92, + [392] = 119, + [393] = 118, + [394] = 117, + [395] = 95, + [396] = 115, + [397] = 114, + [398] = 113, + [399] = 112, + [400] = 93, + [401] = 111, + [402] = 109, + [403] = 126, + [404] = 100, + [405] = 99, + [406] = 121, + [407] = 98, + [408] = 97, + [409] = 96, + [410] = 128, + [411] = 94, + [412] = 128, + [413] = 122, + [414] = 121, + [415] = 126, + [416] = 120, + [417] = 93, + [418] = 116, + [419] = 95, + [420] = 120, + [421] = 91, + [422] = 102, + [423] = 107, + [424] = 106, + [425] = 105, + [426] = 104, + [427] = 103, + [428] = 169, + [429] = 169, + [430] = 158, + [431] = 162, + [432] = 157, + [433] = 164, + [434] = 168, + [435] = 167, + [436] = 170, + [437] = 156, + [438] = 171, + [439] = 153, + [440] = 152, + [441] = 150, + [442] = 149, + [443] = 163, + [444] = 151, + [445] = 165, + [446] = 159, + [447] = 171, + [448] = 170, + [449] = 149, + [450] = 168, + [451] = 167, + [452] = 162, + [453] = 166, + [454] = 164, + [455] = 160, + [456] = 163, + [457] = 161, + [458] = 166, + [459] = 165, + [460] = 161, + [461] = 160, + [462] = 159, + [463] = 158, + [464] = 157, + [465] = 156, + [466] = 153, + [467] = 152, + [468] = 151, + [469] = 150, + [470] = 164, + [471] = 166, + [472] = 170, + [473] = 168, + [474] = 167, + [475] = 154, + [476] = 150, + [477] = 152, + [478] = 153, + [479] = 479, + [480] = 171, + [481] = 161, + [482] = 156, + [483] = 157, + [484] = 165, + [485] = 149, + [486] = 158, + [487] = 169, + [488] = 162, + [489] = 159, + [490] = 163, + [491] = 151, + [492] = 160, + [493] = 493, + [494] = 494, + [495] = 495, + [496] = 496, + [497] = 497, + [498] = 498, + [499] = 499, + [500] = 500, + [501] = 501, + [502] = 502, + [503] = 503, [504] = 504, - [505] = 143, - [506] = 152, - [507] = 142, - [508] = 137, - [509] = 151, - [510] = 150, - [511] = 146, - [512] = 139, - [513] = 141, - [514] = 155, - [515] = 153, - [516] = 147, - [517] = 145, - [518] = 140, - [519] = 134, - [520] = 148, - [521] = 154, - [522] = 149, - [523] = 136, - [524] = 135, - [525] = 138, - [526] = 526, - [527] = 526, + [505] = 503, + [506] = 502, + [507] = 502, + [508] = 503, + [509] = 509, + [510] = 504, + [511] = 500, + [512] = 512, + [513] = 513, + [514] = 514, + [515] = 513, + [516] = 516, + [517] = 499, + [518] = 509, + [519] = 516, + [520] = 514, + [521] = 498, + [522] = 522, + [523] = 522, + [524] = 496, + [525] = 495, + [526] = 497, + [527] = 502, [528] = 528, - [529] = 526, - [530] = 528, - [531] = 528, - [532] = 526, - [533] = 528, - [534] = 91, - [535] = 535, - [536] = 536, - [537] = 91, - [538] = 90, - [539] = 539, - [540] = 540, - [541] = 541, - [542] = 541, - [543] = 543, - [544] = 544, - [545] = 545, - [546] = 546, - [547] = 547, - [548] = 548, - [549] = 549, - [550] = 550, - [551] = 551, - [552] = 546, - [553] = 553, - [554] = 541, - [555] = 541, - [556] = 546, - [557] = 557, - [558] = 546, - [559] = 559, - [560] = 560, - [561] = 561, - [562] = 562, - [563] = 563, - [564] = 564, - [565] = 562, - [566] = 566, - [567] = 566, - [568] = 566, - [569] = 562, - [570] = 570, - [571] = 562, - [572] = 572, - [573] = 566, - [574] = 574, - [575] = 574, - [576] = 574, - [577] = 574, - [578] = 574, - [579] = 574, - [580] = 574, - [581] = 574, - [582] = 574, - [583] = 574, - [584] = 574, - [585] = 585, - [586] = 572, - [587] = 587, - [588] = 572, - [589] = 589, - [590] = 590, - [591] = 572, - [592] = 592, - [593] = 593, - [594] = 594, - [595] = 593, - [596] = 596, - [597] = 597, - [598] = 598, - [599] = 599, - [600] = 600, - [601] = 597, - [602] = 600, - [603] = 597, - [604] = 599, - [605] = 598, - [606] = 599, - [607] = 607, - [608] = 596, - [609] = 597, - [610] = 610, - [611] = 611, - [612] = 612, - [613] = 607, - [614] = 612, + [529] = 493, + [530] = 501, + [531] = 512, + [532] = 512, + [533] = 514, + [534] = 513, + [535] = 499, + [536] = 494, + [537] = 495, + [538] = 497, + [539] = 503, + [540] = 509, + [541] = 501, + [542] = 516, + [543] = 512, + [544] = 514, + [545] = 494, + [546] = 528, + [547] = 513, + [548] = 499, + [549] = 509, + [550] = 497, + [551] = 528, + [552] = 493, + [553] = 494, + [554] = 501, + [555] = 496, + [556] = 497, + [557] = 498, + [558] = 495, + [559] = 522, + [560] = 503, + [561] = 496, + [562] = 516, + [563] = 500, + [564] = 494, + [565] = 504, + [566] = 522, + [567] = 493, + [568] = 528, + [569] = 495, + [570] = 502, + [571] = 516, + [572] = 522, + [573] = 498, + [574] = 495, + [575] = 497, + [576] = 500, + [577] = 504, + [578] = 496, + [579] = 501, + [580] = 522, + [581] = 498, + [582] = 516, + [583] = 496, + [584] = 509, + [585] = 493, + [586] = 499, + [587] = 498, + [588] = 500, + [589] = 528, + [590] = 504, + [591] = 513, + [592] = 514, + [593] = 512, + [594] = 503, + [595] = 494, + [596] = 500, + [597] = 493, + [598] = 504, + [599] = 528, + [600] = 509, + [601] = 499, + [602] = 513, + [603] = 514, + [604] = 512, + [605] = 501, + [606] = 606, + [607] = 606, + [608] = 606, + [609] = 609, + [610] = 606, + [611] = 609, + [612] = 609, + [613] = 609, + [614] = 154, [615] = 615, [616] = 616, - [617] = 615, - [618] = 600, - [619] = 598, - [620] = 616, + [617] = 154, + [618] = 90, + [619] = 619, + [620] = 620, [621] = 621, - [622] = 597, - [623] = 599, + [622] = 622, + [623] = 623, [624] = 624, - [625] = 621, - [626] = 621, - [627] = 621, - [628] = 596, - [629] = 611, - [630] = 596, - [631] = 616, - [632] = 615, - [633] = 611, - [634] = 612, - [635] = 596, - [636] = 607, - [637] = 611, - [638] = 612, - [639] = 621, - [640] = 612, - [641] = 615, - [642] = 598, - [643] = 616, - [644] = 615, - [645] = 600, - [646] = 616, - [647] = 599, - [648] = 599, - [649] = 600, - [650] = 616, - [651] = 611, + [625] = 625, + [626] = 626, + [627] = 627, + [628] = 628, + [629] = 629, + [630] = 630, + [631] = 631, + [632] = 631, + [633] = 631, + [634] = 631, + [635] = 631, + [636] = 631, + [637] = 631, + [638] = 631, + [639] = 631, + [640] = 631, + [641] = 641, + [642] = 642, + [643] = 631, + [644] = 644, + [645] = 645, + [646] = 646, + [647] = 647, + [648] = 647, + [649] = 646, + [650] = 646, + [651] = 647, [652] = 652, - [653] = 598, - [654] = 597, - [655] = 598, - [656] = 596, - [657] = 611, - [658] = 607, - [659] = 621, - [660] = 612, - [661] = 615, - [662] = 662, - [663] = 663, - [664] = 664, - [665] = 665, - [666] = 664, - [667] = 664, + [653] = 646, + [654] = 647, + [655] = 655, + [656] = 656, + [657] = 657, + [658] = 656, + [659] = 656, + [660] = 660, + [661] = 661, + [662] = 656, + [663] = 655, + [664] = 655, + [665] = 655, + [666] = 666, + [667] = 657, [668] = 668, - [669] = 665, + [669] = 669, [670] = 670, [671] = 671, - [672] = 665, + [672] = 669, [673] = 673, - [674] = 674, - [675] = 665, + [674] = 673, + [675] = 675, [676] = 676, [677] = 677, - [678] = 664, - [679] = 665, - [680] = 674, + [678] = 676, + [679] = 675, + [680] = 680, [681] = 681, - [682] = 682, - [683] = 683, - [684] = 684, - [685] = 685, - [686] = 686, - [687] = 687, - [688] = 688, + [682] = 660, + [683] = 675, + [684] = 676, + [685] = 671, + [686] = 669, + [687] = 681, + [688] = 670, [689] = 689, - [690] = 690, - [691] = 691, - [692] = 692, - [693] = 693, - [694] = 694, - [695] = 695, - [696] = 696, - [697] = 697, - [698] = 685, + [690] = 676, + [691] = 676, + [692] = 675, + [693] = 675, + [694] = 670, + [695] = 677, + [696] = 677, + [697] = 681, + [698] = 670, [699] = 699, - [700] = 700, - [701] = 701, - [702] = 702, - [703] = 689, - [704] = 694, - [705] = 691, - [706] = 706, - [707] = 707, - [708] = 708, - [709] = 709, - [710] = 701, - [711] = 684, - [712] = 686, - [713] = 707, - [714] = 701, - [715] = 695, - [716] = 716, - [717] = 716, - [718] = 707, - [719] = 700, - [720] = 699, - [721] = 696, - [722] = 684, - [723] = 716, - [724] = 690, - [725] = 690, - [726] = 690, - [727] = 696, - [728] = 707, - [729] = 685, - [730] = 700, - [731] = 731, - [732] = 732, - [733] = 699, - [734] = 734, - [735] = 696, + [700] = 677, + [701] = 677, + [702] = 680, + [703] = 699, + [704] = 670, + [705] = 675, + [706] = 676, + [707] = 699, + [708] = 680, + [709] = 681, + [710] = 677, + [711] = 711, + [712] = 681, + [713] = 699, + [714] = 671, + [715] = 681, + [716] = 699, + [717] = 670, + [718] = 699, + [719] = 669, + [720] = 680, + [721] = 671, + [722] = 680, + [723] = 669, + [724] = 724, + [725] = 724, + [726] = 680, + [727] = 669, + [728] = 671, + [729] = 673, + [730] = 724, + [731] = 724, + [732] = 671, + [733] = 673, + [734] = 724, + [735] = 735, [736] = 736, - [737] = 684, - [738] = 716, - [739] = 685, - [740] = 731, - [741] = 732, - [742] = 732, - [743] = 689, - [744] = 731, - [745] = 732, - [746] = 697, - [747] = 731, - [748] = 686, - [749] = 701, - [750] = 708, - [751] = 689, - [752] = 699, - [753] = 691, - [754] = 690, - [755] = 697, - [756] = 694, - [757] = 691, - [758] = 694, - [759] = 700, - [760] = 686, - [761] = 690, - [762] = 697, + [737] = 737, + [738] = 738, + [739] = 738, + [740] = 740, + [741] = 741, + [742] = 742, + [743] = 743, + [744] = 743, + [745] = 743, + [746] = 746, + [747] = 743, + [748] = 748, + [749] = 749, + [750] = 750, + [751] = 751, + [752] = 752, + [753] = 753, + [754] = 754, + [755] = 755, + [756] = 756, + [757] = 757, + [758] = 758, + [759] = 759, + [760] = 756, + [761] = 761, + [762] = 762, [763] = 763, [764] = 764, - [765] = 765, - [766] = 766, - [767] = 767, - [768] = 585, - [769] = 769, - [770] = 770, - [771] = 536, + [765] = 756, + [766] = 753, + [767] = 757, + [768] = 768, + [769] = 660, + [770] = 759, + [771] = 771, [772] = 772, - [773] = 535, - [774] = 772, + [773] = 773, + [774] = 768, [775] = 775, - [776] = 776, - [777] = 777, - [778] = 778, + [776] = 753, + [777] = 752, + [778] = 753, [779] = 779, - [780] = 780, + [780] = 772, [781] = 781, - [782] = 782, - [783] = 783, - [784] = 784, - [785] = 785, - [786] = 786, - [787] = 787, - [788] = 788, - [789] = 789, + [782] = 764, + [783] = 755, + [784] = 754, + [785] = 775, + [786] = 768, + [787] = 771, + [788] = 779, + [789] = 759, [790] = 790, [791] = 791, - [792] = 792, - [793] = 793, + [792] = 779, + [793] = 756, [794] = 794, - [795] = 795, - [796] = 796, - [797] = 797, - [798] = 798, - [799] = 799, + [795] = 781, + [796] = 791, + [797] = 759, + [798] = 757, + [799] = 781, [800] = 800, - [801] = 801, - [802] = 802, - [803] = 803, + [801] = 775, + [802] = 759, + [803] = 761, [804] = 804, [805] = 805, - [806] = 806, - [807] = 807, - [808] = 808, + [806] = 660, + [807] = 757, + [808] = 791, [809] = 809, - [810] = 810, - [811] = 811, + [810] = 752, + [811] = 754, [812] = 812, - [813] = 813, + [813] = 800, [814] = 814, [815] = 815, - [816] = 816, + [816] = 773, [817] = 817, - [818] = 818, + [818] = 755, [819] = 819, - [820] = 820, + [820] = 772, [821] = 821, - [822] = 821, - [823] = 821, - [824] = 824, - [825] = 821, - [826] = 821, + [822] = 764, + [823] = 781, + [824] = 773, + [825] = 791, + [826] = 779, [827] = 827, - [828] = 828, - [829] = 829, + [828] = 768, + [829] = 771, [830] = 830, - [831] = 831, - [832] = 830, - [833] = 830, - [834] = 830, - [835] = 830, - [836] = 836, - [837] = 830, - [838] = 777, - [839] = 819, - [840] = 802, - [841] = 794, - [842] = 793, - [843] = 807, - [844] = 780, - [845] = 781, - [846] = 789, - [847] = 814, + [831] = 759, + [832] = 754, + [833] = 752, + [834] = 771, + [835] = 755, + [836] = 764, + [837] = 775, + [838] = 772, + [839] = 773, + [840] = 821, + [841] = 841, + [842] = 842, + [843] = 842, + [844] = 842, + [845] = 842, + [846] = 842, + [847] = 645, [848] = 848, - [849] = 804, - [850] = 808, - [851] = 790, - [852] = 800, - [853] = 809, - [854] = 776, - [855] = 818, - [856] = 799, - [857] = 135, + [849] = 849, + [850] = 850, + [851] = 851, + [852] = 616, + [853] = 615, + [854] = 854, + [855] = 855, + [856] = 856, + [857] = 857, [858] = 858, - [859] = 783, - [860] = 150, + [859] = 859, + [860] = 857, [861] = 861, - [862] = 817, - [863] = 138, - [864] = 147, - [865] = 824, - [866] = 803, - [867] = 146, + [862] = 862, + [863] = 863, + [864] = 864, + [865] = 865, + [866] = 866, + [867] = 867, [868] = 868, [869] = 869, [870] = 870, [871] = 871, [872] = 872, [873] = 873, - [874] = 154, - [875] = 875, - [876] = 876, - [877] = 877, + [874] = 872, + [875] = 872, + [876] = 872, + [877] = 872, [878] = 878, - [879] = 879, + [879] = 878, [880] = 880, - [881] = 881, - [882] = 882, - [883] = 883, - [884] = 884, - [885] = 877, - [886] = 881, - [887] = 146, - [888] = 154, - [889] = 873, - [890] = 147, - [891] = 879, - [892] = 880, - [893] = 138, - [894] = 861, - [895] = 884, - [896] = 883, - [897] = 882, - [898] = 872, - [899] = 858, - [900] = 869, - [901] = 836, - [902] = 135, - [903] = 868, + [881] = 878, + [882] = 878, + [883] = 878, + [884] = 878, + [885] = 885, + [886] = 854, + [887] = 887, + [888] = 888, + [889] = 889, + [890] = 890, + [891] = 891, + [892] = 892, + [893] = 893, + [894] = 894, + [895] = 895, + [896] = 896, + [897] = 897, + [898] = 898, + [899] = 899, + [900] = 900, + [901] = 901, + [902] = 902, + [903] = 903, [904] = 904, - [905] = 875, - [906] = 870, - [907] = 876, - [908] = 871, + [905] = 905, + [906] = 906, + [907] = 907, + [908] = 908, [909] = 909, - [910] = 878, + [910] = 857, [911] = 911, - [912] = 150, + [912] = 912, [913] = 913, [914] = 914, [915] = 915, - [916] = 766, - [917] = 535, + [916] = 916, + [917] = 917, [918] = 918, - [919] = 767, - [920] = 536, + [919] = 919, + [920] = 920, [921] = 921, [922] = 922, [923] = 923, [924] = 924, [925] = 925, - [926] = 138, - [927] = 135, + [926] = 926, + [927] = 927, [928] = 928, - [929] = 147, - [930] = 150, - [931] = 146, - [932] = 932, - [933] = 878, - [934] = 934, - [935] = 879, - [936] = 154, - [937] = 880, - [938] = 861, + [929] = 929, + [930] = 166, + [931] = 159, + [932] = 160, + [933] = 165, + [934] = 169, + [935] = 151, + [936] = 936, + [937] = 937, + [938] = 938, [939] = 939, [940] = 940, - [941] = 884, - [942] = 876, - [943] = 870, - [944] = 881, - [945] = 883, - [946] = 882, - [947] = 928, - [948] = 868, - [949] = 869, + [941] = 941, + [942] = 942, + [943] = 943, + [944] = 944, + [945] = 945, + [946] = 946, + [947] = 947, + [948] = 948, + [949] = 949, [950] = 950, [951] = 951, - [952] = 858, - [953] = 872, - [954] = 873, - [955] = 877, - [956] = 879, - [957] = 880, - [958] = 861, - [959] = 877, - [960] = 884, - [961] = 883, - [962] = 873, - [963] = 882, - [964] = 871, - [965] = 965, - [966] = 875, - [967] = 871, - [968] = 870, - [969] = 928, - [970] = 970, - [971] = 872, - [972] = 154, - [973] = 973, - [974] = 146, - [975] = 147, - [976] = 858, - [977] = 138, - [978] = 869, - [979] = 878, - [980] = 881, - [981] = 135, - [982] = 150, - [983] = 928, - [984] = 868, - [985] = 875, - [986] = 986, - [987] = 987, - [988] = 988, - [989] = 928, - [990] = 990, - [991] = 991, - [992] = 876, - [993] = 780, - [994] = 994, - [995] = 995, - [996] = 996, - [997] = 997, - [998] = 998, - [999] = 799, - [1000] = 789, - [1001] = 1001, - [1002] = 1002, - [1003] = 1003, - [1004] = 1004, - [1005] = 1005, - [1006] = 1006, - [1007] = 1007, - [1008] = 1008, + [952] = 952, + [953] = 944, + [954] = 954, + [955] = 951, + [956] = 956, + [957] = 957, + [958] = 958, + [959] = 959, + [960] = 960, + [961] = 940, + [962] = 939, + [963] = 937, + [964] = 165, + [965] = 169, + [966] = 166, + [967] = 160, + [968] = 159, + [969] = 151, + [970] = 873, + [971] = 971, + [972] = 929, + [973] = 936, + [974] = 938, + [975] = 941, + [976] = 942, + [977] = 943, + [978] = 945, + [979] = 952, + [980] = 950, + [981] = 946, + [982] = 947, + [983] = 949, + [984] = 948, + [985] = 921, + [986] = 616, + [987] = 859, + [988] = 903, + [989] = 909, + [990] = 902, + [991] = 615, + [992] = 855, + [993] = 922, + [994] = 897, + [995] = 919, + [996] = 920, + [997] = 908, + [998] = 891, + [999] = 925, + [1000] = 1000, + [1001] = 917, + [1002] = 926, + [1003] = 923, + [1004] = 924, + [1005] = 927, + [1006] = 905, + [1007] = 895, + [1008] = 169, [1009] = 1009, - [1010] = 1010, - [1011] = 1011, - [1012] = 1012, - [1013] = 1013, - [1014] = 1014, - [1015] = 1015, - [1016] = 1016, - [1017] = 1017, - [1018] = 1018, - [1019] = 1019, - [1020] = 814, - [1021] = 1021, + [1010] = 943, + [1011] = 944, + [1012] = 123, + [1013] = 108, + [1014] = 939, + [1015] = 166, + [1016] = 945, + [1017] = 159, + [1018] = 169, + [1019] = 937, + [1020] = 1020, + [1021] = 912, [1022] = 1022, - [1023] = 1023, - [1024] = 808, + [1023] = 124, + [1024] = 1022, [1025] = 1025, - [1026] = 809, - [1027] = 800, - [1028] = 1028, - [1029] = 1029, - [1030] = 807, - [1031] = 1031, - [1032] = 781, - [1033] = 804, - [1034] = 777, - [1035] = 1035, - [1036] = 793, - [1037] = 790, - [1038] = 106, - [1039] = 94, - [1040] = 97, - [1041] = 130, - [1042] = 129, - [1043] = 95, + [1026] = 125, + [1027] = 151, + [1028] = 929, + [1029] = 940, + [1030] = 1030, + [1031] = 151, + [1032] = 159, + [1033] = 160, + [1034] = 166, + [1035] = 940, + [1036] = 165, + [1037] = 893, + [1038] = 941, + [1039] = 165, + [1040] = 160, + [1041] = 939, + [1042] = 1042, + [1043] = 1022, [1044] = 1044, - [1045] = 1044, - [1046] = 1046, - [1047] = 1044, - [1048] = 1044, - [1049] = 1044, + [1045] = 1022, + [1046] = 936, + [1047] = 110, + [1048] = 1022, + [1049] = 937, [1050] = 1050, - [1051] = 1051, + [1051] = 946, [1052] = 1052, - [1053] = 1053, - [1054] = 1054, - [1055] = 1055, - [1056] = 1056, - [1057] = 1057, + [1053] = 947, + [1054] = 941, + [1055] = 101, + [1056] = 928, + [1057] = 938, [1058] = 1058, - [1059] = 1059, - [1060] = 1060, - [1061] = 1061, - [1062] = 1057, - [1063] = 1063, - [1064] = 1064, + [1059] = 948, + [1060] = 894, + [1061] = 951, + [1062] = 949, + [1063] = 899, + [1064] = 950, [1065] = 1065, [1066] = 1066, [1067] = 1067, [1068] = 1068, [1069] = 1069, - [1070] = 1070, - [1071] = 1071, - [1072] = 1072, - [1073] = 1073, + [1070] = 938, + [1071] = 952, + [1072] = 936, + [1073] = 929, [1074] = 1074, - [1075] = 1075, - [1076] = 1068, - [1077] = 1077, - [1078] = 1078, - [1079] = 1067, - [1080] = 1080, - [1081] = 1066, - [1082] = 1068, - [1083] = 1072, - [1084] = 1069, - [1085] = 1085, - [1086] = 1086, + [1075] = 952, + [1076] = 950, + [1077] = 942, + [1078] = 951, + [1079] = 949, + [1080] = 948, + [1081] = 947, + [1082] = 946, + [1083] = 945, + [1084] = 944, + [1085] = 943, + [1086] = 942, [1087] = 1087, - [1088] = 1070, - [1089] = 1080, - [1090] = 1080, - [1091] = 1086, - [1092] = 1070, - [1093] = 1074, - [1094] = 1066, - [1095] = 1087, - [1096] = 1086, - [1097] = 1067, - [1098] = 1077, - [1099] = 1067, - [1100] = 1074, - [1101] = 1074, - [1102] = 1086, - [1103] = 1069, - [1104] = 1068, - [1105] = 1080, - [1106] = 1069, - [1107] = 1072, - [1108] = 1068, + [1088] = 1088, + [1089] = 1089, + [1090] = 1090, + [1091] = 1091, + [1092] = 1092, + [1093] = 1093, + [1094] = 1094, + [1095] = 1095, + [1096] = 1096, + [1097] = 1097, + [1098] = 1098, + [1099] = 1099, + [1100] = 1100, + [1101] = 1101, + [1102] = 1102, + [1103] = 1103, + [1104] = 1104, + [1105] = 1105, + [1106] = 1106, + [1107] = 1107, + [1108] = 1108, [1109] = 1109, - [1110] = 1066, - [1111] = 1072, - [1112] = 1077, - [1113] = 1086, - [1114] = 1069, - [1115] = 1072, - [1116] = 1073, - [1117] = 1077, - [1118] = 1073, - [1119] = 1073, - [1120] = 1070, - [1121] = 1077, - [1122] = 1085, + [1110] = 1110, + [1111] = 1111, + [1112] = 1112, + [1113] = 1113, + [1114] = 1114, + [1115] = 1115, + [1116] = 1116, + [1117] = 1117, + [1118] = 1118, + [1119] = 1119, + [1120] = 1120, + [1121] = 1121, + [1122] = 1122, [1123] = 1123, - [1124] = 1085, - [1125] = 1085, - [1126] = 1074, - [1127] = 1080, - [1128] = 1072, - [1129] = 1073, - [1130] = 1069, - [1131] = 1080, - [1132] = 1085, - [1133] = 1067, - [1134] = 1134, - [1135] = 1070, - [1136] = 1073, - [1137] = 1070, - [1138] = 1086, - [1139] = 1066, - [1140] = 1067, - [1141] = 1085, - [1142] = 1074, - [1143] = 1068, - [1144] = 1144, - [1145] = 1145, - [1146] = 1146, - [1147] = 1147, + [1124] = 1124, + [1125] = 1124, + [1126] = 1124, + [1127] = 1124, + [1128] = 1124, + [1129] = 1129, + [1130] = 923, + [1131] = 927, + [1132] = 920, + [1133] = 908, + [1134] = 905, + [1135] = 926, + [1136] = 921, + [1137] = 924, + [1138] = 909, + [1139] = 1139, + [1140] = 922, + [1141] = 1139, + [1142] = 1139, + [1143] = 919, + [1144] = 897, + [1145] = 925, + [1146] = 1139, + [1147] = 1139, [1148] = 1148, [1149] = 1149, - [1150] = 1146, + [1150] = 1150, [1151] = 1151, - [1152] = 799, + [1152] = 1152, [1153] = 1153, [1154] = 1154, [1155] = 1155, [1156] = 1156, [1157] = 1157, - [1158] = 1156, + [1158] = 1158, [1159] = 1159, [1160] = 1160, - [1161] = 807, - [1162] = 790, + [1161] = 1161, + [1162] = 1162, [1163] = 1163, - [1164] = 1164, - [1165] = 793, - [1166] = 777, - [1167] = 1146, - [1168] = 780, + [1164] = 1162, + [1165] = 1165, + [1166] = 1166, + [1167] = 1167, + [1168] = 1163, [1169] = 1169, - [1170] = 1146, - [1171] = 781, - [1172] = 804, - [1173] = 1146, - [1174] = 800, + [1170] = 1170, + [1171] = 1171, + [1172] = 1172, + [1173] = 1173, + [1174] = 1174, [1175] = 1175, - [1176] = 809, - [1177] = 1156, + [1176] = 1176, + [1177] = 1177, [1178] = 1178, - [1179] = 808, - [1180] = 1180, + [1179] = 1179, + [1180] = 1176, [1181] = 1181, - [1182] = 1182, - [1183] = 814, + [1182] = 1171, + [1183] = 1181, [1184] = 1184, - [1185] = 1185, - [1186] = 1146, - [1187] = 789, - [1188] = 1156, - [1189] = 1189, - [1190] = 1190, - [1191] = 1191, - [1192] = 1192, + [1185] = 1181, + [1186] = 1186, + [1187] = 1187, + [1188] = 1175, + [1189] = 1186, + [1190] = 1181, + [1191] = 1179, + [1192] = 1171, [1193] = 1193, [1194] = 1194, - [1195] = 1191, - [1196] = 1196, - [1197] = 1197, - [1198] = 1198, - [1199] = 1192, - [1200] = 1196, - [1201] = 1192, - [1202] = 1193, - [1203] = 1197, - [1204] = 1198, - [1205] = 1190, - [1206] = 1198, - [1207] = 1198, - [1208] = 1192, - [1209] = 1193, - [1210] = 1191, - [1211] = 1192, - [1212] = 1197, - [1213] = 1193, - [1214] = 1196, - [1215] = 1191, - [1216] = 1197, - [1217] = 1196, - [1218] = 1198, - [1219] = 1219, - [1220] = 1193, - [1221] = 1196, - [1222] = 1197, - [1223] = 1191, + [1195] = 1195, + [1196] = 1186, + [1197] = 1186, + [1198] = 1187, + [1199] = 1173, + [1200] = 1172, + [1201] = 1171, + [1202] = 1170, + [1203] = 1203, + [1204] = 1176, + [1205] = 1173, + [1206] = 1171, + [1207] = 1175, + [1208] = 1173, + [1209] = 1179, + [1210] = 1179, + [1211] = 1186, + [1212] = 1212, + [1213] = 1213, + [1214] = 1214, + [1215] = 1175, + [1216] = 1176, + [1217] = 1172, + [1218] = 1177, + [1219] = 1172, + [1220] = 1220, + [1221] = 1170, + [1222] = 1176, + [1223] = 1170, [1224] = 1224, - [1225] = 1225, - [1226] = 828, - [1227] = 1227, - [1228] = 1060, - [1229] = 1229, - [1230] = 1050, - [1231] = 1231, - [1232] = 1144, - [1233] = 1154, - [1234] = 1160, - [1235] = 1235, - [1236] = 1236, - [1237] = 1237, - [1238] = 1238, - [1239] = 1239, - [1240] = 1240, - [1241] = 1241, - [1242] = 1242, - [1243] = 1243, - [1244] = 1244, - [1245] = 1241, - [1246] = 1246, - [1247] = 1244, - [1248] = 1248, - [1249] = 1249, + [1225] = 1177, + [1226] = 1213, + [1227] = 1172, + [1228] = 1181, + [1229] = 1177, + [1230] = 1175, + [1231] = 1170, + [1232] = 1172, + [1233] = 1170, + [1234] = 1177, + [1235] = 1213, + [1236] = 1186, + [1237] = 1181, + [1238] = 1171, + [1239] = 1213, + [1240] = 1187, + [1241] = 1179, + [1242] = 1176, + [1243] = 1187, + [1244] = 1173, + [1245] = 1245, + [1246] = 1245, + [1247] = 1213, + [1248] = 1177, + [1249] = 1179, [1250] = 1250, - [1251] = 1251, - [1252] = 1249, - [1253] = 1244, - [1254] = 1023, - [1255] = 1249, + [1251] = 1187, + [1252] = 1175, + [1253] = 1213, + [1254] = 1254, + [1255] = 1255, [1256] = 1256, [1257] = 1257, [1258] = 1258, [1259] = 1259, - [1260] = 1260, - [1261] = 1259, + [1260] = 922, + [1261] = 1257, [1262] = 1262, - [1263] = 1263, + [1263] = 1255, [1264] = 1264, [1265] = 1265, [1266] = 1266, - [1267] = 1267, - [1268] = 1268, - [1269] = 813, + [1267] = 897, + [1268] = 1266, + [1269] = 1269, [1270] = 1270, [1271] = 1271, - [1272] = 1272, - [1273] = 1273, + [1272] = 1265, + [1273] = 1257, [1274] = 1274, [1275] = 1275, - [1276] = 1274, - [1277] = 1275, + [1276] = 1258, + [1277] = 1277, [1278] = 1278, - [1279] = 1271, + [1279] = 1275, [1280] = 1280, - [1281] = 1260, - [1282] = 1282, - [1283] = 1278, - [1284] = 1284, - [1285] = 1258, - [1286] = 1286, - [1287] = 1287, - [1288] = 1287, + [1281] = 1275, + [1282] = 1255, + [1283] = 1283, + [1284] = 1269, + [1285] = 1269, + [1286] = 909, + [1287] = 1259, + [1288] = 1280, [1289] = 1289, - [1290] = 1290, - [1291] = 1291, - [1292] = 1292, - [1293] = 1293, - [1294] = 1294, - [1295] = 1295, - [1296] = 1263, - [1297] = 1297, - [1298] = 1264, - [1299] = 1287, + [1290] = 1277, + [1291] = 1266, + [1292] = 919, + [1293] = 1264, + [1294] = 1257, + [1295] = 920, + [1296] = 1296, + [1297] = 1266, + [1298] = 1275, + [1299] = 1277, [1300] = 1300, - [1301] = 1301, - [1302] = 1300, - [1303] = 1286, - [1304] = 1304, - [1305] = 1287, + [1301] = 908, + [1302] = 1302, + [1303] = 905, + [1304] = 1259, + [1305] = 1305, [1306] = 1306, - [1307] = 1307, - [1308] = 1300, - [1309] = 1309, - [1310] = 1287, - [1311] = 1300, - [1312] = 1301, - [1313] = 1313, - [1314] = 1273, - [1315] = 1270, - [1316] = 1297, - [1317] = 813, - [1318] = 1318, - [1319] = 1319, - [1320] = 1267, - [1321] = 1318, - [1322] = 1319, - [1323] = 1323, - [1324] = 1319, - [1325] = 1319, - [1326] = 1323, - [1327] = 1294, - [1328] = 1295, - [1329] = 1306, + [1307] = 1280, + [1308] = 927, + [1309] = 926, + [1310] = 1266, + [1311] = 1311, + [1312] = 1283, + [1313] = 921, + [1314] = 924, + [1315] = 1289, + [1316] = 1259, + [1317] = 1275, + [1318] = 923, + [1319] = 1280, + [1320] = 861, + [1321] = 1289, + [1322] = 1255, + [1323] = 1280, + [1324] = 1264, + [1325] = 925, + [1326] = 1326, + [1327] = 1264, + [1328] = 1257, + [1329] = 1283, [1330] = 1330, - [1331] = 1331, - [1332] = 1323, - [1333] = 1289, - [1334] = 1309, - [1335] = 1319, - [1336] = 1290, - [1337] = 1280, - [1338] = 1268, - [1339] = 1272, - [1340] = 1292, - [1341] = 1323, - [1342] = 1293, - [1343] = 1262, - [1344] = 1265, - [1345] = 1266, - [1346] = 1284, - [1347] = 1023, - [1348] = 1348, - [1349] = 1050, - [1350] = 1350, - [1351] = 1351, - [1352] = 1351, - [1353] = 1351, - [1354] = 1351, - [1355] = 1351, - [1356] = 1356, - [1357] = 1356, - [1358] = 1356, - [1359] = 1356, + [1331] = 1269, + [1332] = 1257, + [1333] = 1258, + [1334] = 1264, + [1335] = 1259, + [1336] = 1289, + [1337] = 1277, + [1338] = 1338, + [1339] = 1283, + [1340] = 1340, + [1341] = 1269, + [1342] = 1258, + [1343] = 1343, + [1344] = 1344, + [1345] = 1255, + [1346] = 1346, + [1347] = 1258, + [1348] = 1289, + [1349] = 1283, + [1350] = 1129, + [1351] = 1123, + [1352] = 1352, + [1353] = 1353, + [1354] = 1354, + [1355] = 1148, + [1356] = 1152, + [1357] = 1150, + [1358] = 1358, + [1359] = 1359, [1360] = 1360, [1361] = 1361, [1362] = 1362, [1363] = 1363, [1364] = 1364, [1365] = 1365, - [1366] = 1366, + [1366] = 1091, [1367] = 1367, - [1368] = 1364, - [1369] = 1364, - [1370] = 1365, + [1368] = 1368, + [1369] = 1369, + [1370] = 1370, [1371] = 1371, - [1372] = 1365, - [1373] = 1365, - [1374] = 1364, - [1375] = 1365, - [1376] = 1365, - [1377] = 1377, - [1378] = 1378, - [1379] = 1379, - [1380] = 1380, + [1372] = 1372, + [1373] = 1373, + [1374] = 1374, + [1375] = 1375, + [1376] = 1374, + [1377] = 1375, + [1378] = 1367, + [1379] = 1374, + [1380] = 1375, [1381] = 1381, - [1382] = 1378, + [1382] = 1382, [1383] = 1383, - [1384] = 1378, + [1384] = 1384, [1385] = 1385, - [1386] = 1386, - [1387] = 1386, - [1388] = 1378, - [1389] = 1386, - [1390] = 1378, - [1391] = 1386, - [1392] = 1378, - [1393] = 1393, - [1394] = 1386, + [1386] = 1383, + [1387] = 1387, + [1388] = 1388, + [1389] = 1389, + [1390] = 1390, + [1391] = 1385, + [1392] = 1392, + [1393] = 1387, + [1394] = 1384, [1395] = 1395, [1396] = 1396, [1397] = 1397, [1398] = 1398, - [1399] = 1399, + [1399] = 1385, [1400] = 1400, - [1401] = 1401, + [1401] = 1382, [1402] = 1402, [1403] = 1403, - [1404] = 1401, - [1405] = 1405, + [1404] = 1389, + [1405] = 900, [1406] = 1406, - [1407] = 1401, - [1408] = 1401, - [1409] = 1401, - [1410] = 1410, + [1407] = 1406, + [1408] = 1406, + [1409] = 1406, + [1410] = 1403, [1411] = 1411, [1412] = 1412, [1413] = 1413, [1414] = 1414, - [1415] = 1415, + [1415] = 1398, [1416] = 1416, - [1417] = 1417, + [1417] = 1400, [1418] = 1418, - [1419] = 1419, + [1419] = 1385, [1420] = 1420, [1421] = 1421, - [1422] = 1421, - [1423] = 1421, + [1422] = 1422, + [1423] = 1390, [1424] = 1424, - [1425] = 1419, - [1426] = 1424, - [1427] = 1427, + [1425] = 1425, + [1426] = 1426, + [1427] = 1392, [1428] = 1428, - [1429] = 1424, - [1430] = 1420, - [1431] = 1431, - [1432] = 1419, - [1433] = 1420, - [1434] = 1421, + [1429] = 1406, + [1430] = 1430, + [1431] = 1397, + [1432] = 1432, + [1433] = 1433, + [1434] = 1395, [1435] = 1435, - [1436] = 1427, + [1436] = 1436, [1437] = 1437, - [1438] = 1427, - [1439] = 1424, - [1440] = 1427, - [1441] = 1421, - [1442] = 1427, - [1443] = 1424, - [1444] = 1420, - [1445] = 1420, - [1446] = 1419, - [1447] = 1419, - [1448] = 1448, - [1449] = 1449, - [1450] = 1450, - [1451] = 1448, - [1452] = 1448, - [1453] = 1453, - [1454] = 1454, - [1455] = 1455, - [1456] = 1456, - [1457] = 1448, - [1458] = 1458, - [1459] = 1459, - [1460] = 1460, - [1461] = 1461, - [1462] = 1448, - [1463] = 1463, - [1464] = 1464, - [1465] = 1465, - [1466] = 1466, - [1467] = 1467, - [1468] = 1468, - [1469] = 1469, - [1470] = 1470, - [1471] = 1471, + [1438] = 1416, + [1439] = 1439, + [1440] = 1439, + [1441] = 900, + [1442] = 1442, + [1443] = 1420, + [1444] = 1396, + [1445] = 1402, + [1446] = 1446, + [1447] = 1447, + [1448] = 1439, + [1449] = 1091, + [1450] = 1435, + [1451] = 1451, + [1452] = 1439, + [1453] = 1421, + [1454] = 1446, + [1455] = 1422, + [1456] = 1439, + [1457] = 1428, + [1458] = 1426, + [1459] = 1446, + [1460] = 1418, + [1461] = 1413, + [1462] = 1425, + [1463] = 1388, + [1464] = 1430, + [1465] = 1411, + [1466] = 1442, + [1467] = 1437, + [1468] = 1436, + [1469] = 1446, + [1470] = 1433, + [1471] = 1123, [1472] = 1472, [1473] = 1473, [1474] = 1474, - [1475] = 1475, - [1476] = 1476, - [1477] = 1477, - [1478] = 1478, + [1475] = 1474, + [1476] = 1474, + [1477] = 1474, + [1478] = 1474, [1479] = 1479, [1480] = 1480, [1481] = 1481, - [1482] = 1482, - [1483] = 1483, - [1484] = 1484, + [1482] = 1481, + [1483] = 1481, + [1484] = 1481, [1485] = 1485, [1486] = 1486, [1487] = 1487, - [1488] = 1488, + [1488] = 1486, [1489] = 1489, [1490] = 1490, [1491] = 1491, - [1492] = 1492, - [1493] = 1493, + [1492] = 1487, + [1493] = 1487, [1494] = 1494, - [1495] = 1495, - [1496] = 1496, - [1497] = 1497, + [1495] = 1487, + [1496] = 1487, + [1497] = 1486, [1498] = 1498, [1499] = 1499, [1500] = 1500, - [1501] = 1496, - [1502] = 1502, + [1501] = 1487, + [1502] = 1486, [1503] = 1503, - [1504] = 1497, + [1504] = 1503, [1505] = 1505, - [1506] = 1506, - [1507] = 1503, + [1506] = 1503, + [1507] = 1507, [1508] = 1508, - [1509] = 1509, + [1509] = 1503, [1510] = 1510, [1511] = 1511, - [1512] = 1503, - [1513] = 1513, + [1512] = 1512, + [1513] = 1507, [1514] = 1514, - [1515] = 1515, - [1516] = 1497, - [1517] = 1503, + [1515] = 1510, + [1516] = 1516, + [1517] = 1510, [1518] = 1518, - [1519] = 1519, - [1520] = 1497, - [1521] = 1521, - [1522] = 1496, - [1523] = 1496, - [1524] = 1524, - [1525] = 1525, - [1526] = 1526, - [1527] = 1527, - [1528] = 1524, - [1529] = 1529, - [1530] = 1524, - [1531] = 1526, + [1519] = 1508, + [1520] = 1503, + [1521] = 1507, + [1522] = 1514, + [1523] = 1507, + [1524] = 1512, + [1525] = 1510, + [1526] = 1514, + [1527] = 1518, + [1528] = 1505, + [1529] = 1510, + [1530] = 1518, + [1531] = 1514, [1532] = 1532, - [1533] = 1533, - [1534] = 1534, - [1535] = 1535, + [1533] = 1518, + [1534] = 1505, + [1535] = 1508, [1536] = 1536, - [1537] = 1524, - [1538] = 1538, - [1539] = 1524, - [1540] = 1529, - [1541] = 1541, - [1542] = 1542, - [1543] = 1543, - [1544] = 1524, - [1545] = 1545, + [1537] = 1512, + [1538] = 1508, + [1539] = 1518, + [1540] = 1512, + [1541] = 1512, + [1542] = 1508, + [1543] = 1505, + [1544] = 1507, + [1545] = 1505, [1546] = 1546, - [1547] = 1529, - [1548] = 1526, - [1549] = 1549, - [1550] = 1524, - [1551] = 1524, - [1552] = 1552, - [1553] = 1524, + [1547] = 1512, + [1548] = 1548, + [1549] = 1514, + [1550] = 1550, + [1551] = 1551, + [1552] = 1551, + [1553] = 1551, [1554] = 1554, [1555] = 1555, [1556] = 1556, - [1557] = 1557, + [1557] = 1551, [1558] = 1558, - [1559] = 1554, - [1560] = 1560, + [1559] = 1559, + [1560] = 1551, [1561] = 1561, - [1562] = 1556, - [1563] = 1556, + [1562] = 1562, + [1563] = 1563, [1564] = 1564, [1565] = 1565, - [1566] = 1555, + [1566] = 1566, [1567] = 1567, [1568] = 1568, [1569] = 1569, @@ -4364,98 +4470,98 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1576] = 1576, [1577] = 1577, [1578] = 1578, - [1579] = 1579, + [1579] = 1577, [1580] = 1580, - [1581] = 1581, - [1582] = 1582, + [1581] = 1577, + [1582] = 1577, [1583] = 1583, - [1584] = 1584, + [1584] = 1577, [1585] = 1585, [1586] = 1586, - [1587] = 1565, - [1588] = 1569, + [1587] = 1587, + [1588] = 1588, [1589] = 1589, - [1590] = 1575, + [1590] = 1590, [1591] = 1591, - [1592] = 1576, + [1592] = 1588, [1593] = 1593, - [1594] = 1591, - [1595] = 1577, - [1596] = 1571, - [1597] = 1597, - [1598] = 1584, + [1594] = 1594, + [1595] = 1595, + [1596] = 1596, + [1597] = 1588, + [1598] = 1598, [1599] = 1599, - [1600] = 1600, - [1601] = 1554, - [1602] = 1575, - [1603] = 1576, - [1604] = 1564, - [1605] = 1579, + [1600] = 1588, + [1601] = 1601, + [1602] = 1602, + [1603] = 1588, + [1604] = 1604, + [1605] = 1605, [1606] = 1606, - [1607] = 1584, - [1608] = 1556, + [1607] = 1607, + [1608] = 1608, [1609] = 1609, - [1610] = 1564, + [1610] = 1610, [1611] = 1611, - [1612] = 1555, + [1612] = 1612, [1613] = 1613, [1614] = 1614, - [1615] = 1591, + [1615] = 1615, [1616] = 1616, - [1617] = 1564, - [1618] = 1577, - [1619] = 1576, - [1620] = 1575, - [1621] = 1555, - [1622] = 1569, - [1623] = 1567, - [1624] = 1577, - [1625] = 1571, - [1626] = 1571, + [1617] = 1617, + [1618] = 1618, + [1619] = 1619, + [1620] = 1620, + [1621] = 1620, + [1622] = 1622, + [1623] = 1619, + [1624] = 1624, + [1625] = 1618, + [1626] = 1619, [1627] = 1627, - [1628] = 1576, - [1629] = 1575, - [1630] = 1630, - [1631] = 1574, - [1632] = 1632, - [1633] = 1577, - [1634] = 1634, - [1635] = 1569, - [1636] = 1575, - [1637] = 1555, - [1638] = 1564, - [1639] = 1569, - [1640] = 1579, - [1641] = 1576, - [1642] = 1642, - [1643] = 1577, - [1644] = 1644, - [1645] = 1645, - [1646] = 1584, - [1647] = 1647, - [1648] = 1556, - [1649] = 1649, - [1650] = 1650, + [1628] = 1620, + [1629] = 1627, + [1630] = 1620, + [1631] = 1631, + [1632] = 1618, + [1633] = 1633, + [1634] = 1618, + [1635] = 1633, + [1636] = 1636, + [1637] = 1627, + [1638] = 1633, + [1639] = 1639, + [1640] = 1640, + [1641] = 1641, + [1642] = 1633, + [1643] = 1636, + [1644] = 1619, + [1645] = 1627, + [1646] = 1646, + [1647] = 1636, + [1648] = 1648, + [1649] = 1619, + [1650] = 1618, [1651] = 1651, - [1652] = 1565, - [1653] = 1584, + [1652] = 1627, + [1653] = 1620, [1654] = 1654, - [1655] = 1591, + [1655] = 1633, [1656] = 1656, [1657] = 1657, - [1658] = 1567, - [1659] = 1568, + [1658] = 1636, + [1659] = 1636, [1660] = 1660, - [1661] = 1591, + [1661] = 1661, [1662] = 1662, - [1663] = 1569, - [1664] = 1571, - [1665] = 1665, + [1663] = 1663, + [1664] = 1664, + [1665] = 1663, [1666] = 1666, - [1667] = 1667, + [1667] = 1666, [1668] = 1668, [1669] = 1669, - [1670] = 1584, + [1670] = 1670, [1671] = 1671, [1672] = 1672, [1673] = 1673, @@ -4463,365 +4569,577 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1675] = 1675, [1676] = 1676, [1677] = 1677, - [1678] = 1678, - [1679] = 1679, - [1680] = 1680, - [1681] = 1681, - [1682] = 1682, + [1678] = 1675, + [1679] = 1666, + [1680] = 1663, + [1681] = 1675, + [1682] = 1675, [1683] = 1683, [1684] = 1684, [1685] = 1685, - [1686] = 1686, - [1687] = 1687, + [1686] = 1666, + [1687] = 1663, [1688] = 1688, [1689] = 1689, [1690] = 1690, [1691] = 1691, - [1692] = 1676, + [1692] = 1692, [1693] = 1693, - [1694] = 1694, - [1695] = 1672, + [1694] = 1693, + [1695] = 1695, [1696] = 1696, [1697] = 1697, - [1698] = 1698, - [1699] = 1699, - [1700] = 1700, - [1701] = 1690, - [1702] = 1690, + [1698] = 1697, + [1699] = 1692, + [1700] = 1696, + [1701] = 1701, + [1702] = 1702, [1703] = 1703, - [1704] = 1698, - [1705] = 1694, - [1706] = 1706, + [1704] = 1704, + [1705] = 1697, + [1706] = 1695, [1707] = 1707, - [1708] = 1706, - [1709] = 1698, - [1710] = 1710, - [1711] = 1686, - [1712] = 1690, - [1713] = 1694, - [1714] = 1714, - [1715] = 1672, - [1716] = 1679, - [1717] = 1698, - [1718] = 1694, - [1719] = 1672, - [1720] = 1706, - [1721] = 1676, - [1722] = 1685, - [1723] = 1706, - [1724] = 1710, - [1725] = 1676, - [1726] = 1726, - [1727] = 1676, - [1728] = 1706, - [1729] = 1672, - [1730] = 1686, - [1731] = 1698, - [1732] = 1686, - [1733] = 1686, - [1734] = 1690, - [1735] = 1672, - [1736] = 1676, + [1708] = 1708, + [1709] = 1709, + [1710] = 1691, + [1711] = 1690, + [1712] = 1695, + [1713] = 1713, + [1714] = 1690, + [1715] = 1715, + [1716] = 1692, + [1717] = 1707, + [1718] = 1690, + [1719] = 1708, + [1720] = 1720, + [1721] = 1721, + [1722] = 1709, + [1723] = 1723, + [1724] = 1691, + [1725] = 1702, + [1726] = 1702, + [1727] = 1703, + [1728] = 1704, + [1729] = 1703, + [1730] = 1721, + [1731] = 1721, + [1732] = 1704, + [1733] = 1721, + [1734] = 1721, + [1735] = 1690, + [1736] = 1704, [1737] = 1737, - [1738] = 1679, - [1739] = 1698, - [1740] = 1672, - [1741] = 1694, - [1742] = 1676, - [1743] = 1706, - [1744] = 1685, - [1745] = 1676, - [1746] = 1672, - [1747] = 1672, - [1748] = 1676, + [1738] = 1738, + [1739] = 1703, + [1740] = 1695, + [1741] = 1702, + [1742] = 1742, + [1743] = 1696, + [1744] = 1707, + [1745] = 1745, + [1746] = 1746, + [1747] = 1747, + [1748] = 1690, [1749] = 1749, - [1750] = 1750, - [1751] = 1751, - [1752] = 1752, - [1753] = 1752, - [1754] = 1751, - [1755] = 1755, - [1756] = 1756, - [1757] = 1757, - [1758] = 1758, - [1759] = 1750, + [1750] = 1697, + [1751] = 1708, + [1752] = 1692, + [1753] = 1753, + [1754] = 1691, + [1755] = 1690, + [1756] = 1709, + [1757] = 1704, + [1758] = 1708, + [1759] = 1693, [1760] = 1760, - [1761] = 1752, - [1762] = 1762, - [1763] = 1751, - [1764] = 1764, - [1765] = 1750, - [1766] = 1766, + [1761] = 1703, + [1762] = 1707, + [1763] = 1696, + [1764] = 1702, + [1765] = 1690, + [1766] = 1690, [1767] = 1767, - [1768] = 1768, - [1769] = 1769, - [1770] = 1770, + [1768] = 1692, + [1769] = 1697, + [1770] = 1709, [1771] = 1771, - [1772] = 1772, - [1773] = 1773, - [1774] = 1774, - [1775] = 1775, + [1772] = 1696, + [1773] = 1746, + [1774] = 1746, + [1775] = 1691, [1776] = 1776, - [1777] = 1777, - [1778] = 1778, - [1779] = 1779, - [1780] = 1780, + [1777] = 1709, + [1778] = 1695, + [1779] = 1708, + [1780] = 1707, [1781] = 1781, [1782] = 1782, [1783] = 1783, [1784] = 1784, [1785] = 1785, [1786] = 1786, - [1787] = 1752, + [1787] = 1787, [1788] = 1788, [1789] = 1789, [1790] = 1790, - [1791] = 1782, - [1792] = 1751, - [1793] = 1793, - [1794] = 1794, - [1795] = 1752, - [1796] = 1796, + [1791] = 1791, + [1792] = 1792, + [1793] = 1781, + [1794] = 1786, + [1795] = 1795, + [1796] = 1789, [1797] = 1797, - [1798] = 1788, - [1799] = 1750, - [1800] = 1780, - [1801] = 1780, - [1802] = 1758, - [1803] = 1750, + [1798] = 1798, + [1799] = 1799, + [1800] = 1800, + [1801] = 1801, + [1802] = 1802, + [1803] = 1781, [1804] = 1804, [1805] = 1805, - [1806] = 1776, - [1807] = 1807, - [1808] = 1771, - [1809] = 1760, - [1810] = 1750, - [1811] = 1778, - [1812] = 1749, - [1813] = 1751, - [1814] = 1814, - [1815] = 1797, - [1816] = 1797, - [1817] = 1796, - [1818] = 1818, - [1819] = 1793, - [1820] = 1770, - [1821] = 1796, - [1822] = 1769, + [1806] = 1806, + [1807] = 1790, + [1808] = 1790, + [1809] = 1809, + [1810] = 1786, + [1811] = 1782, + [1812] = 1812, + [1813] = 1813, + [1814] = 1791, + [1815] = 1815, + [1816] = 1787, + [1817] = 1800, + [1818] = 1791, + [1819] = 1819, + [1820] = 1781, + [1821] = 1790, + [1822] = 1822, [1823] = 1823, - [1824] = 1768, - [1825] = 1762, - [1826] = 1766, - [1827] = 1762, - [1828] = 1767, - [1829] = 1768, - [1830] = 1769, - [1831] = 1770, - [1832] = 1772, - [1833] = 1773, - [1834] = 1774, - [1835] = 1775, - [1836] = 1814, + [1824] = 1815, + [1825] = 1825, + [1826] = 1826, + [1827] = 1827, + [1828] = 1828, + [1829] = 1829, + [1830] = 1830, + [1831] = 1831, + [1832] = 1832, + [1833] = 1791, + [1834] = 1787, + [1835] = 1835, + [1836] = 1790, [1837] = 1837, - [1838] = 1778, - [1839] = 1779, - [1840] = 1781, - [1841] = 1750, - [1842] = 1783, - [1843] = 1784, - [1844] = 1785, - [1845] = 1755, - [1846] = 1756, - [1847] = 1847, - [1848] = 1786, - [1849] = 1749, - [1850] = 1751, - [1851] = 1789, - [1852] = 1852, - [1853] = 1752, - [1854] = 1764, - [1855] = 1782, - [1856] = 1752, - [1857] = 1788, - [1858] = 1267, + [1838] = 1826, + [1839] = 1839, + [1840] = 1789, + [1841] = 1841, + [1842] = 1842, + [1843] = 1843, + [1844] = 1844, + [1845] = 1845, + [1846] = 1846, + [1847] = 1786, + [1848] = 1781, + [1849] = 1849, + [1850] = 1791, + [1851] = 1826, + [1852] = 1815, + [1853] = 1787, + [1854] = 1832, + [1855] = 1855, + [1856] = 1856, + [1857] = 1857, + [1858] = 1858, [1859] = 1859, - [1860] = 1751, - [1861] = 1789, - [1862] = 1786, - [1863] = 1783, - [1864] = 1794, - [1865] = 1776, - [1866] = 1751, - [1867] = 1790, - [1868] = 1793, - [1869] = 1796, - [1870] = 1797, - [1871] = 1785, - [1872] = 1804, - [1873] = 1780, - [1874] = 1758, - [1875] = 1807, - [1876] = 1757, - [1877] = 1750, - [1878] = 1778, - [1879] = 1814, - [1880] = 1776, - [1881] = 1814, - [1882] = 1771, - [1883] = 1760, - [1884] = 1785, - [1885] = 1818, - [1886] = 1749, - [1887] = 1770, - [1888] = 1783, - [1889] = 1769, - [1890] = 1786, - [1891] = 1768, + [1860] = 1787, + [1861] = 1861, + [1862] = 1862, + [1863] = 1863, + [1864] = 1790, + [1865] = 1815, + [1866] = 1786, + [1867] = 1815, + [1868] = 1844, + [1869] = 1843, + [1870] = 1781, + [1871] = 1791, + [1872] = 1787, + [1873] = 1873, + [1874] = 1800, + [1875] = 1875, + [1876] = 1876, + [1877] = 1877, + [1878] = 1786, + [1879] = 1843, + [1880] = 1880, + [1881] = 1881, + [1882] = 1880, + [1883] = 1883, + [1884] = 1884, + [1885] = 1881, + [1886] = 1886, + [1887] = 1887, + [1888] = 1888, + [1889] = 1881, + [1890] = 1890, + [1891] = 1880, [1892] = 1892, - [1893] = 1789, - [1894] = 1762, + [1893] = 1893, + [1894] = 1894, [1895] = 1895, - [1896] = 1755, - [1897] = 1756, + [1896] = 1895, + [1897] = 1895, [1898] = 1898, - [1899] = 1752, - [1900] = 1782, + [1899] = 1886, + [1900] = 1886, [1901] = 1901, - [1902] = 1781, - [1903] = 1764, - [1904] = 1284, - [1905] = 1779, + [1902] = 1902, + [1903] = 1903, + [1904] = 1887, + [1905] = 1903, [1906] = 1906, - [1907] = 1907, - [1908] = 1859, - [1909] = 1794, + [1907] = 1880, + [1908] = 1888, + [1909] = 1909, [1910] = 1910, - [1911] = 1794, - [1912] = 1784, - [1913] = 1788, - [1914] = 1914, - [1915] = 1915, - [1916] = 1916, - [1917] = 1772, - [1918] = 1778, - [1919] = 1919, - [1920] = 1749, - [1921] = 1814, - [1922] = 1752, - [1923] = 1852, - [1924] = 1786, - [1925] = 1770, - [1926] = 1785, - [1927] = 1769, - [1928] = 1749, - [1929] = 1768, - [1930] = 1789, - [1931] = 1931, - [1932] = 1762, - [1933] = 1784, - [1934] = 1755, - [1935] = 1756, - [1936] = 1936, - [1937] = 1751, - [1938] = 1783, - [1939] = 1764, - [1940] = 1804, - [1941] = 1807, - [1942] = 766, - [1943] = 1764, - [1944] = 1796, - [1945] = 1295, - [1946] = 1797, - [1947] = 1760, - [1948] = 1755, - [1949] = 1775, - [1950] = 1755, - [1951] = 1755, - [1952] = 1755, - [1953] = 1782, - [1954] = 1954, - [1955] = 1955, - [1956] = 1956, + [1911] = 1880, + [1912] = 1903, + [1913] = 1913, + [1914] = 1888, + [1915] = 1887, + [1916] = 1881, + [1917] = 1917, + [1918] = 1918, + [1919] = 1886, + [1920] = 1920, + [1921] = 1903, + [1922] = 1922, + [1923] = 1923, + [1924] = 1886, + [1925] = 1890, + [1926] = 1888, + [1927] = 1887, + [1928] = 1881, + [1929] = 1883, + [1930] = 1886, + [1931] = 1880, + [1932] = 1880, + [1933] = 1895, + [1934] = 1880, + [1935] = 1935, + [1936] = 1886, + [1937] = 1937, + [1938] = 1880, + [1939] = 1893, + [1940] = 1895, + [1941] = 1886, + [1942] = 1886, + [1943] = 1943, + [1944] = 1944, + [1945] = 1945, + [1946] = 1946, + [1947] = 1947, + [1948] = 1948, + [1949] = 1883, + [1950] = 1881, + [1951] = 1887, + [1952] = 1952, + [1953] = 1888, + [1954] = 1903, + [1955] = 1890, + [1956] = 1888, [1957] = 1957, [1958] = 1958, - [1959] = 1773, - [1960] = 1781, - [1961] = 1758, - [1962] = 767, - [1963] = 1805, - [1964] = 1779, + [1959] = 1957, + [1960] = 1960, + [1961] = 1961, + [1962] = 1962, + [1963] = 1963, + [1964] = 1964, [1965] = 1965, - [1966] = 1780, + [1966] = 1966, [1967] = 1967, [1968] = 1968, [1969] = 1969, [1970] = 1970, - [1971] = 1910, + [1971] = 1971, [1972] = 1972, [1973] = 1973, - [1974] = 1804, + [1974] = 1974, [1975] = 1975, - [1976] = 1807, + [1976] = 1958, [1977] = 1977, - [1978] = 1778, - [1979] = 1818, + [1978] = 1978, + [1979] = 1979, [1980] = 1980, [1981] = 1981, - [1982] = 1982, - [1983] = 1983, - [1984] = 1805, - [1985] = 1985, - [1986] = 1306, - [1987] = 1762, - [1988] = 1818, + [1982] = 1981, + [1983] = 855, + [1984] = 1984, + [1985] = 859, + [1986] = 1986, + [1987] = 1987, + [1988] = 1988, [1989] = 1989, - [1990] = 1910, + [1990] = 1990, [1991] = 1991, - [1992] = 1804, + [1992] = 1992, [1993] = 1993, - [1994] = 1807, + [1994] = 1411, [1995] = 1995, - [1996] = 1766, - [1997] = 1818, - [1998] = 1767, - [1999] = 1774, - [2000] = 1750, + [1996] = 1996, + [1997] = 1997, + [1998] = 1998, + [1999] = 1999, + [2000] = 2000, [2001] = 2001, - [2002] = 1805, + [2002] = 2002, [2003] = 2003, [2004] = 2004, [2005] = 2005, [2006] = 2006, - [2007] = 1804, - [2008] = 1768, - [2009] = 1807, - [2010] = 1769, - [2011] = 1760, - [2012] = 1818, - [2013] = 1770, - [2014] = 1772, - [2015] = 1773, - [2016] = 1814, - [2017] = 1805, - [2018] = 1774, - [2019] = 1775, - [2020] = 1931, - [2021] = 1766, - [2022] = 1776, - [2023] = 1910, + [2007] = 2007, + [2008] = 2008, + [2009] = 2007, + [2010] = 2004, + [2011] = 2008, + [2012] = 2012, + [2013] = 1968, + [2014] = 2014, + [2015] = 1967, + [2016] = 2016, + [2017] = 1965, + [2018] = 1963, + [2019] = 2019, + [2020] = 1984, + [2021] = 1991, + [2022] = 2016, + [2023] = 1957, [2024] = 2024, - [2025] = 1931, - [2026] = 1771, - [2027] = 2027, - [2028] = 1910, - [2029] = 1756, - [2030] = 1767, - [2031] = 1771, - [2032] = 1910, - [2033] = 1755, - [2034] = 1931, - [2035] = 1931, - [2036] = 1931, + [2025] = 2025, + [2026] = 2026, + [2027] = 1991, + [2028] = 2028, + [2029] = 2014, + [2030] = 2024, + [2031] = 2012, + [2032] = 1997, + [2033] = 1991, + [2034] = 1995, + [2035] = 2035, + [2036] = 2001, + [2037] = 2037, + [2038] = 1961, + [2039] = 1962, + [2040] = 1998, + [2041] = 2041, + [2042] = 1957, + [2043] = 2025, + [2044] = 1991, + [2045] = 1963, + [2046] = 2046, + [2047] = 1966, + [2048] = 1995, + [2049] = 1984, + [2050] = 2025, + [2051] = 2051, + [2052] = 2052, + [2053] = 1975, + [2054] = 1986, + [2055] = 1957, + [2056] = 1974, + [2057] = 1990, + [2058] = 1973, + [2059] = 2059, + [2060] = 1402, + [2061] = 2061, + [2062] = 2062, + [2063] = 1965, + [2064] = 1972, + [2065] = 2065, + [2066] = 1996, + [2067] = 1992, + [2068] = 1967, + [2069] = 1999, + [2070] = 2070, + [2071] = 1999, + [2072] = 1996, + [2073] = 2004, + [2074] = 1958, + [2075] = 2075, + [2076] = 2007, + [2077] = 1977, + [2078] = 1968, + [2079] = 1957, + [2080] = 2008, + [2081] = 2081, + [2082] = 1968, + [2083] = 2025, + [2084] = 1967, + [2085] = 1981, + [2086] = 1965, + [2087] = 1970, + [2088] = 1972, + [2089] = 1984, + [2090] = 1973, + [2091] = 1961, + [2092] = 1962, + [2093] = 1980, + [2094] = 1970, + [2095] = 2061, + [2096] = 1974, + [2097] = 1991, + [2098] = 1966, + [2099] = 2059, + [2100] = 1977, + [2101] = 2007, + [2102] = 2025, + [2103] = 2004, + [2104] = 1975, + [2105] = 2016, + [2106] = 1990, + [2107] = 2107, + [2108] = 1995, + [2109] = 1980, + [2110] = 1981, + [2111] = 2081, + [2112] = 1957, + [2113] = 2113, + [2114] = 2114, + [2115] = 2004, + [2116] = 1396, + [2117] = 1975, + [2118] = 2007, + [2119] = 2001, + [2120] = 1963, + [2121] = 1958, + [2122] = 1968, + [2123] = 2123, + [2124] = 1967, + [2125] = 2016, + [2126] = 1965, + [2127] = 2127, + [2128] = 1977, + [2129] = 1984, + [2130] = 2004, + [2131] = 1961, + [2132] = 1962, + [2133] = 2007, + [2134] = 1995, + [2135] = 1980, + [2136] = 1966, + [2137] = 2137, + [2138] = 2138, + [2139] = 1992, + [2140] = 2140, + [2141] = 1981, + [2142] = 1957, + [2143] = 1997, + [2144] = 1990, + [2145] = 2062, + [2146] = 1992, + [2147] = 1961, + [2148] = 1974, + [2149] = 1961, + [2150] = 1961, + [2151] = 1961, + [2152] = 2152, + [2153] = 2153, + [2154] = 1973, + [2155] = 2012, + [2156] = 2156, + [2157] = 2157, + [2158] = 2158, + [2159] = 2159, + [2160] = 2028, + [2161] = 1986, + [2162] = 1972, + [2163] = 2014, + [2164] = 2164, + [2165] = 2025, + [2166] = 1970, + [2167] = 1968, + [2168] = 1986, + [2169] = 2169, + [2170] = 1987, + [2171] = 2171, + [2172] = 2025, + [2173] = 2140, + [2174] = 2041, + [2175] = 1413, + [2176] = 1996, + [2177] = 2177, + [2178] = 1999, + [2179] = 1965, + [2180] = 2180, + [2181] = 2008, + [2182] = 1991, + [2183] = 1961, + [2184] = 2041, + [2185] = 1998, + [2186] = 2001, + [2187] = 2164, + [2188] = 1998, + [2189] = 2001, + [2190] = 2164, + [2191] = 2024, + [2192] = 2059, + [2193] = 2061, + [2194] = 2140, + [2195] = 2059, + [2196] = 1996, + [2197] = 2024, + [2198] = 1999, + [2199] = 2024, + [2200] = 2200, + [2201] = 2008, + [2202] = 1984, + [2203] = 2028, + [2204] = 2025, + [2205] = 2028, + [2206] = 2026, + [2207] = 2164, + [2208] = 1991, + [2209] = 2209, + [2210] = 1991, + [2211] = 1957, + [2212] = 2014, + [2213] = 1996, + [2214] = 2214, + [2215] = 1999, + [2216] = 2014, + [2217] = 1975, + [2218] = 2008, + [2219] = 2061, + [2220] = 2220, + [2221] = 2221, + [2222] = 2222, + [2223] = 2223, + [2224] = 2164, + [2225] = 1966, + [2226] = 2012, + [2227] = 1997, + [2228] = 2228, + [2229] = 2228, + [2230] = 1958, + [2231] = 1995, + [2232] = 2140, + [2233] = 1986, + [2234] = 1998, + [2235] = 2228, + [2236] = 2012, + [2237] = 1997, + [2238] = 2140, + [2239] = 1967, + [2240] = 2240, + [2241] = 2025, + [2242] = 2242, + [2243] = 2140, + [2244] = 1980, + [2245] = 1962, + [2246] = 2228, + [2247] = 2228, + [2248] = 2228, }; static inline bool sym_identifier_character_set_1(int32_t c) { @@ -9097,9 +9415,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(199); if (lookahead == '}') ADVANCE(223); if (lookahead == '~') ADVANCE(180); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(110) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(252); END_STATE(); @@ -9140,46 +9456,46 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(98); END_STATE(); case 9: - if (lookahead == '\n') SKIP(49) + if (lookahead == '\n') SKIP(47) END_STATE(); case 10: - if (lookahead == '\n') SKIP(49) + if (lookahead == '\n') SKIP(47) if (lookahead == '\r') SKIP(9) if (lookahead == 'U') ADVANCE(106); if (lookahead == 'u') ADVANCE(98); END_STATE(); case 11: - if (lookahead == '\n') SKIP(50) + if (lookahead == '\n') SKIP(49) END_STATE(); case 12: - if (lookahead == '\n') SKIP(50) + if (lookahead == '\n') SKIP(49) if (lookahead == '\r') SKIP(11) if (lookahead == 'U') ADVANCE(106); if (lookahead == 'u') ADVANCE(98); END_STATE(); case 13: - if (lookahead == '\n') SKIP(48) + if (lookahead == '\n') SKIP(50) END_STATE(); case 14: - if (lookahead == '\n') SKIP(48) + if (lookahead == '\n') SKIP(50) if (lookahead == '\r') SKIP(13) if (lookahead == 'U') ADVANCE(106); if (lookahead == 'u') ADVANCE(98); END_STATE(); case 15: - if (lookahead == '\n') SKIP(53) + if (lookahead == '\n') SKIP(48) END_STATE(); case 16: - if (lookahead == '\n') SKIP(53) + if (lookahead == '\n') SKIP(48) if (lookahead == '\r') SKIP(15) if (lookahead == 'U') ADVANCE(106); if (lookahead == 'u') ADVANCE(98); END_STATE(); case 17: - if (lookahead == '\n') SKIP(47) + if (lookahead == '\n') SKIP(53) END_STATE(); case 18: - if (lookahead == '\n') SKIP(47) + if (lookahead == '\n') SKIP(53) if (lookahead == '\r') SKIP(17) if (lookahead == 'U') ADVANCE(106); if (lookahead == 'u') ADVANCE(98); @@ -9216,8 +9532,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') SKIP(22) if (lookahead == '^') ADVANCE(201); if (lookahead == '|') ADVANCE(200); - if (lookahead == '\t' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(23) END_STATE(); case 24: @@ -9235,7 +9550,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '(') ADVANCE(116); if (lookahead == '/') ADVANCE(136); if (lookahead == '\\') ADVANCE(134); - if (lookahead == '\t' || + if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(64) if (lookahead != 0) ADVANCE(137); END_STATE(); @@ -9244,7 +9559,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') ADVANCE(30); if (lookahead == '/') ADVANCE(136); if (lookahead == '\\') ADVANCE(134); - if (lookahead == '\t' || + if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(64) if (lookahead != 0) ADVANCE(137); END_STATE(); @@ -9254,7 +9569,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '(') ADVANCE(177); if (lookahead == '/') ADVANCE(55); if (lookahead == '\\') SKIP(34) - if (lookahead == '\t' || + if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(54) END_STATE(); case 29: @@ -9262,16 +9577,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '(') ADVANCE(177); if (lookahead == '/') ADVANCE(55); if (lookahead == '\\') SKIP(34) - if (lookahead == '\t' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(54) END_STATE(); case 30: if (lookahead == '\n') ADVANCE(114); if (lookahead == '/') ADVANCE(136); if (lookahead == '\\') ADVANCE(134); - if (lookahead == '\t' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(64) if (lookahead != 0) ADVANCE(137); END_STATE(); @@ -9280,8 +9593,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '"') ADVANCE(275); if (lookahead == '/') ADVANCE(276); if (lookahead == '\\') ADVANCE(32); - if (lookahead == '\t' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(279); if (lookahead != 0) ADVANCE(280); END_STATE(); @@ -9305,8 +9617,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') SKIP(63) if (lookahead == '/') ADVANCE(269); if (lookahead == '\\') ADVANCE(268); - if (lookahead == '\t' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(270); if (lookahead != 0 && lookahead != '\'') ADVANCE(267); @@ -9363,9 +9674,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(199); if (lookahead == '}') ADVANCE(223); if (lookahead == '~') ADVANCE(180); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(40) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(252); END_STATE(); @@ -9403,9 +9712,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(199); if (lookahead == '}') ADVANCE(223); if (lookahead == '~') ADVANCE(180); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(41) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(252); END_STATE(); @@ -9434,9 +9741,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(291); if (lookahead == '{') ADVANCE(222); if (lookahead == '~') ADVANCE(180); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(42) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(252); END_STATE(); @@ -9468,9 +9773,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(222); if (lookahead == '}') ADVANCE(223); if (lookahead == '~') ADVANCE(180); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(43) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(252); END_STATE(); @@ -9496,9 +9799,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(291); if (lookahead == '{') ADVANCE(222); if (lookahead == '~') ADVANCE(180); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(44) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(252); END_STATE(); @@ -9524,9 +9825,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(291); if (lookahead == '{') ADVANCE(222); if (lookahead == '~') ADVANCE(180); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(45) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(252); END_STATE(); @@ -9546,9 +9845,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (sym_identifier_character_set_2(lookahead)) ADVANCE(299); if (lookahead == 'u') ADVANCE(297); if (lookahead == '~') ADVANCE(180); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(46) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(252); END_STATE(); @@ -9574,16 +9871,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'L') ADVANCE(288); if (lookahead == 'U') ADVANCE(290); if (lookahead == '[') ADVANCE(225); - if (lookahead == '\\') ADVANCE(18); + if (lookahead == '\\') ADVANCE(10); if (lookahead == ']') ADVANCE(226); if (lookahead == '^') ADVANCE(202); if (sym_identifier_character_set_1(lookahead)) ADVANCE(299); if (lookahead == 'u') ADVANCE(292); if (lookahead == '|') ADVANCE(199); if (lookahead == '}') ADVANCE(223); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(47) END_STATE(); case 48: @@ -9606,15 +9901,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(208); if (lookahead == '?') ADVANCE(230); if (lookahead == '[') ADVANCE(225); - if (lookahead == '\\') ADVANCE(14); + if (lookahead == '\\') ADVANCE(16); if (lookahead == ']') ADVANCE(72); if (lookahead == '^') ADVANCE(202); if (sym_identifier_character_set_3(lookahead)) ADVANCE(299); if (lookahead == '|') ADVANCE(199); if (lookahead == '}') ADVANCE(223); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(48) END_STATE(); case 49: @@ -9636,15 +9929,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(228); if (lookahead == '>') ADVANCE(209); if (lookahead == '[') ADVANCE(225); - if (lookahead == '\\') ADVANCE(10); + if (lookahead == '\\') ADVANCE(12); if (lookahead == '^') ADVANCE(201); if (sym_identifier_character_set_4(lookahead)) ADVANCE(299); if (lookahead == '{') ADVANCE(222); if (lookahead == '|') ADVANCE(200); if (lookahead == '}') ADVANCE(223); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(49) END_STATE(); case 50: @@ -9667,16 +9958,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(208); if (lookahead == '?') ADVANCE(230); if (lookahead == '[') ADVANCE(225); - if (lookahead == '\\') ADVANCE(12); + if (lookahead == '\\') ADVANCE(14); if (lookahead == ']') ADVANCE(226); if (lookahead == '^') ADVANCE(202); if (sym_identifier_character_set_3(lookahead)) ADVANCE(299); if (lookahead == '{') ADVANCE(222); if (lookahead == '|') ADVANCE(199); if (lookahead == '}') ADVANCE(223); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(50) END_STATE(); case 51: @@ -9688,38 +9977,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(25); if (sym_identifier_character_set_2(lookahead)) ADVANCE(299); if (lookahead == 'u') ADVANCE(292); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(51) END_STATE(); case 52: if (lookahead == '"') ADVANCE(275); if (lookahead == '/') ADVANCE(55); if (lookahead == '\\') ADVANCE(32); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(52) END_STATE(); case 53: if (lookahead == '#') ADVANCE(76); if (lookahead == '/') ADVANCE(55); if (lookahead == '[') ADVANCE(71); - if (lookahead == '\\') ADVANCE(16); + if (lookahead == '\\') ADVANCE(18); if (sym_identifier_character_set_4(lookahead)) ADVANCE(299); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(53) END_STATE(); case 54: if (lookahead == '(') ADVANCE(177); if (lookahead == '/') ADVANCE(55); if (lookahead == '\\') SKIP(34) - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(54) END_STATE(); case 55: @@ -9760,17 +10041,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 63: if (lookahead == '/') ADVANCE(55); if (lookahead == '\\') ADVANCE(32); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(63) END_STATE(); case 64: if (lookahead == '/') ADVANCE(136); if (lookahead == '\\') ADVANCE(134); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(64) if (lookahead != 0) ADVANCE(137); END_STATE(); @@ -10052,9 +10329,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(199); if (lookahead == '}') ADVANCE(223); if (lookahead == '~') ADVANCE(180); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(110) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(252); END_STATE(); @@ -10087,9 +10362,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(222); if (lookahead == '}') ADVANCE(223); if (lookahead == '~') ADVANCE(180); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(111) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(252); END_STATE(); @@ -11180,7 +11453,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_string_literal_token1); if (lookahead == '/') ADVANCE(276); if (lookahead == '\t' || - lookahead == '\r' || + (11 <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(279); if (lookahead != 0 && lookahead != '\n' && @@ -11399,9 +11672,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(22); if (lookahead == 'v') ADVANCE(23); if (lookahead == 'w') ADVANCE(24); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(0) END_STATE(); case 1: @@ -11422,1313 +11693,1530 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'G') ADVANCE(30); if (lookahead == 'N') ADVANCE(31); if (lookahead == '_') ADVANCE(32); - if (lookahead == 'u') ADVANCE(33); + if (lookahead == 'a') ADVANCE(33); + if (lookahead == 'u') ADVANCE(34); END_STATE(); case 6: - if (lookahead == 's') ADVANCE(34); - if (lookahead == 'u') ADVANCE(35); + if (lookahead == 'l') ADVANCE(35); + if (lookahead == 's') ADVANCE(36); + if (lookahead == 'u') ADVANCE(37); END_STATE(); case 7: - if (lookahead == 'o') ADVANCE(36); - if (lookahead == 'r') ADVANCE(37); + if (lookahead == 'o') ADVANCE(38); + if (lookahead == 'r') ADVANCE(39); END_STATE(); case 8: - if (lookahead == 'a') ADVANCE(38); - if (lookahead == 'h') ADVANCE(39); - if (lookahead == 'o') ADVANCE(40); + if (lookahead == 'a') ADVANCE(40); + if (lookahead == 'h') ADVANCE(41); + if (lookahead == 'o') ADVANCE(42); END_STATE(); case 9: - if (lookahead == 'e') ADVANCE(41); - if (lookahead == 'o') ADVANCE(42); + if (lookahead == 'e') ADVANCE(43); + if (lookahead == 'o') ADVANCE(44); END_STATE(); case 10: - if (lookahead == 'l') ADVANCE(43); - if (lookahead == 'n') ADVANCE(44); - if (lookahead == 'x') ADVANCE(45); + if (lookahead == 'l') ADVANCE(45); + if (lookahead == 'n') ADVANCE(46); + if (lookahead == 'x') ADVANCE(47); END_STATE(); case 11: - if (lookahead == 'a') ADVANCE(46); - if (lookahead == 'l') ADVANCE(47); - if (lookahead == 'o') ADVANCE(48); + if (lookahead == 'a') ADVANCE(48); + if (lookahead == 'l') ADVANCE(49); + if (lookahead == 'o') ADVANCE(50); END_STATE(); case 12: - if (lookahead == 'o') ADVANCE(49); + if (lookahead == 'o') ADVANCE(51); END_STATE(); case 13: - if (lookahead == 'f') ADVANCE(50); - if (lookahead == 'n') ADVANCE(51); + if (lookahead == 'f') ADVANCE(52); + if (lookahead == 'n') ADVANCE(53); END_STATE(); case 14: - if (lookahead == 'o') ADVANCE(52); + if (lookahead == 'o') ADVANCE(54); END_STATE(); case 15: - if (lookahead == 'a') ADVANCE(53); + if (lookahead == 'a') ADVANCE(55); END_STATE(); case 16: - if (lookahead == 'o') ADVANCE(54); - if (lookahead == 'u') ADVANCE(55); + if (lookahead == 'o') ADVANCE(56); + if (lookahead == 'u') ADVANCE(57); END_STATE(); case 17: - if (lookahead == 'f') ADVANCE(56); + if (lookahead == 'f') ADVANCE(58); END_STATE(); case 18: - if (lookahead == 't') ADVANCE(57); + if (lookahead == 't') ADVANCE(59); END_STATE(); case 19: - if (lookahead == 'e') ADVANCE(58); + if (lookahead == 'e') ADVANCE(60); END_STATE(); case 20: - if (lookahead == 'h') ADVANCE(59); - if (lookahead == 'i') ADVANCE(60); - if (lookahead == 's') ADVANCE(61); - if (lookahead == 't') ADVANCE(62); - if (lookahead == 'w') ADVANCE(63); + if (lookahead == 'h') ADVANCE(61); + if (lookahead == 'i') ADVANCE(62); + if (lookahead == 's') ADVANCE(63); + if (lookahead == 't') ADVANCE(64); + if (lookahead == 'w') ADVANCE(65); END_STATE(); case 21: - if (lookahead == 'h') ADVANCE(64); - if (lookahead == 'r') ADVANCE(65); - if (lookahead == 'y') ADVANCE(66); + if (lookahead == 'h') ADVANCE(66); + if (lookahead == 'r') ADVANCE(67); + if (lookahead == 'y') ADVANCE(68); END_STATE(); case 22: - if (lookahead == 'i') ADVANCE(67); - if (lookahead == 'n') ADVANCE(68); + if (lookahead == 'i') ADVANCE(69); + if (lookahead == 'n') ADVANCE(70); END_STATE(); case 23: - if (lookahead == 'o') ADVANCE(69); + if (lookahead == 'o') ADVANCE(71); END_STATE(); case 24: - if (lookahead == 'h') ADVANCE(70); + if (lookahead == 'h') ADVANCE(72); END_STATE(); case 25: - if (lookahead == 'L') ADVANCE(71); + if (lookahead == 'L') ADVANCE(73); END_STATE(); case 26: - if (lookahead == 'L') ADVANCE(72); + if (lookahead == 'L') ADVANCE(74); END_STATE(); case 27: - if (lookahead == 'U') ADVANCE(73); + if (lookahead == 'U') ADVANCE(75); END_STATE(); case 28: if (lookahead == '\n') SKIP(0) END_STATE(); case 29: - if (lookahead == 't') ADVANCE(74); + if (lookahead == 'l') ADVANCE(76); + if (lookahead == 't') ADVANCE(77); END_STATE(); case 30: - if (lookahead == 'e') ADVANCE(75); + if (lookahead == 'e') ADVANCE(78); END_STATE(); case 31: - if (lookahead == 'o') ADVANCE(76); + if (lookahead == 'o') ADVANCE(79); END_STATE(); case 32: - if (lookahead == 'a') ADVANCE(77); - if (lookahead == 'b') ADVANCE(78); - if (lookahead == 'c') ADVANCE(79); - if (lookahead == 'd') ADVANCE(80); - if (lookahead == 'f') ADVANCE(81); - if (lookahead == 'r') ADVANCE(82); - if (lookahead == 's') ADVANCE(83); - if (lookahead == 't') ADVANCE(84); - if (lookahead == 'u') ADVANCE(85); - if (lookahead == 'v') ADVANCE(86); + if (lookahead == 'a') ADVANCE(80); + if (lookahead == 'b') ADVANCE(81); + if (lookahead == 'c') ADVANCE(82); + if (lookahead == 'd') ADVANCE(83); + if (lookahead == 'e') ADVANCE(84); + if (lookahead == 'f') ADVANCE(85); + if (lookahead == 'i') ADVANCE(86); + if (lookahead == 'r') ADVANCE(87); + if (lookahead == 's') ADVANCE(88); + if (lookahead == 't') ADVANCE(89); + if (lookahead == 'u') ADVANCE(90); + if (lookahead == 'v') ADVANCE(91); END_STATE(); case 33: - if (lookahead == 'n') ADVANCE(87); + if (lookahead == 'l') ADVANCE(92); END_STATE(); case 34: - if (lookahead == 'm') ADVANCE(88); + if (lookahead == 'n') ADVANCE(93); END_STATE(); case 35: - if (lookahead == 't') ADVANCE(89); + if (lookahead == 'i') ADVANCE(94); END_STATE(); case 36: - if (lookahead == 'o') ADVANCE(90); + if (lookahead == 'm') ADVANCE(95); END_STATE(); case 37: - if (lookahead == 'e') ADVANCE(91); + if (lookahead == 't') ADVANCE(96); END_STATE(); case 38: - if (lookahead == 's') ADVANCE(92); + if (lookahead == 'o') ADVANCE(97); END_STATE(); case 39: - if (lookahead == 'a') ADVANCE(93); + if (lookahead == 'e') ADVANCE(98); END_STATE(); case 40: - if (lookahead == 'n') ADVANCE(94); + if (lookahead == 's') ADVANCE(99); END_STATE(); case 41: - if (lookahead == 'f') ADVANCE(95); + if (lookahead == 'a') ADVANCE(100); END_STATE(); case 42: - ACCEPT_TOKEN(anon_sym_do); - if (lookahead == 'u') ADVANCE(96); + if (lookahead == 'n') ADVANCE(101); END_STATE(); case 43: - if (lookahead == 's') ADVANCE(97); + if (lookahead == 'f') ADVANCE(102); END_STATE(); case 44: - if (lookahead == 'u') ADVANCE(98); + ACCEPT_TOKEN(anon_sym_do); + if (lookahead == 'u') ADVANCE(103); END_STATE(); case 45: - if (lookahead == 't') ADVANCE(99); + if (lookahead == 's') ADVANCE(104); END_STATE(); case 46: - if (lookahead == 'l') ADVANCE(100); + if (lookahead == 'u') ADVANCE(105); END_STATE(); case 47: - if (lookahead == 'o') ADVANCE(101); + if (lookahead == 't') ADVANCE(106); END_STATE(); case 48: - if (lookahead == 'r') ADVANCE(102); + if (lookahead == 'l') ADVANCE(107); END_STATE(); case 49: - if (lookahead == 't') ADVANCE(103); + if (lookahead == 'o') ADVANCE(108); END_STATE(); case 50: - ACCEPT_TOKEN(anon_sym_if); + if (lookahead == 'r') ADVANCE(109); END_STATE(); case 51: - if (lookahead == 'l') ADVANCE(104); - if (lookahead == 't') ADVANCE(105); + if (lookahead == 't') ADVANCE(110); END_STATE(); case 52: - if (lookahead == 'n') ADVANCE(106); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 53: - if (lookahead == 'x') ADVANCE(107); + if (lookahead == 'l') ADVANCE(111); + if (lookahead == 't') ADVANCE(112); END_STATE(); case 54: - if (lookahead == 'r') ADVANCE(108); + if (lookahead == 'n') ADVANCE(113); END_STATE(); case 55: - if (lookahead == 'l') ADVANCE(109); + if (lookahead == 'x') ADVANCE(114); END_STATE(); case 56: - if (lookahead == 'f') ADVANCE(110); + if (lookahead == 'r') ADVANCE(115); END_STATE(); case 57: - if (lookahead == 'r') ADVANCE(111); + if (lookahead == 'l') ADVANCE(116); END_STATE(); case 58: - if (lookahead == 'g') ADVANCE(112); - if (lookahead == 's') ADVANCE(113); - if (lookahead == 't') ADVANCE(114); + if (lookahead == 'f') ADVANCE(117); END_STATE(); case 59: - if (lookahead == 'o') ADVANCE(115); + if (lookahead == 'r') ADVANCE(118); END_STATE(); case 60: - if (lookahead == 'g') ADVANCE(116); - if (lookahead == 'z') ADVANCE(117); + if (lookahead == 'g') ADVANCE(119); + if (lookahead == 's') ADVANCE(120); + if (lookahead == 't') ADVANCE(121); END_STATE(); case 61: - if (lookahead == 'i') ADVANCE(118); + if (lookahead == 'o') ADVANCE(122); END_STATE(); case 62: - if (lookahead == 'a') ADVANCE(119); - if (lookahead == 'r') ADVANCE(120); + if (lookahead == 'g') ADVANCE(123); + if (lookahead == 'z') ADVANCE(124); END_STATE(); case 63: - if (lookahead == 'i') ADVANCE(121); + if (lookahead == 'i') ADVANCE(125); END_STATE(); case 64: - if (lookahead == 'r') ADVANCE(122); + if (lookahead == 'a') ADVANCE(126); + if (lookahead == 'r') ADVANCE(127); END_STATE(); case 65: - if (lookahead == 'u') ADVANCE(123); + if (lookahead == 'i') ADVANCE(128); END_STATE(); case 66: - if (lookahead == 'p') ADVANCE(124); + if (lookahead == 'r') ADVANCE(129); END_STATE(); case 67: - if (lookahead == 'n') ADVANCE(125); + if (lookahead == 'u') ADVANCE(130); END_STATE(); case 68: - if (lookahead == 'i') ADVANCE(126); - if (lookahead == 's') ADVANCE(127); + if (lookahead == 'p') ADVANCE(131); END_STATE(); case 69: - if (lookahead == 'i') ADVANCE(128); - if (lookahead == 'l') ADVANCE(129); + if (lookahead == 'n') ADVANCE(132); END_STATE(); case 70: - if (lookahead == 'i') ADVANCE(130); + if (lookahead == 'i') ADVANCE(133); + if (lookahead == 's') ADVANCE(134); END_STATE(); case 71: - if (lookahead == 'S') ADVANCE(131); + if (lookahead == 'i') ADVANCE(135); + if (lookahead == 'l') ADVANCE(136); END_STATE(); case 72: - if (lookahead == 'L') ADVANCE(132); + if (lookahead == 'i') ADVANCE(137); END_STATE(); case 73: - if (lookahead == 'E') ADVANCE(133); + if (lookahead == 'S') ADVANCE(138); END_STATE(); case 74: - if (lookahead == 'o') ADVANCE(134); + if (lookahead == 'L') ADVANCE(139); END_STATE(); case 75: - if (lookahead == 'n') ADVANCE(135); + if (lookahead == 'E') ADVANCE(140); END_STATE(); case 76: - if (lookahead == 'r') ADVANCE(136); + if (lookahead == 'i') ADVANCE(141); END_STATE(); case 77: - if (lookahead == 's') ADVANCE(137); - if (lookahead == 't') ADVANCE(138); + if (lookahead == 'o') ADVANCE(142); END_STATE(); case 78: - if (lookahead == 'a') ADVANCE(139); + if (lookahead == 'n') ADVANCE(143); END_STATE(); case 79: - if (lookahead == 'd') ADVANCE(140); - if (lookahead == 'l') ADVANCE(141); + if (lookahead == 'r') ADVANCE(144); END_STATE(); case 80: - if (lookahead == 'e') ADVANCE(142); + if (lookahead == 'l') ADVANCE(145); + if (lookahead == 's') ADVANCE(146); + if (lookahead == 't') ADVANCE(147); END_STATE(); case 81: - if (lookahead == 'a') ADVANCE(143); + if (lookahead == 'a') ADVANCE(148); + if (lookahead == 'u') ADVANCE(149); END_STATE(); case 82: - if (lookahead == 'e') ADVANCE(144); + if (lookahead == 'd') ADVANCE(150); + if (lookahead == 'l') ADVANCE(151); END_STATE(); case 83: - if (lookahead == 'p') ADVANCE(145); - if (lookahead == 't') ADVANCE(146); + if (lookahead == 'e') ADVANCE(152); END_STATE(); case 84: - if (lookahead == 'h') ADVANCE(147); + if (lookahead == 'x') ADVANCE(153); END_STATE(); case 85: - if (lookahead == 'n') ADVANCE(148); - if (lookahead == 'p') ADVANCE(149); + if (lookahead == 'a') ADVANCE(154); + if (lookahead == 'o') ADVANCE(155); END_STATE(); case 86: - if (lookahead == 'e') ADVANCE(150); + if (lookahead == 'n') ADVANCE(156); END_STATE(); case 87: - if (lookahead == 'a') ADVANCE(151); + if (lookahead == 'e') ADVANCE(157); END_STATE(); case 88: - ACCEPT_TOKEN(anon_sym_asm); + if (lookahead == 'p') ADVANCE(158); + if (lookahead == 't') ADVANCE(159); END_STATE(); case 89: - if (lookahead == 'o') ADVANCE(152); + if (lookahead == 'h') ADVANCE(160); END_STATE(); case 90: - if (lookahead == 'l') ADVANCE(153); + if (lookahead == 'n') ADVANCE(161); + if (lookahead == 'p') ADVANCE(162); END_STATE(); case 91: - if (lookahead == 'a') ADVANCE(154); + if (lookahead == 'e') ADVANCE(163); END_STATE(); case 92: - if (lookahead == 'e') ADVANCE(155); + if (lookahead == 'i') ADVANCE(164); END_STATE(); case 93: - if (lookahead == 'r') ADVANCE(156); + if (lookahead == 'a') ADVANCE(165); END_STATE(); case 94: - if (lookahead == 's') ADVANCE(157); - if (lookahead == 't') ADVANCE(158); + if (lookahead == 'g') ADVANCE(166); END_STATE(); case 95: - if (lookahead == 'a') ADVANCE(159); - if (lookahead == 'i') ADVANCE(160); + ACCEPT_TOKEN(anon_sym_asm); END_STATE(); case 96: - if (lookahead == 'b') ADVANCE(161); + if (lookahead == 'o') ADVANCE(167); END_STATE(); case 97: - if (lookahead == 'e') ADVANCE(162); + if (lookahead == 'l') ADVANCE(168); END_STATE(); case 98: - if (lookahead == 'm') ADVANCE(163); + if (lookahead == 'a') ADVANCE(169); END_STATE(); case 99: - if (lookahead == 'e') ADVANCE(164); + if (lookahead == 'e') ADVANCE(170); END_STATE(); case 100: - if (lookahead == 's') ADVANCE(165); + if (lookahead == 'r') ADVANCE(171); END_STATE(); case 101: - if (lookahead == 'a') ADVANCE(166); + if (lookahead == 's') ADVANCE(172); + if (lookahead == 't') ADVANCE(173); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 'a') ADVANCE(174); + if (lookahead == 'i') ADVANCE(175); END_STATE(); case 103: - if (lookahead == 'o') ADVANCE(167); + if (lookahead == 'b') ADVANCE(176); END_STATE(); case 104: - if (lookahead == 'i') ADVANCE(168); + if (lookahead == 'e') ADVANCE(177); END_STATE(); case 105: - ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '1') ADVANCE(169); - if (lookahead == '3') ADVANCE(170); - if (lookahead == '6') ADVANCE(171); - if (lookahead == '8') ADVANCE(172); - if (lookahead == 'p') ADVANCE(173); + if (lookahead == 'm') ADVANCE(178); END_STATE(); case 106: - if (lookahead == 'g') ADVANCE(174); + if (lookahead == 'e') ADVANCE(179); END_STATE(); case 107: - if (lookahead == '_') ADVANCE(175); + if (lookahead == 's') ADVANCE(180); END_STATE(); case 108: - if (lookahead == 'e') ADVANCE(176); + if (lookahead == 'a') ADVANCE(181); END_STATE(); case 109: - if (lookahead == 'l') ADVANCE(177); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 110: - if (lookahead == 's') ADVANCE(178); + if (lookahead == 'o') ADVANCE(182); END_STATE(); case 111: - if (lookahead == 'd') ADVANCE(179); + if (lookahead == 'i') ADVANCE(183); END_STATE(); case 112: - if (lookahead == 'i') ADVANCE(180); + ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == '1') ADVANCE(184); + if (lookahead == '3') ADVANCE(185); + if (lookahead == '6') ADVANCE(186); + if (lookahead == '8') ADVANCE(187); + if (lookahead == 'p') ADVANCE(188); END_STATE(); case 113: - if (lookahead == 't') ADVANCE(181); + if (lookahead == 'g') ADVANCE(189); END_STATE(); case 114: - if (lookahead == 'u') ADVANCE(182); + if (lookahead == '_') ADVANCE(190); END_STATE(); case 115: - if (lookahead == 'r') ADVANCE(183); + if (lookahead == 'e') ADVANCE(191); END_STATE(); case 116: - if (lookahead == 'n') ADVANCE(184); + if (lookahead == 'l') ADVANCE(192); END_STATE(); case 117: - if (lookahead == 'e') ADVANCE(185); + if (lookahead == 's') ADVANCE(193); END_STATE(); case 118: - if (lookahead == 'z') ADVANCE(186); + if (lookahead == 'd') ADVANCE(194); END_STATE(); case 119: - if (lookahead == 't') ADVANCE(187); + if (lookahead == 'i') ADVANCE(195); END_STATE(); case 120: - if (lookahead == 'u') ADVANCE(188); + if (lookahead == 't') ADVANCE(196); END_STATE(); case 121: - if (lookahead == 't') ADVANCE(189); + if (lookahead == 'u') ADVANCE(197); END_STATE(); case 122: - if (lookahead == 'e') ADVANCE(190); + if (lookahead == 'r') ADVANCE(198); END_STATE(); case 123: - if (lookahead == 'e') ADVANCE(133); + if (lookahead == 'n') ADVANCE(199); END_STATE(); case 124: - if (lookahead == 'e') ADVANCE(191); + if (lookahead == 'e') ADVANCE(200); END_STATE(); case 125: - if (lookahead == 't') ADVANCE(192); + if (lookahead == 'z') ADVANCE(201); END_STATE(); case 126: - if (lookahead == 'o') ADVANCE(193); + if (lookahead == 't') ADVANCE(202); END_STATE(); case 127: - if (lookahead == 'i') ADVANCE(194); + if (lookahead == 'u') ADVANCE(203); END_STATE(); case 128: - if (lookahead == 'd') ADVANCE(153); + if (lookahead == 't') ADVANCE(204); END_STATE(); case 129: - if (lookahead == 'a') ADVANCE(195); + if (lookahead == 'e') ADVANCE(205); END_STATE(); case 130: - if (lookahead == 'l') ADVANCE(196); + if (lookahead == 'e') ADVANCE(140); END_STATE(); case 131: - if (lookahead == 'E') ADVANCE(197); + if (lookahead == 'e') ADVANCE(206); END_STATE(); case 132: - ACCEPT_TOKEN(anon_sym_NULL); + if (lookahead == 't') ADVANCE(207); END_STATE(); case 133: - ACCEPT_TOKEN(sym_true); + if (lookahead == 'o') ADVANCE(208); END_STATE(); case 134: - if (lookahead == 'm') ADVANCE(198); + if (lookahead == 'i') ADVANCE(209); END_STATE(); case 135: - if (lookahead == 'e') ADVANCE(199); + if (lookahead == 'd') ADVANCE(168); END_STATE(); case 136: - if (lookahead == 'e') ADVANCE(200); + if (lookahead == 'a') ADVANCE(210); END_STATE(); case 137: - if (lookahead == 'm') ADVANCE(201); + if (lookahead == 'l') ADVANCE(211); END_STATE(); case 138: - if (lookahead == 't') ADVANCE(202); + if (lookahead == 'E') ADVANCE(212); END_STATE(); case 139: - if (lookahead == 's') ADVANCE(203); + ACCEPT_TOKEN(anon_sym_NULL); END_STATE(); case 140: - if (lookahead == 'e') ADVANCE(204); + ACCEPT_TOKEN(sym_true); END_STATE(); case 141: - if (lookahead == 'r') ADVANCE(205); + if (lookahead == 'g') ADVANCE(213); END_STATE(); case 142: - if (lookahead == 'c') ADVANCE(206); + if (lookahead == 'm') ADVANCE(214); END_STATE(); case 143: - if (lookahead == 's') ADVANCE(207); + if (lookahead == 'e') ADVANCE(215); END_STATE(); case 144: - if (lookahead == 's') ADVANCE(208); + if (lookahead == 'e') ADVANCE(216); END_STATE(); case 145: - if (lookahead == 't') ADVANCE(209); + if (lookahead == 'i') ADVANCE(217); END_STATE(); case 146: - if (lookahead == 'd') ADVANCE(210); + if (lookahead == 'm') ADVANCE(218); END_STATE(); case 147: - if (lookahead == 'i') ADVANCE(211); - if (lookahead == 'r') ADVANCE(212); + if (lookahead == 't') ADVANCE(219); END_STATE(); case 148: - if (lookahead == 'a') ADVANCE(213); + if (lookahead == 's') ADVANCE(220); END_STATE(); case 149: - if (lookahead == 't') ADVANCE(214); + if (lookahead == 'i') ADVANCE(221); END_STATE(); case 150: - if (lookahead == 'c') ADVANCE(215); + if (lookahead == 'e') ADVANCE(222); END_STATE(); case 151: - if (lookahead == 'l') ADVANCE(216); + if (lookahead == 'r') ADVANCE(223); END_STATE(); case 152: - ACCEPT_TOKEN(anon_sym_auto); + if (lookahead == 'c') ADVANCE(224); END_STATE(); case 153: - ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == 't') ADVANCE(225); END_STATE(); case 154: - if (lookahead == 'k') ADVANCE(217); + if (lookahead == 's') ADVANCE(226); END_STATE(); case 155: - ACCEPT_TOKEN(anon_sym_case); + if (lookahead == 'r') ADVANCE(227); END_STATE(); case 156: - ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '1') ADVANCE(218); - if (lookahead == '3') ADVANCE(219); - if (lookahead == '6') ADVANCE(220); - if (lookahead == '8') ADVANCE(221); - if (lookahead == 'p') ADVANCE(222); + if (lookahead == 'l') ADVANCE(228); END_STATE(); case 157: - if (lookahead == 't') ADVANCE(223); + if (lookahead == 's') ADVANCE(229); END_STATE(); case 158: - if (lookahead == 'i') ADVANCE(224); + if (lookahead == 't') ADVANCE(230); END_STATE(); case 159: - if (lookahead == 'u') ADVANCE(225); + if (lookahead == 'd') ADVANCE(231); END_STATE(); case 160: - if (lookahead == 'n') ADVANCE(226); + if (lookahead == 'i') ADVANCE(232); + if (lookahead == 'r') ADVANCE(233); END_STATE(); case 161: - if (lookahead == 'l') ADVANCE(227); + if (lookahead == 'a') ADVANCE(234); END_STATE(); case 162: - ACCEPT_TOKEN(anon_sym_else); + if (lookahead == 't') ADVANCE(235); END_STATE(); case 163: - ACCEPT_TOKEN(anon_sym_enum); + if (lookahead == 'c') ADVANCE(236); END_STATE(); case 164: - if (lookahead == 'r') ADVANCE(228); + if (lookahead == 'g') ADVANCE(237); END_STATE(); case 165: - if (lookahead == 'e') ADVANCE(197); + if (lookahead == 'l') ADVANCE(238); END_STATE(); case 166: - if (lookahead == 't') ADVANCE(153); + if (lookahead == 'n') ADVANCE(239); END_STATE(); case 167: - ACCEPT_TOKEN(anon_sym_goto); + ACCEPT_TOKEN(anon_sym_auto); END_STATE(); case 168: - if (lookahead == 'n') ADVANCE(229); + ACCEPT_TOKEN(sym_primitive_type); END_STATE(); case 169: - if (lookahead == '6') ADVANCE(230); + if (lookahead == 'k') ADVANCE(240); END_STATE(); case 170: - if (lookahead == '2') ADVANCE(231); + ACCEPT_TOKEN(anon_sym_case); END_STATE(); case 171: - if (lookahead == '4') ADVANCE(232); + ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == '1') ADVANCE(241); + if (lookahead == '3') ADVANCE(242); + if (lookahead == '6') ADVANCE(243); + if (lookahead == '8') ADVANCE(244); + if (lookahead == 'p') ADVANCE(245); END_STATE(); case 172: - if (lookahead == '_') ADVANCE(233); + if (lookahead == 't') ADVANCE(246); END_STATE(); case 173: - if (lookahead == 't') ADVANCE(234); + if (lookahead == 'i') ADVANCE(247); END_STATE(); case 174: - ACCEPT_TOKEN(anon_sym_long); + if (lookahead == 'u') ADVANCE(248); END_STATE(); case 175: - if (lookahead == 'a') ADVANCE(235); + if (lookahead == 'n') ADVANCE(249); END_STATE(); case 176: - if (lookahead == 't') ADVANCE(236); + if (lookahead == 'l') ADVANCE(250); END_STATE(); case 177: - if (lookahead == 'p') ADVANCE(237); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 178: - if (lookahead == 'e') ADVANCE(238); + ACCEPT_TOKEN(anon_sym_enum); END_STATE(); case 179: - if (lookahead == 'i') ADVANCE(239); + if (lookahead == 'r') ADVANCE(251); END_STATE(); case 180: - if (lookahead == 's') ADVANCE(240); + if (lookahead == 'e') ADVANCE(212); END_STATE(); case 181: - if (lookahead == 'r') ADVANCE(241); + if (lookahead == 't') ADVANCE(168); END_STATE(); case 182: - if (lookahead == 'r') ADVANCE(242); + ACCEPT_TOKEN(anon_sym_goto); END_STATE(); case 183: - if (lookahead == 't') ADVANCE(243); + if (lookahead == 'n') ADVANCE(252); END_STATE(); case 184: - if (lookahead == 'e') ADVANCE(244); + if (lookahead == '6') ADVANCE(253); END_STATE(); case 185: - if (lookahead == '_') ADVANCE(245); - if (lookahead == 'o') ADVANCE(246); + if (lookahead == '2') ADVANCE(254); END_STATE(); case 186: - if (lookahead == 'e') ADVANCE(247); + if (lookahead == '4') ADVANCE(255); END_STATE(); case 187: - if (lookahead == 'i') ADVANCE(248); + if (lookahead == '_') ADVANCE(256); END_STATE(); case 188: - if (lookahead == 'c') ADVANCE(249); + if (lookahead == 't') ADVANCE(257); END_STATE(); case 189: - if (lookahead == 'c') ADVANCE(250); + ACCEPT_TOKEN(anon_sym_long); END_STATE(); case 190: - if (lookahead == 'a') ADVANCE(251); + if (lookahead == 'a') ADVANCE(258); END_STATE(); case 191: - if (lookahead == 'd') ADVANCE(252); + if (lookahead == 't') ADVANCE(259); END_STATE(); case 192: - if (lookahead == '1') ADVANCE(253); - if (lookahead == '3') ADVANCE(254); - if (lookahead == '6') ADVANCE(255); - if (lookahead == '8') ADVANCE(256); - if (lookahead == 'p') ADVANCE(257); + if (lookahead == 'p') ADVANCE(260); END_STATE(); case 193: - if (lookahead == 'n') ADVANCE(258); + if (lookahead == 'e') ADVANCE(261); END_STATE(); case 194: - if (lookahead == 'g') ADVANCE(259); + if (lookahead == 'i') ADVANCE(262); END_STATE(); case 195: - if (lookahead == 't') ADVANCE(260); + if (lookahead == 's') ADVANCE(263); END_STATE(); case 196: - if (lookahead == 'e') ADVANCE(261); + if (lookahead == 'r') ADVANCE(264); END_STATE(); case 197: - ACCEPT_TOKEN(sym_false); + if (lookahead == 'r') ADVANCE(265); END_STATE(); case 198: - if (lookahead == 'i') ADVANCE(262); + if (lookahead == 't') ADVANCE(266); END_STATE(); case 199: - if (lookahead == 'r') ADVANCE(263); + if (lookahead == 'e') ADVANCE(267); END_STATE(); case 200: - if (lookahead == 't') ADVANCE(264); + if (lookahead == '_') ADVANCE(268); + if (lookahead == 'o') ADVANCE(269); END_STATE(); case 201: - if (lookahead == '_') ADVANCE(265); + if (lookahead == 'e') ADVANCE(270); END_STATE(); case 202: - if (lookahead == 'r') ADVANCE(266); + if (lookahead == 'i') ADVANCE(271); END_STATE(); case 203: - if (lookahead == 'e') ADVANCE(267); + if (lookahead == 'c') ADVANCE(272); END_STATE(); case 204: - if (lookahead == 'c') ADVANCE(268); + if (lookahead == 'c') ADVANCE(273); END_STATE(); case 205: - if (lookahead == 'c') ADVANCE(269); + if (lookahead == 'a') ADVANCE(274); END_STATE(); case 206: - if (lookahead == 'l') ADVANCE(270); + if (lookahead == 'd') ADVANCE(275); END_STATE(); case 207: - if (lookahead == 't') ADVANCE(271); + if (lookahead == '1') ADVANCE(276); + if (lookahead == '3') ADVANCE(277); + if (lookahead == '6') ADVANCE(278); + if (lookahead == '8') ADVANCE(279); + if (lookahead == 'p') ADVANCE(280); END_STATE(); case 208: - if (lookahead == 't') ADVANCE(272); + if (lookahead == 'n') ADVANCE(281); END_STATE(); case 209: - if (lookahead == 'r') ADVANCE(273); + if (lookahead == 'g') ADVANCE(282); END_STATE(); case 210: - if (lookahead == 'c') ADVANCE(274); + if (lookahead == 't') ADVANCE(283); END_STATE(); case 211: - if (lookahead == 's') ADVANCE(275); + if (lookahead == 'e') ADVANCE(284); END_STATE(); case 212: - if (lookahead == 'e') ADVANCE(276); + ACCEPT_TOKEN(sym_false); END_STATE(); case 213: - if (lookahead == 'l') ADVANCE(277); + if (lookahead == 'n') ADVANCE(285); END_STATE(); case 214: - if (lookahead == 'r') ADVANCE(278); + if (lookahead == 'i') ADVANCE(286); END_STATE(); case 215: - if (lookahead == 't') ADVANCE(279); + if (lookahead == 'r') ADVANCE(287); END_STATE(); case 216: - if (lookahead == 'i') ADVANCE(280); + if (lookahead == 't') ADVANCE(288); END_STATE(); case 217: - ACCEPT_TOKEN(anon_sym_break); + if (lookahead == 'g') ADVANCE(289); END_STATE(); case 218: - if (lookahead == '6') ADVANCE(281); + if (lookahead == '_') ADVANCE(290); END_STATE(); case 219: - if (lookahead == '2') ADVANCE(282); + if (lookahead == 'r') ADVANCE(291); END_STATE(); case 220: - if (lookahead == '4') ADVANCE(283); + if (lookahead == 'e') ADVANCE(292); END_STATE(); case 221: - if (lookahead == '_') ADVANCE(284); + if (lookahead == 'l') ADVANCE(293); END_STATE(); case 222: - if (lookahead == 't') ADVANCE(285); + if (lookahead == 'c') ADVANCE(294); END_STATE(); case 223: - ACCEPT_TOKEN(anon_sym_const); - if (lookahead == 'e') ADVANCE(286); + if (lookahead == 'c') ADVANCE(295); END_STATE(); case 224: - if (lookahead == 'n') ADVANCE(287); + if (lookahead == 'l') ADVANCE(296); END_STATE(); case 225: - if (lookahead == 'l') ADVANCE(288); + if (lookahead == 'e') ADVANCE(297); END_STATE(); case 226: - if (lookahead == 'e') ADVANCE(289); + if (lookahead == 't') ADVANCE(298); END_STATE(); case 227: - if (lookahead == 'e') ADVANCE(153); + if (lookahead == 'c') ADVANCE(299); END_STATE(); case 228: - if (lookahead == 'n') ADVANCE(290); + if (lookahead == 'i') ADVANCE(300); END_STATE(); case 229: - if (lookahead == 'e') ADVANCE(291); + if (lookahead == 't') ADVANCE(301); END_STATE(); case 230: - if (lookahead == '_') ADVANCE(292); + if (lookahead == 'r') ADVANCE(302); END_STATE(); case 231: - if (lookahead == '_') ADVANCE(293); + if (lookahead == 'c') ADVANCE(303); END_STATE(); case 232: - if (lookahead == '_') ADVANCE(294); + if (lookahead == 's') ADVANCE(304); END_STATE(); case 233: - if (lookahead == 't') ADVANCE(153); + if (lookahead == 'e') ADVANCE(305); END_STATE(); case 234: - if (lookahead == 'r') ADVANCE(295); + if (lookahead == 'l') ADVANCE(306); END_STATE(); case 235: - if (lookahead == 'l') ADVANCE(296); + if (lookahead == 'r') ADVANCE(307); END_STATE(); case 236: - if (lookahead == 'u') ADVANCE(297); + if (lookahead == 't') ADVANCE(308); END_STATE(); case 237: - if (lookahead == 't') ADVANCE(298); + if (lookahead == 'n') ADVANCE(309); END_STATE(); case 238: - if (lookahead == 't') ADVANCE(299); + if (lookahead == 'i') ADVANCE(310); END_STATE(); case 239: - if (lookahead == 'f') ADVANCE(300); + if (lookahead == 'o') ADVANCE(311); END_STATE(); case 240: - if (lookahead == 't') ADVANCE(301); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 241: - if (lookahead == 'i') ADVANCE(302); + if (lookahead == '6') ADVANCE(312); END_STATE(); case 242: - if (lookahead == 'n') ADVANCE(303); + if (lookahead == '2') ADVANCE(313); END_STATE(); case 243: - ACCEPT_TOKEN(anon_sym_short); + if (lookahead == '4') ADVANCE(314); END_STATE(); case 244: - if (lookahead == 'd') ADVANCE(304); + if (lookahead == '_') ADVANCE(315); END_STATE(); case 245: - if (lookahead == 't') ADVANCE(153); + if (lookahead == 't') ADVANCE(316); END_STATE(); case 246: - if (lookahead == 'f') ADVANCE(305); + ACCEPT_TOKEN(anon_sym_const); + if (lookahead == 'e') ADVANCE(317); END_STATE(); case 247: - if (lookahead == '_') ADVANCE(306); + if (lookahead == 'n') ADVANCE(318); END_STATE(); case 248: - if (lookahead == 'c') ADVANCE(307); + if (lookahead == 'l') ADVANCE(319); END_STATE(); case 249: - if (lookahead == 't') ADVANCE(308); + if (lookahead == 'e') ADVANCE(320); END_STATE(); case 250: - if (lookahead == 'h') ADVANCE(309); + if (lookahead == 'e') ADVANCE(168); END_STATE(); case 251: - if (lookahead == 'd') ADVANCE(310); + if (lookahead == 'n') ADVANCE(321); END_STATE(); case 252: - if (lookahead == 'e') ADVANCE(311); + if (lookahead == 'e') ADVANCE(322); END_STATE(); case 253: - if (lookahead == '6') ADVANCE(312); + if (lookahead == '_') ADVANCE(323); END_STATE(); case 254: - if (lookahead == '2') ADVANCE(313); + if (lookahead == '_') ADVANCE(324); END_STATE(); case 255: - if (lookahead == '4') ADVANCE(314); + if (lookahead == '_') ADVANCE(325); END_STATE(); case 256: - if (lookahead == '_') ADVANCE(315); + if (lookahead == 't') ADVANCE(168); END_STATE(); case 257: - if (lookahead == 't') ADVANCE(316); + if (lookahead == 'r') ADVANCE(326); END_STATE(); case 258: - ACCEPT_TOKEN(anon_sym_union); + if (lookahead == 'l') ADVANCE(327); END_STATE(); case 259: - if (lookahead == 'n') ADVANCE(317); + if (lookahead == 'u') ADVANCE(328); END_STATE(); case 260: - if (lookahead == 'i') ADVANCE(318); + if (lookahead == 't') ADVANCE(329); END_STATE(); case 261: - ACCEPT_TOKEN(anon_sym_while); + if (lookahead == 't') ADVANCE(330); END_STATE(); case 262: - if (lookahead == 'c') ADVANCE(319); + if (lookahead == 'f') ADVANCE(331); END_STATE(); case 263: - if (lookahead == 'i') ADVANCE(320); + if (lookahead == 't') ADVANCE(332); END_STATE(); case 264: - if (lookahead == 'u') ADVANCE(321); + if (lookahead == 'i') ADVANCE(333); END_STATE(); case 265: - if (lookahead == '_') ADVANCE(322); + if (lookahead == 'n') ADVANCE(334); END_STATE(); case 266: - if (lookahead == 'i') ADVANCE(323); + ACCEPT_TOKEN(anon_sym_short); END_STATE(); case 267: - if (lookahead == 'd') ADVANCE(324); + if (lookahead == 'd') ADVANCE(335); END_STATE(); case 268: - if (lookahead == 'l') ADVANCE(325); + if (lookahead == 't') ADVANCE(168); END_STATE(); case 269: - if (lookahead == 'a') ADVANCE(326); + if (lookahead == 'f') ADVANCE(336); END_STATE(); case 270: - if (lookahead == 's') ADVANCE(327); + if (lookahead == '_') ADVANCE(337); END_STATE(); case 271: - if (lookahead == 'c') ADVANCE(328); + if (lookahead == 'c') ADVANCE(338); END_STATE(); case 272: - if (lookahead == 'r') ADVANCE(329); + if (lookahead == 't') ADVANCE(339); END_STATE(); case 273: - ACCEPT_TOKEN(sym_ms_signed_ptr_modifier); + if (lookahead == 'h') ADVANCE(340); END_STATE(); case 274: - if (lookahead == 'a') ADVANCE(330); + if (lookahead == 'd') ADVANCE(341); END_STATE(); case 275: - if (lookahead == 'c') ADVANCE(331); + if (lookahead == 'e') ADVANCE(342); END_STATE(); case 276: - if (lookahead == 'a') ADVANCE(332); + if (lookahead == '6') ADVANCE(343); END_STATE(); case 277: - if (lookahead == 'i') ADVANCE(333); + if (lookahead == '2') ADVANCE(344); END_STATE(); case 278: - ACCEPT_TOKEN(sym_ms_unsigned_ptr_modifier); + if (lookahead == '4') ADVANCE(345); END_STATE(); case 279: - if (lookahead == 'o') ADVANCE(334); + if (lookahead == '_') ADVANCE(346); END_STATE(); case 280: - if (lookahead == 'g') ADVANCE(335); + if (lookahead == 't') ADVANCE(347); END_STATE(); case 281: - if (lookahead == '_') ADVANCE(336); + ACCEPT_TOKEN(anon_sym_union); END_STATE(); case 282: - if (lookahead == '_') ADVANCE(337); + if (lookahead == 'n') ADVANCE(348); END_STATE(); case 283: - if (lookahead == '_') ADVANCE(338); + if (lookahead == 'i') ADVANCE(349); END_STATE(); case 284: - if (lookahead == 't') ADVANCE(153); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 285: - if (lookahead == 'r') ADVANCE(339); + if (lookahead == 'o') ADVANCE(350); END_STATE(); case 286: - if (lookahead == 'x') ADVANCE(340); + if (lookahead == 'c') ADVANCE(351); END_STATE(); case 287: - if (lookahead == 'u') ADVANCE(341); + if (lookahead == 'i') ADVANCE(352); END_STATE(); case 288: - if (lookahead == 't') ADVANCE(342); + if (lookahead == 'u') ADVANCE(353); END_STATE(); case 289: - if (lookahead == 'd') ADVANCE(343); + if (lookahead == 'n') ADVANCE(354); END_STATE(); case 290: - ACCEPT_TOKEN(anon_sym_extern); + if (lookahead == '_') ADVANCE(355); END_STATE(); case 291: - ACCEPT_TOKEN(anon_sym_inline); + if (lookahead == 'i') ADVANCE(356); END_STATE(); case 292: - if (lookahead == 't') ADVANCE(153); + if (lookahead == 'd') ADVANCE(357); END_STATE(); case 293: - if (lookahead == 't') ADVANCE(153); + if (lookahead == 't') ADVANCE(358); END_STATE(); case 294: - if (lookahead == 't') ADVANCE(153); + if (lookahead == 'l') ADVANCE(359); END_STATE(); case 295: - if (lookahead == '_') ADVANCE(344); + if (lookahead == 'a') ADVANCE(360); END_STATE(); case 296: - if (lookahead == 'i') ADVANCE(345); + if (lookahead == 's') ADVANCE(361); END_STATE(); case 297: - if (lookahead == 'r') ADVANCE(346); + if (lookahead == 'n') ADVANCE(362); END_STATE(); case 298: - if (lookahead == 'r') ADVANCE(347); + if (lookahead == 'c') ADVANCE(363); END_STATE(); case 299: - if (lookahead == 'o') ADVANCE(348); + if (lookahead == 'e') ADVANCE(364); END_STATE(); case 300: - if (lookahead == 'f') ADVANCE(349); + if (lookahead == 'n') ADVANCE(365); END_STATE(); case 301: - if (lookahead == 'e') ADVANCE(350); + if (lookahead == 'r') ADVANCE(366); END_STATE(); case 302: - if (lookahead == 'c') ADVANCE(351); + ACCEPT_TOKEN(sym_ms_signed_ptr_modifier); END_STATE(); case 303: - ACCEPT_TOKEN(anon_sym_return); + if (lookahead == 'a') ADVANCE(367); END_STATE(); case 304: - ACCEPT_TOKEN(anon_sym_signed); + if (lookahead == 'c') ADVANCE(368); END_STATE(); case 305: - ACCEPT_TOKEN(anon_sym_sizeof); + if (lookahead == 'a') ADVANCE(369); END_STATE(); case 306: - if (lookahead == 't') ADVANCE(153); + if (lookahead == 'i') ADVANCE(370); END_STATE(); case 307: - ACCEPT_TOKEN(anon_sym_static); + ACCEPT_TOKEN(sym_ms_unsigned_ptr_modifier); END_STATE(); case 308: - ACCEPT_TOKEN(anon_sym_struct); + if (lookahead == 'o') ADVANCE(371); END_STATE(); case 309: - ACCEPT_TOKEN(anon_sym_switch); + if (lookahead == 'o') ADVANCE(372); END_STATE(); case 310: - if (lookahead == '_') ADVANCE(352); + if (lookahead == 'g') ADVANCE(373); END_STATE(); case 311: - if (lookahead == 'f') ADVANCE(353); + if (lookahead == 'f') ADVANCE(374); END_STATE(); case 312: - if (lookahead == '_') ADVANCE(354); + if (lookahead == '_') ADVANCE(375); END_STATE(); case 313: - if (lookahead == '_') ADVANCE(355); + if (lookahead == '_') ADVANCE(376); END_STATE(); case 314: - if (lookahead == '_') ADVANCE(356); + if (lookahead == '_') ADVANCE(377); END_STATE(); case 315: - if (lookahead == 't') ADVANCE(153); + if (lookahead == 't') ADVANCE(168); END_STATE(); case 316: - if (lookahead == 'r') ADVANCE(357); + if (lookahead == 'r') ADVANCE(378); END_STATE(); case 317: - if (lookahead == 'e') ADVANCE(358); + if (lookahead == 'x') ADVANCE(379); END_STATE(); case 318: - if (lookahead == 'l') ADVANCE(359); + if (lookahead == 'u') ADVANCE(380); END_STATE(); case 319: - ACCEPT_TOKEN(anon_sym__Atomic); + if (lookahead == 't') ADVANCE(381); END_STATE(); case 320: - if (lookahead == 'c') ADVANCE(360); + if (lookahead == 'd') ADVANCE(382); END_STATE(); case 321: - if (lookahead == 'r') ADVANCE(361); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 322: - ACCEPT_TOKEN(anon_sym___asm__); + ACCEPT_TOKEN(anon_sym_inline); END_STATE(); case 323: - if (lookahead == 'b') ADVANCE(362); + if (lookahead == 't') ADVANCE(168); END_STATE(); case 324: - ACCEPT_TOKEN(anon_sym___based); + if (lookahead == 't') ADVANCE(168); END_STATE(); case 325: - ACCEPT_TOKEN(anon_sym___cdecl); + if (lookahead == 't') ADVANCE(168); END_STATE(); case 326: - if (lookahead == 'l') ADVANCE(363); + if (lookahead == '_') ADVANCE(383); END_STATE(); case 327: - if (lookahead == 'p') ADVANCE(364); + if (lookahead == 'i') ADVANCE(384); END_STATE(); case 328: - if (lookahead == 'a') ADVANCE(365); + if (lookahead == 'r') ADVANCE(385); END_STATE(); case 329: - if (lookahead == 'i') ADVANCE(366); + if (lookahead == 'r') ADVANCE(386); END_STATE(); case 330: - if (lookahead == 'l') ADVANCE(367); + if (lookahead == 'o') ADVANCE(387); END_STATE(); case 331: - if (lookahead == 'a') ADVANCE(368); + if (lookahead == 'f') ADVANCE(388); END_STATE(); case 332: - if (lookahead == 'd') ADVANCE(369); + if (lookahead == 'e') ADVANCE(389); END_STATE(); case 333: - if (lookahead == 'g') ADVANCE(370); + if (lookahead == 'c') ADVANCE(390); END_STATE(); case 334: - if (lookahead == 'r') ADVANCE(371); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 335: - if (lookahead == 'n') ADVANCE(372); + ACCEPT_TOKEN(anon_sym_signed); END_STATE(); case 336: - if (lookahead == 't') ADVANCE(153); + ACCEPT_TOKEN(anon_sym_sizeof); END_STATE(); case 337: - if (lookahead == 't') ADVANCE(153); + if (lookahead == 't') ADVANCE(168); END_STATE(); case 338: - if (lookahead == 't') ADVANCE(153); + ACCEPT_TOKEN(anon_sym_static); END_STATE(); case 339: - if (lookahead == '_') ADVANCE(373); + ACCEPT_TOKEN(anon_sym_struct); END_STATE(); case 340: - if (lookahead == 'p') ADVANCE(374); + ACCEPT_TOKEN(anon_sym_switch); END_STATE(); case 341: - if (lookahead == 'e') ADVANCE(375); + if (lookahead == '_') ADVANCE(391); END_STATE(); case 342: - ACCEPT_TOKEN(anon_sym_default); + if (lookahead == 'f') ADVANCE(392); END_STATE(); case 343: - ACCEPT_TOKEN(anon_sym_defined); + if (lookahead == '_') ADVANCE(393); END_STATE(); case 344: - if (lookahead == 't') ADVANCE(153); + if (lookahead == '_') ADVANCE(394); END_STATE(); case 345: - if (lookahead == 'g') ADVANCE(376); + if (lookahead == '_') ADVANCE(395); END_STATE(); case 346: - if (lookahead == 'n') ADVANCE(377); + if (lookahead == 't') ADVANCE(168); END_STATE(); case 347: - ACCEPT_TOKEN(anon_sym_nullptr); - if (lookahead == '_') ADVANCE(378); + if (lookahead == 'r') ADVANCE(396); END_STATE(); case 348: - if (lookahead == 'f') ADVANCE(379); + if (lookahead == 'e') ADVANCE(397); END_STATE(); case 349: - if (lookahead == '_') ADVANCE(380); + if (lookahead == 'l') ADVANCE(398); END_STATE(); case 350: - if (lookahead == 'r') ADVANCE(381); + if (lookahead == 'f') ADVANCE(399); END_STATE(); case 351: - if (lookahead == 't') ADVANCE(382); + ACCEPT_TOKEN(anon_sym__Atomic); END_STATE(); case 352: - if (lookahead == 'l') ADVANCE(383); + if (lookahead == 'c') ADVANCE(400); END_STATE(); case 353: - ACCEPT_TOKEN(anon_sym_typedef); + if (lookahead == 'r') ADVANCE(401); END_STATE(); case 354: - if (lookahead == 't') ADVANCE(153); + if (lookahead == 'o') ADVANCE(402); END_STATE(); case 355: - if (lookahead == 't') ADVANCE(153); + ACCEPT_TOKEN(anon_sym___asm__); END_STATE(); case 356: - if (lookahead == 't') ADVANCE(153); + if (lookahead == 'b') ADVANCE(403); END_STATE(); case 357: - if (lookahead == '_') ADVANCE(384); + ACCEPT_TOKEN(anon_sym___based); END_STATE(); case 358: - if (lookahead == 'd') ADVANCE(385); + if (lookahead == 'i') ADVANCE(404); END_STATE(); case 359: - if (lookahead == 'e') ADVANCE(386); + ACCEPT_TOKEN(anon_sym___cdecl); END_STATE(); case 360: - ACCEPT_TOKEN(anon_sym__Generic); + if (lookahead == 'l') ADVANCE(405); END_STATE(); case 361: - if (lookahead == 'n') ADVANCE(387); + if (lookahead == 'p') ADVANCE(406); END_STATE(); case 362: - if (lookahead == 'u') ADVANCE(388); + if (lookahead == 's') ADVANCE(407); END_STATE(); case 363: - if (lookahead == 'l') ADVANCE(389); + if (lookahead == 'a') ADVANCE(408); END_STATE(); case 364: - if (lookahead == 'e') ADVANCE(390); + if (lookahead == 'i') ADVANCE(409); END_STATE(); case 365: - if (lookahead == 'l') ADVANCE(391); + if (lookahead == 'e') ADVANCE(410); END_STATE(); case 366: - if (lookahead == 'c') ADVANCE(392); + if (lookahead == 'i') ADVANCE(411); END_STATE(); case 367: - if (lookahead == 'l') ADVANCE(393); + if (lookahead == 'l') ADVANCE(412); END_STATE(); case 368: - if (lookahead == 'l') ADVANCE(394); + if (lookahead == 'a') ADVANCE(413); END_STATE(); case 369: - ACCEPT_TOKEN(anon_sym___thread); + if (lookahead == 'd') ADVANCE(414); END_STATE(); case 370: - if (lookahead == 'n') ADVANCE(395); + if (lookahead == 'g') ADVANCE(415); END_STATE(); case 371: - if (lookahead == 'c') ADVANCE(396); + if (lookahead == 'r') ADVANCE(416); END_STATE(); case 372: - if (lookahead == 'e') ADVANCE(397); + if (lookahead == 'f') ADVANCE(417); END_STATE(); case 373: - if (lookahead == 't') ADVANCE(153); + if (lookahead == 'n') ADVANCE(418); END_STATE(); case 374: - if (lookahead == 'r') ADVANCE(398); + ACCEPT_TOKEN(anon_sym_alignof); END_STATE(); case 375: - ACCEPT_TOKEN(anon_sym_continue); + if (lookahead == 't') ADVANCE(168); END_STATE(); case 376: - if (lookahead == 'n') ADVANCE(399); + if (lookahead == 't') ADVANCE(168); END_STATE(); case 377: - ACCEPT_TOKEN(anon_sym_noreturn); + if (lookahead == 't') ADVANCE(168); END_STATE(); case 378: - if (lookahead == 't') ADVANCE(153); + if (lookahead == '_') ADVANCE(419); END_STATE(); case 379: - ACCEPT_TOKEN(anon_sym_offsetof); + if (lookahead == 'p') ADVANCE(420); END_STATE(); case 380: - if (lookahead == 't') ADVANCE(153); + if (lookahead == 'e') ADVANCE(421); END_STATE(); case 381: - ACCEPT_TOKEN(anon_sym_register); + ACCEPT_TOKEN(anon_sym_default); END_STATE(); case 382: - ACCEPT_TOKEN(anon_sym_restrict); + ACCEPT_TOKEN(anon_sym_defined); END_STATE(); case 383: - if (lookahead == 'o') ADVANCE(400); + if (lookahead == 't') ADVANCE(168); END_STATE(); case 384: - if (lookahead == 't') ADVANCE(153); + if (lookahead == 'g') ADVANCE(422); END_STATE(); case 385: - ACCEPT_TOKEN(anon_sym_unsigned); + if (lookahead == 'n') ADVANCE(423); END_STATE(); case 386: - ACCEPT_TOKEN(anon_sym_volatile); + ACCEPT_TOKEN(anon_sym_nullptr); + if (lookahead == '_') ADVANCE(424); END_STATE(); case 387: - ACCEPT_TOKEN(anon_sym__Noreturn); + if (lookahead == 'f') ADVANCE(425); END_STATE(); case 388: - if (lookahead == 't') ADVANCE(401); + if (lookahead == '_') ADVANCE(426); END_STATE(); case 389: - ACCEPT_TOKEN(anon_sym___clrcall); + if (lookahead == 'r') ADVANCE(427); END_STATE(); case 390: - if (lookahead == 'c') ADVANCE(402); + if (lookahead == 't') ADVANCE(428); END_STATE(); case 391: - if (lookahead == 'l') ADVANCE(403); + if (lookahead == 'l') ADVANCE(429); END_STATE(); case 392: - if (lookahead == 't') ADVANCE(404); + ACCEPT_TOKEN(anon_sym_typedef); END_STATE(); case 393: - ACCEPT_TOKEN(anon_sym___stdcall); + if (lookahead == 't') ADVANCE(168); END_STATE(); case 394: - if (lookahead == 'l') ADVANCE(405); + if (lookahead == 't') ADVANCE(168); END_STATE(); case 395: - if (lookahead == 'e') ADVANCE(406); + if (lookahead == 't') ADVANCE(168); END_STATE(); case 396: - if (lookahead == 'a') ADVANCE(407); + if (lookahead == '_') ADVANCE(430); END_STATE(); case 397: - if (lookahead == 'd') ADVANCE(408); + if (lookahead == 'd') ADVANCE(431); END_STATE(); case 398: - ACCEPT_TOKEN(anon_sym_constexpr); + if (lookahead == 'e') ADVANCE(432); END_STATE(); case 399: - if (lookahead == '_') ADVANCE(409); + ACCEPT_TOKEN(anon_sym__Alignof); END_STATE(); case 400: - if (lookahead == 'c') ADVANCE(410); + ACCEPT_TOKEN(anon_sym__Generic); END_STATE(); case 401: - if (lookahead == 'e') ADVANCE(411); + if (lookahead == 'n') ADVANCE(433); END_STATE(); case 402: - ACCEPT_TOKEN(anon_sym___declspec); + if (lookahead == 'f') ADVANCE(434); END_STATE(); case 403: - ACCEPT_TOKEN(anon_sym___fastcall); + if (lookahead == 'u') ADVANCE(435); END_STATE(); case 404: - ACCEPT_TOKEN(sym_ms_restrict_modifier); - if (lookahead == '_') ADVANCE(412); + if (lookahead == 'n') ADVANCE(436); END_STATE(); case 405: - ACCEPT_TOKEN(anon_sym___thiscall); + if (lookahead == 'l') ADVANCE(437); END_STATE(); case 406: - if (lookahead == 'd') ADVANCE(413); + if (lookahead == 'e') ADVANCE(438); END_STATE(); case 407: - if (lookahead == 'l') ADVANCE(414); + if (lookahead == 'i') ADVANCE(439); END_STATE(); case 408: - ACCEPT_TOKEN(anon_sym__unaligned); + if (lookahead == 'l') ADVANCE(440); END_STATE(); case 409: - if (lookahead == 't') ADVANCE(153); + if (lookahead == 'n') ADVANCE(441); END_STATE(); case 410: - if (lookahead == 'a') ADVANCE(415); + ACCEPT_TOKEN(anon_sym___inline); + if (lookahead == '_') ADVANCE(442); END_STATE(); case 411: - if (lookahead == '_') ADVANCE(416); + if (lookahead == 'c') ADVANCE(443); END_STATE(); case 412: - if (lookahead == '_') ADVANCE(417); + if (lookahead == 'l') ADVANCE(444); END_STATE(); case 413: - ACCEPT_TOKEN(anon_sym___unaligned); + if (lookahead == 'l') ADVANCE(445); END_STATE(); case 414: - if (lookahead == 'l') ADVANCE(418); + ACCEPT_TOKEN(anon_sym___thread); END_STATE(); case 415: - if (lookahead == 'l') ADVANCE(419); + if (lookahead == 'n') ADVANCE(446); END_STATE(); case 416: - if (lookahead == '_') ADVANCE(420); + if (lookahead == 'c') ADVANCE(447); END_STATE(); case 417: - ACCEPT_TOKEN(anon_sym___restrict__); + ACCEPT_TOKEN(anon_sym__alignof); END_STATE(); case 418: - ACCEPT_TOKEN(anon_sym___vectorcall); + if (lookahead == 'e') ADVANCE(448); END_STATE(); case 419: - ACCEPT_TOKEN(anon_sym_thread_local); + if (lookahead == 't') ADVANCE(168); END_STATE(); case 420: + if (lookahead == 'r') ADVANCE(449); + END_STATE(); + case 421: + ACCEPT_TOKEN(anon_sym_continue); + END_STATE(); + case 422: + if (lookahead == 'n') ADVANCE(450); + END_STATE(); + case 423: + ACCEPT_TOKEN(anon_sym_noreturn); + END_STATE(); + case 424: + if (lookahead == 't') ADVANCE(168); + END_STATE(); + case 425: + ACCEPT_TOKEN(anon_sym_offsetof); + END_STATE(); + case 426: + if (lookahead == 't') ADVANCE(168); + END_STATE(); + case 427: + ACCEPT_TOKEN(anon_sym_register); + END_STATE(); + case 428: + ACCEPT_TOKEN(anon_sym_restrict); + END_STATE(); + case 429: + if (lookahead == 'o') ADVANCE(451); + END_STATE(); + case 430: + if (lookahead == 't') ADVANCE(168); + END_STATE(); + case 431: + ACCEPT_TOKEN(anon_sym_unsigned); + END_STATE(); + case 432: + ACCEPT_TOKEN(anon_sym_volatile); + END_STATE(); + case 433: + ACCEPT_TOKEN(anon_sym__Noreturn); + END_STATE(); + case 434: + ACCEPT_TOKEN(anon_sym___alignof); + if (lookahead == '_') ADVANCE(452); + END_STATE(); + case 435: + if (lookahead == 't') ADVANCE(453); + END_STATE(); + case 436: + if (lookahead == '_') ADVANCE(454); + END_STATE(); + case 437: + ACCEPT_TOKEN(anon_sym___clrcall); + END_STATE(); + case 438: + if (lookahead == 'c') ADVANCE(455); + END_STATE(); + case 439: + if (lookahead == 'o') ADVANCE(456); + END_STATE(); + case 440: + if (lookahead == 'l') ADVANCE(457); + END_STATE(); + case 441: + if (lookahead == 'l') ADVANCE(458); + END_STATE(); + case 442: + if (lookahead == '_') ADVANCE(459); + END_STATE(); + case 443: + if (lookahead == 't') ADVANCE(460); + END_STATE(); + case 444: + ACCEPT_TOKEN(anon_sym___stdcall); + END_STATE(); + case 445: + if (lookahead == 'l') ADVANCE(461); + END_STATE(); + case 446: + if (lookahead == 'e') ADVANCE(462); + END_STATE(); + case 447: + if (lookahead == 'a') ADVANCE(463); + END_STATE(); + case 448: + if (lookahead == 'd') ADVANCE(464); + END_STATE(); + case 449: + ACCEPT_TOKEN(anon_sym_constexpr); + END_STATE(); + case 450: + if (lookahead == '_') ADVANCE(465); + END_STATE(); + case 451: + if (lookahead == 'c') ADVANCE(466); + END_STATE(); + case 452: + if (lookahead == '_') ADVANCE(467); + END_STATE(); + case 453: + if (lookahead == 'e') ADVANCE(468); + END_STATE(); + case 454: + if (lookahead == 'v') ADVANCE(469); + END_STATE(); + case 455: + ACCEPT_TOKEN(anon_sym___declspec); + END_STATE(); + case 456: + if (lookahead == 'n') ADVANCE(470); + END_STATE(); + case 457: + ACCEPT_TOKEN(anon_sym___fastcall); + END_STATE(); + case 458: + if (lookahead == 'i') ADVANCE(471); + END_STATE(); + case 459: + ACCEPT_TOKEN(anon_sym___inline__); + END_STATE(); + case 460: + ACCEPT_TOKEN(sym_ms_restrict_modifier); + if (lookahead == '_') ADVANCE(472); + END_STATE(); + case 461: + ACCEPT_TOKEN(anon_sym___thiscall); + END_STATE(); + case 462: + if (lookahead == 'd') ADVANCE(473); + END_STATE(); + case 463: + if (lookahead == 'l') ADVANCE(474); + END_STATE(); + case 464: + ACCEPT_TOKEN(anon_sym__unaligned); + END_STATE(); + case 465: + if (lookahead == 't') ADVANCE(168); + END_STATE(); + case 466: + if (lookahead == 'a') ADVANCE(475); + END_STATE(); + case 467: + ACCEPT_TOKEN(anon_sym___alignof__); + END_STATE(); + case 468: + if (lookahead == '_') ADVANCE(476); + END_STATE(); + case 469: + if (lookahead == 'a') ADVANCE(477); + END_STATE(); + case 470: + if (lookahead == '_') ADVANCE(478); + END_STATE(); + case 471: + if (lookahead == 'n') ADVANCE(479); + END_STATE(); + case 472: + if (lookahead == '_') ADVANCE(480); + END_STATE(); + case 473: + ACCEPT_TOKEN(anon_sym___unaligned); + END_STATE(); + case 474: + if (lookahead == 'l') ADVANCE(481); + END_STATE(); + case 475: + if (lookahead == 'l') ADVANCE(482); + END_STATE(); + case 476: + if (lookahead == '_') ADVANCE(483); + END_STATE(); + case 477: + if (lookahead == '_') ADVANCE(484); + END_STATE(); + case 478: + if (lookahead == '_') ADVANCE(485); + END_STATE(); + case 479: + if (lookahead == 'e') ADVANCE(486); + END_STATE(); + case 480: + ACCEPT_TOKEN(anon_sym___restrict__); + END_STATE(); + case 481: + ACCEPT_TOKEN(anon_sym___vectorcall); + END_STATE(); + case 482: + ACCEPT_TOKEN(anon_sym_thread_local); + END_STATE(); + case 483: ACCEPT_TOKEN(anon_sym___attribute__); END_STATE(); + case 484: + if (lookahead == 'a') ADVANCE(487); + END_STATE(); + case 485: + ACCEPT_TOKEN(anon_sym___extension__); + END_STATE(); + case 486: + ACCEPT_TOKEN(anon_sym___forceinline); + END_STATE(); + case 487: + if (lookahead == 'r') ADVANCE(488); + END_STATE(); + case 488: + if (lookahead == 'g') ADVANCE(489); + END_STATE(); + case 489: + ACCEPT_TOKEN(anon_sym___builtin_va_arg); + END_STATE(); default: return false; } @@ -12750,7 +13238,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [12] = {.lex_state = 45}, [13] = {.lex_state = 45}, [14] = {.lex_state = 45}, - [15] = {.lex_state = 45}, + [15] = {.lex_state = 42}, [16] = {.lex_state = 45}, [17] = {.lex_state = 45}, [18] = {.lex_state = 45}, @@ -12760,7 +13248,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [22] = {.lex_state = 45}, [23] = {.lex_state = 45}, [24] = {.lex_state = 45}, - [25] = {.lex_state = 42}, + [25] = {.lex_state = 45}, [26] = {.lex_state = 45}, [27] = {.lex_state = 45}, [28] = {.lex_state = 44}, @@ -12772,21 +13260,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [34] = {.lex_state = 111}, [35] = {.lex_state = 111}, [36] = {.lex_state = 111}, - [37] = {.lex_state = 111}, + [37] = {.lex_state = 44}, [38] = {.lex_state = 111}, [39] = {.lex_state = 111}, [40] = {.lex_state = 111}, - [41] = {.lex_state = 44}, + [41] = {.lex_state = 111}, [42] = {.lex_state = 111}, [43] = {.lex_state = 111}, [44] = {.lex_state = 111}, - [45] = {.lex_state = 44}, + [45] = {.lex_state = 111}, [46] = {.lex_state = 111}, [47] = {.lex_state = 111}, [48] = {.lex_state = 111}, [49] = {.lex_state = 111}, [50] = {.lex_state = 111}, - [51] = {.lex_state = 111}, + [51] = {.lex_state = 44}, [52] = {.lex_state = 111}, [53] = {.lex_state = 111}, [54] = {.lex_state = 42}, @@ -12799,19 +13287,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [61] = {.lex_state = 45}, [62] = {.lex_state = 45}, [63] = {.lex_state = 45}, - [64] = {.lex_state = 111}, + [64] = {.lex_state = 44}, [65] = {.lex_state = 111}, - [66] = {.lex_state = 44}, - [67] = {.lex_state = 111}, - [68] = {.lex_state = 44}, + [66] = {.lex_state = 111}, + [67] = {.lex_state = 44}, + [68] = {.lex_state = 111}, [69] = {.lex_state = 111}, [70] = {.lex_state = 111}, [71] = {.lex_state = 111}, [72] = {.lex_state = 44}, - [73] = {.lex_state = 44}, - [74] = {.lex_state = 44}, - [75] = {.lex_state = 111}, - [76] = {.lex_state = 111}, + [73] = {.lex_state = 111}, + [74] = {.lex_state = 111}, + [75] = {.lex_state = 44}, + [76] = {.lex_state = 44}, [77] = {.lex_state = 111}, [78] = {.lex_state = 111}, [79] = {.lex_state = 111}, @@ -12826,7 +13314,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [88] = {.lex_state = 111}, [89] = {.lex_state = 111}, [90] = {.lex_state = 42}, - [91] = {.lex_state = 41}, + [91] = {.lex_state = 42}, [92] = {.lex_state = 42}, [93] = {.lex_state = 42}, [94] = {.lex_state = 42}, @@ -12879,7 +13367,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [141] = {.lex_state = 42}, [142] = {.lex_state = 42}, [143] = {.lex_state = 42}, - [144] = {.lex_state = 45}, + [144] = {.lex_state = 42}, [145] = {.lex_state = 42}, [146] = {.lex_state = 42}, [147] = {.lex_state = 42}, @@ -12889,24 +13377,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [151] = {.lex_state = 42}, [152] = {.lex_state = 42}, [153] = {.lex_state = 42}, - [154] = {.lex_state = 42}, - [155] = {.lex_state = 42}, - [156] = {.lex_state = 45}, - [157] = {.lex_state = 45}, - [158] = {.lex_state = 45}, - [159] = {.lex_state = 45}, - [160] = {.lex_state = 45}, - [161] = {.lex_state = 111}, - [162] = {.lex_state = 45}, - [163] = {.lex_state = 45}, - [164] = {.lex_state = 45}, - [165] = {.lex_state = 45}, - [166] = {.lex_state = 45}, - [167] = {.lex_state = 45}, - [168] = {.lex_state = 45}, - [169] = {.lex_state = 45}, - [170] = {.lex_state = 45}, - [171] = {.lex_state = 45}, + [154] = {.lex_state = 41}, + [155] = {.lex_state = 45}, + [156] = {.lex_state = 42}, + [157] = {.lex_state = 42}, + [158] = {.lex_state = 42}, + [159] = {.lex_state = 42}, + [160] = {.lex_state = 42}, + [161] = {.lex_state = 42}, + [162] = {.lex_state = 42}, + [163] = {.lex_state = 42}, + [164] = {.lex_state = 42}, + [165] = {.lex_state = 42}, + [166] = {.lex_state = 42}, + [167] = {.lex_state = 42}, + [168] = {.lex_state = 42}, + [169] = {.lex_state = 42}, + [170] = {.lex_state = 42}, + [171] = {.lex_state = 42}, [172] = {.lex_state = 45}, [173] = {.lex_state = 45}, [174] = {.lex_state = 45}, @@ -12917,7 +13405,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [179] = {.lex_state = 45}, [180] = {.lex_state = 45}, [181] = {.lex_state = 45}, - [182] = {.lex_state = 111}, + [182] = {.lex_state = 45}, [183] = {.lex_state = 45}, [184] = {.lex_state = 45}, [185] = {.lex_state = 45}, @@ -12938,19 +13426,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [200] = {.lex_state = 45}, [201] = {.lex_state = 45}, [202] = {.lex_state = 45}, - [203] = {.lex_state = 45}, + [203] = {.lex_state = 111}, [204] = {.lex_state = 45}, - [205] = {.lex_state = 44}, + [205] = {.lex_state = 45}, [206] = {.lex_state = 45}, [207] = {.lex_state = 45}, [208] = {.lex_state = 45}, [209] = {.lex_state = 45}, - [210] = {.lex_state = 45}, + [210] = {.lex_state = 111}, [211] = {.lex_state = 45}, - [212] = {.lex_state = 111}, + [212] = {.lex_state = 45}, [213] = {.lex_state = 45}, [214] = {.lex_state = 45}, - [215] = {.lex_state = 111}, + [215] = {.lex_state = 45}, [216] = {.lex_state = 45}, [217] = {.lex_state = 45}, [218] = {.lex_state = 45}, @@ -12959,68 +13447,68 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [221] = {.lex_state = 45}, [222] = {.lex_state = 45}, [223] = {.lex_state = 45}, - [224] = {.lex_state = 111}, - [225] = {.lex_state = 41}, - [226] = {.lex_state = 44}, - [227] = {.lex_state = 44}, - [228] = {.lex_state = 44}, - [229] = {.lex_state = 44}, - [230] = {.lex_state = 44}, - [231] = {.lex_state = 44}, - [232] = {.lex_state = 44}, + [224] = {.lex_state = 45}, + [225] = {.lex_state = 45}, + [226] = {.lex_state = 45}, + [227] = {.lex_state = 45}, + [228] = {.lex_state = 45}, + [229] = {.lex_state = 45}, + [230] = {.lex_state = 45}, + [231] = {.lex_state = 45}, + [232] = {.lex_state = 111}, [233] = {.lex_state = 111}, - [234] = {.lex_state = 44}, - [235] = {.lex_state = 111}, - [236] = {.lex_state = 44}, - [237] = {.lex_state = 111}, - [238] = {.lex_state = 44}, - [239] = {.lex_state = 111}, - [240] = {.lex_state = 111}, - [241] = {.lex_state = 44}, - [242] = {.lex_state = 44}, - [243] = {.lex_state = 44}, - [244] = {.lex_state = 111}, - [245] = {.lex_state = 111}, - [246] = {.lex_state = 111}, - [247] = {.lex_state = 111}, - [248] = {.lex_state = 111}, - [249] = {.lex_state = 44}, - [250] = {.lex_state = 111}, - [251] = {.lex_state = 44}, - [252] = {.lex_state = 111}, - [253] = {.lex_state = 111}, - [254] = {.lex_state = 111}, - [255] = {.lex_state = 111}, + [234] = {.lex_state = 45}, + [235] = {.lex_state = 45}, + [236] = {.lex_state = 45}, + [237] = {.lex_state = 45}, + [238] = {.lex_state = 45}, + [239] = {.lex_state = 45}, + [240] = {.lex_state = 45}, + [241] = {.lex_state = 45}, + [242] = {.lex_state = 45}, + [243] = {.lex_state = 45}, + [244] = {.lex_state = 45}, + [245] = {.lex_state = 45}, + [246] = {.lex_state = 45}, + [247] = {.lex_state = 44}, + [248] = {.lex_state = 45}, + [249] = {.lex_state = 45}, + [250] = {.lex_state = 45}, + [251] = {.lex_state = 45}, + [252] = {.lex_state = 45}, + [253] = {.lex_state = 45}, + [254] = {.lex_state = 45}, + [255] = {.lex_state = 45}, [256] = {.lex_state = 111}, [257] = {.lex_state = 111}, - [258] = {.lex_state = 44}, - [259] = {.lex_state = 44}, - [260] = {.lex_state = 44}, - [261] = {.lex_state = 44}, + [258] = {.lex_state = 111}, + [259] = {.lex_state = 111}, + [260] = {.lex_state = 111}, + [261] = {.lex_state = 111}, [262] = {.lex_state = 111}, [263] = {.lex_state = 111}, [264] = {.lex_state = 111}, - [265] = {.lex_state = 44}, - [266] = {.lex_state = 44}, - [267] = {.lex_state = 44}, - [268] = {.lex_state = 44}, - [269] = {.lex_state = 44}, + [265] = {.lex_state = 111}, + [266] = {.lex_state = 111}, + [267] = {.lex_state = 111}, + [268] = {.lex_state = 111}, + [269] = {.lex_state = 111}, [270] = {.lex_state = 111}, - [271] = {.lex_state = 44}, + [271] = {.lex_state = 111}, [272] = {.lex_state = 111}, - [273] = {.lex_state = 44}, + [273] = {.lex_state = 111}, [274] = {.lex_state = 111}, - [275] = {.lex_state = 44}, + [275] = {.lex_state = 111}, [276] = {.lex_state = 111}, [277] = {.lex_state = 111}, - [278] = {.lex_state = 44}, - [279] = {.lex_state = 44}, - [280] = {.lex_state = 44}, - [281] = {.lex_state = 44}, - [282] = {.lex_state = 44}, - [283] = {.lex_state = 44}, - [284] = {.lex_state = 44}, - [285] = {.lex_state = 44}, + [278] = {.lex_state = 111}, + [279] = {.lex_state = 111}, + [280] = {.lex_state = 111}, + [281] = {.lex_state = 111}, + [282] = {.lex_state = 111}, + [283] = {.lex_state = 111}, + [284] = {.lex_state = 111}, + [285] = {.lex_state = 111}, [286] = {.lex_state = 111}, [287] = {.lex_state = 111}, [288] = {.lex_state = 111}, @@ -13028,19 +13516,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [290] = {.lex_state = 111}, [291] = {.lex_state = 111}, [292] = {.lex_state = 111}, - [293] = {.lex_state = 44}, + [293] = {.lex_state = 111}, [294] = {.lex_state = 111}, [295] = {.lex_state = 111}, [296] = {.lex_state = 111}, - [297] = {.lex_state = 44}, + [297] = {.lex_state = 111}, [298] = {.lex_state = 111}, [299] = {.lex_state = 111}, [300] = {.lex_state = 111}, - [301] = {.lex_state = 44}, - [302] = {.lex_state = 44}, - [303] = {.lex_state = 44}, + [301] = {.lex_state = 111}, + [302] = {.lex_state = 111}, + [303] = {.lex_state = 111}, [304] = {.lex_state = 111}, - [305] = {.lex_state = 44}, + [305] = {.lex_state = 111}, [306] = {.lex_state = 111}, [307] = {.lex_state = 111}, [308] = {.lex_state = 111}, @@ -13078,7 +13566,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [340] = {.lex_state = 111}, [341] = {.lex_state = 111}, [342] = {.lex_state = 111}, - [343] = {.lex_state = 44}, + [343] = {.lex_state = 111}, [344] = {.lex_state = 111}, [345] = {.lex_state = 111}, [346] = {.lex_state = 111}, @@ -13087,115 +13575,115 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [349] = {.lex_state = 111}, [350] = {.lex_state = 44}, [351] = {.lex_state = 111}, - [352] = {.lex_state = 111}, - [353] = {.lex_state = 111}, - [354] = {.lex_state = 111}, + [352] = {.lex_state = 44}, + [353] = {.lex_state = 44}, + [354] = {.lex_state = 44}, [355] = {.lex_state = 111}, - [356] = {.lex_state = 44}, - [357] = {.lex_state = 44}, + [356] = {.lex_state = 111}, + [357] = {.lex_state = 111}, [358] = {.lex_state = 111}, - [359] = {.lex_state = 111}, - [360] = {.lex_state = 111}, + [359] = {.lex_state = 44}, + [360] = {.lex_state = 44}, [361] = {.lex_state = 111}, - [362] = {.lex_state = 44}, + [362] = {.lex_state = 111}, [363] = {.lex_state = 111}, - [364] = {.lex_state = 111}, - [365] = {.lex_state = 111}, - [366] = {.lex_state = 111}, - [367] = {.lex_state = 111}, + [364] = {.lex_state = 44}, + [365] = {.lex_state = 44}, + [366] = {.lex_state = 44}, + [367] = {.lex_state = 44}, [368] = {.lex_state = 111}, [369] = {.lex_state = 111}, - [370] = {.lex_state = 111}, + [370] = {.lex_state = 44}, [371] = {.lex_state = 111}, - [372] = {.lex_state = 111}, + [372] = {.lex_state = 44}, [373] = {.lex_state = 44}, [374] = {.lex_state = 111}, - [375] = {.lex_state = 111}, - [376] = {.lex_state = 111}, - [377] = {.lex_state = 111}, - [378] = {.lex_state = 111}, - [379] = {.lex_state = 111}, - [380] = {.lex_state = 111}, - [381] = {.lex_state = 111}, - [382] = {.lex_state = 111}, - [383] = {.lex_state = 111}, + [375] = {.lex_state = 44}, + [376] = {.lex_state = 44}, + [377] = {.lex_state = 44}, + [378] = {.lex_state = 44}, + [379] = {.lex_state = 44}, + [380] = {.lex_state = 44}, + [381] = {.lex_state = 44}, + [382] = {.lex_state = 44}, + [383] = {.lex_state = 44}, [384] = {.lex_state = 44}, - [385] = {.lex_state = 111}, + [385] = {.lex_state = 44}, [386] = {.lex_state = 44}, - [387] = {.lex_state = 111}, - [388] = {.lex_state = 44}, + [387] = {.lex_state = 44}, + [388] = {.lex_state = 111}, [389] = {.lex_state = 111}, - [390] = {.lex_state = 111}, - [391] = {.lex_state = 111}, + [390] = {.lex_state = 44}, + [391] = {.lex_state = 44}, [392] = {.lex_state = 44}, - [393] = {.lex_state = 111}, - [394] = {.lex_state = 111}, + [393] = {.lex_state = 44}, + [394] = {.lex_state = 44}, [395] = {.lex_state = 111}, - [396] = {.lex_state = 111}, - [397] = {.lex_state = 111}, - [398] = {.lex_state = 111}, - [399] = {.lex_state = 111}, - [400] = {.lex_state = 44}, - [401] = {.lex_state = 111}, - [402] = {.lex_state = 111}, + [396] = {.lex_state = 44}, + [397] = {.lex_state = 44}, + [398] = {.lex_state = 44}, + [399] = {.lex_state = 44}, + [400] = {.lex_state = 111}, + [401] = {.lex_state = 44}, + [402] = {.lex_state = 44}, [403] = {.lex_state = 111}, - [404] = {.lex_state = 111}, - [405] = {.lex_state = 111}, + [404] = {.lex_state = 44}, + [405] = {.lex_state = 44}, [406] = {.lex_state = 111}, - [407] = {.lex_state = 111}, + [407] = {.lex_state = 44}, [408] = {.lex_state = 44}, - [409] = {.lex_state = 111}, - [410] = {.lex_state = 44}, - [411] = {.lex_state = 111}, - [412] = {.lex_state = 111}, - [413] = {.lex_state = 111}, - [414] = {.lex_state = 111}, - [415] = {.lex_state = 111}, - [416] = {.lex_state = 111}, - [417] = {.lex_state = 111}, + [409] = {.lex_state = 44}, + [410] = {.lex_state = 111}, + [411] = {.lex_state = 44}, + [412] = {.lex_state = 44}, + [413] = {.lex_state = 44}, + [414] = {.lex_state = 44}, + [415] = {.lex_state = 44}, + [416] = {.lex_state = 44}, + [417] = {.lex_state = 44}, [418] = {.lex_state = 44}, - [419] = {.lex_state = 111}, + [419] = {.lex_state = 44}, [420] = {.lex_state = 111}, - [421] = {.lex_state = 111}, - [422] = {.lex_state = 111}, + [421] = {.lex_state = 44}, + [422] = {.lex_state = 44}, [423] = {.lex_state = 44}, - [424] = {.lex_state = 111}, - [425] = {.lex_state = 111}, - [426] = {.lex_state = 111}, - [427] = {.lex_state = 111}, - [428] = {.lex_state = 111}, + [424] = {.lex_state = 44}, + [425] = {.lex_state = 44}, + [426] = {.lex_state = 44}, + [427] = {.lex_state = 44}, + [428] = {.lex_state = 44}, [429] = {.lex_state = 111}, [430] = {.lex_state = 44}, [431] = {.lex_state = 111}, - [432] = {.lex_state = 111}, - [433] = {.lex_state = 111}, - [434] = {.lex_state = 111}, + [432] = {.lex_state = 44}, + [433] = {.lex_state = 44}, + [434] = {.lex_state = 44}, [435] = {.lex_state = 111}, - [436] = {.lex_state = 111}, - [437] = {.lex_state = 111}, - [438] = {.lex_state = 111}, - [439] = {.lex_state = 111}, + [436] = {.lex_state = 44}, + [437] = {.lex_state = 44}, + [438] = {.lex_state = 44}, + [439] = {.lex_state = 44}, [440] = {.lex_state = 44}, [441] = {.lex_state = 44}, - [442] = {.lex_state = 111}, - [443] = {.lex_state = 111}, - [444] = {.lex_state = 111}, + [442] = {.lex_state = 44}, + [443] = {.lex_state = 44}, + [444] = {.lex_state = 44}, [445] = {.lex_state = 111}, - [446] = {.lex_state = 111}, + [446] = {.lex_state = 44}, [447] = {.lex_state = 111}, [448] = {.lex_state = 111}, - [449] = {.lex_state = 44}, + [449] = {.lex_state = 111}, [450] = {.lex_state = 111}, - [451] = {.lex_state = 111}, - [452] = {.lex_state = 111}, + [451] = {.lex_state = 44}, + [452] = {.lex_state = 44}, [453] = {.lex_state = 111}, [454] = {.lex_state = 111}, - [455] = {.lex_state = 111}, + [455] = {.lex_state = 44}, [456] = {.lex_state = 111}, [457] = {.lex_state = 111}, - [458] = {.lex_state = 111}, - [459] = {.lex_state = 111}, - [460] = {.lex_state = 111}, + [458] = {.lex_state = 44}, + [459] = {.lex_state = 44}, + [460] = {.lex_state = 44}, [461] = {.lex_state = 111}, [462] = {.lex_state = 111}, [463] = {.lex_state = 111}, @@ -13210,7 +13698,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [472] = {.lex_state = 111}, [473] = {.lex_state = 111}, [474] = {.lex_state = 111}, - [475] = {.lex_state = 111}, + [475] = {.lex_state = 41}, [476] = {.lex_state = 111}, [477] = {.lex_state = 111}, [478] = {.lex_state = 111}, @@ -13234,9 +13722,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [496] = {.lex_state = 111}, [497] = {.lex_state = 111}, [498] = {.lex_state = 111}, - [499] = {.lex_state = 44}, - [500] = {.lex_state = 44}, - [501] = {.lex_state = 44}, + [499] = {.lex_state = 111}, + [500] = {.lex_state = 111}, + [501] = {.lex_state = 111}, [502] = {.lex_state = 111}, [503] = {.lex_state = 111}, [504] = {.lex_state = 111}, @@ -13269,67 +13757,67 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [531] = {.lex_state = 111}, [532] = {.lex_state = 111}, [533] = {.lex_state = 111}, - [534] = {.lex_state = 41}, + [534] = {.lex_state = 111}, [535] = {.lex_state = 111}, [536] = {.lex_state = 111}, - [537] = {.lex_state = 41}, + [537] = {.lex_state = 111}, [538] = {.lex_state = 111}, [539] = {.lex_state = 111}, [540] = {.lex_state = 111}, - [541] = {.lex_state = 49}, - [542] = {.lex_state = 49}, + [541] = {.lex_state = 111}, + [542] = {.lex_state = 111}, [543] = {.lex_state = 111}, [544] = {.lex_state = 111}, [545] = {.lex_state = 111}, - [546] = {.lex_state = 49}, + [546] = {.lex_state = 111}, [547] = {.lex_state = 111}, [548] = {.lex_state = 111}, [549] = {.lex_state = 111}, [550] = {.lex_state = 111}, [551] = {.lex_state = 111}, - [552] = {.lex_state = 49}, + [552] = {.lex_state = 111}, [553] = {.lex_state = 111}, - [554] = {.lex_state = 49}, - [555] = {.lex_state = 49}, - [556] = {.lex_state = 49}, - [557] = {.lex_state = 49}, - [558] = {.lex_state = 49}, + [554] = {.lex_state = 111}, + [555] = {.lex_state = 111}, + [556] = {.lex_state = 111}, + [557] = {.lex_state = 111}, + [558] = {.lex_state = 111}, [559] = {.lex_state = 111}, [560] = {.lex_state = 111}, [561] = {.lex_state = 111}, - [562] = {.lex_state = 50}, - [563] = {.lex_state = 50}, + [562] = {.lex_state = 111}, + [563] = {.lex_state = 111}, [564] = {.lex_state = 111}, - [565] = {.lex_state = 50}, - [566] = {.lex_state = 50}, - [567] = {.lex_state = 50}, - [568] = {.lex_state = 50}, - [569] = {.lex_state = 50}, - [570] = {.lex_state = 50}, - [571] = {.lex_state = 50}, - [572] = {.lex_state = 49}, - [573] = {.lex_state = 50}, - [574] = {.lex_state = 50}, - [575] = {.lex_state = 50}, - [576] = {.lex_state = 50}, - [577] = {.lex_state = 50}, - [578] = {.lex_state = 50}, - [579] = {.lex_state = 50}, - [580] = {.lex_state = 50}, - [581] = {.lex_state = 50}, - [582] = {.lex_state = 50}, - [583] = {.lex_state = 50}, - [584] = {.lex_state = 50}, - [585] = {.lex_state = 50}, - [586] = {.lex_state = 50}, - [587] = {.lex_state = 48}, - [588] = {.lex_state = 53}, - [589] = {.lex_state = 53}, - [590] = {.lex_state = 48}, - [591] = {.lex_state = 48}, - [592] = {.lex_state = 53}, + [565] = {.lex_state = 111}, + [566] = {.lex_state = 111}, + [567] = {.lex_state = 111}, + [568] = {.lex_state = 111}, + [569] = {.lex_state = 111}, + [570] = {.lex_state = 111}, + [571] = {.lex_state = 111}, + [572] = {.lex_state = 111}, + [573] = {.lex_state = 111}, + [574] = {.lex_state = 111}, + [575] = {.lex_state = 111}, + [576] = {.lex_state = 111}, + [577] = {.lex_state = 111}, + [578] = {.lex_state = 111}, + [579] = {.lex_state = 111}, + [580] = {.lex_state = 111}, + [581] = {.lex_state = 111}, + [582] = {.lex_state = 111}, + [583] = {.lex_state = 111}, + [584] = {.lex_state = 111}, + [585] = {.lex_state = 111}, + [586] = {.lex_state = 111}, + [587] = {.lex_state = 111}, + [588] = {.lex_state = 111}, + [589] = {.lex_state = 111}, + [590] = {.lex_state = 111}, + [591] = {.lex_state = 111}, + [592] = {.lex_state = 111}, [593] = {.lex_state = 111}, - [594] = {.lex_state = 49}, + [594] = {.lex_state = 111}, [595] = {.lex_state = 111}, [596] = {.lex_state = 111}, [597] = {.lex_state = 111}, @@ -13349,10 +13837,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [611] = {.lex_state = 111}, [612] = {.lex_state = 111}, [613] = {.lex_state = 111}, - [614] = {.lex_state = 111}, + [614] = {.lex_state = 41}, [615] = {.lex_state = 111}, [616] = {.lex_state = 111}, - [617] = {.lex_state = 111}, + [617] = {.lex_state = 41}, [618] = {.lex_state = 111}, [619] = {.lex_state = 111}, [620] = {.lex_state = 111}, @@ -13366,58 +13854,58 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [628] = {.lex_state = 111}, [629] = {.lex_state = 111}, [630] = {.lex_state = 111}, - [631] = {.lex_state = 111}, - [632] = {.lex_state = 111}, - [633] = {.lex_state = 111}, - [634] = {.lex_state = 111}, - [635] = {.lex_state = 111}, - [636] = {.lex_state = 111}, - [637] = {.lex_state = 111}, - [638] = {.lex_state = 111}, - [639] = {.lex_state = 111}, - [640] = {.lex_state = 111}, + [631] = {.lex_state = 47}, + [632] = {.lex_state = 47}, + [633] = {.lex_state = 47}, + [634] = {.lex_state = 47}, + [635] = {.lex_state = 47}, + [636] = {.lex_state = 47}, + [637] = {.lex_state = 47}, + [638] = {.lex_state = 47}, + [639] = {.lex_state = 47}, + [640] = {.lex_state = 47}, [641] = {.lex_state = 111}, [642] = {.lex_state = 111}, - [643] = {.lex_state = 111}, + [643] = {.lex_state = 47}, [644] = {.lex_state = 111}, - [645] = {.lex_state = 111}, - [646] = {.lex_state = 111}, - [647] = {.lex_state = 111}, - [648] = {.lex_state = 111}, - [649] = {.lex_state = 111}, - [650] = {.lex_state = 111}, - [651] = {.lex_state = 111}, - [652] = {.lex_state = 111}, - [653] = {.lex_state = 111}, - [654] = {.lex_state = 111}, - [655] = {.lex_state = 111}, - [656] = {.lex_state = 111}, + [645] = {.lex_state = 47}, + [646] = {.lex_state = 49}, + [647] = {.lex_state = 49}, + [648] = {.lex_state = 49}, + [649] = {.lex_state = 49}, + [650] = {.lex_state = 49}, + [651] = {.lex_state = 49}, + [652] = {.lex_state = 49}, + [653] = {.lex_state = 49}, + [654] = {.lex_state = 49}, + [655] = {.lex_state = 50}, + [656] = {.lex_state = 50}, [657] = {.lex_state = 111}, - [658] = {.lex_state = 111}, - [659] = {.lex_state = 111}, - [660] = {.lex_state = 111}, - [661] = {.lex_state = 111}, - [662] = {.lex_state = 111}, - [663] = {.lex_state = 111}, - [664] = {.lex_state = 111}, - [665] = {.lex_state = 49}, - [666] = {.lex_state = 111}, + [658] = {.lex_state = 50}, + [659] = {.lex_state = 50}, + [660] = {.lex_state = 49}, + [661] = {.lex_state = 50}, + [662] = {.lex_state = 50}, + [663] = {.lex_state = 50}, + [664] = {.lex_state = 50}, + [665] = {.lex_state = 50}, + [666] = {.lex_state = 50}, [667] = {.lex_state = 111}, [668] = {.lex_state = 111}, - [669] = {.lex_state = 49}, + [669] = {.lex_state = 111}, [670] = {.lex_state = 111}, [671] = {.lex_state = 111}, - [672] = {.lex_state = 49}, + [672] = {.lex_state = 111}, [673] = {.lex_state = 111}, [674] = {.lex_state = 111}, - [675] = {.lex_state = 49}, + [675] = {.lex_state = 111}, [676] = {.lex_state = 111}, [677] = {.lex_state = 111}, [678] = {.lex_state = 111}, - [679] = {.lex_state = 49}, + [679] = {.lex_state = 111}, [680] = {.lex_state = 111}, [681] = {.lex_state = 111}, - [682] = {.lex_state = 111}, + [682] = {.lex_state = 50}, [683] = {.lex_state = 111}, [684] = {.lex_state = 111}, [685] = {.lex_state = 111}, @@ -13498,129 +13986,129 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [760] = {.lex_state = 111}, [761] = {.lex_state = 111}, [762] = {.lex_state = 111}, - [763] = {.lex_state = 47}, - [764] = {.lex_state = 47}, - [765] = {.lex_state = 47}, - [766] = {.lex_state = 47}, - [767] = {.lex_state = 47}, - [768] = {.lex_state = 50}, - [769] = {.lex_state = 49}, - [770] = {.lex_state = 49}, + [763] = {.lex_state = 111}, + [764] = {.lex_state = 111}, + [765] = {.lex_state = 111}, + [766] = {.lex_state = 111}, + [767] = {.lex_state = 111}, + [768] = {.lex_state = 111}, + [769] = {.lex_state = 48}, + [770] = {.lex_state = 111}, [771] = {.lex_state = 111}, - [772] = {.lex_state = 50}, + [772] = {.lex_state = 111}, [773] = {.lex_state = 111}, [774] = {.lex_state = 111}, - [775] = {.lex_state = 50}, - [776] = {.lex_state = 50}, - [777] = {.lex_state = 50}, - [778] = {.lex_state = 50}, - [779] = {.lex_state = 50}, - [780] = {.lex_state = 50}, - [781] = {.lex_state = 50}, - [782] = {.lex_state = 50}, - [783] = {.lex_state = 48}, - [784] = {.lex_state = 50}, - [785] = {.lex_state = 50}, - [786] = {.lex_state = 50}, - [787] = {.lex_state = 50}, - [788] = {.lex_state = 50}, - [789] = {.lex_state = 50}, - [790] = {.lex_state = 50}, - [791] = {.lex_state = 50}, - [792] = {.lex_state = 50}, - [793] = {.lex_state = 50}, - [794] = {.lex_state = 50}, - [795] = {.lex_state = 50}, - [796] = {.lex_state = 50}, - [797] = {.lex_state = 50}, - [798] = {.lex_state = 50}, - [799] = {.lex_state = 50}, - [800] = {.lex_state = 50}, - [801] = {.lex_state = 50}, - [802] = {.lex_state = 50}, - [803] = {.lex_state = 48}, - [804] = {.lex_state = 50}, - [805] = {.lex_state = 50}, - [806] = {.lex_state = 50}, - [807] = {.lex_state = 50}, - [808] = {.lex_state = 50}, - [809] = {.lex_state = 50}, - [810] = {.lex_state = 50}, - [811] = {.lex_state = 50}, - [812] = {.lex_state = 50}, - [813] = {.lex_state = 50}, - [814] = {.lex_state = 50}, - [815] = {.lex_state = 50}, - [816] = {.lex_state = 50}, - [817] = {.lex_state = 48}, - [818] = {.lex_state = 50}, - [819] = {.lex_state = 50}, - [820] = {.lex_state = 50}, - [821] = {.lex_state = 49}, - [822] = {.lex_state = 49}, - [823] = {.lex_state = 49}, - [824] = {.lex_state = 50}, - [825] = {.lex_state = 49}, - [826] = {.lex_state = 49}, - [827] = {.lex_state = 49}, + [775] = {.lex_state = 111}, + [776] = {.lex_state = 111}, + [777] = {.lex_state = 111}, + [778] = {.lex_state = 111}, + [779] = {.lex_state = 111}, + [780] = {.lex_state = 111}, + [781] = {.lex_state = 111}, + [782] = {.lex_state = 111}, + [783] = {.lex_state = 111}, + [784] = {.lex_state = 111}, + [785] = {.lex_state = 111}, + [786] = {.lex_state = 111}, + [787] = {.lex_state = 111}, + [788] = {.lex_state = 111}, + [789] = {.lex_state = 111}, + [790] = {.lex_state = 111}, + [791] = {.lex_state = 111}, + [792] = {.lex_state = 111}, + [793] = {.lex_state = 111}, + [794] = {.lex_state = 53}, + [795] = {.lex_state = 111}, + [796] = {.lex_state = 111}, + [797] = {.lex_state = 111}, + [798] = {.lex_state = 111}, + [799] = {.lex_state = 111}, + [800] = {.lex_state = 111}, + [801] = {.lex_state = 111}, + [802] = {.lex_state = 111}, + [803] = {.lex_state = 111}, + [804] = {.lex_state = 48}, + [805] = {.lex_state = 53}, + [806] = {.lex_state = 53}, + [807] = {.lex_state = 111}, + [808] = {.lex_state = 111}, + [809] = {.lex_state = 48}, + [810] = {.lex_state = 111}, + [811] = {.lex_state = 111}, + [812] = {.lex_state = 111}, + [813] = {.lex_state = 111}, + [814] = {.lex_state = 111}, + [815] = {.lex_state = 111}, + [816] = {.lex_state = 111}, + [817] = {.lex_state = 111}, + [818] = {.lex_state = 111}, + [819] = {.lex_state = 111}, + [820] = {.lex_state = 111}, + [821] = {.lex_state = 111}, + [822] = {.lex_state = 111}, + [823] = {.lex_state = 111}, + [824] = {.lex_state = 111}, + [825] = {.lex_state = 111}, + [826] = {.lex_state = 111}, + [827] = {.lex_state = 111}, [828] = {.lex_state = 111}, - [829] = {.lex_state = 49}, - [830] = {.lex_state = 50}, - [831] = {.lex_state = 49}, - [832] = {.lex_state = 50}, - [833] = {.lex_state = 50}, - [834] = {.lex_state = 50}, - [835] = {.lex_state = 50}, + [829] = {.lex_state = 111}, + [830] = {.lex_state = 111}, + [831] = {.lex_state = 111}, + [832] = {.lex_state = 111}, + [833] = {.lex_state = 111}, + [834] = {.lex_state = 111}, + [835] = {.lex_state = 111}, [836] = {.lex_state = 111}, - [837] = {.lex_state = 50}, - [838] = {.lex_state = 50}, - [839] = {.lex_state = 50}, - [840] = {.lex_state = 50}, - [841] = {.lex_state = 50}, - [842] = {.lex_state = 50}, - [843] = {.lex_state = 50}, - [844] = {.lex_state = 50}, - [845] = {.lex_state = 50}, - [846] = {.lex_state = 50}, - [847] = {.lex_state = 50}, - [848] = {.lex_state = 49}, - [849] = {.lex_state = 50}, - [850] = {.lex_state = 50}, - [851] = {.lex_state = 50}, - [852] = {.lex_state = 50}, - [853] = {.lex_state = 50}, - [854] = {.lex_state = 50}, - [855] = {.lex_state = 50}, - [856] = {.lex_state = 50}, - [857] = {.lex_state = 49}, - [858] = {.lex_state = 49}, - [859] = {.lex_state = 50}, - [860] = {.lex_state = 49}, - [861] = {.lex_state = 49}, + [837] = {.lex_state = 111}, + [838] = {.lex_state = 111}, + [839] = {.lex_state = 111}, + [840] = {.lex_state = 111}, + [841] = {.lex_state = 49}, + [842] = {.lex_state = 49}, + [843] = {.lex_state = 49}, + [844] = {.lex_state = 49}, + [845] = {.lex_state = 49}, + [846] = {.lex_state = 49}, + [847] = {.lex_state = 47}, + [848] = {.lex_state = 47}, + [849] = {.lex_state = 47}, + [850] = {.lex_state = 47}, + [851] = {.lex_state = 49}, + [852] = {.lex_state = 111}, + [853] = {.lex_state = 111}, + [854] = {.lex_state = 111}, + [855] = {.lex_state = 47}, + [856] = {.lex_state = 49}, + [857] = {.lex_state = 47}, + [858] = {.lex_state = 47}, + [859] = {.lex_state = 47}, + [860] = {.lex_state = 47}, + [861] = {.lex_state = 111}, [862] = {.lex_state = 50}, - [863] = {.lex_state = 49}, - [864] = {.lex_state = 49}, + [863] = {.lex_state = 50}, + [864] = {.lex_state = 50}, [865] = {.lex_state = 50}, [866] = {.lex_state = 50}, - [867] = {.lex_state = 49}, - [868] = {.lex_state = 49}, - [869] = {.lex_state = 49}, - [870] = {.lex_state = 49}, - [871] = {.lex_state = 49}, + [867] = {.lex_state = 50}, + [868] = {.lex_state = 50}, + [869] = {.lex_state = 50}, + [870] = {.lex_state = 50}, + [871] = {.lex_state = 50}, [872] = {.lex_state = 49}, - [873] = {.lex_state = 49}, + [873] = {.lex_state = 111}, [874] = {.lex_state = 49}, [875] = {.lex_state = 49}, [876] = {.lex_state = 49}, [877] = {.lex_state = 49}, - [878] = {.lex_state = 49}, - [879] = {.lex_state = 49}, + [878] = {.lex_state = 47}, + [879] = {.lex_state = 47}, [880] = {.lex_state = 49}, - [881] = {.lex_state = 49}, - [882] = {.lex_state = 49}, - [883] = {.lex_state = 49}, - [884] = {.lex_state = 49}, - [885] = {.lex_state = 50}, + [881] = {.lex_state = 47}, + [882] = {.lex_state = 47}, + [883] = {.lex_state = 47}, + [884] = {.lex_state = 47}, + [885] = {.lex_state = 49}, [886] = {.lex_state = 50}, [887] = {.lex_state = 50}, [888] = {.lex_state = 50}, @@ -13628,243 +14116,243 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [890] = {.lex_state = 50}, [891] = {.lex_state = 50}, [892] = {.lex_state = 50}, - [893] = {.lex_state = 50}, - [894] = {.lex_state = 50}, + [893] = {.lex_state = 48}, + [894] = {.lex_state = 48}, [895] = {.lex_state = 50}, [896] = {.lex_state = 50}, [897] = {.lex_state = 50}, [898] = {.lex_state = 50}, - [899] = {.lex_state = 50}, + [899] = {.lex_state = 48}, [900] = {.lex_state = 50}, - [901] = {.lex_state = 49}, + [901] = {.lex_state = 50}, [902] = {.lex_state = 50}, [903] = {.lex_state = 50}, - [904] = {.lex_state = 49}, + [904] = {.lex_state = 50}, [905] = {.lex_state = 50}, [906] = {.lex_state = 50}, [907] = {.lex_state = 50}, [908] = {.lex_state = 50}, - [909] = {.lex_state = 49}, - [910] = {.lex_state = 50}, + [909] = {.lex_state = 50}, + [910] = {.lex_state = 47}, [911] = {.lex_state = 49}, - [912] = {.lex_state = 50}, - [913] = {.lex_state = 49}, - [914] = {.lex_state = 49}, - [915] = {.lex_state = 49}, - [916] = {.lex_state = 49}, - [917] = {.lex_state = 49}, - [918] = {.lex_state = 49}, - [919] = {.lex_state = 49}, - [920] = {.lex_state = 49}, - [921] = {.lex_state = 49}, - [922] = {.lex_state = 49}, - [923] = {.lex_state = 49}, - [924] = {.lex_state = 49}, - [925] = {.lex_state = 49}, - [926] = {.lex_state = 48}, - [927] = {.lex_state = 48}, - [928] = {.lex_state = 47}, - [929] = {.lex_state = 48}, - [930] = {.lex_state = 48}, - [931] = {.lex_state = 48}, + [912] = {.lex_state = 48}, + [913] = {.lex_state = 50}, + [914] = {.lex_state = 50}, + [915] = {.lex_state = 50}, + [916] = {.lex_state = 50}, + [917] = {.lex_state = 50}, + [918] = {.lex_state = 50}, + [919] = {.lex_state = 50}, + [920] = {.lex_state = 50}, + [921] = {.lex_state = 50}, + [922] = {.lex_state = 50}, + [923] = {.lex_state = 50}, + [924] = {.lex_state = 50}, + [925] = {.lex_state = 50}, + [926] = {.lex_state = 50}, + [927] = {.lex_state = 50}, + [928] = {.lex_state = 50}, + [929] = {.lex_state = 49}, + [930] = {.lex_state = 49}, + [931] = {.lex_state = 49}, [932] = {.lex_state = 49}, - [933] = {.lex_state = 53}, + [933] = {.lex_state = 49}, [934] = {.lex_state = 49}, - [935] = {.lex_state = 48}, - [936] = {.lex_state = 48}, - [937] = {.lex_state = 48}, - [938] = {.lex_state = 48}, + [935] = {.lex_state = 49}, + [936] = {.lex_state = 49}, + [937] = {.lex_state = 49}, + [938] = {.lex_state = 49}, [939] = {.lex_state = 49}, [940] = {.lex_state = 49}, - [941] = {.lex_state = 48}, - [942] = {.lex_state = 53}, - [943] = {.lex_state = 53}, - [944] = {.lex_state = 53}, - [945] = {.lex_state = 48}, - [946] = {.lex_state = 48}, - [947] = {.lex_state = 47}, - [948] = {.lex_state = 53}, - [949] = {.lex_state = 53}, + [941] = {.lex_state = 49}, + [942] = {.lex_state = 49}, + [943] = {.lex_state = 49}, + [944] = {.lex_state = 49}, + [945] = {.lex_state = 49}, + [946] = {.lex_state = 49}, + [947] = {.lex_state = 49}, + [948] = {.lex_state = 49}, + [949] = {.lex_state = 49}, [950] = {.lex_state = 49}, [951] = {.lex_state = 49}, - [952] = {.lex_state = 53}, - [953] = {.lex_state = 53}, - [954] = {.lex_state = 53}, - [955] = {.lex_state = 53}, - [956] = {.lex_state = 53}, - [957] = {.lex_state = 53}, - [958] = {.lex_state = 53}, - [959] = {.lex_state = 48}, - [960] = {.lex_state = 53}, - [961] = {.lex_state = 53}, - [962] = {.lex_state = 48}, - [963] = {.lex_state = 53}, - [964] = {.lex_state = 48}, - [965] = {.lex_state = 49}, - [966] = {.lex_state = 53}, - [967] = {.lex_state = 53}, - [968] = {.lex_state = 48}, - [969] = {.lex_state = 47}, + [952] = {.lex_state = 49}, + [953] = {.lex_state = 50}, + [954] = {.lex_state = 49}, + [955] = {.lex_state = 50}, + [956] = {.lex_state = 49}, + [957] = {.lex_state = 49}, + [958] = {.lex_state = 49}, + [959] = {.lex_state = 49}, + [960] = {.lex_state = 49}, + [961] = {.lex_state = 50}, + [962] = {.lex_state = 50}, + [963] = {.lex_state = 50}, + [964] = {.lex_state = 50}, + [965] = {.lex_state = 50}, + [966] = {.lex_state = 50}, + [967] = {.lex_state = 50}, + [968] = {.lex_state = 50}, + [969] = {.lex_state = 50}, [970] = {.lex_state = 49}, - [971] = {.lex_state = 48}, - [972] = {.lex_state = 53}, - [973] = {.lex_state = 49}, - [974] = {.lex_state = 53}, - [975] = {.lex_state = 53}, - [976] = {.lex_state = 48}, - [977] = {.lex_state = 53}, - [978] = {.lex_state = 48}, - [979] = {.lex_state = 48}, - [980] = {.lex_state = 48}, - [981] = {.lex_state = 53}, - [982] = {.lex_state = 53}, - [983] = {.lex_state = 47}, - [984] = {.lex_state = 48}, - [985] = {.lex_state = 48}, + [971] = {.lex_state = 49}, + [972] = {.lex_state = 50}, + [973] = {.lex_state = 50}, + [974] = {.lex_state = 50}, + [975] = {.lex_state = 50}, + [976] = {.lex_state = 50}, + [977] = {.lex_state = 50}, + [978] = {.lex_state = 50}, + [979] = {.lex_state = 50}, + [980] = {.lex_state = 50}, + [981] = {.lex_state = 50}, + [982] = {.lex_state = 50}, + [983] = {.lex_state = 50}, + [984] = {.lex_state = 50}, + [985] = {.lex_state = 47}, [986] = {.lex_state = 49}, [987] = {.lex_state = 49}, - [988] = {.lex_state = 49}, + [988] = {.lex_state = 47}, [989] = {.lex_state = 47}, - [990] = {.lex_state = 49}, + [990] = {.lex_state = 47}, [991] = {.lex_state = 49}, - [992] = {.lex_state = 48}, - [993] = {.lex_state = 50}, - [994] = {.lex_state = 49}, - [995] = {.lex_state = 49}, - [996] = {.lex_state = 49}, - [997] = {.lex_state = 49}, - [998] = {.lex_state = 49}, - [999] = {.lex_state = 50}, - [1000] = {.lex_state = 50}, - [1001] = {.lex_state = 49}, - [1002] = {.lex_state = 49}, - [1003] = {.lex_state = 49}, - [1004] = {.lex_state = 49}, - [1005] = {.lex_state = 49}, - [1006] = {.lex_state = 49}, - [1007] = {.lex_state = 49}, - [1008] = {.lex_state = 49}, + [992] = {.lex_state = 49}, + [993] = {.lex_state = 47}, + [994] = {.lex_state = 47}, + [995] = {.lex_state = 47}, + [996] = {.lex_state = 47}, + [997] = {.lex_state = 47}, + [998] = {.lex_state = 47}, + [999] = {.lex_state = 47}, + [1000] = {.lex_state = 49}, + [1001] = {.lex_state = 47}, + [1002] = {.lex_state = 47}, + [1003] = {.lex_state = 47}, + [1004] = {.lex_state = 47}, + [1005] = {.lex_state = 47}, + [1006] = {.lex_state = 47}, + [1007] = {.lex_state = 47}, + [1008] = {.lex_state = 53}, [1009] = {.lex_state = 49}, - [1010] = {.lex_state = 49}, - [1011] = {.lex_state = 49}, - [1012] = {.lex_state = 49}, - [1013] = {.lex_state = 49}, - [1014] = {.lex_state = 49}, - [1015] = {.lex_state = 49}, - [1016] = {.lex_state = 49}, - [1017] = {.lex_state = 49}, - [1018] = {.lex_state = 49}, - [1019] = {.lex_state = 49}, - [1020] = {.lex_state = 50}, - [1021] = {.lex_state = 49}, - [1022] = {.lex_state = 49}, - [1023] = {.lex_state = 49}, - [1024] = {.lex_state = 50}, + [1010] = {.lex_state = 48}, + [1011] = {.lex_state = 48}, + [1012] = {.lex_state = 111}, + [1013] = {.lex_state = 111}, + [1014] = {.lex_state = 48}, + [1015] = {.lex_state = 48}, + [1016] = {.lex_state = 48}, + [1017] = {.lex_state = 48}, + [1018] = {.lex_state = 48}, + [1019] = {.lex_state = 48}, + [1020] = {.lex_state = 49}, + [1021] = {.lex_state = 47}, + [1022] = {.lex_state = 47}, + [1023] = {.lex_state = 111}, + [1024] = {.lex_state = 47}, [1025] = {.lex_state = 49}, - [1026] = {.lex_state = 50}, - [1027] = {.lex_state = 50}, - [1028] = {.lex_state = 49}, - [1029] = {.lex_state = 49}, - [1030] = {.lex_state = 50}, - [1031] = {.lex_state = 49}, - [1032] = {.lex_state = 50}, - [1033] = {.lex_state = 50}, - [1034] = {.lex_state = 50}, - [1035] = {.lex_state = 49}, - [1036] = {.lex_state = 50}, - [1037] = {.lex_state = 50}, - [1038] = {.lex_state = 111}, - [1039] = {.lex_state = 111}, - [1040] = {.lex_state = 111}, - [1041] = {.lex_state = 111}, - [1042] = {.lex_state = 111}, - [1043] = {.lex_state = 111}, + [1026] = {.lex_state = 111}, + [1027] = {.lex_state = 48}, + [1028] = {.lex_state = 48}, + [1029] = {.lex_state = 53}, + [1030] = {.lex_state = 49}, + [1031] = {.lex_state = 53}, + [1032] = {.lex_state = 53}, + [1033] = {.lex_state = 53}, + [1034] = {.lex_state = 53}, + [1035] = {.lex_state = 48}, + [1036] = {.lex_state = 53}, + [1037] = {.lex_state = 47}, + [1038] = {.lex_state = 48}, + [1039] = {.lex_state = 48}, + [1040] = {.lex_state = 48}, + [1041] = {.lex_state = 53}, + [1042] = {.lex_state = 49}, + [1043] = {.lex_state = 47}, [1044] = {.lex_state = 49}, - [1045] = {.lex_state = 49}, - [1046] = {.lex_state = 49}, - [1047] = {.lex_state = 49}, - [1048] = {.lex_state = 49}, - [1049] = {.lex_state = 49}, + [1045] = {.lex_state = 47}, + [1046] = {.lex_state = 48}, + [1047] = {.lex_state = 111}, + [1048] = {.lex_state = 47}, + [1049] = {.lex_state = 53}, [1050] = {.lex_state = 49}, - [1051] = {.lex_state = 50}, + [1051] = {.lex_state = 48}, [1052] = {.lex_state = 49}, - [1053] = {.lex_state = 49}, - [1054] = {.lex_state = 49}, - [1055] = {.lex_state = 49}, - [1056] = {.lex_state = 50}, - [1057] = {.lex_state = 50}, + [1053] = {.lex_state = 48}, + [1054] = {.lex_state = 53}, + [1055] = {.lex_state = 111}, + [1056] = {.lex_state = 47}, + [1057] = {.lex_state = 53}, [1058] = {.lex_state = 49}, - [1059] = {.lex_state = 49}, - [1060] = {.lex_state = 49}, - [1061] = {.lex_state = 49}, - [1062] = {.lex_state = 50}, - [1063] = {.lex_state = 50}, - [1064] = {.lex_state = 50}, + [1059] = {.lex_state = 48}, + [1060] = {.lex_state = 47}, + [1061] = {.lex_state = 48}, + [1062] = {.lex_state = 48}, + [1063] = {.lex_state = 47}, + [1064] = {.lex_state = 48}, [1065] = {.lex_state = 49}, - [1066] = {.lex_state = 50}, - [1067] = {.lex_state = 50}, - [1068] = {.lex_state = 50}, - [1069] = {.lex_state = 50}, - [1070] = {.lex_state = 50}, - [1071] = {.lex_state = 50}, - [1072] = {.lex_state = 50}, - [1073] = {.lex_state = 50}, - [1074] = {.lex_state = 50}, - [1075] = {.lex_state = 50}, - [1076] = {.lex_state = 50}, - [1077] = {.lex_state = 50}, - [1078] = {.lex_state = 50}, - [1079] = {.lex_state = 50}, - [1080] = {.lex_state = 50}, - [1081] = {.lex_state = 50}, - [1082] = {.lex_state = 50}, - [1083] = {.lex_state = 50}, - [1084] = {.lex_state = 50}, - [1085] = {.lex_state = 50}, - [1086] = {.lex_state = 50}, - [1087] = {.lex_state = 50}, - [1088] = {.lex_state = 50}, - [1089] = {.lex_state = 50}, - [1090] = {.lex_state = 50}, - [1091] = {.lex_state = 50}, - [1092] = {.lex_state = 50}, - [1093] = {.lex_state = 50}, - [1094] = {.lex_state = 50}, - [1095] = {.lex_state = 50}, - [1096] = {.lex_state = 50}, - [1097] = {.lex_state = 50}, - [1098] = {.lex_state = 50}, - [1099] = {.lex_state = 50}, - [1100] = {.lex_state = 50}, - [1101] = {.lex_state = 50}, - [1102] = {.lex_state = 50}, - [1103] = {.lex_state = 50}, - [1104] = {.lex_state = 50}, - [1105] = {.lex_state = 50}, - [1106] = {.lex_state = 50}, - [1107] = {.lex_state = 50}, - [1108] = {.lex_state = 50}, - [1109] = {.lex_state = 50}, - [1110] = {.lex_state = 50}, - [1111] = {.lex_state = 50}, - [1112] = {.lex_state = 50}, - [1113] = {.lex_state = 50}, - [1114] = {.lex_state = 50}, - [1115] = {.lex_state = 50}, - [1116] = {.lex_state = 50}, - [1117] = {.lex_state = 50}, - [1118] = {.lex_state = 50}, - [1119] = {.lex_state = 50}, - [1120] = {.lex_state = 50}, - [1121] = {.lex_state = 50}, - [1122] = {.lex_state = 50}, - [1123] = {.lex_state = 50}, - [1124] = {.lex_state = 50}, - [1125] = {.lex_state = 50}, - [1126] = {.lex_state = 50}, - [1127] = {.lex_state = 50}, - [1128] = {.lex_state = 50}, - [1129] = {.lex_state = 50}, + [1066] = {.lex_state = 49}, + [1067] = {.lex_state = 49}, + [1068] = {.lex_state = 49}, + [1069] = {.lex_state = 49}, + [1070] = {.lex_state = 48}, + [1071] = {.lex_state = 48}, + [1072] = {.lex_state = 53}, + [1073] = {.lex_state = 53}, + [1074] = {.lex_state = 49}, + [1075] = {.lex_state = 53}, + [1076] = {.lex_state = 53}, + [1077] = {.lex_state = 48}, + [1078] = {.lex_state = 53}, + [1079] = {.lex_state = 53}, + [1080] = {.lex_state = 53}, + [1081] = {.lex_state = 53}, + [1082] = {.lex_state = 53}, + [1083] = {.lex_state = 53}, + [1084] = {.lex_state = 53}, + [1085] = {.lex_state = 53}, + [1086] = {.lex_state = 53}, + [1087] = {.lex_state = 49}, + [1088] = {.lex_state = 49}, + [1089] = {.lex_state = 49}, + [1090] = {.lex_state = 49}, + [1091] = {.lex_state = 49}, + [1092] = {.lex_state = 49}, + [1093] = {.lex_state = 49}, + [1094] = {.lex_state = 49}, + [1095] = {.lex_state = 49}, + [1096] = {.lex_state = 49}, + [1097] = {.lex_state = 49}, + [1098] = {.lex_state = 49}, + [1099] = {.lex_state = 49}, + [1100] = {.lex_state = 49}, + [1101] = {.lex_state = 49}, + [1102] = {.lex_state = 49}, + [1103] = {.lex_state = 49}, + [1104] = {.lex_state = 49}, + [1105] = {.lex_state = 49}, + [1106] = {.lex_state = 49}, + [1107] = {.lex_state = 49}, + [1108] = {.lex_state = 49}, + [1109] = {.lex_state = 49}, + [1110] = {.lex_state = 49}, + [1111] = {.lex_state = 49}, + [1112] = {.lex_state = 49}, + [1113] = {.lex_state = 49}, + [1114] = {.lex_state = 49}, + [1115] = {.lex_state = 49}, + [1116] = {.lex_state = 49}, + [1117] = {.lex_state = 49}, + [1118] = {.lex_state = 49}, + [1119] = {.lex_state = 49}, + [1120] = {.lex_state = 49}, + [1121] = {.lex_state = 49}, + [1122] = {.lex_state = 49}, + [1123] = {.lex_state = 49}, + [1124] = {.lex_state = 49}, + [1125] = {.lex_state = 49}, + [1126] = {.lex_state = 49}, + [1127] = {.lex_state = 49}, + [1128] = {.lex_state = 49}, + [1129] = {.lex_state = 49}, [1130] = {.lex_state = 50}, [1131] = {.lex_state = 50}, [1132] = {.lex_state = 50}, @@ -13874,222 +14362,222 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1136] = {.lex_state = 50}, [1137] = {.lex_state = 50}, [1138] = {.lex_state = 50}, - [1139] = {.lex_state = 50}, + [1139] = {.lex_state = 49}, [1140] = {.lex_state = 50}, - [1141] = {.lex_state = 50}, - [1142] = {.lex_state = 50}, + [1141] = {.lex_state = 49}, + [1142] = {.lex_state = 49}, [1143] = {.lex_state = 50}, - [1144] = {.lex_state = 49}, - [1145] = {.lex_state = 49}, - [1146] = {.lex_state = 50}, - [1147] = {.lex_state = 50}, - [1148] = {.lex_state = 50}, - [1149] = {.lex_state = 50}, - [1150] = {.lex_state = 50}, + [1144] = {.lex_state = 50}, + [1145] = {.lex_state = 50}, + [1146] = {.lex_state = 49}, + [1147] = {.lex_state = 49}, + [1148] = {.lex_state = 49}, + [1149] = {.lex_state = 49}, + [1150] = {.lex_state = 49}, [1151] = {.lex_state = 49}, - [1152] = {.lex_state = 50}, - [1153] = {.lex_state = 50}, + [1152] = {.lex_state = 49}, + [1153] = {.lex_state = 49}, [1154] = {.lex_state = 49}, - [1155] = {.lex_state = 50}, - [1156] = {.lex_state = 50}, - [1157] = {.lex_state = 50}, - [1158] = {.lex_state = 50}, - [1159] = {.lex_state = 50}, + [1155] = {.lex_state = 49}, + [1156] = {.lex_state = 49}, + [1157] = {.lex_state = 49}, + [1158] = {.lex_state = 49}, + [1159] = {.lex_state = 49}, [1160] = {.lex_state = 49}, - [1161] = {.lex_state = 50}, - [1162] = {.lex_state = 50}, - [1163] = {.lex_state = 49}, - [1164] = {.lex_state = 50}, + [1161] = {.lex_state = 49}, + [1162] = {.lex_state = 47}, + [1163] = {.lex_state = 47}, + [1164] = {.lex_state = 47}, [1165] = {.lex_state = 50}, - [1166] = {.lex_state = 50}, - [1167] = {.lex_state = 50}, - [1168] = {.lex_state = 50}, - [1169] = {.lex_state = 50}, - [1170] = {.lex_state = 50}, - [1171] = {.lex_state = 50}, - [1172] = {.lex_state = 50}, - [1173] = {.lex_state = 50}, - [1174] = {.lex_state = 50}, - [1175] = {.lex_state = 49}, - [1176] = {.lex_state = 50}, - [1177] = {.lex_state = 50}, - [1178] = {.lex_state = 49}, - [1179] = {.lex_state = 50}, - [1180] = {.lex_state = 50}, - [1181] = {.lex_state = 50}, - [1182] = {.lex_state = 50}, - [1183] = {.lex_state = 50}, - [1184] = {.lex_state = 50}, - [1185] = {.lex_state = 50}, - [1186] = {.lex_state = 50}, - [1187] = {.lex_state = 50}, - [1188] = {.lex_state = 50}, - [1189] = {.lex_state = 50}, - [1190] = {.lex_state = 49}, - [1191] = {.lex_state = 49}, - [1192] = {.lex_state = 49}, + [1166] = {.lex_state = 47}, + [1167] = {.lex_state = 47}, + [1168] = {.lex_state = 47}, + [1169] = {.lex_state = 47}, + [1170] = {.lex_state = 47}, + [1171] = {.lex_state = 47}, + [1172] = {.lex_state = 47}, + [1173] = {.lex_state = 47}, + [1174] = {.lex_state = 47}, + [1175] = {.lex_state = 47}, + [1176] = {.lex_state = 47}, + [1177] = {.lex_state = 47}, + [1178] = {.lex_state = 47}, + [1179] = {.lex_state = 47}, + [1180] = {.lex_state = 47}, + [1181] = {.lex_state = 47}, + [1182] = {.lex_state = 47}, + [1183] = {.lex_state = 47}, + [1184] = {.lex_state = 49}, + [1185] = {.lex_state = 47}, + [1186] = {.lex_state = 47}, + [1187] = {.lex_state = 47}, + [1188] = {.lex_state = 47}, + [1189] = {.lex_state = 47}, + [1190] = {.lex_state = 47}, + [1191] = {.lex_state = 47}, + [1192] = {.lex_state = 47}, [1193] = {.lex_state = 49}, [1194] = {.lex_state = 49}, [1195] = {.lex_state = 49}, - [1196] = {.lex_state = 49}, - [1197] = {.lex_state = 49}, - [1198] = {.lex_state = 49}, - [1199] = {.lex_state = 49}, - [1200] = {.lex_state = 49}, - [1201] = {.lex_state = 49}, - [1202] = {.lex_state = 49}, - [1203] = {.lex_state = 49}, - [1204] = {.lex_state = 49}, - [1205] = {.lex_state = 49}, - [1206] = {.lex_state = 49}, - [1207] = {.lex_state = 49}, - [1208] = {.lex_state = 49}, - [1209] = {.lex_state = 49}, - [1210] = {.lex_state = 49}, - [1211] = {.lex_state = 49}, - [1212] = {.lex_state = 49}, - [1213] = {.lex_state = 49}, - [1214] = {.lex_state = 49}, - [1215] = {.lex_state = 49}, - [1216] = {.lex_state = 49}, - [1217] = {.lex_state = 49}, - [1218] = {.lex_state = 49}, - [1219] = {.lex_state = 49}, + [1196] = {.lex_state = 47}, + [1197] = {.lex_state = 47}, + [1198] = {.lex_state = 47}, + [1199] = {.lex_state = 47}, + [1200] = {.lex_state = 47}, + [1201] = {.lex_state = 47}, + [1202] = {.lex_state = 47}, + [1203] = {.lex_state = 47}, + [1204] = {.lex_state = 47}, + [1205] = {.lex_state = 47}, + [1206] = {.lex_state = 47}, + [1207] = {.lex_state = 47}, + [1208] = {.lex_state = 47}, + [1209] = {.lex_state = 47}, + [1210] = {.lex_state = 47}, + [1211] = {.lex_state = 47}, + [1212] = {.lex_state = 47}, + [1213] = {.lex_state = 47}, + [1214] = {.lex_state = 47}, + [1215] = {.lex_state = 47}, + [1216] = {.lex_state = 47}, + [1217] = {.lex_state = 47}, + [1218] = {.lex_state = 47}, + [1219] = {.lex_state = 47}, [1220] = {.lex_state = 49}, - [1221] = {.lex_state = 49}, - [1222] = {.lex_state = 49}, - [1223] = {.lex_state = 49}, - [1224] = {.lex_state = 50}, - [1225] = {.lex_state = 50}, - [1226] = {.lex_state = 49}, - [1227] = {.lex_state = 49}, - [1228] = {.lex_state = 49}, - [1229] = {.lex_state = 49}, - [1230] = {.lex_state = 49}, - [1231] = {.lex_state = 49}, - [1232] = {.lex_state = 49}, - [1233] = {.lex_state = 49}, - [1234] = {.lex_state = 49}, - [1235] = {.lex_state = 49}, - [1236] = {.lex_state = 49}, - [1237] = {.lex_state = 49}, - [1238] = {.lex_state = 49}, - [1239] = {.lex_state = 49}, - [1240] = {.lex_state = 49}, - [1241] = {.lex_state = 49}, - [1242] = {.lex_state = 49}, - [1243] = {.lex_state = 49}, - [1244] = {.lex_state = 46}, - [1245] = {.lex_state = 23}, - [1246] = {.lex_state = 49}, - [1247] = {.lex_state = 46}, - [1248] = {.lex_state = 49}, - [1249] = {.lex_state = 49}, + [1221] = {.lex_state = 47}, + [1222] = {.lex_state = 47}, + [1223] = {.lex_state = 47}, + [1224] = {.lex_state = 47}, + [1225] = {.lex_state = 47}, + [1226] = {.lex_state = 47}, + [1227] = {.lex_state = 47}, + [1228] = {.lex_state = 47}, + [1229] = {.lex_state = 47}, + [1230] = {.lex_state = 47}, + [1231] = {.lex_state = 47}, + [1232] = {.lex_state = 47}, + [1233] = {.lex_state = 47}, + [1234] = {.lex_state = 47}, + [1235] = {.lex_state = 47}, + [1236] = {.lex_state = 47}, + [1237] = {.lex_state = 47}, + [1238] = {.lex_state = 47}, + [1239] = {.lex_state = 47}, + [1240] = {.lex_state = 47}, + [1241] = {.lex_state = 47}, + [1242] = {.lex_state = 47}, + [1243] = {.lex_state = 47}, + [1244] = {.lex_state = 47}, + [1245] = {.lex_state = 47}, + [1246] = {.lex_state = 47}, + [1247] = {.lex_state = 47}, + [1248] = {.lex_state = 47}, + [1249] = {.lex_state = 47}, [1250] = {.lex_state = 49}, - [1251] = {.lex_state = 49}, - [1252] = {.lex_state = 49}, - [1253] = {.lex_state = 46}, - [1254] = {.lex_state = 49}, + [1251] = {.lex_state = 47}, + [1252] = {.lex_state = 47}, + [1253] = {.lex_state = 47}, + [1254] = {.lex_state = 47}, [1255] = {.lex_state = 49}, - [1256] = {.lex_state = 49}, - [1257] = {.lex_state = 49}, - [1258] = {.lex_state = 46}, - [1259] = {.lex_state = 46}, - [1260] = {.lex_state = 46}, - [1261] = {.lex_state = 46}, - [1262] = {.lex_state = 49}, - [1263] = {.lex_state = 46}, - [1264] = {.lex_state = 46}, + [1256] = {.lex_state = 47}, + [1257] = {.lex_state = 47}, + [1258] = {.lex_state = 49}, + [1259] = {.lex_state = 49}, + [1260] = {.lex_state = 47}, + [1261] = {.lex_state = 47}, + [1262] = {.lex_state = 47}, + [1263] = {.lex_state = 49}, + [1264] = {.lex_state = 49}, [1265] = {.lex_state = 49}, [1266] = {.lex_state = 49}, - [1267] = {.lex_state = 49}, + [1267] = {.lex_state = 47}, [1268] = {.lex_state = 49}, [1269] = {.lex_state = 49}, [1270] = {.lex_state = 49}, - [1271] = {.lex_state = 46}, + [1271] = {.lex_state = 47}, [1272] = {.lex_state = 49}, - [1273] = {.lex_state = 46}, - [1274] = {.lex_state = 46}, - [1275] = {.lex_state = 46}, - [1276] = {.lex_state = 46}, - [1277] = {.lex_state = 46}, - [1278] = {.lex_state = 46}, - [1279] = {.lex_state = 46}, + [1273] = {.lex_state = 47}, + [1274] = {.lex_state = 47}, + [1275] = {.lex_state = 49}, + [1276] = {.lex_state = 49}, + [1277] = {.lex_state = 47}, + [1278] = {.lex_state = 47}, + [1279] = {.lex_state = 49}, [1280] = {.lex_state = 49}, - [1281] = {.lex_state = 46}, - [1282] = {.lex_state = 46}, - [1283] = {.lex_state = 46}, + [1281] = {.lex_state = 49}, + [1282] = {.lex_state = 49}, + [1283] = {.lex_state = 49}, [1284] = {.lex_state = 49}, - [1285] = {.lex_state = 46}, - [1286] = {.lex_state = 46}, - [1287] = {.lex_state = 46}, - [1288] = {.lex_state = 46}, + [1285] = {.lex_state = 49}, + [1286] = {.lex_state = 47}, + [1287] = {.lex_state = 49}, + [1288] = {.lex_state = 49}, [1289] = {.lex_state = 49}, - [1290] = {.lex_state = 49}, - [1291] = {.lex_state = 46}, - [1292] = {.lex_state = 49}, + [1290] = {.lex_state = 47}, + [1291] = {.lex_state = 49}, + [1292] = {.lex_state = 47}, [1293] = {.lex_state = 49}, - [1294] = {.lex_state = 49}, - [1295] = {.lex_state = 49}, - [1296] = {.lex_state = 46}, + [1294] = {.lex_state = 47}, + [1295] = {.lex_state = 47}, + [1296] = {.lex_state = 47}, [1297] = {.lex_state = 49}, - [1298] = {.lex_state = 46}, - [1299] = {.lex_state = 46}, - [1300] = {.lex_state = 46}, - [1301] = {.lex_state = 46}, - [1302] = {.lex_state = 46}, - [1303] = {.lex_state = 46}, + [1298] = {.lex_state = 49}, + [1299] = {.lex_state = 47}, + [1300] = {.lex_state = 47}, + [1301] = {.lex_state = 47}, + [1302] = {.lex_state = 47}, + [1303] = {.lex_state = 47}, [1304] = {.lex_state = 49}, - [1305] = {.lex_state = 46}, - [1306] = {.lex_state = 49}, + [1305] = {.lex_state = 47}, + [1306] = {.lex_state = 47}, [1307] = {.lex_state = 49}, - [1308] = {.lex_state = 46}, - [1309] = {.lex_state = 49}, - [1310] = {.lex_state = 46}, - [1311] = {.lex_state = 46}, - [1312] = {.lex_state = 46}, - [1313] = {.lex_state = 46}, - [1314] = {.lex_state = 46}, - [1315] = {.lex_state = 23}, - [1316] = {.lex_state = 23}, - [1317] = {.lex_state = 23}, - [1318] = {.lex_state = 49}, - [1319] = {.lex_state = 23}, - [1320] = {.lex_state = 23}, + [1308] = {.lex_state = 47}, + [1309] = {.lex_state = 47}, + [1310] = {.lex_state = 49}, + [1311] = {.lex_state = 47}, + [1312] = {.lex_state = 49}, + [1313] = {.lex_state = 47}, + [1314] = {.lex_state = 47}, + [1315] = {.lex_state = 49}, + [1316] = {.lex_state = 49}, + [1317] = {.lex_state = 49}, + [1318] = {.lex_state = 47}, + [1319] = {.lex_state = 49}, + [1320] = {.lex_state = 49}, [1321] = {.lex_state = 49}, - [1322] = {.lex_state = 23}, - [1323] = {.lex_state = 23}, - [1324] = {.lex_state = 23}, - [1325] = {.lex_state = 23}, - [1326] = {.lex_state = 23}, - [1327] = {.lex_state = 23}, - [1328] = {.lex_state = 23}, - [1329] = {.lex_state = 23}, - [1330] = {.lex_state = 23}, - [1331] = {.lex_state = 23}, - [1332] = {.lex_state = 23}, - [1333] = {.lex_state = 23}, - [1334] = {.lex_state = 23}, - [1335] = {.lex_state = 23}, - [1336] = {.lex_state = 23}, - [1337] = {.lex_state = 23}, - [1338] = {.lex_state = 23}, - [1339] = {.lex_state = 23}, - [1340] = {.lex_state = 23}, - [1341] = {.lex_state = 23}, - [1342] = {.lex_state = 23}, - [1343] = {.lex_state = 23}, - [1344] = {.lex_state = 23}, - [1345] = {.lex_state = 23}, - [1346] = {.lex_state = 23}, + [1322] = {.lex_state = 49}, + [1323] = {.lex_state = 49}, + [1324] = {.lex_state = 49}, + [1325] = {.lex_state = 47}, + [1326] = {.lex_state = 47}, + [1327] = {.lex_state = 49}, + [1328] = {.lex_state = 47}, + [1329] = {.lex_state = 49}, + [1330] = {.lex_state = 47}, + [1331] = {.lex_state = 49}, + [1332] = {.lex_state = 47}, + [1333] = {.lex_state = 49}, + [1334] = {.lex_state = 49}, + [1335] = {.lex_state = 49}, + [1336] = {.lex_state = 49}, + [1337] = {.lex_state = 47}, + [1338] = {.lex_state = 47}, + [1339] = {.lex_state = 49}, + [1340] = {.lex_state = 47}, + [1341] = {.lex_state = 49}, + [1342] = {.lex_state = 49}, + [1343] = {.lex_state = 47}, + [1344] = {.lex_state = 49}, + [1345] = {.lex_state = 49}, + [1346] = {.lex_state = 49}, [1347] = {.lex_state = 49}, [1348] = {.lex_state = 49}, [1349] = {.lex_state = 49}, [1350] = {.lex_state = 49}, [1351] = {.lex_state = 49}, - [1352] = {.lex_state = 49}, + [1352] = {.lex_state = 47}, [1353] = {.lex_state = 49}, - [1354] = {.lex_state = 49}, + [1354] = {.lex_state = 47}, [1355] = {.lex_state = 49}, [1356] = {.lex_state = 49}, [1357] = {.lex_state = 49}, @@ -14110,637 +14598,637 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1372] = {.lex_state = 49}, [1373] = {.lex_state = 49}, [1374] = {.lex_state = 49}, - [1375] = {.lex_state = 49}, + [1375] = {.lex_state = 46}, [1376] = {.lex_state = 49}, - [1377] = {.lex_state = 49}, - [1378] = {.lex_state = 49}, + [1377] = {.lex_state = 46}, + [1378] = {.lex_state = 23}, [1379] = {.lex_state = 49}, - [1380] = {.lex_state = 49}, - [1381] = {.lex_state = 49}, - [1382] = {.lex_state = 49}, - [1383] = {.lex_state = 49}, - [1384] = {.lex_state = 49}, - [1385] = {.lex_state = 49}, - [1386] = {.lex_state = 49}, - [1387] = {.lex_state = 49}, + [1380] = {.lex_state = 46}, + [1381] = {.lex_state = 46}, + [1382] = {.lex_state = 46}, + [1383] = {.lex_state = 46}, + [1384] = {.lex_state = 46}, + [1385] = {.lex_state = 46}, + [1386] = {.lex_state = 46}, + [1387] = {.lex_state = 46}, [1388] = {.lex_state = 49}, - [1389] = {.lex_state = 49}, - [1390] = {.lex_state = 49}, - [1391] = {.lex_state = 49}, - [1392] = {.lex_state = 49}, - [1393] = {.lex_state = 49}, - [1394] = {.lex_state = 49}, - [1395] = {.lex_state = 49}, + [1389] = {.lex_state = 46}, + [1390] = {.lex_state = 46}, + [1391] = {.lex_state = 46}, + [1392] = {.lex_state = 46}, + [1393] = {.lex_state = 46}, + [1394] = {.lex_state = 46}, + [1395] = {.lex_state = 46}, [1396] = {.lex_state = 49}, - [1397] = {.lex_state = 49}, - [1398] = {.lex_state = 49}, - [1399] = {.lex_state = 49}, - [1400] = {.lex_state = 47}, - [1401] = {.lex_state = 49}, + [1397] = {.lex_state = 46}, + [1398] = {.lex_state = 46}, + [1399] = {.lex_state = 46}, + [1400] = {.lex_state = 46}, + [1401] = {.lex_state = 46}, [1402] = {.lex_state = 49}, - [1403] = {.lex_state = 49}, - [1404] = {.lex_state = 49}, - [1405] = {.lex_state = 47}, - [1406] = {.lex_state = 49}, - [1407] = {.lex_state = 49}, - [1408] = {.lex_state = 49}, - [1409] = {.lex_state = 49}, - [1410] = {.lex_state = 49}, + [1403] = {.lex_state = 46}, + [1404] = {.lex_state = 46}, + [1405] = {.lex_state = 49}, + [1406] = {.lex_state = 46}, + [1407] = {.lex_state = 46}, + [1408] = {.lex_state = 46}, + [1409] = {.lex_state = 46}, + [1410] = {.lex_state = 46}, [1411] = {.lex_state = 49}, [1412] = {.lex_state = 49}, - [1413] = {.lex_state = 0}, - [1414] = {.lex_state = 0}, - [1415] = {.lex_state = 49}, + [1413] = {.lex_state = 49}, + [1414] = {.lex_state = 46}, + [1415] = {.lex_state = 46}, [1416] = {.lex_state = 49}, - [1417] = {.lex_state = 49}, + [1417] = {.lex_state = 46}, [1418] = {.lex_state = 49}, - [1419] = {.lex_state = 111}, - [1420] = {.lex_state = 111}, - [1421] = {.lex_state = 111}, - [1422] = {.lex_state = 111}, - [1423] = {.lex_state = 111}, - [1424] = {.lex_state = 51}, - [1425] = {.lex_state = 111}, - [1426] = {.lex_state = 51}, - [1427] = {.lex_state = 111}, - [1428] = {.lex_state = 111}, - [1429] = {.lex_state = 51}, - [1430] = {.lex_state = 111}, - [1431] = {.lex_state = 111}, - [1432] = {.lex_state = 111}, - [1433] = {.lex_state = 111}, - [1434] = {.lex_state = 111}, - [1435] = {.lex_state = 111}, - [1436] = {.lex_state = 111}, - [1437] = {.lex_state = 111}, - [1438] = {.lex_state = 111}, - [1439] = {.lex_state = 51}, - [1440] = {.lex_state = 111}, - [1441] = {.lex_state = 111}, - [1442] = {.lex_state = 111}, - [1443] = {.lex_state = 51}, - [1444] = {.lex_state = 111}, - [1445] = {.lex_state = 111}, - [1446] = {.lex_state = 111}, - [1447] = {.lex_state = 111}, - [1448] = {.lex_state = 111}, + [1419] = {.lex_state = 46}, + [1420] = {.lex_state = 49}, + [1421] = {.lex_state = 49}, + [1422] = {.lex_state = 49}, + [1423] = {.lex_state = 46}, + [1424] = {.lex_state = 49}, + [1425] = {.lex_state = 49}, + [1426] = {.lex_state = 49}, + [1427] = {.lex_state = 46}, + [1428] = {.lex_state = 49}, + [1429] = {.lex_state = 46}, + [1430] = {.lex_state = 49}, + [1431] = {.lex_state = 46}, + [1432] = {.lex_state = 46}, + [1433] = {.lex_state = 49}, + [1434] = {.lex_state = 46}, + [1435] = {.lex_state = 49}, + [1436] = {.lex_state = 49}, + [1437] = {.lex_state = 49}, + [1438] = {.lex_state = 23}, + [1439] = {.lex_state = 23}, + [1440] = {.lex_state = 23}, + [1441] = {.lex_state = 23}, + [1442] = {.lex_state = 49}, + [1443] = {.lex_state = 23}, + [1444] = {.lex_state = 23}, + [1445] = {.lex_state = 23}, + [1446] = {.lex_state = 23}, + [1447] = {.lex_state = 23}, + [1448] = {.lex_state = 23}, [1449] = {.lex_state = 49}, - [1450] = {.lex_state = 49}, - [1451] = {.lex_state = 111}, - [1452] = {.lex_state = 111}, - [1453] = {.lex_state = 49}, - [1454] = {.lex_state = 111}, - [1455] = {.lex_state = 0}, - [1456] = {.lex_state = 111}, - [1457] = {.lex_state = 111}, - [1458] = {.lex_state = 0}, - [1459] = {.lex_state = 49}, - [1460] = {.lex_state = 49}, - [1461] = {.lex_state = 49}, - [1462] = {.lex_state = 111}, - [1463] = {.lex_state = 0}, - [1464] = {.lex_state = 49}, - [1465] = {.lex_state = 111}, + [1450] = {.lex_state = 23}, + [1451] = {.lex_state = 23}, + [1452] = {.lex_state = 23}, + [1453] = {.lex_state = 23}, + [1454] = {.lex_state = 23}, + [1455] = {.lex_state = 23}, + [1456] = {.lex_state = 23}, + [1457] = {.lex_state = 23}, + [1458] = {.lex_state = 23}, + [1459] = {.lex_state = 23}, + [1460] = {.lex_state = 23}, + [1461] = {.lex_state = 23}, + [1462] = {.lex_state = 23}, + [1463] = {.lex_state = 23}, + [1464] = {.lex_state = 23}, + [1465] = {.lex_state = 23}, [1466] = {.lex_state = 49}, - [1467] = {.lex_state = 49}, - [1468] = {.lex_state = 0}, - [1469] = {.lex_state = 111}, - [1470] = {.lex_state = 111}, - [1471] = {.lex_state = 111}, - [1472] = {.lex_state = 0}, - [1473] = {.lex_state = 111}, - [1474] = {.lex_state = 111}, - [1475] = {.lex_state = 111}, - [1476] = {.lex_state = 111}, - [1477] = {.lex_state = 111}, - [1478] = {.lex_state = 111}, - [1479] = {.lex_state = 111}, - [1480] = {.lex_state = 111}, + [1467] = {.lex_state = 23}, + [1468] = {.lex_state = 23}, + [1469] = {.lex_state = 23}, + [1470] = {.lex_state = 23}, + [1471] = {.lex_state = 49}, + [1472] = {.lex_state = 49}, + [1473] = {.lex_state = 49}, + [1474] = {.lex_state = 49}, + [1475] = {.lex_state = 49}, + [1476] = {.lex_state = 49}, + [1477] = {.lex_state = 49}, + [1478] = {.lex_state = 49}, + [1479] = {.lex_state = 49}, + [1480] = {.lex_state = 49}, [1481] = {.lex_state = 49}, - [1482] = {.lex_state = 111}, + [1482] = {.lex_state = 49}, [1483] = {.lex_state = 49}, - [1484] = {.lex_state = 111}, - [1485] = {.lex_state = 111}, - [1486] = {.lex_state = 0}, - [1487] = {.lex_state = 0}, - [1488] = {.lex_state = 111}, - [1489] = {.lex_state = 111}, - [1490] = {.lex_state = 111}, - [1491] = {.lex_state = 0}, - [1492] = {.lex_state = 111}, + [1484] = {.lex_state = 49}, + [1485] = {.lex_state = 49}, + [1486] = {.lex_state = 49}, + [1487] = {.lex_state = 49}, + [1488] = {.lex_state = 49}, + [1489] = {.lex_state = 49}, + [1490] = {.lex_state = 49}, + [1491] = {.lex_state = 49}, + [1492] = {.lex_state = 49}, [1493] = {.lex_state = 49}, - [1494] = {.lex_state = 111}, - [1495] = {.lex_state = 111}, + [1494] = {.lex_state = 49}, + [1495] = {.lex_state = 49}, [1496] = {.lex_state = 49}, [1497] = {.lex_state = 49}, - [1498] = {.lex_state = 111}, - [1499] = {.lex_state = 111}, - [1500] = {.lex_state = 111}, + [1498] = {.lex_state = 49}, + [1499] = {.lex_state = 49}, + [1500] = {.lex_state = 49}, [1501] = {.lex_state = 49}, - [1502] = {.lex_state = 111}, + [1502] = {.lex_state = 49}, [1503] = {.lex_state = 49}, [1504] = {.lex_state = 49}, - [1505] = {.lex_state = 111}, - [1506] = {.lex_state = 111}, + [1505] = {.lex_state = 49}, + [1506] = {.lex_state = 49}, [1507] = {.lex_state = 49}, - [1508] = {.lex_state = 111}, - [1509] = {.lex_state = 111}, - [1510] = {.lex_state = 111}, - [1511] = {.lex_state = 111}, + [1508] = {.lex_state = 49}, + [1509] = {.lex_state = 49}, + [1510] = {.lex_state = 49}, + [1511] = {.lex_state = 49}, [1512] = {.lex_state = 49}, - [1513] = {.lex_state = 111}, - [1514] = {.lex_state = 111}, + [1513] = {.lex_state = 49}, + [1514] = {.lex_state = 49}, [1515] = {.lex_state = 49}, [1516] = {.lex_state = 49}, [1517] = {.lex_state = 49}, - [1518] = {.lex_state = 42}, - [1519] = {.lex_state = 111}, + [1518] = {.lex_state = 49}, + [1519] = {.lex_state = 49}, [1520] = {.lex_state = 49}, [1521] = {.lex_state = 49}, [1522] = {.lex_state = 49}, [1523] = {.lex_state = 49}, - [1524] = {.lex_state = 26}, - [1525] = {.lex_state = 0}, - [1526] = {.lex_state = 31}, - [1527] = {.lex_state = 42}, - [1528] = {.lex_state = 26}, - [1529] = {.lex_state = 31}, - [1530] = {.lex_state = 26}, - [1531] = {.lex_state = 31}, - [1532] = {.lex_state = 111}, + [1524] = {.lex_state = 49}, + [1525] = {.lex_state = 49}, + [1526] = {.lex_state = 49}, + [1527] = {.lex_state = 49}, + [1528] = {.lex_state = 49}, + [1529] = {.lex_state = 49}, + [1530] = {.lex_state = 49}, + [1531] = {.lex_state = 49}, + [1532] = {.lex_state = 49}, [1533] = {.lex_state = 49}, - [1534] = {.lex_state = 0}, - [1535] = {.lex_state = 0}, - [1536] = {.lex_state = 31}, - [1537] = {.lex_state = 26}, - [1538] = {.lex_state = 0}, - [1539] = {.lex_state = 26}, - [1540] = {.lex_state = 31}, - [1541] = {.lex_state = 0}, + [1534] = {.lex_state = 49}, + [1535] = {.lex_state = 49}, + [1536] = {.lex_state = 49}, + [1537] = {.lex_state = 49}, + [1538] = {.lex_state = 49}, + [1539] = {.lex_state = 49}, + [1540] = {.lex_state = 49}, + [1541] = {.lex_state = 49}, [1542] = {.lex_state = 49}, - [1543] = {.lex_state = 0}, - [1544] = {.lex_state = 26}, - [1545] = {.lex_state = 0}, - [1546] = {.lex_state = 0}, - [1547] = {.lex_state = 31}, - [1548] = {.lex_state = 31}, - [1549] = {.lex_state = 0}, - [1550] = {.lex_state = 26}, - [1551] = {.lex_state = 26}, + [1543] = {.lex_state = 49}, + [1544] = {.lex_state = 49}, + [1545] = {.lex_state = 49}, + [1546] = {.lex_state = 49}, + [1547] = {.lex_state = 49}, + [1548] = {.lex_state = 49}, + [1549] = {.lex_state = 49}, + [1550] = {.lex_state = 49}, + [1551] = {.lex_state = 49}, [1552] = {.lex_state = 49}, - [1553] = {.lex_state = 26}, + [1553] = {.lex_state = 49}, [1554] = {.lex_state = 49}, - [1555] = {.lex_state = 0}, - [1556] = {.lex_state = 0}, - [1557] = {.lex_state = 0}, - [1558] = {.lex_state = 0}, + [1555] = {.lex_state = 49}, + [1556] = {.lex_state = 49}, + [1557] = {.lex_state = 49}, + [1558] = {.lex_state = 49}, [1559] = {.lex_state = 49}, - [1560] = {.lex_state = 0}, - [1561] = {.lex_state = 0}, - [1562] = {.lex_state = 0}, - [1563] = {.lex_state = 0}, - [1564] = {.lex_state = 0}, - [1565] = {.lex_state = 42}, - [1566] = {.lex_state = 0}, + [1560] = {.lex_state = 49}, + [1561] = {.lex_state = 49}, + [1562] = {.lex_state = 49}, + [1563] = {.lex_state = 49}, + [1564] = {.lex_state = 49}, + [1565] = {.lex_state = 49}, + [1566] = {.lex_state = 49}, [1567] = {.lex_state = 0}, [1568] = {.lex_state = 0}, - [1569] = {.lex_state = 0}, - [1570] = {.lex_state = 0}, - [1571] = {.lex_state = 0}, - [1572] = {.lex_state = 0}, - [1573] = {.lex_state = 0}, - [1574] = {.lex_state = 0}, - [1575] = {.lex_state = 0}, - [1576] = {.lex_state = 0}, - [1577] = {.lex_state = 0}, + [1569] = {.lex_state = 49}, + [1570] = {.lex_state = 49}, + [1571] = {.lex_state = 49}, + [1572] = {.lex_state = 49}, + [1573] = {.lex_state = 49}, + [1574] = {.lex_state = 49}, + [1575] = {.lex_state = 49}, + [1576] = {.lex_state = 49}, + [1577] = {.lex_state = 51}, [1578] = {.lex_state = 0}, - [1579] = {.lex_state = 42}, + [1579] = {.lex_state = 51}, [1580] = {.lex_state = 49}, - [1581] = {.lex_state = 0}, - [1582] = {.lex_state = 111}, + [1581] = {.lex_state = 51}, + [1582] = {.lex_state = 51}, [1583] = {.lex_state = 0}, - [1584] = {.lex_state = 0}, - [1585] = {.lex_state = 0}, + [1584] = {.lex_state = 51}, + [1585] = {.lex_state = 49}, [1586] = {.lex_state = 0}, - [1587] = {.lex_state = 42}, - [1588] = {.lex_state = 0}, + [1587] = {.lex_state = 49}, + [1588] = {.lex_state = 111}, [1589] = {.lex_state = 0}, - [1590] = {.lex_state = 0}, - [1591] = {.lex_state = 28}, - [1592] = {.lex_state = 0}, - [1593] = {.lex_state = 0}, - [1594] = {.lex_state = 28}, - [1595] = {.lex_state = 0}, - [1596] = {.lex_state = 0}, - [1597] = {.lex_state = 49}, - [1598] = {.lex_state = 0}, - [1599] = {.lex_state = 0}, - [1600] = {.lex_state = 0}, + [1590] = {.lex_state = 49}, + [1591] = {.lex_state = 0}, + [1592] = {.lex_state = 111}, + [1593] = {.lex_state = 47}, + [1594] = {.lex_state = 49}, + [1595] = {.lex_state = 111}, + [1596] = {.lex_state = 47}, + [1597] = {.lex_state = 111}, + [1598] = {.lex_state = 49}, + [1599] = {.lex_state = 49}, + [1600] = {.lex_state = 111}, [1601] = {.lex_state = 49}, - [1602] = {.lex_state = 0}, - [1603] = {.lex_state = 0}, - [1604] = {.lex_state = 0}, - [1605] = {.lex_state = 42}, - [1606] = {.lex_state = 0}, - [1607] = {.lex_state = 0}, - [1608] = {.lex_state = 0}, - [1609] = {.lex_state = 0}, - [1610] = {.lex_state = 0}, - [1611] = {.lex_state = 0}, - [1612] = {.lex_state = 0}, - [1613] = {.lex_state = 0}, + [1602] = {.lex_state = 49}, + [1603] = {.lex_state = 111}, + [1604] = {.lex_state = 111}, + [1605] = {.lex_state = 111}, + [1606] = {.lex_state = 111}, + [1607] = {.lex_state = 49}, + [1608] = {.lex_state = 49}, + [1609] = {.lex_state = 49}, + [1610] = {.lex_state = 49}, + [1611] = {.lex_state = 49}, + [1612] = {.lex_state = 49}, + [1613] = {.lex_state = 49}, [1614] = {.lex_state = 49}, - [1615] = {.lex_state = 28}, - [1616] = {.lex_state = 0}, - [1617] = {.lex_state = 0}, - [1618] = {.lex_state = 0}, - [1619] = {.lex_state = 0}, - [1620] = {.lex_state = 0}, - [1621] = {.lex_state = 0}, + [1615] = {.lex_state = 49}, + [1616] = {.lex_state = 49}, + [1617] = {.lex_state = 111}, + [1618] = {.lex_state = 49}, + [1619] = {.lex_state = 49}, + [1620] = {.lex_state = 49}, + [1621] = {.lex_state = 49}, [1622] = {.lex_state = 0}, - [1623] = {.lex_state = 0}, + [1623] = {.lex_state = 49}, [1624] = {.lex_state = 0}, - [1625] = {.lex_state = 0}, - [1626] = {.lex_state = 0}, + [1625] = {.lex_state = 49}, + [1626] = {.lex_state = 49}, [1627] = {.lex_state = 49}, - [1628] = {.lex_state = 0}, - [1629] = {.lex_state = 0}, - [1630] = {.lex_state = 0}, - [1631] = {.lex_state = 0}, - [1632] = {.lex_state = 0}, - [1633] = {.lex_state = 0}, - [1634] = {.lex_state = 0}, - [1635] = {.lex_state = 0}, - [1636] = {.lex_state = 0}, - [1637] = {.lex_state = 0}, - [1638] = {.lex_state = 0}, - [1639] = {.lex_state = 0}, - [1640] = {.lex_state = 42}, + [1628] = {.lex_state = 49}, + [1629] = {.lex_state = 49}, + [1630] = {.lex_state = 49}, + [1631] = {.lex_state = 49}, + [1632] = {.lex_state = 49}, + [1633] = {.lex_state = 49}, + [1634] = {.lex_state = 49}, + [1635] = {.lex_state = 49}, + [1636] = {.lex_state = 49}, + [1637] = {.lex_state = 49}, + [1638] = {.lex_state = 49}, + [1639] = {.lex_state = 111}, + [1640] = {.lex_state = 111}, [1641] = {.lex_state = 0}, - [1642] = {.lex_state = 0}, - [1643] = {.lex_state = 0}, + [1642] = {.lex_state = 49}, + [1643] = {.lex_state = 49}, [1644] = {.lex_state = 49}, - [1645] = {.lex_state = 0}, - [1646] = {.lex_state = 0}, - [1647] = {.lex_state = 0}, - [1648] = {.lex_state = 0}, - [1649] = {.lex_state = 0}, + [1645] = {.lex_state = 49}, + [1646] = {.lex_state = 111}, + [1647] = {.lex_state = 49}, + [1648] = {.lex_state = 111}, + [1649] = {.lex_state = 49}, [1650] = {.lex_state = 49}, - [1651] = {.lex_state = 0}, - [1652] = {.lex_state = 42}, - [1653] = {.lex_state = 0}, + [1651] = {.lex_state = 111}, + [1652] = {.lex_state = 49}, + [1653] = {.lex_state = 49}, [1654] = {.lex_state = 0}, - [1655] = {.lex_state = 28}, - [1656] = {.lex_state = 0}, - [1657] = {.lex_state = 0}, - [1658] = {.lex_state = 0}, - [1659] = {.lex_state = 0}, - [1660] = {.lex_state = 0}, - [1661] = {.lex_state = 28}, - [1662] = {.lex_state = 0}, - [1663] = {.lex_state = 0}, - [1664] = {.lex_state = 0}, - [1665] = {.lex_state = 111}, + [1655] = {.lex_state = 49}, + [1656] = {.lex_state = 111}, + [1657] = {.lex_state = 111}, + [1658] = {.lex_state = 49}, + [1659] = {.lex_state = 49}, + [1660] = {.lex_state = 49}, + [1661] = {.lex_state = 49}, + [1662] = {.lex_state = 111}, + [1663] = {.lex_state = 49}, + [1664] = {.lex_state = 111}, + [1665] = {.lex_state = 49}, [1666] = {.lex_state = 49}, - [1667] = {.lex_state = 0}, - [1668] = {.lex_state = 0}, - [1669] = {.lex_state = 42}, - [1670] = {.lex_state = 0}, - [1671] = {.lex_state = 0}, - [1672] = {.lex_state = 27}, - [1673] = {.lex_state = 49}, - [1674] = {.lex_state = 0}, - [1675] = {.lex_state = 27}, - [1676] = {.lex_state = 27}, - [1677] = {.lex_state = 0}, + [1667] = {.lex_state = 49}, + [1668] = {.lex_state = 111}, + [1669] = {.lex_state = 111}, + [1670] = {.lex_state = 111}, + [1671] = {.lex_state = 111}, + [1672] = {.lex_state = 111}, + [1673] = {.lex_state = 111}, + [1674] = {.lex_state = 111}, + [1675] = {.lex_state = 49}, + [1676] = {.lex_state = 111}, + [1677] = {.lex_state = 111}, [1678] = {.lex_state = 49}, - [1679] = {.lex_state = 35}, - [1680] = {.lex_state = 0}, - [1681] = {.lex_state = 0}, - [1682] = {.lex_state = 0}, + [1679] = {.lex_state = 49}, + [1680] = {.lex_state = 49}, + [1681] = {.lex_state = 49}, + [1682] = {.lex_state = 49}, [1683] = {.lex_state = 49}, - [1684] = {.lex_state = 0}, - [1685] = {.lex_state = 49}, - [1686] = {.lex_state = 0}, - [1687] = {.lex_state = 0}, - [1688] = {.lex_state = 42}, - [1689] = {.lex_state = 27}, - [1690] = {.lex_state = 111}, - [1691] = {.lex_state = 0}, - [1692] = {.lex_state = 27}, - [1693] = {.lex_state = 0}, - [1694] = {.lex_state = 111}, - [1695] = {.lex_state = 27}, - [1696] = {.lex_state = 42}, - [1697] = {.lex_state = 0}, - [1698] = {.lex_state = 111}, - [1699] = {.lex_state = 0}, - [1700] = {.lex_state = 27}, + [1684] = {.lex_state = 42}, + [1685] = {.lex_state = 111}, + [1686] = {.lex_state = 49}, + [1687] = {.lex_state = 49}, + [1688] = {.lex_state = 49}, + [1689] = {.lex_state = 111}, + [1690] = {.lex_state = 26}, + [1691] = {.lex_state = 49}, + [1692] = {.lex_state = 49}, + [1693] = {.lex_state = 31}, + [1694] = {.lex_state = 31}, + [1695] = {.lex_state = 49}, + [1696] = {.lex_state = 49}, + [1697] = {.lex_state = 49}, + [1698] = {.lex_state = 49}, + [1699] = {.lex_state = 49}, + [1700] = {.lex_state = 49}, [1701] = {.lex_state = 111}, - [1702] = {.lex_state = 111}, + [1702] = {.lex_state = 49}, [1703] = {.lex_state = 49}, - [1704] = {.lex_state = 111}, - [1705] = {.lex_state = 111}, - [1706] = {.lex_state = 111}, - [1707] = {.lex_state = 42}, - [1708] = {.lex_state = 111}, - [1709] = {.lex_state = 111}, + [1704] = {.lex_state = 49}, + [1705] = {.lex_state = 49}, + [1706] = {.lex_state = 49}, + [1707] = {.lex_state = 49}, + [1708] = {.lex_state = 49}, + [1709] = {.lex_state = 49}, [1710] = {.lex_state = 49}, - [1711] = {.lex_state = 0}, - [1712] = {.lex_state = 111}, - [1713] = {.lex_state = 111}, - [1714] = {.lex_state = 0}, - [1715] = {.lex_state = 27}, - [1716] = {.lex_state = 35}, - [1717] = {.lex_state = 111}, - [1718] = {.lex_state = 111}, - [1719] = {.lex_state = 27}, - [1720] = {.lex_state = 111}, - [1721] = {.lex_state = 27}, + [1711] = {.lex_state = 26}, + [1712] = {.lex_state = 49}, + [1713] = {.lex_state = 42}, + [1714] = {.lex_state = 26}, + [1715] = {.lex_state = 0}, + [1716] = {.lex_state = 49}, + [1717] = {.lex_state = 49}, + [1718] = {.lex_state = 26}, + [1719] = {.lex_state = 49}, + [1720] = {.lex_state = 0}, + [1721] = {.lex_state = 49}, [1722] = {.lex_state = 49}, - [1723] = {.lex_state = 111}, + [1723] = {.lex_state = 0}, [1724] = {.lex_state = 49}, - [1725] = {.lex_state = 27}, - [1726] = {.lex_state = 111}, - [1727] = {.lex_state = 27}, - [1728] = {.lex_state = 111}, - [1729] = {.lex_state = 27}, - [1730] = {.lex_state = 0}, - [1731] = {.lex_state = 111}, - [1732] = {.lex_state = 0}, - [1733] = {.lex_state = 0}, - [1734] = {.lex_state = 111}, - [1735] = {.lex_state = 27}, - [1736] = {.lex_state = 27}, - [1737] = {.lex_state = 111}, - [1738] = {.lex_state = 35}, - [1739] = {.lex_state = 111}, - [1740] = {.lex_state = 27}, - [1741] = {.lex_state = 111}, - [1742] = {.lex_state = 27}, - [1743] = {.lex_state = 111}, + [1725] = {.lex_state = 49}, + [1726] = {.lex_state = 49}, + [1727] = {.lex_state = 49}, + [1728] = {.lex_state = 49}, + [1729] = {.lex_state = 49}, + [1730] = {.lex_state = 49}, + [1731] = {.lex_state = 49}, + [1732] = {.lex_state = 49}, + [1733] = {.lex_state = 49}, + [1734] = {.lex_state = 49}, + [1735] = {.lex_state = 26}, + [1736] = {.lex_state = 49}, + [1737] = {.lex_state = 49}, + [1738] = {.lex_state = 31}, + [1739] = {.lex_state = 49}, + [1740] = {.lex_state = 49}, + [1741] = {.lex_state = 49}, + [1742] = {.lex_state = 0}, + [1743] = {.lex_state = 49}, [1744] = {.lex_state = 49}, - [1745] = {.lex_state = 27}, - [1746] = {.lex_state = 27}, - [1747] = {.lex_state = 27}, - [1748] = {.lex_state = 27}, - [1749] = {.lex_state = 0}, - [1750] = {.lex_state = 28}, - [1751] = {.lex_state = 28}, - [1752] = {.lex_state = 28}, - [1753] = {.lex_state = 28}, - [1754] = {.lex_state = 28}, - [1755] = {.lex_state = 49}, + [1745] = {.lex_state = 0}, + [1746] = {.lex_state = 31}, + [1747] = {.lex_state = 0}, + [1748] = {.lex_state = 26}, + [1749] = {.lex_state = 49}, + [1750] = {.lex_state = 49}, + [1751] = {.lex_state = 49}, + [1752] = {.lex_state = 49}, + [1753] = {.lex_state = 49}, + [1754] = {.lex_state = 49}, + [1755] = {.lex_state = 26}, [1756] = {.lex_state = 49}, - [1757] = {.lex_state = 0}, - [1758] = {.lex_state = 0}, - [1759] = {.lex_state = 28}, + [1757] = {.lex_state = 49}, + [1758] = {.lex_state = 49}, + [1759] = {.lex_state = 31}, [1760] = {.lex_state = 0}, - [1761] = {.lex_state = 28}, - [1762] = {.lex_state = 0}, - [1763] = {.lex_state = 28}, + [1761] = {.lex_state = 49}, + [1762] = {.lex_state = 49}, + [1763] = {.lex_state = 49}, [1764] = {.lex_state = 49}, - [1765] = {.lex_state = 28}, - [1766] = {.lex_state = 0}, - [1767] = {.lex_state = 41}, - [1768] = {.lex_state = 0}, - [1769] = {.lex_state = 0}, - [1770] = {.lex_state = 0}, - [1771] = {.lex_state = 0}, - [1772] = {.lex_state = 0}, - [1773] = {.lex_state = 0}, - [1774] = {.lex_state = 41}, - [1775] = {.lex_state = 41}, - [1776] = {.lex_state = 28}, + [1765] = {.lex_state = 26}, + [1766] = {.lex_state = 26}, + [1767] = {.lex_state = 0}, + [1768] = {.lex_state = 49}, + [1769] = {.lex_state = 49}, + [1770] = {.lex_state = 49}, + [1771] = {.lex_state = 49}, + [1772] = {.lex_state = 49}, + [1773] = {.lex_state = 31}, + [1774] = {.lex_state = 31}, + [1775] = {.lex_state = 49}, + [1776] = {.lex_state = 0}, [1777] = {.lex_state = 49}, - [1778] = {.lex_state = 0}, - [1779] = {.lex_state = 0}, - [1780] = {.lex_state = 0}, - [1781] = {.lex_state = 41}, - [1782] = {.lex_state = 41}, + [1778] = {.lex_state = 49}, + [1779] = {.lex_state = 49}, + [1780] = {.lex_state = 49}, + [1781] = {.lex_state = 0}, + [1782] = {.lex_state = 0}, [1783] = {.lex_state = 0}, [1784] = {.lex_state = 0}, - [1785] = {.lex_state = 41}, - [1786] = {.lex_state = 41}, - [1787] = {.lex_state = 28}, + [1785] = {.lex_state = 0}, + [1786] = {.lex_state = 0}, + [1787] = {.lex_state = 0}, [1788] = {.lex_state = 0}, - [1789] = {.lex_state = 41}, - [1790] = {.lex_state = 49}, - [1791] = {.lex_state = 41}, - [1792] = {.lex_state = 28}, + [1789] = {.lex_state = 42}, + [1790] = {.lex_state = 0}, + [1791] = {.lex_state = 0}, + [1792] = {.lex_state = 0}, [1793] = {.lex_state = 0}, - [1794] = {.lex_state = 49}, - [1795] = {.lex_state = 28}, - [1796] = {.lex_state = 0}, + [1794] = {.lex_state = 0}, + [1795] = {.lex_state = 0}, + [1796] = {.lex_state = 42}, [1797] = {.lex_state = 0}, [1798] = {.lex_state = 0}, - [1799] = {.lex_state = 28}, - [1800] = {.lex_state = 0}, - [1801] = {.lex_state = 0}, - [1802] = {.lex_state = 0}, - [1803] = {.lex_state = 28}, + [1799] = {.lex_state = 0}, + [1800] = {.lex_state = 49}, + [1801] = {.lex_state = 49}, + [1802] = {.lex_state = 49}, + [1803] = {.lex_state = 0}, [1804] = {.lex_state = 0}, - [1805] = {.lex_state = 49}, - [1806] = {.lex_state = 28}, + [1805] = {.lex_state = 0}, + [1806] = {.lex_state = 0}, [1807] = {.lex_state = 0}, [1808] = {.lex_state = 0}, [1809] = {.lex_state = 0}, - [1810] = {.lex_state = 28}, + [1810] = {.lex_state = 0}, [1811] = {.lex_state = 0}, [1812] = {.lex_state = 0}, - [1813] = {.lex_state = 28}, + [1813] = {.lex_state = 0}, [1814] = {.lex_state = 0}, - [1815] = {.lex_state = 0}, + [1815] = {.lex_state = 28}, [1816] = {.lex_state = 0}, - [1817] = {.lex_state = 0}, + [1817] = {.lex_state = 49}, [1818] = {.lex_state = 0}, [1819] = {.lex_state = 0}, [1820] = {.lex_state = 0}, [1821] = {.lex_state = 0}, [1822] = {.lex_state = 0}, - [1823] = {.lex_state = 0}, - [1824] = {.lex_state = 0}, - [1825] = {.lex_state = 0}, - [1826] = {.lex_state = 0}, + [1823] = {.lex_state = 49}, + [1824] = {.lex_state = 28}, + [1825] = {.lex_state = 49}, + [1826] = {.lex_state = 42}, [1827] = {.lex_state = 0}, - [1828] = {.lex_state = 41}, + [1828] = {.lex_state = 49}, [1829] = {.lex_state = 0}, [1830] = {.lex_state = 0}, [1831] = {.lex_state = 0}, [1832] = {.lex_state = 0}, [1833] = {.lex_state = 0}, - [1834] = {.lex_state = 41}, - [1835] = {.lex_state = 41}, + [1834] = {.lex_state = 0}, + [1835] = {.lex_state = 0}, [1836] = {.lex_state = 0}, - [1837] = {.lex_state = 49}, - [1838] = {.lex_state = 0}, + [1837] = {.lex_state = 0}, + [1838] = {.lex_state = 42}, [1839] = {.lex_state = 0}, - [1840] = {.lex_state = 41}, - [1841] = {.lex_state = 28}, + [1840] = {.lex_state = 42}, + [1841] = {.lex_state = 0}, [1842] = {.lex_state = 0}, [1843] = {.lex_state = 0}, - [1844] = {.lex_state = 41}, - [1845] = {.lex_state = 49}, - [1846] = {.lex_state = 49}, - [1847] = {.lex_state = 111}, - [1848] = {.lex_state = 41}, + [1844] = {.lex_state = 0}, + [1845] = {.lex_state = 0}, + [1846] = {.lex_state = 0}, + [1847] = {.lex_state = 0}, + [1848] = {.lex_state = 0}, [1849] = {.lex_state = 0}, - [1850] = {.lex_state = 28}, - [1851] = {.lex_state = 41}, - [1852] = {.lex_state = 0}, - [1853] = {.lex_state = 28}, - [1854] = {.lex_state = 49}, - [1855] = {.lex_state = 41}, - [1856] = {.lex_state = 28}, + [1850] = {.lex_state = 0}, + [1851] = {.lex_state = 42}, + [1852] = {.lex_state = 28}, + [1853] = {.lex_state = 0}, + [1854] = {.lex_state = 0}, + [1855] = {.lex_state = 0}, + [1856] = {.lex_state = 0}, [1857] = {.lex_state = 0}, - [1858] = {.lex_state = 28}, - [1859] = {.lex_state = 49}, - [1860] = {.lex_state = 28}, - [1861] = {.lex_state = 41}, - [1862] = {.lex_state = 41}, - [1863] = {.lex_state = 0}, - [1864] = {.lex_state = 49}, + [1858] = {.lex_state = 49}, + [1859] = {.lex_state = 42}, + [1860] = {.lex_state = 0}, + [1861] = {.lex_state = 0}, + [1862] = {.lex_state = 111}, + [1863] = {.lex_state = 49}, + [1864] = {.lex_state = 0}, [1865] = {.lex_state = 28}, - [1866] = {.lex_state = 28}, - [1867] = {.lex_state = 49}, + [1866] = {.lex_state = 0}, + [1867] = {.lex_state = 28}, [1868] = {.lex_state = 0}, [1869] = {.lex_state = 0}, [1870] = {.lex_state = 0}, - [1871] = {.lex_state = 41}, + [1871] = {.lex_state = 0}, [1872] = {.lex_state = 0}, [1873] = {.lex_state = 0}, - [1874] = {.lex_state = 0}, + [1874] = {.lex_state = 49}, [1875] = {.lex_state = 0}, - [1876] = {.lex_state = 0}, - [1877] = {.lex_state = 28}, + [1876] = {.lex_state = 111}, + [1877] = {.lex_state = 0}, [1878] = {.lex_state = 0}, [1879] = {.lex_state = 0}, - [1880] = {.lex_state = 28}, - [1881] = {.lex_state = 0}, - [1882] = {.lex_state = 0}, - [1883] = {.lex_state = 0}, - [1884] = {.lex_state = 41}, - [1885] = {.lex_state = 0}, - [1886] = {.lex_state = 0}, - [1887] = {.lex_state = 0}, - [1888] = {.lex_state = 0}, - [1889] = {.lex_state = 0}, - [1890] = {.lex_state = 41}, - [1891] = {.lex_state = 0}, - [1892] = {.lex_state = 49}, - [1893] = {.lex_state = 41}, - [1894] = {.lex_state = 0}, + [1880] = {.lex_state = 27}, + [1881] = {.lex_state = 111}, + [1882] = {.lex_state = 27}, + [1883] = {.lex_state = 49}, + [1884] = {.lex_state = 0}, + [1885] = {.lex_state = 111}, + [1886] = {.lex_state = 27}, + [1887] = {.lex_state = 111}, + [1888] = {.lex_state = 111}, + [1889] = {.lex_state = 111}, + [1890] = {.lex_state = 35}, + [1891] = {.lex_state = 27}, + [1892] = {.lex_state = 0}, + [1893] = {.lex_state = 49}, + [1894] = {.lex_state = 111}, [1895] = {.lex_state = 0}, - [1896] = {.lex_state = 49}, - [1897] = {.lex_state = 49}, - [1898] = {.lex_state = 0}, - [1899] = {.lex_state = 28}, - [1900] = {.lex_state = 41}, - [1901] = {.lex_state = 49}, - [1902] = {.lex_state = 41}, - [1903] = {.lex_state = 49}, - [1904] = {.lex_state = 28}, - [1905] = {.lex_state = 0}, - [1906] = {.lex_state = 0}, - [1907] = {.lex_state = 0}, - [1908] = {.lex_state = 49}, - [1909] = {.lex_state = 49}, + [1896] = {.lex_state = 0}, + [1897] = {.lex_state = 0}, + [1898] = {.lex_state = 111}, + [1899] = {.lex_state = 27}, + [1900] = {.lex_state = 27}, + [1901] = {.lex_state = 42}, + [1902] = {.lex_state = 49}, + [1903] = {.lex_state = 111}, + [1904] = {.lex_state = 111}, + [1905] = {.lex_state = 111}, + [1906] = {.lex_state = 49}, + [1907] = {.lex_state = 27}, + [1908] = {.lex_state = 111}, + [1909] = {.lex_state = 27}, [1910] = {.lex_state = 0}, - [1911] = {.lex_state = 49}, - [1912] = {.lex_state = 0}, + [1911] = {.lex_state = 27}, + [1912] = {.lex_state = 111}, [1913] = {.lex_state = 0}, - [1914] = {.lex_state = 0}, - [1915] = {.lex_state = 0}, - [1916] = {.lex_state = 0}, - [1917] = {.lex_state = 0}, + [1914] = {.lex_state = 111}, + [1915] = {.lex_state = 111}, + [1916] = {.lex_state = 111}, + [1917] = {.lex_state = 42}, [1918] = {.lex_state = 0}, - [1919] = {.lex_state = 49}, + [1919] = {.lex_state = 27}, [1920] = {.lex_state = 0}, - [1921] = {.lex_state = 0}, - [1922] = {.lex_state = 28}, - [1923] = {.lex_state = 0}, - [1924] = {.lex_state = 41}, - [1925] = {.lex_state = 0}, - [1926] = {.lex_state = 41}, - [1927] = {.lex_state = 0}, - [1928] = {.lex_state = 0}, - [1929] = {.lex_state = 0}, - [1930] = {.lex_state = 41}, - [1931] = {.lex_state = 111}, - [1932] = {.lex_state = 0}, + [1921] = {.lex_state = 111}, + [1922] = {.lex_state = 49}, + [1923] = {.lex_state = 27}, + [1924] = {.lex_state = 27}, + [1925] = {.lex_state = 35}, + [1926] = {.lex_state = 111}, + [1927] = {.lex_state = 111}, + [1928] = {.lex_state = 111}, + [1929] = {.lex_state = 49}, + [1930] = {.lex_state = 27}, + [1931] = {.lex_state = 27}, + [1932] = {.lex_state = 27}, [1933] = {.lex_state = 0}, - [1934] = {.lex_state = 49}, - [1935] = {.lex_state = 49}, - [1936] = {.lex_state = 0}, - [1937] = {.lex_state = 28}, - [1938] = {.lex_state = 0}, + [1934] = {.lex_state = 27}, + [1935] = {.lex_state = 42}, + [1936] = {.lex_state = 27}, + [1937] = {.lex_state = 0}, + [1938] = {.lex_state = 27}, [1939] = {.lex_state = 49}, [1940] = {.lex_state = 0}, - [1941] = {.lex_state = 0}, - [1942] = {.lex_state = 28}, - [1943] = {.lex_state = 49}, - [1944] = {.lex_state = 0}, - [1945] = {.lex_state = 28}, + [1941] = {.lex_state = 27}, + [1942] = {.lex_state = 27}, + [1943] = {.lex_state = 0}, + [1944] = {.lex_state = 27}, + [1945] = {.lex_state = 0}, [1946] = {.lex_state = 0}, [1947] = {.lex_state = 0}, [1948] = {.lex_state = 49}, - [1949] = {.lex_state = 41}, - [1950] = {.lex_state = 49}, - [1951] = {.lex_state = 49}, - [1952] = {.lex_state = 49}, - [1953] = {.lex_state = 41}, - [1954] = {.lex_state = 41}, - [1955] = {.lex_state = 0}, - [1956] = {.lex_state = 49}, - [1957] = {.lex_state = 0}, + [1949] = {.lex_state = 49}, + [1950] = {.lex_state = 111}, + [1951] = {.lex_state = 111}, + [1952] = {.lex_state = 0}, + [1953] = {.lex_state = 111}, + [1954] = {.lex_state = 111}, + [1955] = {.lex_state = 35}, + [1956] = {.lex_state = 111}, + [1957] = {.lex_state = 28}, [1958] = {.lex_state = 0}, - [1959] = {.lex_state = 0}, - [1960] = {.lex_state = 41}, - [1961] = {.lex_state = 0}, - [1962] = {.lex_state = 28}, - [1963] = {.lex_state = 49}, + [1959] = {.lex_state = 28}, + [1960] = {.lex_state = 49}, + [1961] = {.lex_state = 49}, + [1962] = {.lex_state = 49}, + [1963] = {.lex_state = 41}, [1964] = {.lex_state = 0}, - [1965] = {.lex_state = 111}, - [1966] = {.lex_state = 0}, + [1965] = {.lex_state = 0}, + [1966] = {.lex_state = 49}, [1967] = {.lex_state = 0}, - [1968] = {.lex_state = 49}, - [1969] = {.lex_state = 111}, - [1970] = {.lex_state = 49}, - [1971] = {.lex_state = 0}, + [1968] = {.lex_state = 0}, + [1969] = {.lex_state = 49}, + [1970] = {.lex_state = 0}, + [1971] = {.lex_state = 111}, [1972] = {.lex_state = 0}, [1973] = {.lex_state = 41}, - [1974] = {.lex_state = 0}, - [1975] = {.lex_state = 0}, + [1974] = {.lex_state = 41}, + [1975] = {.lex_state = 41}, [1976] = {.lex_state = 0}, - [1977] = {.lex_state = 111}, - [1978] = {.lex_state = 0}, + [1977] = {.lex_state = 0}, + [1978] = {.lex_state = 49}, [1979] = {.lex_state = 0}, [1980] = {.lex_state = 41}, - [1981] = {.lex_state = 0}, - [1982] = {.lex_state = 111}, - [1983] = {.lex_state = 0}, - [1984] = {.lex_state = 49}, - [1985] = {.lex_state = 111}, - [1986] = {.lex_state = 28}, - [1987] = {.lex_state = 0}, - [1988] = {.lex_state = 0}, - [1989] = {.lex_state = 0}, - [1990] = {.lex_state = 0}, - [1991] = {.lex_state = 0}, + [1981] = {.lex_state = 41}, + [1982] = {.lex_state = 41}, + [1983] = {.lex_state = 28}, + [1984] = {.lex_state = 0}, + [1985] = {.lex_state = 28}, + [1986] = {.lex_state = 41}, + [1987] = {.lex_state = 49}, + [1988] = {.lex_state = 41}, + [1989] = {.lex_state = 41}, + [1990] = {.lex_state = 49}, + [1991] = {.lex_state = 28}, [1992] = {.lex_state = 0}, - [1993] = {.lex_state = 49}, - [1994] = {.lex_state = 0}, - [1995] = {.lex_state = 111}, + [1993] = {.lex_state = 0}, + [1994] = {.lex_state = 28}, + [1995] = {.lex_state = 0}, [1996] = {.lex_state = 0}, [1997] = {.lex_state = 0}, - [1998] = {.lex_state = 41}, - [1999] = {.lex_state = 41}, - [2000] = {.lex_state = 28}, - [2001] = {.lex_state = 41}, + [1998] = {.lex_state = 0}, + [1999] = {.lex_state = 0}, + [2000] = {.lex_state = 111}, + [2001] = {.lex_state = 0}, [2002] = {.lex_state = 49}, - [2003] = {.lex_state = 111}, - [2004] = {.lex_state = 49}, - [2005] = {.lex_state = 49}, + [2003] = {.lex_state = 0}, + [2004] = {.lex_state = 0}, + [2005] = {.lex_state = 0}, [2006] = {.lex_state = 0}, [2007] = {.lex_state = 0}, [2008] = {.lex_state = 0}, @@ -14749,29 +15237,241 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2011] = {.lex_state = 0}, [2012] = {.lex_state = 0}, [2013] = {.lex_state = 0}, - [2014] = {.lex_state = 0}, + [2014] = {.lex_state = 28}, [2015] = {.lex_state = 0}, [2016] = {.lex_state = 0}, - [2017] = {.lex_state = 49}, + [2017] = {.lex_state = 0}, [2018] = {.lex_state = 41}, - [2019] = {.lex_state = 41}, - [2020] = {.lex_state = 111}, - [2021] = {.lex_state = 0}, - [2022] = {.lex_state = 28}, - [2023] = {.lex_state = 0}, - [2024] = {.lex_state = 41}, - [2025] = {.lex_state = 111}, + [2019] = {.lex_state = 0}, + [2020] = {.lex_state = 0}, + [2021] = {.lex_state = 28}, + [2022] = {.lex_state = 0}, + [2023] = {.lex_state = 28}, + [2024] = {.lex_state = 0}, + [2025] = {.lex_state = 28}, [2026] = {.lex_state = 0}, - [2027] = {.lex_state = 41}, + [2027] = {.lex_state = 28}, [2028] = {.lex_state = 0}, - [2029] = {.lex_state = 49}, - [2030] = {.lex_state = 41}, + [2029] = {.lex_state = 28}, + [2030] = {.lex_state = 0}, [2031] = {.lex_state = 0}, [2032] = {.lex_state = 0}, - [2033] = {.lex_state = 49}, - [2034] = {.lex_state = 111}, - [2035] = {.lex_state = 111}, - [2036] = {.lex_state = 111}, + [2033] = {.lex_state = 28}, + [2034] = {.lex_state = 0}, + [2035] = {.lex_state = 49}, + [2036] = {.lex_state = 0}, + [2037] = {.lex_state = 0}, + [2038] = {.lex_state = 49}, + [2039] = {.lex_state = 49}, + [2040] = {.lex_state = 0}, + [2041] = {.lex_state = 0}, + [2042] = {.lex_state = 28}, + [2043] = {.lex_state = 28}, + [2044] = {.lex_state = 28}, + [2045] = {.lex_state = 41}, + [2046] = {.lex_state = 41}, + [2047] = {.lex_state = 49}, + [2048] = {.lex_state = 0}, + [2049] = {.lex_state = 0}, + [2050] = {.lex_state = 28}, + [2051] = {.lex_state = 0}, + [2052] = {.lex_state = 41}, + [2053] = {.lex_state = 41}, + [2054] = {.lex_state = 41}, + [2055] = {.lex_state = 28}, + [2056] = {.lex_state = 41}, + [2057] = {.lex_state = 49}, + [2058] = {.lex_state = 41}, + [2059] = {.lex_state = 0}, + [2060] = {.lex_state = 28}, + [2061] = {.lex_state = 41}, + [2062] = {.lex_state = 49}, + [2063] = {.lex_state = 0}, + [2064] = {.lex_state = 0}, + [2065] = {.lex_state = 49}, + [2066] = {.lex_state = 0}, + [2067] = {.lex_state = 0}, + [2068] = {.lex_state = 0}, + [2069] = {.lex_state = 0}, + [2070] = {.lex_state = 49}, + [2071] = {.lex_state = 0}, + [2072] = {.lex_state = 0}, + [2073] = {.lex_state = 0}, + [2074] = {.lex_state = 0}, + [2075] = {.lex_state = 0}, + [2076] = {.lex_state = 0}, + [2077] = {.lex_state = 0}, + [2078] = {.lex_state = 0}, + [2079] = {.lex_state = 28}, + [2080] = {.lex_state = 0}, + [2081] = {.lex_state = 0}, + [2082] = {.lex_state = 0}, + [2083] = {.lex_state = 28}, + [2084] = {.lex_state = 0}, + [2085] = {.lex_state = 41}, + [2086] = {.lex_state = 0}, + [2087] = {.lex_state = 0}, + [2088] = {.lex_state = 0}, + [2089] = {.lex_state = 0}, + [2090] = {.lex_state = 41}, + [2091] = {.lex_state = 49}, + [2092] = {.lex_state = 49}, + [2093] = {.lex_state = 41}, + [2094] = {.lex_state = 0}, + [2095] = {.lex_state = 41}, + [2096] = {.lex_state = 41}, + [2097] = {.lex_state = 28}, + [2098] = {.lex_state = 49}, + [2099] = {.lex_state = 0}, + [2100] = {.lex_state = 0}, + [2101] = {.lex_state = 0}, + [2102] = {.lex_state = 28}, + [2103] = {.lex_state = 0}, + [2104] = {.lex_state = 41}, + [2105] = {.lex_state = 0}, + [2106] = {.lex_state = 49}, + [2107] = {.lex_state = 111}, + [2108] = {.lex_state = 0}, + [2109] = {.lex_state = 41}, + [2110] = {.lex_state = 41}, + [2111] = {.lex_state = 0}, + [2112] = {.lex_state = 28}, + [2113] = {.lex_state = 111}, + [2114] = {.lex_state = 41}, + [2115] = {.lex_state = 0}, + [2116] = {.lex_state = 28}, + [2117] = {.lex_state = 41}, + [2118] = {.lex_state = 0}, + [2119] = {.lex_state = 0}, + [2120] = {.lex_state = 41}, + [2121] = {.lex_state = 0}, + [2122] = {.lex_state = 0}, + [2123] = {.lex_state = 0}, + [2124] = {.lex_state = 0}, + [2125] = {.lex_state = 0}, + [2126] = {.lex_state = 0}, + [2127] = {.lex_state = 0}, + [2128] = {.lex_state = 0}, + [2129] = {.lex_state = 0}, + [2130] = {.lex_state = 0}, + [2131] = {.lex_state = 49}, + [2132] = {.lex_state = 49}, + [2133] = {.lex_state = 0}, + [2134] = {.lex_state = 0}, + [2135] = {.lex_state = 41}, + [2136] = {.lex_state = 49}, + [2137] = {.lex_state = 0}, + [2138] = {.lex_state = 0}, + [2139] = {.lex_state = 0}, + [2140] = {.lex_state = 0}, + [2141] = {.lex_state = 41}, + [2142] = {.lex_state = 28}, + [2143] = {.lex_state = 0}, + [2144] = {.lex_state = 49}, + [2145] = {.lex_state = 49}, + [2146] = {.lex_state = 0}, + [2147] = {.lex_state = 49}, + [2148] = {.lex_state = 41}, + [2149] = {.lex_state = 49}, + [2150] = {.lex_state = 49}, + [2151] = {.lex_state = 49}, + [2152] = {.lex_state = 0}, + [2153] = {.lex_state = 0}, + [2154] = {.lex_state = 41}, + [2155] = {.lex_state = 0}, + [2156] = {.lex_state = 0}, + [2157] = {.lex_state = 49}, + [2158] = {.lex_state = 0}, + [2159] = {.lex_state = 0}, + [2160] = {.lex_state = 0}, + [2161] = {.lex_state = 41}, + [2162] = {.lex_state = 0}, + [2163] = {.lex_state = 28}, + [2164] = {.lex_state = 49}, + [2165] = {.lex_state = 28}, + [2166] = {.lex_state = 0}, + [2167] = {.lex_state = 0}, + [2168] = {.lex_state = 41}, + [2169] = {.lex_state = 49}, + [2170] = {.lex_state = 49}, + [2171] = {.lex_state = 0}, + [2172] = {.lex_state = 28}, + [2173] = {.lex_state = 0}, + [2174] = {.lex_state = 0}, + [2175] = {.lex_state = 28}, + [2176] = {.lex_state = 0}, + [2177] = {.lex_state = 49}, + [2178] = {.lex_state = 0}, + [2179] = {.lex_state = 0}, + [2180] = {.lex_state = 0}, + [2181] = {.lex_state = 0}, + [2182] = {.lex_state = 28}, + [2183] = {.lex_state = 49}, + [2184] = {.lex_state = 0}, + [2185] = {.lex_state = 0}, + [2186] = {.lex_state = 0}, + [2187] = {.lex_state = 49}, + [2188] = {.lex_state = 0}, + [2189] = {.lex_state = 0}, + [2190] = {.lex_state = 49}, + [2191] = {.lex_state = 0}, + [2192] = {.lex_state = 0}, + [2193] = {.lex_state = 41}, + [2194] = {.lex_state = 0}, + [2195] = {.lex_state = 0}, + [2196] = {.lex_state = 0}, + [2197] = {.lex_state = 0}, + [2198] = {.lex_state = 0}, + [2199] = {.lex_state = 0}, + [2200] = {.lex_state = 49}, + [2201] = {.lex_state = 0}, + [2202] = {.lex_state = 0}, + [2203] = {.lex_state = 0}, + [2204] = {.lex_state = 28}, + [2205] = {.lex_state = 0}, + [2206] = {.lex_state = 0}, + [2207] = {.lex_state = 49}, + [2208] = {.lex_state = 28}, + [2209] = {.lex_state = 41}, + [2210] = {.lex_state = 28}, + [2211] = {.lex_state = 28}, + [2212] = {.lex_state = 28}, + [2213] = {.lex_state = 0}, + [2214] = {.lex_state = 0}, + [2215] = {.lex_state = 0}, + [2216] = {.lex_state = 28}, + [2217] = {.lex_state = 41}, + [2218] = {.lex_state = 0}, + [2219] = {.lex_state = 41}, + [2220] = {.lex_state = 111}, + [2221] = {.lex_state = 111}, + [2222] = {.lex_state = 111}, + [2223] = {.lex_state = 111}, + [2224] = {.lex_state = 49}, + [2225] = {.lex_state = 49}, + [2226] = {.lex_state = 0}, + [2227] = {.lex_state = 0}, + [2228] = {.lex_state = 111}, + [2229] = {.lex_state = 111}, + [2230] = {.lex_state = 0}, + [2231] = {.lex_state = 0}, + [2232] = {.lex_state = 0}, + [2233] = {.lex_state = 41}, + [2234] = {.lex_state = 0}, + [2235] = {.lex_state = 111}, + [2236] = {.lex_state = 0}, + [2237] = {.lex_state = 0}, + [2238] = {.lex_state = 0}, + [2239] = {.lex_state = 0}, + [2240] = {.lex_state = 111}, + [2241] = {.lex_state = 28}, + [2242] = {.lex_state = 111}, + [2243] = {.lex_state = 0}, + [2244] = {.lex_state = 41}, + [2245] = {.lex_state = 49}, + [2246] = {.lex_state = 111}, + [2247] = {.lex_state = 111}, + [2248] = {.lex_state = 111}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -14816,6 +15516,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1), [anon_sym_GT_GT] = ACTIONS(1), [anon_sym_SEMI] = ACTIONS(1), + [anon_sym___extension__] = ACTIONS(1), [anon_sym_typedef] = ACTIONS(1), [anon_sym_extern] = ACTIONS(1), [anon_sym___attribute__] = ACTIONS(1), @@ -14846,6 +15547,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1), [anon_sym_register] = ACTIONS(1), [anon_sym_inline] = ACTIONS(1), + [anon_sym___inline] = ACTIONS(1), + [anon_sym___inline__] = ACTIONS(1), + [anon_sym___forceinline] = ACTIONS(1), [anon_sym_thread_local] = ACTIONS(1), [anon_sym___thread] = ACTIONS(1), [anon_sym_const] = ACTIONS(1), @@ -14887,7 +15591,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1), [anon_sym_PLUS_PLUS] = ACTIONS(1), [anon_sym_sizeof] = ACTIONS(1), + [anon_sym___alignof__] = ACTIONS(1), + [anon_sym___alignof] = ACTIONS(1), + [anon_sym__alignof] = ACTIONS(1), + [anon_sym_alignof] = ACTIONS(1), + [anon_sym__Alignof] = ACTIONS(1), [anon_sym_offsetof] = ACTIONS(1), + [anon_sym___builtin_va_arg] = ACTIONS(1), [anon_sym__Generic] = ACTIONS(1), [anon_sym_asm] = ACTIONS(1), [anon_sym___asm__] = ACTIONS(1), @@ -14911,72 +15621,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [1] = { - [sym_translation_unit] = STATE(1958), - [sym_preproc_include] = STATE(52), - [sym_preproc_def] = STATE(52), - [sym_preproc_function_def] = STATE(52), - [sym_preproc_call] = STATE(52), - [sym_preproc_if] = STATE(52), - [sym_preproc_ifdef] = STATE(52), - [sym_function_definition] = STATE(52), - [sym_declaration] = STATE(52), - [sym_type_definition] = STATE(52), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1389), - [sym_linkage_specification] = STATE(52), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(825), - [sym_compound_statement] = STATE(52), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1049), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(52), - [sym_labeled_statement] = STATE(52), - [sym__top_level_expression_statement] = STATE(52), - [sym_if_statement] = STATE(52), - [sym_switch_statement] = STATE(52), - [sym_case_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(1225), - [sym__expression_not_binary] = STATE(1224), - [sym_conditional_expression] = STATE(1224), - [sym_assignment_expression] = STATE(1224), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(1224), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(1224), - [sym_cast_expression] = STATE(1224), - [sym_sizeof_expression] = STATE(1224), - [sym_offsetof_expression] = STATE(1224), - [sym_generic_expression] = STATE(1224), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(1224), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(1224), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(1224), - [sym_concatenated_string] = STATE(1224), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(1224), - [sym__empty_declaration] = STATE(52), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_translation_unit_repeat1] = STATE(52), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(413), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), + [sym_translation_unit] = STATE(2214), + [sym_preproc_include] = STATE(53), + [sym_preproc_def] = STATE(53), + [sym_preproc_function_def] = STATE(53), + [sym_preproc_call] = STATE(53), + [sym_preproc_if] = STATE(53), + [sym_preproc_ifdef] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1522), + [sym_linkage_specification] = STATE(53), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(875), + [sym_compound_statement] = STATE(53), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1125), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(53), + [sym_labeled_statement] = STATE(53), + [sym__top_level_expression_statement] = STATE(53), + [sym_if_statement] = STATE(53), + [sym_switch_statement] = STATE(53), + [sym_case_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(1354), + [sym__expression_not_binary] = STATE(1352), + [sym_conditional_expression] = STATE(1352), + [sym_assignment_expression] = STATE(1352), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(1352), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(1352), + [sym_cast_expression] = STATE(1352), + [sym_sizeof_expression] = STATE(1352), + [sym_alignof_expression] = STATE(1352), + [sym_offsetof_expression] = STATE(1352), + [sym_builtin_va_arg] = STATE(1352), + [sym_generic_expression] = STATE(1352), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(1352), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(1352), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(1352), + [sym_concatenated_string] = STATE(1352), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(1352), + [sym__empty_declaration] = STATE(53), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_translation_unit_repeat1] = STATE(53), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(594), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -14992,157 +15704,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_typedef] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(29), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = 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), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym___extension__] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(31), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(93), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(99), + [sym_false] = ACTIONS(99), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [2] = { - [sym_preproc_include] = STATE(25), - [sym_preproc_def] = STATE(25), - [sym_preproc_function_def] = STATE(25), - [sym_preproc_call] = STATE(25), - [sym_preproc_if] = STATE(25), - [sym_preproc_ifdef] = STATE(25), - [sym_preproc_else] = STATE(1871), - [sym_preproc_elif] = STATE(1871), - [sym_preproc_elifdef] = STATE(1871), - [sym_function_definition] = STATE(25), - [sym_declaration] = STATE(25), - [sym_type_definition] = STATE(25), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1391), - [sym_linkage_specification] = STATE(25), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(826), - [sym_compound_statement] = STATE(25), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1044), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(25), - [sym_labeled_statement] = STATE(25), - [sym_expression_statement] = STATE(25), - [sym_if_statement] = STATE(25), - [sym_switch_statement] = STATE(25), - [sym_case_statement] = STATE(25), - [sym_while_statement] = STATE(25), - [sym_do_statement] = STATE(25), - [sym_for_statement] = STATE(25), - [sym_return_statement] = STATE(25), - [sym_break_statement] = STATE(25), - [sym_continue_statement] = STATE(25), - [sym_goto_statement] = STATE(25), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1801), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym__empty_declaration] = STATE(25), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_preproc_if_repeat1] = STATE(25), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(97), - [aux_sym_preproc_include_token1] = ACTIONS(99), - [aux_sym_preproc_def_token1] = ACTIONS(101), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [aux_sym_preproc_if_token2] = ACTIONS(105), - [aux_sym_preproc_ifdef_token1] = ACTIONS(107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(107), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [aux_sym_preproc_elifdef_token1] = ACTIONS(113), - [aux_sym_preproc_elifdef_token2] = ACTIONS(113), - [sym_preproc_directive] = ACTIONS(115), + [sym_preproc_include] = STATE(15), + [sym_preproc_def] = STATE(15), + [sym_preproc_function_def] = STATE(15), + [sym_preproc_call] = STATE(15), + [sym_preproc_if] = STATE(15), + [sym_preproc_ifdef] = STATE(15), + [sym_preproc_else] = STATE(2093), + [sym_preproc_elif] = STATE(2093), + [sym_preproc_elifdef] = STATE(2093), + [sym_function_definition] = STATE(15), + [sym_declaration] = STATE(15), + [sym_type_definition] = STATE(15), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1549), + [sym_linkage_specification] = STATE(15), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(874), + [sym_compound_statement] = STATE(15), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1124), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(15), + [sym_labeled_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_if_statement] = STATE(15), + [sym_switch_statement] = STATE(15), + [sym_case_statement] = STATE(15), + [sym_while_statement] = STATE(15), + [sym_do_statement] = STATE(15), + [sym_for_statement] = STATE(15), + [sym_return_statement] = STATE(15), + [sym_break_statement] = STATE(15), + [sym_continue_statement] = STATE(15), + [sym_goto_statement] = STATE(15), + [sym__expression] = STATE(1198), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2197), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym__empty_declaration] = STATE(15), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_repeat1] = STATE(15), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(508), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(111), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -15150,104 +15874,285 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_typedef] = ACTIONS(119), - [anon_sym_extern] = ACTIONS(121), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(131), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [3] = { + [sym_preproc_include] = STATE(6), + [sym_preproc_def] = STATE(6), + [sym_preproc_function_def] = STATE(6), + [sym_preproc_call] = STATE(6), + [sym_preproc_if] = STATE(6), + [sym_preproc_ifdef] = STATE(6), + [sym_preproc_else] = STATE(2168), + [sym_preproc_elif] = STATE(2168), + [sym_preproc_elifdef] = STATE(2168), + [sym_function_definition] = STATE(6), + [sym_declaration] = STATE(6), + [sym_type_definition] = STATE(6), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1549), + [sym_linkage_specification] = STATE(6), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(874), + [sym_compound_statement] = STATE(6), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1124), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(6), + [sym_labeled_statement] = STATE(6), + [sym_expression_statement] = STATE(6), + [sym_if_statement] = STATE(6), + [sym_switch_statement] = STATE(6), + [sym_case_statement] = STATE(6), + [sym_while_statement] = STATE(6), + [sym_do_statement] = STATE(6), + [sym_for_statement] = STATE(6), + [sym_return_statement] = STATE(6), + [sym_break_statement] = STATE(6), + [sym_continue_statement] = STATE(6), + [sym_goto_statement] = STATE(6), + [sym__expression] = STATE(1198), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2197), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym__empty_declaration] = STATE(6), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_repeat1] = STATE(6), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(508), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(159), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(131), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [4] = { [sym_preproc_include] = STATE(5), [sym_preproc_def] = STATE(5), [sym_preproc_function_def] = STATE(5), [sym_preproc_call] = STATE(5), [sym_preproc_if] = STATE(5), [sym_preproc_ifdef] = STATE(5), - [sym_preproc_else] = STATE(1930), - [sym_preproc_elif] = STATE(1930), - [sym_preproc_elifdef] = STATE(1930), + [sym_preproc_else] = STATE(2233), + [sym_preproc_elif] = STATE(2233), + [sym_preproc_elifdef] = STATE(2233), [sym_function_definition] = STATE(5), [sym_declaration] = STATE(5), [sym_type_definition] = STATE(5), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1391), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1549), [sym_linkage_specification] = STATE(5), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(826), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(874), [sym_compound_statement] = STATE(5), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1044), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1124), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), [sym_attributed_statement] = STATE(5), [sym_labeled_statement] = STATE(5), [sym_expression_statement] = STATE(5), @@ -15261,206 +16166,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(5), [sym_continue_statement] = STATE(5), [sym_goto_statement] = STATE(5), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1801), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), + [sym__expression] = STATE(1198), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2197), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), [sym__empty_declaration] = STATE(5), - [sym_macro_type_specifier] = STATE(1028), + [sym_macro_type_specifier] = STATE(1104), [aux_sym_preproc_if_repeat1] = STATE(5), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(97), - [aux_sym_preproc_include_token1] = ACTIONS(99), - [aux_sym_preproc_def_token1] = ACTIONS(101), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [aux_sym_preproc_if_token2] = ACTIONS(151), - [aux_sym_preproc_ifdef_token1] = ACTIONS(107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(107), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [aux_sym_preproc_elifdef_token1] = ACTIONS(113), - [aux_sym_preproc_elifdef_token2] = ACTIONS(113), - [sym_preproc_directive] = ACTIONS(115), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_typedef] = ACTIONS(119), - [anon_sym_extern] = ACTIONS(121), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [4] = { - [sym_preproc_include] = STATE(7), - [sym_preproc_def] = STATE(7), - [sym_preproc_function_def] = STATE(7), - [sym_preproc_call] = STATE(7), - [sym_preproc_if] = STATE(7), - [sym_preproc_ifdef] = STATE(7), - [sym_preproc_else] = STATE(1789), - [sym_preproc_elif] = STATE(1789), - [sym_preproc_elifdef] = STATE(1789), - [sym_function_definition] = STATE(7), - [sym_declaration] = STATE(7), - [sym_type_definition] = STATE(7), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1391), - [sym_linkage_specification] = STATE(7), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(826), - [sym_compound_statement] = STATE(7), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1044), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_case_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_goto_statement] = STATE(7), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1801), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym__empty_declaration] = STATE(7), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_preproc_if_repeat1] = STATE(7), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(97), - [aux_sym_preproc_include_token1] = ACTIONS(99), - [aux_sym_preproc_def_token1] = ACTIONS(101), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [aux_sym_preproc_if_token2] = ACTIONS(153), - [aux_sym_preproc_ifdef_token1] = ACTIONS(107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(107), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [aux_sym_preproc_elifdef_token1] = ACTIONS(113), - [aux_sym_preproc_elifdef_token2] = ACTIONS(113), - [sym_preproc_directive] = ACTIONS(115), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(508), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -15468,158 +16216,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_typedef] = ACTIONS(119), - [anon_sym_extern] = ACTIONS(121), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(131), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [5] = { - [sym_preproc_include] = STATE(25), - [sym_preproc_def] = STATE(25), - [sym_preproc_function_def] = STATE(25), - [sym_preproc_call] = STATE(25), - [sym_preproc_if] = STATE(25), - [sym_preproc_ifdef] = STATE(25), - [sym_preproc_else] = STATE(1884), - [sym_preproc_elif] = STATE(1884), - [sym_preproc_elifdef] = STATE(1884), - [sym_function_definition] = STATE(25), - [sym_declaration] = STATE(25), - [sym_type_definition] = STATE(25), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1391), - [sym_linkage_specification] = STATE(25), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(826), - [sym_compound_statement] = STATE(25), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1044), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(25), - [sym_labeled_statement] = STATE(25), - [sym_expression_statement] = STATE(25), - [sym_if_statement] = STATE(25), - [sym_switch_statement] = STATE(25), - [sym_case_statement] = STATE(25), - [sym_while_statement] = STATE(25), - [sym_do_statement] = STATE(25), - [sym_for_statement] = STATE(25), - [sym_return_statement] = STATE(25), - [sym_break_statement] = STATE(25), - [sym_continue_statement] = STATE(25), - [sym_goto_statement] = STATE(25), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1801), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym__empty_declaration] = STATE(25), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_preproc_if_repeat1] = STATE(25), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(97), - [aux_sym_preproc_include_token1] = ACTIONS(99), - [aux_sym_preproc_def_token1] = ACTIONS(101), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [aux_sym_preproc_if_token2] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(107), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [aux_sym_preproc_elifdef_token1] = ACTIONS(113), - [aux_sym_preproc_elifdef_token2] = ACTIONS(113), - [sym_preproc_directive] = ACTIONS(115), + [sym_preproc_include] = STATE(15), + [sym_preproc_def] = STATE(15), + [sym_preproc_function_def] = STATE(15), + [sym_preproc_call] = STATE(15), + [sym_preproc_if] = STATE(15), + [sym_preproc_ifdef] = STATE(15), + [sym_preproc_else] = STATE(2244), + [sym_preproc_elif] = STATE(2244), + [sym_preproc_elifdef] = STATE(2244), + [sym_function_definition] = STATE(15), + [sym_declaration] = STATE(15), + [sym_type_definition] = STATE(15), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1549), + [sym_linkage_specification] = STATE(15), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(874), + [sym_compound_statement] = STATE(15), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1124), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(15), + [sym_labeled_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_if_statement] = STATE(15), + [sym_switch_statement] = STATE(15), + [sym_case_statement] = STATE(15), + [sym_while_statement] = STATE(15), + [sym_do_statement] = STATE(15), + [sym_for_statement] = STATE(15), + [sym_return_statement] = STATE(15), + [sym_break_statement] = STATE(15), + [sym_continue_statement] = STATE(15), + [sym_goto_statement] = STATE(15), + [sym__expression] = STATE(1198), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2197), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym__empty_declaration] = STATE(15), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_repeat1] = STATE(15), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(508), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(163), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -15627,158 +16387,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_typedef] = ACTIONS(119), - [anon_sym_extern] = ACTIONS(121), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(131), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [6] = { - [sym_preproc_include] = STATE(8), - [sym_preproc_def] = STATE(8), - [sym_preproc_function_def] = STATE(8), - [sym_preproc_call] = STATE(8), - [sym_preproc_if] = STATE(8), - [sym_preproc_ifdef] = STATE(8), - [sym_preproc_else] = STATE(1861), - [sym_preproc_elif] = STATE(1861), - [sym_preproc_elifdef] = STATE(1861), - [sym_function_definition] = STATE(8), - [sym_declaration] = STATE(8), - [sym_type_definition] = STATE(8), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1391), - [sym_linkage_specification] = STATE(8), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(826), - [sym_compound_statement] = STATE(8), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1044), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(8), - [sym_labeled_statement] = STATE(8), - [sym_expression_statement] = STATE(8), - [sym_if_statement] = STATE(8), - [sym_switch_statement] = STATE(8), - [sym_case_statement] = STATE(8), - [sym_while_statement] = STATE(8), - [sym_do_statement] = STATE(8), - [sym_for_statement] = STATE(8), - [sym_return_statement] = STATE(8), - [sym_break_statement] = STATE(8), - [sym_continue_statement] = STATE(8), - [sym_goto_statement] = STATE(8), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1801), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym__empty_declaration] = STATE(8), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_preproc_if_repeat1] = STATE(8), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(97), - [aux_sym_preproc_include_token1] = ACTIONS(99), - [aux_sym_preproc_def_token1] = ACTIONS(101), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [aux_sym_preproc_if_token2] = ACTIONS(157), - [aux_sym_preproc_ifdef_token1] = ACTIONS(107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(107), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [aux_sym_preproc_elifdef_token1] = ACTIONS(113), - [aux_sym_preproc_elifdef_token2] = ACTIONS(113), - [sym_preproc_directive] = ACTIONS(115), + [sym_preproc_include] = STATE(15), + [sym_preproc_def] = STATE(15), + [sym_preproc_function_def] = STATE(15), + [sym_preproc_call] = STATE(15), + [sym_preproc_if] = STATE(15), + [sym_preproc_ifdef] = STATE(15), + [sym_preproc_else] = STATE(2109), + [sym_preproc_elif] = STATE(2109), + [sym_preproc_elifdef] = STATE(2109), + [sym_function_definition] = STATE(15), + [sym_declaration] = STATE(15), + [sym_type_definition] = STATE(15), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1549), + [sym_linkage_specification] = STATE(15), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(874), + [sym_compound_statement] = STATE(15), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1124), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(15), + [sym_labeled_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_if_statement] = STATE(15), + [sym_switch_statement] = STATE(15), + [sym_case_statement] = STATE(15), + [sym_while_statement] = STATE(15), + [sym_do_statement] = STATE(15), + [sym_for_statement] = STATE(15), + [sym_return_statement] = STATE(15), + [sym_break_statement] = STATE(15), + [sym_continue_statement] = STATE(15), + [sym_goto_statement] = STATE(15), + [sym__expression] = STATE(1198), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2197), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym__empty_declaration] = STATE(15), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_repeat1] = STATE(15), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(508), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(165), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -15786,158 +16558,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_typedef] = ACTIONS(119), - [anon_sym_extern] = ACTIONS(121), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(131), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [7] = { - [sym_preproc_include] = STATE(25), - [sym_preproc_def] = STATE(25), - [sym_preproc_function_def] = STATE(25), - [sym_preproc_call] = STATE(25), - [sym_preproc_if] = STATE(25), - [sym_preproc_ifdef] = STATE(25), - [sym_preproc_else] = STATE(1785), - [sym_preproc_elif] = STATE(1785), - [sym_preproc_elifdef] = STATE(1785), - [sym_function_definition] = STATE(25), - [sym_declaration] = STATE(25), - [sym_type_definition] = STATE(25), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1391), - [sym_linkage_specification] = STATE(25), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(826), - [sym_compound_statement] = STATE(25), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1044), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(25), - [sym_labeled_statement] = STATE(25), - [sym_expression_statement] = STATE(25), - [sym_if_statement] = STATE(25), - [sym_switch_statement] = STATE(25), - [sym_case_statement] = STATE(25), - [sym_while_statement] = STATE(25), - [sym_do_statement] = STATE(25), - [sym_for_statement] = STATE(25), - [sym_return_statement] = STATE(25), - [sym_break_statement] = STATE(25), - [sym_continue_statement] = STATE(25), - [sym_goto_statement] = STATE(25), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1801), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym__empty_declaration] = STATE(25), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_preproc_if_repeat1] = STATE(25), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(97), - [aux_sym_preproc_include_token1] = ACTIONS(99), - [aux_sym_preproc_def_token1] = ACTIONS(101), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [aux_sym_preproc_if_token2] = ACTIONS(159), - [aux_sym_preproc_ifdef_token1] = ACTIONS(107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(107), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [aux_sym_preproc_elifdef_token1] = ACTIONS(113), - [aux_sym_preproc_elifdef_token2] = ACTIONS(113), - [sym_preproc_directive] = ACTIONS(115), + [sym_preproc_include] = STATE(15), + [sym_preproc_def] = STATE(15), + [sym_preproc_function_def] = STATE(15), + [sym_preproc_call] = STATE(15), + [sym_preproc_if] = STATE(15), + [sym_preproc_ifdef] = STATE(15), + [sym_preproc_else] = STATE(1980), + [sym_preproc_elif] = STATE(1980), + [sym_preproc_elifdef] = STATE(1980), + [sym_function_definition] = STATE(15), + [sym_declaration] = STATE(15), + [sym_type_definition] = STATE(15), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1549), + [sym_linkage_specification] = STATE(15), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(874), + [sym_compound_statement] = STATE(15), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1124), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(15), + [sym_labeled_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_if_statement] = STATE(15), + [sym_switch_statement] = STATE(15), + [sym_case_statement] = STATE(15), + [sym_while_statement] = STATE(15), + [sym_do_statement] = STATE(15), + [sym_for_statement] = STATE(15), + [sym_return_statement] = STATE(15), + [sym_break_statement] = STATE(15), + [sym_continue_statement] = STATE(15), + [sym_goto_statement] = STATE(15), + [sym__expression] = STATE(1198), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2197), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym__empty_declaration] = STATE(15), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_repeat1] = STATE(15), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(508), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -15945,158 +16729,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_typedef] = ACTIONS(119), - [anon_sym_extern] = ACTIONS(121), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(131), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [8] = { - [sym_preproc_include] = STATE(25), - [sym_preproc_def] = STATE(25), - [sym_preproc_function_def] = STATE(25), - [sym_preproc_call] = STATE(25), - [sym_preproc_if] = STATE(25), - [sym_preproc_ifdef] = STATE(25), - [sym_preproc_else] = STATE(1844), - [sym_preproc_elif] = STATE(1844), - [sym_preproc_elifdef] = STATE(1844), - [sym_function_definition] = STATE(25), - [sym_declaration] = STATE(25), - [sym_type_definition] = STATE(25), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1391), - [sym_linkage_specification] = STATE(25), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(826), - [sym_compound_statement] = STATE(25), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1044), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(25), - [sym_labeled_statement] = STATE(25), - [sym_expression_statement] = STATE(25), - [sym_if_statement] = STATE(25), - [sym_switch_statement] = STATE(25), - [sym_case_statement] = STATE(25), - [sym_while_statement] = STATE(25), - [sym_do_statement] = STATE(25), - [sym_for_statement] = STATE(25), - [sym_return_statement] = STATE(25), - [sym_break_statement] = STATE(25), - [sym_continue_statement] = STATE(25), - [sym_goto_statement] = STATE(25), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1801), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym__empty_declaration] = STATE(25), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_preproc_if_repeat1] = STATE(25), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(97), - [aux_sym_preproc_include_token1] = ACTIONS(99), - [aux_sym_preproc_def_token1] = ACTIONS(101), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [aux_sym_preproc_if_token2] = ACTIONS(161), - [aux_sym_preproc_ifdef_token1] = ACTIONS(107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(107), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [aux_sym_preproc_elifdef_token1] = ACTIONS(113), - [aux_sym_preproc_elifdef_token2] = ACTIONS(113), - [sym_preproc_directive] = ACTIONS(115), + [sym_preproc_include] = STATE(11), + [sym_preproc_def] = STATE(11), + [sym_preproc_function_def] = STATE(11), + [sym_preproc_call] = STATE(11), + [sym_preproc_if] = STATE(11), + [sym_preproc_ifdef] = STATE(11), + [sym_preproc_else] = STATE(2161), + [sym_preproc_elif] = STATE(2161), + [sym_preproc_elifdef] = STATE(2161), + [sym_function_definition] = STATE(11), + [sym_declaration] = STATE(11), + [sym_type_definition] = STATE(11), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1549), + [sym_linkage_specification] = STATE(11), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(874), + [sym_compound_statement] = STATE(11), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1124), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(11), + [sym_labeled_statement] = STATE(11), + [sym_expression_statement] = STATE(11), + [sym_if_statement] = STATE(11), + [sym_switch_statement] = STATE(11), + [sym_case_statement] = STATE(11), + [sym_while_statement] = STATE(11), + [sym_do_statement] = STATE(11), + [sym_for_statement] = STATE(11), + [sym_return_statement] = STATE(11), + [sym_break_statement] = STATE(11), + [sym_continue_statement] = STATE(11), + [sym_goto_statement] = STATE(11), + [sym__expression] = STATE(1198), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2197), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym__empty_declaration] = STATE(11), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_repeat1] = STATE(11), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(508), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(169), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16104,158 +16900,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_typedef] = ACTIONS(119), - [anon_sym_extern] = ACTIONS(121), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(131), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [9] = { - [sym_preproc_include] = STATE(25), - [sym_preproc_def] = STATE(25), - [sym_preproc_function_def] = STATE(25), - [sym_preproc_call] = STATE(25), - [sym_preproc_if] = STATE(25), - [sym_preproc_ifdef] = STATE(25), - [sym_preproc_else] = STATE(1926), - [sym_preproc_elif] = STATE(1926), - [sym_preproc_elifdef] = STATE(1926), - [sym_function_definition] = STATE(25), - [sym_declaration] = STATE(25), - [sym_type_definition] = STATE(25), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1391), - [sym_linkage_specification] = STATE(25), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(826), - [sym_compound_statement] = STATE(25), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1044), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(25), - [sym_labeled_statement] = STATE(25), - [sym_expression_statement] = STATE(25), - [sym_if_statement] = STATE(25), - [sym_switch_statement] = STATE(25), - [sym_case_statement] = STATE(25), - [sym_while_statement] = STATE(25), - [sym_do_statement] = STATE(25), - [sym_for_statement] = STATE(25), - [sym_return_statement] = STATE(25), - [sym_break_statement] = STATE(25), - [sym_continue_statement] = STATE(25), - [sym_goto_statement] = STATE(25), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1801), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym__empty_declaration] = STATE(25), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_preproc_if_repeat1] = STATE(25), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(97), - [aux_sym_preproc_include_token1] = ACTIONS(99), - [aux_sym_preproc_def_token1] = ACTIONS(101), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [aux_sym_preproc_if_token2] = ACTIONS(163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(107), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [aux_sym_preproc_elifdef_token1] = ACTIONS(113), - [aux_sym_preproc_elifdef_token2] = ACTIONS(113), - [sym_preproc_directive] = ACTIONS(115), + [sym_preproc_include] = STATE(7), + [sym_preproc_def] = STATE(7), + [sym_preproc_function_def] = STATE(7), + [sym_preproc_call] = STATE(7), + [sym_preproc_if] = STATE(7), + [sym_preproc_ifdef] = STATE(7), + [sym_preproc_else] = STATE(1986), + [sym_preproc_elif] = STATE(1986), + [sym_preproc_elifdef] = STATE(1986), + [sym_function_definition] = STATE(7), + [sym_declaration] = STATE(7), + [sym_type_definition] = STATE(7), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1549), + [sym_linkage_specification] = STATE(7), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(874), + [sym_compound_statement] = STATE(7), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1124), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(7), + [sym_labeled_statement] = STATE(7), + [sym_expression_statement] = STATE(7), + [sym_if_statement] = STATE(7), + [sym_switch_statement] = STATE(7), + [sym_case_statement] = STATE(7), + [sym_while_statement] = STATE(7), + [sym_do_statement] = STATE(7), + [sym_for_statement] = STATE(7), + [sym_return_statement] = STATE(7), + [sym_break_statement] = STATE(7), + [sym_continue_statement] = STATE(7), + [sym_goto_statement] = STATE(7), + [sym__expression] = STATE(1198), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2197), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym__empty_declaration] = STATE(7), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_repeat1] = STATE(7), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(508), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(171), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16263,74 +17071,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_typedef] = ACTIONS(119), - [anon_sym_extern] = ACTIONS(121), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(131), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [10] = { @@ -16340,27 +17158,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(2), [sym_preproc_if] = STATE(2), [sym_preproc_ifdef] = STATE(2), - [sym_preproc_else] = STATE(1851), - [sym_preproc_elif] = STATE(1851), - [sym_preproc_elifdef] = STATE(1851), + [sym_preproc_else] = STATE(2054), + [sym_preproc_elif] = STATE(2054), + [sym_preproc_elifdef] = STATE(2054), [sym_function_definition] = STATE(2), [sym_declaration] = STATE(2), [sym_type_definition] = STATE(2), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1391), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1549), [sym_linkage_specification] = STATE(2), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(826), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(874), [sym_compound_statement] = STATE(2), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1044), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1124), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), [sym_attributed_statement] = STATE(2), [sym_labeled_statement] = STATE(2), [sym_expression_statement] = STATE(2), @@ -16374,47 +17192,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(2), [sym_continue_statement] = STATE(2), [sym_goto_statement] = STATE(2), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1801), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), + [sym__expression] = STATE(1198), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2197), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), [sym__empty_declaration] = STATE(2), - [sym_macro_type_specifier] = STATE(1028), + [sym_macro_type_specifier] = STATE(1104), [aux_sym_preproc_if_repeat1] = STATE(2), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(97), - [aux_sym_preproc_include_token1] = ACTIONS(99), - [aux_sym_preproc_def_token1] = ACTIONS(101), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [aux_sym_preproc_if_token2] = ACTIONS(165), - [aux_sym_preproc_ifdef_token1] = ACTIONS(107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(107), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [aux_sym_preproc_elifdef_token1] = ACTIONS(113), - [aux_sym_preproc_elifdef_token2] = ACTIONS(113), - [sym_preproc_directive] = ACTIONS(115), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(508), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(173), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16422,158 +17242,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_typedef] = ACTIONS(119), - [anon_sym_extern] = ACTIONS(121), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(131), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [11] = { - [sym_preproc_include] = STATE(9), - [sym_preproc_def] = STATE(9), - [sym_preproc_function_def] = STATE(9), - [sym_preproc_call] = STATE(9), - [sym_preproc_if] = STATE(9), - [sym_preproc_ifdef] = STATE(9), - [sym_preproc_else] = STATE(1893), - [sym_preproc_elif] = STATE(1893), - [sym_preproc_elifdef] = STATE(1893), - [sym_function_definition] = STATE(9), - [sym_declaration] = STATE(9), - [sym_type_definition] = STATE(9), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1391), - [sym_linkage_specification] = STATE(9), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(826), - [sym_compound_statement] = STATE(9), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1044), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(9), - [sym_labeled_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_case_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_goto_statement] = STATE(9), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1801), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym__empty_declaration] = STATE(9), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_preproc_if_repeat1] = STATE(9), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(97), - [aux_sym_preproc_include_token1] = ACTIONS(99), - [aux_sym_preproc_def_token1] = ACTIONS(101), - [aux_sym_preproc_if_token1] = ACTIONS(103), - [aux_sym_preproc_if_token2] = ACTIONS(167), - [aux_sym_preproc_ifdef_token1] = ACTIONS(107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(107), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [aux_sym_preproc_elifdef_token1] = ACTIONS(113), - [aux_sym_preproc_elifdef_token2] = ACTIONS(113), - [sym_preproc_directive] = ACTIONS(115), + [sym_preproc_include] = STATE(15), + [sym_preproc_def] = STATE(15), + [sym_preproc_function_def] = STATE(15), + [sym_preproc_call] = STATE(15), + [sym_preproc_if] = STATE(15), + [sym_preproc_ifdef] = STATE(15), + [sym_preproc_else] = STATE(2135), + [sym_preproc_elif] = STATE(2135), + [sym_preproc_elifdef] = STATE(2135), + [sym_function_definition] = STATE(15), + [sym_declaration] = STATE(15), + [sym_type_definition] = STATE(15), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1549), + [sym_linkage_specification] = STATE(15), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(874), + [sym_compound_statement] = STATE(15), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1124), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(15), + [sym_labeled_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_if_statement] = STATE(15), + [sym_switch_statement] = STATE(15), + [sym_case_statement] = STATE(15), + [sym_while_statement] = STATE(15), + [sym_do_statement] = STATE(15), + [sym_for_statement] = STATE(15), + [sym_return_statement] = STATE(15), + [sym_break_statement] = STATE(15), + [sym_continue_statement] = STATE(15), + [sym_goto_statement] = STATE(15), + [sym__expression] = STATE(1198), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2197), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym__empty_declaration] = STATE(15), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_repeat1] = STATE(15), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(508), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(103), + [aux_sym_preproc_include_token1] = ACTIONS(105), + [aux_sym_preproc_def_token1] = ACTIONS(107), + [aux_sym_preproc_if_token1] = ACTIONS(109), + [aux_sym_preproc_if_token2] = ACTIONS(175), + [aux_sym_preproc_ifdef_token1] = ACTIONS(113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(113), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(121), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16581,103 +17413,449 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_typedef] = ACTIONS(119), - [anon_sym_extern] = ACTIONS(121), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(129), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(131), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [12] = { + [sym_preproc_include] = STATE(27), + [sym_preproc_def] = STATE(27), + [sym_preproc_function_def] = STATE(27), + [sym_preproc_call] = STATE(27), + [sym_preproc_if] = STATE(27), + [sym_preproc_ifdef] = STATE(27), + [sym_preproc_else] = STATE(2217), + [sym_preproc_elif] = STATE(2217), + [sym_function_definition] = STATE(27), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1531), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(872), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1127), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(27), + [sym_labeled_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_switch_statement] = STATE(27), + [sym_case_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_do_statement] = STATE(27), + [sym_for_statement] = STATE(27), + [sym_return_statement] = STATE(27), + [sym_break_statement] = STATE(27), + [sym_continue_statement] = STATE(27), + [sym_goto_statement] = STATE(27), + [sym__expression] = STATE(1240), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2024), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(560), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(177), + [aux_sym_preproc_include_token1] = ACTIONS(179), + [aux_sym_preproc_def_token1] = ACTIONS(181), + [aux_sym_preproc_if_token1] = ACTIONS(183), + [aux_sym_preproc_if_token2] = ACTIONS(185), + [aux_sym_preproc_ifdef_token1] = ACTIONS(187), + [aux_sym_preproc_ifdef_token2] = ACTIONS(187), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [sym_preproc_directive] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym___extension__] = ACTIONS(193), + [anon_sym_typedef] = ACTIONS(195), + [anon_sym_extern] = ACTIONS(197), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(199), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(201), + [anon_sym_switch] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_default] = ACTIONS(207), + [anon_sym_while] = ACTIONS(209), + [anon_sym_do] = ACTIONS(211), + [anon_sym_for] = ACTIONS(213), + [anon_sym_return] = ACTIONS(215), + [anon_sym_break] = ACTIONS(217), + [anon_sym_continue] = ACTIONS(219), + [anon_sym_goto] = ACTIONS(221), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [13] = { + [sym_preproc_include] = STATE(26), + [sym_preproc_def] = STATE(26), + [sym_preproc_function_def] = STATE(26), + [sym_preproc_call] = STATE(26), + [sym_preproc_if] = STATE(26), + [sym_preproc_ifdef] = STATE(26), + [sym_preproc_else] = STATE(2110), + [sym_preproc_elif] = STATE(2110), + [sym_function_definition] = STATE(26), + [sym_declaration] = STATE(26), + [sym_type_definition] = STATE(26), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1531), + [sym_linkage_specification] = STATE(26), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(872), + [sym_compound_statement] = STATE(26), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1127), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(26), + [sym_labeled_statement] = STATE(26), + [sym_expression_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_switch_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_do_statement] = STATE(26), + [sym_for_statement] = STATE(26), + [sym_return_statement] = STATE(26), + [sym_break_statement] = STATE(26), + [sym_continue_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__expression] = STATE(1240), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2024), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym__empty_declaration] = STATE(26), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_repeat1] = STATE(26), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(560), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(177), + [aux_sym_preproc_include_token1] = ACTIONS(179), + [aux_sym_preproc_def_token1] = ACTIONS(181), + [aux_sym_preproc_if_token1] = ACTIONS(183), + [aux_sym_preproc_if_token2] = ACTIONS(223), + [aux_sym_preproc_ifdef_token1] = ACTIONS(187), + [aux_sym_preproc_ifdef_token2] = ACTIONS(187), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [sym_preproc_directive] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym___extension__] = ACTIONS(193), + [anon_sym_typedef] = ACTIONS(195), + [anon_sym_extern] = ACTIONS(197), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(199), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(201), + [anon_sym_switch] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_default] = ACTIONS(207), + [anon_sym_while] = ACTIONS(209), + [anon_sym_do] = ACTIONS(211), + [anon_sym_for] = ACTIONS(213), + [anon_sym_return] = ACTIONS(215), + [anon_sym_break] = ACTIONS(217), + [anon_sym_continue] = ACTIONS(219), + [anon_sym_goto] = ACTIONS(221), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [14] = { [sym_preproc_include] = STATE(17), [sym_preproc_def] = STATE(17), [sym_preproc_function_def] = STATE(17), [sym_preproc_call] = STATE(17), [sym_preproc_if] = STATE(17), [sym_preproc_ifdef] = STATE(17), - [sym_preproc_else] = STATE(1954), - [sym_preproc_elif] = STATE(1954), + [sym_preproc_else] = STATE(2141), + [sym_preproc_elif] = STATE(2141), [sym_function_definition] = STATE(17), [sym_declaration] = STATE(17), [sym_type_definition] = STATE(17), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1387), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1531), [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(822), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(872), [sym_compound_statement] = STATE(17), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1047), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1127), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), [sym_attributed_statement] = STATE(17), [sym_labeled_statement] = STATE(17), [sym_expression_statement] = STATE(17), @@ -16691,45 +17869,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(17), [sym_continue_statement] = STATE(17), [sym_goto_statement] = STATE(17), - [sym__expression] = STATE(1077), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), + [sym__expression] = STATE(1240), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2024), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), [sym__empty_declaration] = STATE(17), - [sym_macro_type_specifier] = STATE(1028), + [sym_macro_type_specifier] = STATE(1104), [aux_sym_preproc_if_repeat1] = STATE(17), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(437), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(169), - [aux_sym_preproc_include_token1] = ACTIONS(171), - [aux_sym_preproc_def_token1] = ACTIONS(173), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_if_token2] = ACTIONS(177), - [aux_sym_preproc_ifdef_token1] = ACTIONS(179), - [aux_sym_preproc_ifdef_token2] = ACTIONS(179), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [sym_preproc_directive] = ACTIONS(181), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(560), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(177), + [aux_sym_preproc_include_token1] = ACTIONS(179), + [aux_sym_preproc_def_token1] = ACTIONS(181), + [aux_sym_preproc_if_token1] = ACTIONS(183), + [aux_sym_preproc_if_token2] = ACTIONS(225), + [aux_sym_preproc_ifdef_token1] = ACTIONS(187), + [aux_sym_preproc_ifdef_token2] = ACTIONS(187), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [sym_preproc_directive] = ACTIONS(189), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16737,155 +17917,335 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), - [anon_sym_extern] = ACTIONS(187), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym___extension__] = ACTIONS(193), + [anon_sym_typedef] = ACTIONS(195), + [anon_sym_extern] = ACTIONS(197), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(199), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(201), + [anon_sym_switch] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_default] = ACTIONS(207), + [anon_sym_while] = ACTIONS(209), + [anon_sym_do] = ACTIONS(211), + [anon_sym_for] = ACTIONS(213), + [anon_sym_return] = ACTIONS(215), + [anon_sym_break] = ACTIONS(217), + [anon_sym_continue] = ACTIONS(219), + [anon_sym_goto] = ACTIONS(221), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [13] = { - [sym_preproc_include] = STATE(23), - [sym_preproc_def] = STATE(23), - [sym_preproc_function_def] = STATE(23), - [sym_preproc_call] = STATE(23), - [sym_preproc_if] = STATE(23), - [sym_preproc_ifdef] = STATE(23), - [sym_preproc_else] = STATE(1862), - [sym_preproc_elif] = STATE(1862), - [sym_function_definition] = STATE(23), - [sym_declaration] = STATE(23), - [sym_type_definition] = STATE(23), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1387), - [sym_linkage_specification] = STATE(23), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(822), - [sym_compound_statement] = STATE(23), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1047), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(23), - [sym_labeled_statement] = STATE(23), - [sym_expression_statement] = STATE(23), - [sym_if_statement] = STATE(23), - [sym_switch_statement] = STATE(23), - [sym_case_statement] = STATE(23), - [sym_while_statement] = STATE(23), - [sym_do_statement] = STATE(23), - [sym_for_statement] = STATE(23), - [sym_return_statement] = STATE(23), - [sym_break_statement] = STATE(23), - [sym_continue_statement] = STATE(23), - [sym_goto_statement] = STATE(23), - [sym__expression] = STATE(1077), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym__empty_declaration] = STATE(23), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_preproc_if_repeat1] = STATE(23), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(437), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(169), - [aux_sym_preproc_include_token1] = ACTIONS(171), - [aux_sym_preproc_def_token1] = ACTIONS(173), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_if_token2] = ACTIONS(213), - [aux_sym_preproc_ifdef_token1] = ACTIONS(179), - [aux_sym_preproc_ifdef_token2] = ACTIONS(179), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [sym_preproc_directive] = ACTIONS(181), + [15] = { + [sym_preproc_include] = STATE(15), + [sym_preproc_def] = STATE(15), + [sym_preproc_function_def] = STATE(15), + [sym_preproc_call] = STATE(15), + [sym_preproc_if] = STATE(15), + [sym_preproc_ifdef] = STATE(15), + [sym_function_definition] = STATE(15), + [sym_declaration] = STATE(15), + [sym_type_definition] = STATE(15), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1549), + [sym_linkage_specification] = STATE(15), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(874), + [sym_compound_statement] = STATE(15), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1124), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(15), + [sym_labeled_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_if_statement] = STATE(15), + [sym_switch_statement] = STATE(15), + [sym_case_statement] = STATE(15), + [sym_while_statement] = STATE(15), + [sym_do_statement] = STATE(15), + [sym_for_statement] = STATE(15), + [sym_return_statement] = STATE(15), + [sym_break_statement] = STATE(15), + [sym_continue_statement] = STATE(15), + [sym_goto_statement] = STATE(15), + [sym__expression] = STATE(1198), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2197), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym__empty_declaration] = STATE(15), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_repeat1] = STATE(15), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(508), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(227), + [aux_sym_preproc_include_token1] = ACTIONS(230), + [aux_sym_preproc_def_token1] = ACTIONS(233), + [aux_sym_preproc_if_token1] = ACTIONS(236), + [aux_sym_preproc_if_token2] = ACTIONS(239), + [aux_sym_preproc_ifdef_token1] = ACTIONS(241), + [aux_sym_preproc_ifdef_token2] = ACTIONS(241), + [aux_sym_preproc_else_token1] = ACTIONS(239), + [aux_sym_preproc_elif_token1] = ACTIONS(239), + [aux_sym_preproc_elifdef_token1] = ACTIONS(239), + [aux_sym_preproc_elifdef_token2] = ACTIONS(239), + [sym_preproc_directive] = ACTIONS(244), + [anon_sym_LPAREN2] = ACTIONS(247), + [anon_sym_BANG] = ACTIONS(250), + [anon_sym_TILDE] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(253), + [anon_sym_STAR] = ACTIONS(256), + [anon_sym_AMP] = ACTIONS(256), + [anon_sym_SEMI] = ACTIONS(259), + [anon_sym___extension__] = ACTIONS(262), + [anon_sym_typedef] = ACTIONS(265), + [anon_sym_extern] = ACTIONS(268), + [anon_sym___attribute__] = ACTIONS(271), + [anon_sym_LBRACK_LBRACK] = ACTIONS(274), + [anon_sym___declspec] = ACTIONS(277), + [anon_sym___cdecl] = ACTIONS(280), + [anon_sym___clrcall] = ACTIONS(280), + [anon_sym___stdcall] = ACTIONS(280), + [anon_sym___fastcall] = ACTIONS(280), + [anon_sym___thiscall] = ACTIONS(280), + [anon_sym___vectorcall] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_signed] = ACTIONS(286), + [anon_sym_unsigned] = ACTIONS(286), + [anon_sym_long] = ACTIONS(286), + [anon_sym_short] = ACTIONS(286), + [anon_sym_static] = ACTIONS(289), + [anon_sym_auto] = ACTIONS(289), + [anon_sym_register] = ACTIONS(289), + [anon_sym_inline] = ACTIONS(289), + [anon_sym___inline] = ACTIONS(289), + [anon_sym___inline__] = ACTIONS(289), + [anon_sym___forceinline] = ACTIONS(289), + [anon_sym_thread_local] = ACTIONS(289), + [anon_sym___thread] = ACTIONS(289), + [anon_sym_const] = ACTIONS(292), + [anon_sym_constexpr] = ACTIONS(292), + [anon_sym_volatile] = ACTIONS(292), + [anon_sym_restrict] = ACTIONS(292), + [anon_sym___restrict__] = ACTIONS(292), + [anon_sym__Atomic] = ACTIONS(292), + [anon_sym__Noreturn] = ACTIONS(292), + [anon_sym_noreturn] = ACTIONS(292), + [sym_primitive_type] = ACTIONS(295), + [anon_sym_enum] = ACTIONS(298), + [anon_sym_struct] = ACTIONS(301), + [anon_sym_union] = ACTIONS(304), + [anon_sym_if] = ACTIONS(307), + [anon_sym_switch] = ACTIONS(310), + [anon_sym_case] = ACTIONS(313), + [anon_sym_default] = ACTIONS(316), + [anon_sym_while] = ACTIONS(319), + [anon_sym_do] = ACTIONS(322), + [anon_sym_for] = ACTIONS(325), + [anon_sym_return] = ACTIONS(328), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(334), + [anon_sym_goto] = ACTIONS(337), + [anon_sym_DASH_DASH] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(340), + [anon_sym_sizeof] = ACTIONS(343), + [anon_sym___alignof__] = ACTIONS(346), + [anon_sym___alignof] = ACTIONS(346), + [anon_sym__alignof] = ACTIONS(346), + [anon_sym_alignof] = ACTIONS(346), + [anon_sym__Alignof] = ACTIONS(346), + [anon_sym_offsetof] = ACTIONS(349), + [anon_sym___builtin_va_arg] = ACTIONS(352), + [anon_sym__Generic] = ACTIONS(355), + [anon_sym_asm] = ACTIONS(358), + [anon_sym___asm__] = ACTIONS(358), + [sym_number_literal] = ACTIONS(361), + [anon_sym_L_SQUOTE] = ACTIONS(364), + [anon_sym_u_SQUOTE] = ACTIONS(364), + [anon_sym_U_SQUOTE] = ACTIONS(364), + [anon_sym_u8_SQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(364), + [anon_sym_L_DQUOTE] = ACTIONS(367), + [anon_sym_u_DQUOTE] = ACTIONS(367), + [anon_sym_U_DQUOTE] = ACTIONS(367), + [anon_sym_u8_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [sym_true] = ACTIONS(370), + [sym_false] = ACTIONS(370), + [anon_sym_NULL] = ACTIONS(373), + [anon_sym_nullptr] = ACTIONS(373), + [sym_comment] = ACTIONS(3), + }, + [16] = { + [sym_preproc_include] = STATE(27), + [sym_preproc_def] = STATE(27), + [sym_preproc_function_def] = STATE(27), + [sym_preproc_call] = STATE(27), + [sym_preproc_if] = STATE(27), + [sym_preproc_ifdef] = STATE(27), + [sym_preproc_else] = STATE(1975), + [sym_preproc_elif] = STATE(1975), + [sym_function_definition] = STATE(27), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1531), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(872), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1127), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(27), + [sym_labeled_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_switch_statement] = STATE(27), + [sym_case_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_do_statement] = STATE(27), + [sym_for_statement] = STATE(27), + [sym_return_statement] = STATE(27), + [sym_break_statement] = STATE(27), + [sym_continue_statement] = STATE(27), + [sym_goto_statement] = STATE(27), + [sym__expression] = STATE(1240), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2024), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(560), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(177), + [aux_sym_preproc_include_token1] = ACTIONS(179), + [aux_sym_preproc_def_token1] = ACTIONS(181), + [aux_sym_preproc_if_token1] = ACTIONS(183), + [aux_sym_preproc_if_token2] = ACTIONS(376), + [aux_sym_preproc_ifdef_token1] = ACTIONS(187), + [aux_sym_preproc_ifdef_token2] = ACTIONS(187), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [sym_preproc_directive] = ACTIONS(189), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16893,103 +18253,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), - [anon_sym_extern] = ACTIONS(187), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym___extension__] = ACTIONS(193), + [anon_sym_typedef] = ACTIONS(195), + [anon_sym_extern] = ACTIONS(197), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(199), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(201), + [anon_sym_switch] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_default] = ACTIONS(207), + [anon_sym_while] = ACTIONS(209), + [anon_sym_do] = ACTIONS(211), + [anon_sym_for] = ACTIONS(213), + [anon_sym_return] = ACTIONS(215), + [anon_sym_break] = ACTIONS(217), + [anon_sym_continue] = ACTIONS(219), + [anon_sym_goto] = ACTIONS(221), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [14] = { + [17] = { [sym_preproc_include] = STATE(27), [sym_preproc_def] = STATE(27), [sym_preproc_function_def] = STATE(27), [sym_preproc_call] = STATE(27), [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(2001), - [sym_preproc_elif] = STATE(2001), + [sym_preproc_else] = STATE(2117), + [sym_preproc_elif] = STATE(2117), [sym_function_definition] = STATE(27), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1387), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1531), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(822), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(872), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1047), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1127), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -17003,45 +18373,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(27), [sym_continue_statement] = STATE(27), [sym_goto_statement] = STATE(27), - [sym__expression] = STATE(1077), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), + [sym__expression] = STATE(1240), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2024), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1028), + [sym_macro_type_specifier] = STATE(1104), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(437), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(169), - [aux_sym_preproc_include_token1] = ACTIONS(171), - [aux_sym_preproc_def_token1] = ACTIONS(173), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_if_token2] = ACTIONS(215), - [aux_sym_preproc_ifdef_token1] = ACTIONS(179), - [aux_sym_preproc_ifdef_token2] = ACTIONS(179), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [sym_preproc_directive] = ACTIONS(181), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(560), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(177), + [aux_sym_preproc_include_token1] = ACTIONS(179), + [aux_sym_preproc_def_token1] = ACTIONS(181), + [aux_sym_preproc_if_token1] = ACTIONS(183), + [aux_sym_preproc_if_token2] = ACTIONS(378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(187), + [aux_sym_preproc_ifdef_token2] = ACTIONS(187), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [sym_preproc_directive] = ACTIONS(189), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17049,103 +18421,281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), - [anon_sym_extern] = ACTIONS(187), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym___extension__] = ACTIONS(193), + [anon_sym_typedef] = ACTIONS(195), + [anon_sym_extern] = ACTIONS(197), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(199), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(201), + [anon_sym_switch] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_default] = ACTIONS(207), + [anon_sym_while] = ACTIONS(209), + [anon_sym_do] = ACTIONS(211), + [anon_sym_for] = ACTIONS(213), + [anon_sym_return] = ACTIONS(215), + [anon_sym_break] = ACTIONS(217), + [anon_sym_continue] = ACTIONS(219), + [anon_sym_goto] = ACTIONS(221), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [15] = { + [18] = { + [sym_preproc_include] = STATE(12), + [sym_preproc_def] = STATE(12), + [sym_preproc_function_def] = STATE(12), + [sym_preproc_call] = STATE(12), + [sym_preproc_if] = STATE(12), + [sym_preproc_ifdef] = STATE(12), + [sym_preproc_else] = STATE(1982), + [sym_preproc_elif] = STATE(1982), + [sym_function_definition] = STATE(12), + [sym_declaration] = STATE(12), + [sym_type_definition] = STATE(12), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1531), + [sym_linkage_specification] = STATE(12), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(872), + [sym_compound_statement] = STATE(12), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1127), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(12), + [sym_labeled_statement] = STATE(12), + [sym_expression_statement] = STATE(12), + [sym_if_statement] = STATE(12), + [sym_switch_statement] = STATE(12), + [sym_case_statement] = STATE(12), + [sym_while_statement] = STATE(12), + [sym_do_statement] = STATE(12), + [sym_for_statement] = STATE(12), + [sym_return_statement] = STATE(12), + [sym_break_statement] = STATE(12), + [sym_continue_statement] = STATE(12), + [sym_goto_statement] = STATE(12), + [sym__expression] = STATE(1240), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2024), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym__empty_declaration] = STATE(12), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_repeat1] = STATE(12), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(560), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(177), + [aux_sym_preproc_include_token1] = ACTIONS(179), + [aux_sym_preproc_def_token1] = ACTIONS(181), + [aux_sym_preproc_if_token1] = ACTIONS(183), + [aux_sym_preproc_if_token2] = ACTIONS(380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(187), + [aux_sym_preproc_ifdef_token2] = ACTIONS(187), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [sym_preproc_directive] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym___extension__] = ACTIONS(193), + [anon_sym_typedef] = ACTIONS(195), + [anon_sym_extern] = ACTIONS(197), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(199), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(201), + [anon_sym_switch] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_default] = ACTIONS(207), + [anon_sym_while] = ACTIONS(209), + [anon_sym_do] = ACTIONS(211), + [anon_sym_for] = ACTIONS(213), + [anon_sym_return] = ACTIONS(215), + [anon_sym_break] = ACTIONS(217), + [anon_sym_continue] = ACTIONS(219), + [anon_sym_goto] = ACTIONS(221), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [19] = { [sym_preproc_include] = STATE(27), [sym_preproc_def] = STATE(27), [sym_preproc_function_def] = STATE(27), [sym_preproc_call] = STATE(27), [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(1855), - [sym_preproc_elif] = STATE(1855), + [sym_preproc_else] = STATE(2209), + [sym_preproc_elif] = STATE(2209), [sym_function_definition] = STATE(27), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1387), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1531), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(822), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(872), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1047), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1127), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -17159,45 +18709,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(27), [sym_continue_statement] = STATE(27), [sym_goto_statement] = STATE(27), - [sym__expression] = STATE(1077), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), + [sym__expression] = STATE(1240), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2024), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1028), + [sym_macro_type_specifier] = STATE(1104), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(437), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(169), - [aux_sym_preproc_include_token1] = ACTIONS(171), - [aux_sym_preproc_def_token1] = ACTIONS(173), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_if_token2] = ACTIONS(217), - [aux_sym_preproc_ifdef_token1] = ACTIONS(179), - [aux_sym_preproc_ifdef_token2] = ACTIONS(179), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [sym_preproc_directive] = ACTIONS(181), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(560), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(177), + [aux_sym_preproc_include_token1] = ACTIONS(179), + [aux_sym_preproc_def_token1] = ACTIONS(181), + [aux_sym_preproc_if_token1] = ACTIONS(183), + [aux_sym_preproc_if_token2] = ACTIONS(382), + [aux_sym_preproc_ifdef_token1] = ACTIONS(187), + [aux_sym_preproc_ifdef_token2] = ACTIONS(187), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [sym_preproc_directive] = ACTIONS(189), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17205,155 +18757,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), - [anon_sym_extern] = ACTIONS(187), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym___extension__] = ACTIONS(193), + [anon_sym_typedef] = ACTIONS(195), + [anon_sym_extern] = ACTIONS(197), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(199), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(201), + [anon_sym_switch] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_default] = ACTIONS(207), + [anon_sym_while] = ACTIONS(209), + [anon_sym_do] = ACTIONS(211), + [anon_sym_for] = ACTIONS(213), + [anon_sym_return] = ACTIONS(215), + [anon_sym_break] = ACTIONS(217), + [anon_sym_continue] = ACTIONS(219), + [anon_sym_goto] = ACTIONS(221), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [16] = { - [sym_preproc_include] = STATE(22), - [sym_preproc_def] = STATE(22), - [sym_preproc_function_def] = STATE(22), - [sym_preproc_call] = STATE(22), - [sym_preproc_if] = STATE(22), - [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1786), - [sym_preproc_elif] = STATE(1786), - [sym_function_definition] = STATE(22), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1387), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(822), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1047), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(22), - [sym_labeled_statement] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_switch_statement] = STATE(22), - [sym_case_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_do_statement] = STATE(22), - [sym_for_statement] = STATE(22), - [sym_return_statement] = STATE(22), - [sym_break_statement] = STATE(22), - [sym_continue_statement] = STATE(22), - [sym_goto_statement] = STATE(22), - [sym__expression] = STATE(1077), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(437), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(169), - [aux_sym_preproc_include_token1] = ACTIONS(171), - [aux_sym_preproc_def_token1] = ACTIONS(173), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_if_token2] = ACTIONS(219), - [aux_sym_preproc_ifdef_token1] = ACTIONS(179), - [aux_sym_preproc_ifdef_token2] = ACTIONS(179), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [sym_preproc_directive] = ACTIONS(181), + [20] = { + [sym_preproc_include] = STATE(27), + [sym_preproc_def] = STATE(27), + [sym_preproc_function_def] = STATE(27), + [sym_preproc_call] = STATE(27), + [sym_preproc_if] = STATE(27), + [sym_preproc_ifdef] = STATE(27), + [sym_preproc_else] = STATE(1988), + [sym_preproc_elif] = STATE(1988), + [sym_function_definition] = STATE(27), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1531), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(872), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1127), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(27), + [sym_labeled_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_switch_statement] = STATE(27), + [sym_case_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_do_statement] = STATE(27), + [sym_for_statement] = STATE(27), + [sym_return_statement] = STATE(27), + [sym_break_statement] = STATE(27), + [sym_continue_statement] = STATE(27), + [sym_goto_statement] = STATE(27), + [sym__expression] = STATE(1240), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2024), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(560), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(177), + [aux_sym_preproc_include_token1] = ACTIONS(179), + [aux_sym_preproc_def_token1] = ACTIONS(181), + [aux_sym_preproc_if_token1] = ACTIONS(183), + [aux_sym_preproc_if_token2] = ACTIONS(384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(187), + [aux_sym_preproc_ifdef_token2] = ACTIONS(187), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [sym_preproc_directive] = ACTIONS(189), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17361,103 +18925,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), - [anon_sym_extern] = ACTIONS(187), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym___extension__] = ACTIONS(193), + [anon_sym_typedef] = ACTIONS(195), + [anon_sym_extern] = ACTIONS(197), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(199), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(201), + [anon_sym_switch] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_default] = ACTIONS(207), + [anon_sym_while] = ACTIONS(209), + [anon_sym_do] = ACTIONS(211), + [anon_sym_for] = ACTIONS(213), + [anon_sym_return] = ACTIONS(215), + [anon_sym_break] = ACTIONS(217), + [anon_sym_continue] = ACTIONS(219), + [anon_sym_goto] = ACTIONS(221), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [17] = { + [21] = { [sym_preproc_include] = STATE(27), [sym_preproc_def] = STATE(27), [sym_preproc_function_def] = STATE(27), [sym_preproc_call] = STATE(27), [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(2024), - [sym_preproc_elif] = STATE(2024), + [sym_preproc_else] = STATE(2104), + [sym_preproc_elif] = STATE(2104), [sym_function_definition] = STATE(27), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1387), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1531), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(822), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(872), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1047), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1127), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -17471,45 +19045,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(27), [sym_continue_statement] = STATE(27), [sym_goto_statement] = STATE(27), - [sym__expression] = STATE(1077), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), + [sym__expression] = STATE(1240), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2024), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1028), + [sym_macro_type_specifier] = STATE(1104), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(437), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(169), - [aux_sym_preproc_include_token1] = ACTIONS(171), - [aux_sym_preproc_def_token1] = ACTIONS(173), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_if_token2] = ACTIONS(221), - [aux_sym_preproc_ifdef_token1] = ACTIONS(179), - [aux_sym_preproc_ifdef_token2] = ACTIONS(179), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [sym_preproc_directive] = ACTIONS(181), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(560), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(177), + [aux_sym_preproc_include_token1] = ACTIONS(179), + [aux_sym_preproc_def_token1] = ACTIONS(181), + [aux_sym_preproc_if_token1] = ACTIONS(183), + [aux_sym_preproc_if_token2] = ACTIONS(386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(187), + [aux_sym_preproc_ifdef_token2] = ACTIONS(187), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [sym_preproc_directive] = ACTIONS(189), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17517,155 +19093,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), - [anon_sym_extern] = ACTIONS(187), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym___extension__] = ACTIONS(193), + [anon_sym_typedef] = ACTIONS(195), + [anon_sym_extern] = ACTIONS(197), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(199), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(201), + [anon_sym_switch] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_default] = ACTIONS(207), + [anon_sym_while] = ACTIONS(209), + [anon_sym_do] = ACTIONS(211), + [anon_sym_for] = ACTIONS(213), + [anon_sym_return] = ACTIONS(215), + [anon_sym_break] = ACTIONS(217), + [anon_sym_continue] = ACTIONS(219), + [anon_sym_goto] = ACTIONS(221), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [18] = { - [sym_preproc_include] = STATE(14), - [sym_preproc_def] = STATE(14), - [sym_preproc_function_def] = STATE(14), - [sym_preproc_call] = STATE(14), - [sym_preproc_if] = STATE(14), - [sym_preproc_ifdef] = STATE(14), - [sym_preproc_else] = STATE(2027), - [sym_preproc_elif] = STATE(2027), - [sym_function_definition] = STATE(14), - [sym_declaration] = STATE(14), - [sym_type_definition] = STATE(14), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1387), - [sym_linkage_specification] = STATE(14), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(822), - [sym_compound_statement] = STATE(14), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1047), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(14), - [sym_labeled_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_if_statement] = STATE(14), - [sym_switch_statement] = STATE(14), - [sym_case_statement] = STATE(14), - [sym_while_statement] = STATE(14), - [sym_do_statement] = STATE(14), - [sym_for_statement] = STATE(14), - [sym_return_statement] = STATE(14), - [sym_break_statement] = STATE(14), - [sym_continue_statement] = STATE(14), - [sym_goto_statement] = STATE(14), - [sym__expression] = STATE(1077), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym__empty_declaration] = STATE(14), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_preproc_if_repeat1] = STATE(14), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(437), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(169), - [aux_sym_preproc_include_token1] = ACTIONS(171), - [aux_sym_preproc_def_token1] = ACTIONS(173), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_if_token2] = ACTIONS(223), - [aux_sym_preproc_ifdef_token1] = ACTIONS(179), - [aux_sym_preproc_ifdef_token2] = ACTIONS(179), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [sym_preproc_directive] = ACTIONS(181), + [22] = { + [sym_preproc_include] = STATE(19), + [sym_preproc_def] = STATE(19), + [sym_preproc_function_def] = STATE(19), + [sym_preproc_call] = STATE(19), + [sym_preproc_if] = STATE(19), + [sym_preproc_ifdef] = STATE(19), + [sym_preproc_else] = STATE(1989), + [sym_preproc_elif] = STATE(1989), + [sym_function_definition] = STATE(19), + [sym_declaration] = STATE(19), + [sym_type_definition] = STATE(19), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1531), + [sym_linkage_specification] = STATE(19), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(872), + [sym_compound_statement] = STATE(19), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1127), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(19), + [sym_labeled_statement] = STATE(19), + [sym_expression_statement] = STATE(19), + [sym_if_statement] = STATE(19), + [sym_switch_statement] = STATE(19), + [sym_case_statement] = STATE(19), + [sym_while_statement] = STATE(19), + [sym_do_statement] = STATE(19), + [sym_for_statement] = STATE(19), + [sym_return_statement] = STATE(19), + [sym_break_statement] = STATE(19), + [sym_continue_statement] = STATE(19), + [sym_goto_statement] = STATE(19), + [sym__expression] = STATE(1240), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2024), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym__empty_declaration] = STATE(19), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_repeat1] = STATE(19), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(560), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(177), + [aux_sym_preproc_include_token1] = ACTIONS(179), + [aux_sym_preproc_def_token1] = ACTIONS(181), + [aux_sym_preproc_if_token1] = ACTIONS(183), + [aux_sym_preproc_if_token2] = ACTIONS(388), + [aux_sym_preproc_ifdef_token1] = ACTIONS(187), + [aux_sym_preproc_ifdef_token2] = ACTIONS(187), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [sym_preproc_directive] = ACTIONS(189), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17673,103 +19261,281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), - [anon_sym_extern] = ACTIONS(187), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym___extension__] = ACTIONS(193), + [anon_sym_typedef] = ACTIONS(195), + [anon_sym_extern] = ACTIONS(197), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(199), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(201), + [anon_sym_switch] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_default] = ACTIONS(207), + [anon_sym_while] = ACTIONS(209), + [anon_sym_do] = ACTIONS(211), + [anon_sym_for] = ACTIONS(213), + [anon_sym_return] = ACTIONS(215), + [anon_sym_break] = ACTIONS(217), + [anon_sym_continue] = ACTIONS(219), + [anon_sym_goto] = ACTIONS(221), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [19] = { + [23] = { + [sym_preproc_include] = STATE(21), + [sym_preproc_def] = STATE(21), + [sym_preproc_function_def] = STATE(21), + [sym_preproc_call] = STATE(21), + [sym_preproc_if] = STATE(21), + [sym_preproc_ifdef] = STATE(21), + [sym_preproc_else] = STATE(2085), + [sym_preproc_elif] = STATE(2085), + [sym_function_definition] = STATE(21), + [sym_declaration] = STATE(21), + [sym_type_definition] = STATE(21), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1531), + [sym_linkage_specification] = STATE(21), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(872), + [sym_compound_statement] = STATE(21), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1127), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(21), + [sym_labeled_statement] = STATE(21), + [sym_expression_statement] = STATE(21), + [sym_if_statement] = STATE(21), + [sym_switch_statement] = STATE(21), + [sym_case_statement] = STATE(21), + [sym_while_statement] = STATE(21), + [sym_do_statement] = STATE(21), + [sym_for_statement] = STATE(21), + [sym_return_statement] = STATE(21), + [sym_break_statement] = STATE(21), + [sym_continue_statement] = STATE(21), + [sym_goto_statement] = STATE(21), + [sym__expression] = STATE(1240), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2024), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym__empty_declaration] = STATE(21), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_repeat1] = STATE(21), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(560), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(177), + [aux_sym_preproc_include_token1] = ACTIONS(179), + [aux_sym_preproc_def_token1] = ACTIONS(181), + [aux_sym_preproc_if_token1] = ACTIONS(183), + [aux_sym_preproc_if_token2] = ACTIONS(390), + [aux_sym_preproc_ifdef_token1] = ACTIONS(187), + [aux_sym_preproc_ifdef_token2] = ACTIONS(187), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [sym_preproc_directive] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym___extension__] = ACTIONS(193), + [anon_sym_typedef] = ACTIONS(195), + [anon_sym_extern] = ACTIONS(197), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(199), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(201), + [anon_sym_switch] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_default] = ACTIONS(207), + [anon_sym_while] = ACTIONS(209), + [anon_sym_do] = ACTIONS(211), + [anon_sym_for] = ACTIONS(213), + [anon_sym_return] = ACTIONS(215), + [anon_sym_break] = ACTIONS(217), + [anon_sym_continue] = ACTIONS(219), + [anon_sym_goto] = ACTIONS(221), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [24] = { [sym_preproc_include] = STATE(20), [sym_preproc_def] = STATE(20), [sym_preproc_function_def] = STATE(20), [sym_preproc_call] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1848), - [sym_preproc_elif] = STATE(1848), + [sym_preproc_else] = STATE(2052), + [sym_preproc_elif] = STATE(2052), [sym_function_definition] = STATE(20), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1387), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1531), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(822), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(872), [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1047), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1127), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), [sym_attributed_statement] = STATE(20), [sym_labeled_statement] = STATE(20), [sym_expression_statement] = STATE(20), @@ -17783,45 +19549,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(20), [sym_continue_statement] = STATE(20), [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(1077), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), + [sym__expression] = STATE(1240), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2024), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(1028), + [sym_macro_type_specifier] = STATE(1104), [aux_sym_preproc_if_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(437), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(169), - [aux_sym_preproc_include_token1] = ACTIONS(171), - [aux_sym_preproc_def_token1] = ACTIONS(173), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_if_token2] = ACTIONS(225), - [aux_sym_preproc_ifdef_token1] = ACTIONS(179), - [aux_sym_preproc_ifdef_token2] = ACTIONS(179), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [sym_preproc_directive] = ACTIONS(181), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(560), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(177), + [aux_sym_preproc_include_token1] = ACTIONS(179), + [aux_sym_preproc_def_token1] = ACTIONS(181), + [aux_sym_preproc_if_token1] = ACTIONS(183), + [aux_sym_preproc_if_token2] = ACTIONS(392), + [aux_sym_preproc_ifdef_token1] = ACTIONS(187), + [aux_sym_preproc_ifdef_token2] = ACTIONS(187), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [sym_preproc_directive] = ACTIONS(189), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17829,155 +19597,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), - [anon_sym_extern] = ACTIONS(187), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym___extension__] = ACTIONS(193), + [anon_sym_typedef] = ACTIONS(195), + [anon_sym_extern] = ACTIONS(197), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(199), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(201), + [anon_sym_switch] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_default] = ACTIONS(207), + [anon_sym_while] = ACTIONS(209), + [anon_sym_do] = ACTIONS(211), + [anon_sym_for] = ACTIONS(213), + [anon_sym_return] = ACTIONS(215), + [anon_sym_break] = ACTIONS(217), + [anon_sym_continue] = ACTIONS(219), + [anon_sym_goto] = ACTIONS(221), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [20] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(1791), - [sym_preproc_elif] = STATE(1791), - [sym_function_definition] = STATE(27), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1387), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(822), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1047), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(27), - [sym_labeled_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_case_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_goto_statement] = STATE(27), - [sym__expression] = STATE(1077), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(437), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(169), - [aux_sym_preproc_include_token1] = ACTIONS(171), - [aux_sym_preproc_def_token1] = ACTIONS(173), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_if_token2] = ACTIONS(227), - [aux_sym_preproc_ifdef_token1] = ACTIONS(179), - [aux_sym_preproc_ifdef_token2] = ACTIONS(179), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [sym_preproc_directive] = ACTIONS(181), + [25] = { + [sym_preproc_include] = STATE(16), + [sym_preproc_def] = STATE(16), + [sym_preproc_function_def] = STATE(16), + [sym_preproc_call] = STATE(16), + [sym_preproc_if] = STATE(16), + [sym_preproc_ifdef] = STATE(16), + [sym_preproc_else] = STATE(1981), + [sym_preproc_elif] = STATE(1981), + [sym_function_definition] = STATE(16), + [sym_declaration] = STATE(16), + [sym_type_definition] = STATE(16), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1531), + [sym_linkage_specification] = STATE(16), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(872), + [sym_compound_statement] = STATE(16), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1127), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(16), + [sym_labeled_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_if_statement] = STATE(16), + [sym_switch_statement] = STATE(16), + [sym_case_statement] = STATE(16), + [sym_while_statement] = STATE(16), + [sym_do_statement] = STATE(16), + [sym_for_statement] = STATE(16), + [sym_return_statement] = STATE(16), + [sym_break_statement] = STATE(16), + [sym_continue_statement] = STATE(16), + [sym_goto_statement] = STATE(16), + [sym__expression] = STATE(1240), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2024), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym__empty_declaration] = STATE(16), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_repeat1] = STATE(16), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(560), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(177), + [aux_sym_preproc_include_token1] = ACTIONS(179), + [aux_sym_preproc_def_token1] = ACTIONS(181), + [aux_sym_preproc_if_token1] = ACTIONS(183), + [aux_sym_preproc_if_token2] = ACTIONS(394), + [aux_sym_preproc_ifdef_token1] = ACTIONS(187), + [aux_sym_preproc_ifdef_token2] = ACTIONS(187), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [sym_preproc_directive] = ACTIONS(189), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17985,103 +19765,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), - [anon_sym_extern] = ACTIONS(187), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym___extension__] = ACTIONS(193), + [anon_sym_typedef] = ACTIONS(195), + [anon_sym_extern] = ACTIONS(197), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(199), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(201), + [anon_sym_switch] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_default] = ACTIONS(207), + [anon_sym_while] = ACTIONS(209), + [anon_sym_do] = ACTIONS(211), + [anon_sym_for] = ACTIONS(213), + [anon_sym_return] = ACTIONS(215), + [anon_sym_break] = ACTIONS(217), + [anon_sym_continue] = ACTIONS(219), + [anon_sym_goto] = ACTIONS(221), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [21] = { + [26] = { [sym_preproc_include] = STATE(27), [sym_preproc_def] = STATE(27), [sym_preproc_function_def] = STATE(27), [sym_preproc_call] = STATE(27), [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(1953), - [sym_preproc_elif] = STATE(1953), + [sym_preproc_else] = STATE(2053), + [sym_preproc_elif] = STATE(2053), [sym_function_definition] = STATE(27), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1387), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1531), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(822), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(872), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1047), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1127), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -18095,45 +19885,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(27), [sym_continue_statement] = STATE(27), [sym_goto_statement] = STATE(27), - [sym__expression] = STATE(1077), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), + [sym__expression] = STATE(1240), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2024), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1028), + [sym_macro_type_specifier] = STATE(1104), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(437), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(169), - [aux_sym_preproc_include_token1] = ACTIONS(171), - [aux_sym_preproc_def_token1] = ACTIONS(173), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_if_token2] = ACTIONS(229), - [aux_sym_preproc_ifdef_token1] = ACTIONS(179), - [aux_sym_preproc_ifdef_token2] = ACTIONS(179), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [sym_preproc_directive] = ACTIONS(181), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(560), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(177), + [aux_sym_preproc_include_token1] = ACTIONS(179), + [aux_sym_preproc_def_token1] = ACTIONS(181), + [aux_sym_preproc_if_token1] = ACTIONS(183), + [aux_sym_preproc_if_token2] = ACTIONS(396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(187), + [aux_sym_preproc_ifdef_token2] = ACTIONS(187), + [aux_sym_preproc_else_token1] = ACTIONS(115), + [aux_sym_preproc_elif_token1] = ACTIONS(117), + [sym_preproc_directive] = ACTIONS(189), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18141,103 +19933,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), - [anon_sym_extern] = ACTIONS(187), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym___extension__] = ACTIONS(193), + [anon_sym_typedef] = ACTIONS(195), + [anon_sym_extern] = ACTIONS(197), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(199), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(201), + [anon_sym_switch] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_default] = ACTIONS(207), + [anon_sym_while] = ACTIONS(209), + [anon_sym_do] = ACTIONS(211), + [anon_sym_for] = ACTIONS(213), + [anon_sym_return] = ACTIONS(215), + [anon_sym_break] = ACTIONS(217), + [anon_sym_continue] = ACTIONS(219), + [anon_sym_goto] = ACTIONS(221), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [22] = { + [27] = { [sym_preproc_include] = STATE(27), [sym_preproc_def] = STATE(27), [sym_preproc_function_def] = STATE(27), [sym_preproc_call] = STATE(27), [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(1782), - [sym_preproc_elif] = STATE(1782), [sym_function_definition] = STATE(27), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1387), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1531), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(822), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(872), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1047), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1127), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -18251,1126 +20051,374 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(27), [sym_continue_statement] = STATE(27), [sym_goto_statement] = STATE(27), - [sym__expression] = STATE(1077), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), + [sym__expression] = STATE(1240), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2024), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1028), + [sym_macro_type_specifier] = STATE(1104), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(437), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(169), - [aux_sym_preproc_include_token1] = ACTIONS(171), - [aux_sym_preproc_def_token1] = ACTIONS(173), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_if_token2] = ACTIONS(231), - [aux_sym_preproc_ifdef_token1] = ACTIONS(179), - [aux_sym_preproc_ifdef_token2] = ACTIONS(179), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [sym_preproc_directive] = ACTIONS(181), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), - [anon_sym_extern] = ACTIONS(187), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [23] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(1900), - [sym_preproc_elif] = STATE(1900), - [sym_function_definition] = STATE(27), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1387), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(822), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1047), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(27), - [sym_labeled_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_case_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_goto_statement] = STATE(27), - [sym__expression] = STATE(1077), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(437), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(169), - [aux_sym_preproc_include_token1] = ACTIONS(171), - [aux_sym_preproc_def_token1] = ACTIONS(173), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_if_token2] = ACTIONS(233), - [aux_sym_preproc_ifdef_token1] = ACTIONS(179), - [aux_sym_preproc_ifdef_token2] = ACTIONS(179), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [sym_preproc_directive] = ACTIONS(181), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), - [anon_sym_extern] = ACTIONS(187), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [24] = { - [sym_preproc_include] = STATE(21), - [sym_preproc_def] = STATE(21), - [sym_preproc_function_def] = STATE(21), - [sym_preproc_call] = STATE(21), - [sym_preproc_if] = STATE(21), - [sym_preproc_ifdef] = STATE(21), - [sym_preproc_else] = STATE(1924), - [sym_preproc_elif] = STATE(1924), - [sym_function_definition] = STATE(21), - [sym_declaration] = STATE(21), - [sym_type_definition] = STATE(21), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1387), - [sym_linkage_specification] = STATE(21), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(822), - [sym_compound_statement] = STATE(21), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1047), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(21), - [sym_labeled_statement] = STATE(21), - [sym_expression_statement] = STATE(21), - [sym_if_statement] = STATE(21), - [sym_switch_statement] = STATE(21), - [sym_case_statement] = STATE(21), - [sym_while_statement] = STATE(21), - [sym_do_statement] = STATE(21), - [sym_for_statement] = STATE(21), - [sym_return_statement] = STATE(21), - [sym_break_statement] = STATE(21), - [sym_continue_statement] = STATE(21), - [sym_goto_statement] = STATE(21), - [sym__expression] = STATE(1077), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym__empty_declaration] = STATE(21), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_preproc_if_repeat1] = STATE(21), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(437), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(169), - [aux_sym_preproc_include_token1] = ACTIONS(171), - [aux_sym_preproc_def_token1] = ACTIONS(173), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_if_token2] = ACTIONS(235), - [aux_sym_preproc_ifdef_token1] = ACTIONS(179), - [aux_sym_preproc_ifdef_token2] = ACTIONS(179), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [sym_preproc_directive] = ACTIONS(181), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), - [anon_sym_extern] = ACTIONS(187), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [25] = { - [sym_preproc_include] = STATE(25), - [sym_preproc_def] = STATE(25), - [sym_preproc_function_def] = STATE(25), - [sym_preproc_call] = 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_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1391), - [sym_linkage_specification] = STATE(25), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(826), - [sym_compound_statement] = STATE(25), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1044), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(25), - [sym_labeled_statement] = STATE(25), - [sym_expression_statement] = STATE(25), - [sym_if_statement] = STATE(25), - [sym_switch_statement] = STATE(25), - [sym_case_statement] = STATE(25), - [sym_while_statement] = STATE(25), - [sym_do_statement] = STATE(25), - [sym_for_statement] = STATE(25), - [sym_return_statement] = STATE(25), - [sym_break_statement] = STATE(25), - [sym_continue_statement] = STATE(25), - [sym_goto_statement] = STATE(25), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1801), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym__empty_declaration] = STATE(25), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_preproc_if_repeat1] = STATE(25), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(237), - [aux_sym_preproc_include_token1] = ACTIONS(240), - [aux_sym_preproc_def_token1] = ACTIONS(243), - [aux_sym_preproc_if_token1] = ACTIONS(246), - [aux_sym_preproc_if_token2] = ACTIONS(249), - [aux_sym_preproc_ifdef_token1] = ACTIONS(251), - [aux_sym_preproc_ifdef_token2] = ACTIONS(251), - [aux_sym_preproc_else_token1] = ACTIONS(249), - [aux_sym_preproc_elif_token1] = ACTIONS(249), - [aux_sym_preproc_elifdef_token1] = ACTIONS(249), - [aux_sym_preproc_elifdef_token2] = ACTIONS(249), - [sym_preproc_directive] = ACTIONS(254), - [anon_sym_LPAREN2] = ACTIONS(257), - [anon_sym_BANG] = ACTIONS(260), - [anon_sym_TILDE] = ACTIONS(260), - [anon_sym_DASH] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(263), - [anon_sym_STAR] = ACTIONS(266), - [anon_sym_AMP] = ACTIONS(266), - [anon_sym_SEMI] = ACTIONS(269), - [anon_sym_typedef] = ACTIONS(272), - [anon_sym_extern] = ACTIONS(275), - [anon_sym___attribute__] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym___declspec] = ACTIONS(284), - [anon_sym___cdecl] = ACTIONS(287), - [anon_sym___clrcall] = ACTIONS(287), - [anon_sym___stdcall] = ACTIONS(287), - [anon_sym___fastcall] = ACTIONS(287), - [anon_sym___thiscall] = ACTIONS(287), - [anon_sym___vectorcall] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(290), - [anon_sym_signed] = ACTIONS(293), - [anon_sym_unsigned] = ACTIONS(293), - [anon_sym_long] = ACTIONS(293), - [anon_sym_short] = ACTIONS(293), - [anon_sym_static] = ACTIONS(296), - [anon_sym_auto] = ACTIONS(296), - [anon_sym_register] = ACTIONS(296), - [anon_sym_inline] = ACTIONS(296), - [anon_sym_thread_local] = ACTIONS(296), - [anon_sym___thread] = ACTIONS(296), - [anon_sym_const] = ACTIONS(299), - [anon_sym_constexpr] = ACTIONS(299), - [anon_sym_volatile] = ACTIONS(299), - [anon_sym_restrict] = ACTIONS(299), - [anon_sym___restrict__] = ACTIONS(299), - [anon_sym__Atomic] = ACTIONS(299), - [anon_sym__Noreturn] = ACTIONS(299), - [anon_sym_noreturn] = ACTIONS(299), - [sym_primitive_type] = ACTIONS(302), - [anon_sym_enum] = ACTIONS(305), - [anon_sym_struct] = ACTIONS(308), - [anon_sym_union] = ACTIONS(311), - [anon_sym_if] = ACTIONS(314), - [anon_sym_switch] = ACTIONS(317), - [anon_sym_case] = ACTIONS(320), - [anon_sym_default] = ACTIONS(323), - [anon_sym_while] = ACTIONS(326), - [anon_sym_do] = ACTIONS(329), - [anon_sym_for] = ACTIONS(332), - [anon_sym_return] = ACTIONS(335), - [anon_sym_break] = ACTIONS(338), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_goto] = ACTIONS(344), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(350), - [anon_sym_offsetof] = ACTIONS(353), - [anon_sym__Generic] = ACTIONS(356), - [anon_sym_asm] = ACTIONS(359), - [anon_sym___asm__] = ACTIONS(359), - [sym_number_literal] = ACTIONS(362), - [anon_sym_L_SQUOTE] = ACTIONS(365), - [anon_sym_u_SQUOTE] = ACTIONS(365), - [anon_sym_U_SQUOTE] = ACTIONS(365), - [anon_sym_u8_SQUOTE] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_L_DQUOTE] = ACTIONS(368), - [anon_sym_u_DQUOTE] = ACTIONS(368), - [anon_sym_U_DQUOTE] = ACTIONS(368), - [anon_sym_u8_DQUOTE] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(368), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [anon_sym_NULL] = ACTIONS(374), - [anon_sym_nullptr] = ACTIONS(374), - [sym_comment] = ACTIONS(3), - }, - [26] = { - [sym_preproc_include] = STATE(15), - [sym_preproc_def] = STATE(15), - [sym_preproc_function_def] = STATE(15), - [sym_preproc_call] = STATE(15), - [sym_preproc_if] = STATE(15), - [sym_preproc_ifdef] = STATE(15), - [sym_preproc_else] = STATE(1890), - [sym_preproc_elif] = STATE(1890), - [sym_function_definition] = STATE(15), - [sym_declaration] = STATE(15), - [sym_type_definition] = STATE(15), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1387), - [sym_linkage_specification] = STATE(15), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(822), - [sym_compound_statement] = STATE(15), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1047), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_case_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_goto_statement] = STATE(15), - [sym__expression] = STATE(1077), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym__empty_declaration] = STATE(15), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_preproc_if_repeat1] = STATE(15), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(437), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(169), - [aux_sym_preproc_include_token1] = ACTIONS(171), - [aux_sym_preproc_def_token1] = ACTIONS(173), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_if_token2] = ACTIONS(377), - [aux_sym_preproc_ifdef_token1] = ACTIONS(179), - [aux_sym_preproc_ifdef_token2] = ACTIONS(179), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [sym_preproc_directive] = ACTIONS(181), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), - [anon_sym_extern] = ACTIONS(187), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [27] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = 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_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1387), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(822), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1047), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(27), - [sym_labeled_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_case_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_goto_statement] = STATE(27), - [sym__expression] = STATE(1077), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(437), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(379), - [aux_sym_preproc_include_token1] = ACTIONS(382), - [aux_sym_preproc_def_token1] = ACTIONS(385), - [aux_sym_preproc_if_token1] = ACTIONS(388), - [aux_sym_preproc_if_token2] = ACTIONS(249), - [aux_sym_preproc_ifdef_token1] = ACTIONS(391), - [aux_sym_preproc_ifdef_token2] = ACTIONS(391), - [aux_sym_preproc_else_token1] = ACTIONS(249), - [aux_sym_preproc_elif_token1] = ACTIONS(249), - [sym_preproc_directive] = ACTIONS(394), - [anon_sym_LPAREN2] = ACTIONS(257), - [anon_sym_BANG] = ACTIONS(260), - [anon_sym_TILDE] = ACTIONS(260), - [anon_sym_DASH] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(263), - [anon_sym_STAR] = ACTIONS(266), - [anon_sym_AMP] = ACTIONS(266), - [anon_sym_SEMI] = ACTIONS(397), - [anon_sym_typedef] = ACTIONS(400), - [anon_sym_extern] = ACTIONS(403), - [anon_sym___attribute__] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym___declspec] = ACTIONS(284), - [anon_sym___cdecl] = ACTIONS(287), - [anon_sym___clrcall] = ACTIONS(287), - [anon_sym___stdcall] = ACTIONS(287), - [anon_sym___fastcall] = ACTIONS(287), - [anon_sym___thiscall] = ACTIONS(287), - [anon_sym___vectorcall] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_signed] = ACTIONS(293), - [anon_sym_unsigned] = ACTIONS(293), - [anon_sym_long] = ACTIONS(293), - [anon_sym_short] = ACTIONS(293), - [anon_sym_static] = ACTIONS(296), - [anon_sym_auto] = ACTIONS(296), - [anon_sym_register] = ACTIONS(296), - [anon_sym_inline] = ACTIONS(296), - [anon_sym_thread_local] = ACTIONS(296), - [anon_sym___thread] = ACTIONS(296), - [anon_sym_const] = ACTIONS(299), - [anon_sym_constexpr] = ACTIONS(299), - [anon_sym_volatile] = ACTIONS(299), - [anon_sym_restrict] = ACTIONS(299), - [anon_sym___restrict__] = ACTIONS(299), - [anon_sym__Atomic] = ACTIONS(299), - [anon_sym__Noreturn] = ACTIONS(299), - [anon_sym_noreturn] = ACTIONS(299), - [sym_primitive_type] = ACTIONS(302), - [anon_sym_enum] = ACTIONS(305), - [anon_sym_struct] = ACTIONS(308), - [anon_sym_union] = ACTIONS(311), - [anon_sym_if] = ACTIONS(409), - [anon_sym_switch] = ACTIONS(412), - [anon_sym_case] = ACTIONS(415), - [anon_sym_default] = ACTIONS(418), - [anon_sym_while] = ACTIONS(421), - [anon_sym_do] = ACTIONS(424), - [anon_sym_for] = ACTIONS(427), - [anon_sym_return] = ACTIONS(430), - [anon_sym_break] = ACTIONS(433), - [anon_sym_continue] = ACTIONS(436), - [anon_sym_goto] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(350), - [anon_sym_offsetof] = ACTIONS(353), - [anon_sym__Generic] = ACTIONS(356), - [anon_sym_asm] = ACTIONS(359), - [anon_sym___asm__] = ACTIONS(359), - [sym_number_literal] = ACTIONS(362), - [anon_sym_L_SQUOTE] = ACTIONS(365), - [anon_sym_u_SQUOTE] = ACTIONS(365), - [anon_sym_U_SQUOTE] = ACTIONS(365), - [anon_sym_u8_SQUOTE] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_L_DQUOTE] = ACTIONS(368), - [anon_sym_u_DQUOTE] = ACTIONS(368), - [anon_sym_U_DQUOTE] = ACTIONS(368), - [anon_sym_u8_DQUOTE] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(368), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [anon_sym_NULL] = ACTIONS(374), - [anon_sym_nullptr] = ACTIONS(374), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(560), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(398), + [aux_sym_preproc_include_token1] = ACTIONS(401), + [aux_sym_preproc_def_token1] = ACTIONS(404), + [aux_sym_preproc_if_token1] = ACTIONS(407), + [aux_sym_preproc_if_token2] = ACTIONS(239), + [aux_sym_preproc_ifdef_token1] = ACTIONS(410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(410), + [aux_sym_preproc_else_token1] = ACTIONS(239), + [aux_sym_preproc_elif_token1] = ACTIONS(239), + [sym_preproc_directive] = ACTIONS(413), + [anon_sym_LPAREN2] = ACTIONS(247), + [anon_sym_BANG] = ACTIONS(250), + [anon_sym_TILDE] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(253), + [anon_sym_STAR] = ACTIONS(256), + [anon_sym_AMP] = ACTIONS(256), + [anon_sym_SEMI] = ACTIONS(416), + [anon_sym___extension__] = ACTIONS(419), + [anon_sym_typedef] = ACTIONS(422), + [anon_sym_extern] = ACTIONS(425), + [anon_sym___attribute__] = ACTIONS(271), + [anon_sym_LBRACK_LBRACK] = ACTIONS(274), + [anon_sym___declspec] = ACTIONS(277), + [anon_sym___cdecl] = ACTIONS(280), + [anon_sym___clrcall] = ACTIONS(280), + [anon_sym___stdcall] = ACTIONS(280), + [anon_sym___fastcall] = ACTIONS(280), + [anon_sym___thiscall] = ACTIONS(280), + [anon_sym___vectorcall] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_signed] = ACTIONS(286), + [anon_sym_unsigned] = ACTIONS(286), + [anon_sym_long] = ACTIONS(286), + [anon_sym_short] = ACTIONS(286), + [anon_sym_static] = ACTIONS(289), + [anon_sym_auto] = ACTIONS(289), + [anon_sym_register] = ACTIONS(289), + [anon_sym_inline] = ACTIONS(289), + [anon_sym___inline] = ACTIONS(289), + [anon_sym___inline__] = ACTIONS(289), + [anon_sym___forceinline] = ACTIONS(289), + [anon_sym_thread_local] = ACTIONS(289), + [anon_sym___thread] = ACTIONS(289), + [anon_sym_const] = ACTIONS(292), + [anon_sym_constexpr] = ACTIONS(292), + [anon_sym_volatile] = ACTIONS(292), + [anon_sym_restrict] = ACTIONS(292), + [anon_sym___restrict__] = ACTIONS(292), + [anon_sym__Atomic] = ACTIONS(292), + [anon_sym__Noreturn] = ACTIONS(292), + [anon_sym_noreturn] = ACTIONS(292), + [sym_primitive_type] = ACTIONS(295), + [anon_sym_enum] = ACTIONS(298), + [anon_sym_struct] = ACTIONS(301), + [anon_sym_union] = ACTIONS(304), + [anon_sym_if] = ACTIONS(431), + [anon_sym_switch] = ACTIONS(434), + [anon_sym_case] = ACTIONS(437), + [anon_sym_default] = ACTIONS(440), + [anon_sym_while] = ACTIONS(443), + [anon_sym_do] = ACTIONS(446), + [anon_sym_for] = ACTIONS(449), + [anon_sym_return] = ACTIONS(452), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(458), + [anon_sym_goto] = ACTIONS(461), + [anon_sym_DASH_DASH] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(340), + [anon_sym_sizeof] = ACTIONS(343), + [anon_sym___alignof__] = ACTIONS(346), + [anon_sym___alignof] = ACTIONS(346), + [anon_sym__alignof] = ACTIONS(346), + [anon_sym_alignof] = ACTIONS(346), + [anon_sym__Alignof] = ACTIONS(346), + [anon_sym_offsetof] = ACTIONS(349), + [anon_sym___builtin_va_arg] = ACTIONS(352), + [anon_sym__Generic] = ACTIONS(355), + [anon_sym_asm] = ACTIONS(358), + [anon_sym___asm__] = ACTIONS(358), + [sym_number_literal] = ACTIONS(361), + [anon_sym_L_SQUOTE] = ACTIONS(364), + [anon_sym_u_SQUOTE] = ACTIONS(364), + [anon_sym_U_SQUOTE] = ACTIONS(364), + [anon_sym_u8_SQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(364), + [anon_sym_L_DQUOTE] = ACTIONS(367), + [anon_sym_u_DQUOTE] = ACTIONS(367), + [anon_sym_U_DQUOTE] = ACTIONS(367), + [anon_sym_u8_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [sym_true] = ACTIONS(370), + [sym_false] = ACTIONS(370), + [anon_sym_NULL] = ACTIONS(373), + [anon_sym_nullptr] = ACTIONS(373), [sym_comment] = ACTIONS(3), }, [28] = { - [sym_preproc_include] = STATE(45), - [sym_preproc_def] = STATE(45), - [sym_preproc_function_def] = STATE(45), - [sym_preproc_call] = STATE(45), - [sym_preproc_if] = STATE(45), - [sym_preproc_ifdef] = STATE(45), - [sym_function_definition] = STATE(45), - [sym_declaration] = STATE(45), - [sym_type_definition] = STATE(45), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1394), - [sym_linkage_specification] = STATE(45), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(821), - [sym_compound_statement] = STATE(45), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1045), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(45), - [sym_labeled_statement] = STATE(45), - [sym_expression_statement] = STATE(45), - [sym_if_statement] = STATE(45), - [sym_switch_statement] = STATE(45), - [sym_case_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(1112), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym__empty_declaration] = STATE(45), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_preproc_if_repeat1] = STATE(45), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(442), - [aux_sym_preproc_include_token1] = ACTIONS(444), - [aux_sym_preproc_def_token1] = ACTIONS(446), - [aux_sym_preproc_if_token1] = ACTIONS(448), - [aux_sym_preproc_if_token2] = ACTIONS(450), - [aux_sym_preproc_ifdef_token1] = ACTIONS(452), - [aux_sym_preproc_ifdef_token2] = ACTIONS(452), - [sym_preproc_directive] = ACTIONS(454), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(456), - [anon_sym_typedef] = ACTIONS(458), - [anon_sym_extern] = ACTIONS(460), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(462), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [sym_preproc_include] = STATE(28), + [sym_preproc_def] = STATE(28), + [sym_preproc_function_def] = STATE(28), + [sym_preproc_call] = STATE(28), + [sym_preproc_if] = STATE(28), + [sym_preproc_ifdef] = STATE(28), + [sym_function_definition] = STATE(28), + [sym_declaration] = STATE(28), + [sym_type_definition] = STATE(28), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1526), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(876), + [sym_compound_statement] = STATE(28), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1128), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(28), + [sym_labeled_statement] = STATE(28), + [sym_expression_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_switch_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_while_statement] = STATE(28), + [sym_do_statement] = STATE(28), + [sym_for_statement] = STATE(28), + [sym_return_statement] = STATE(28), + [sym_break_statement] = STATE(28), + [sym_continue_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2191), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym__empty_declaration] = STATE(28), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(539), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(464), + [aux_sym_preproc_include_token1] = ACTIONS(467), + [aux_sym_preproc_def_token1] = ACTIONS(470), + [aux_sym_preproc_if_token1] = ACTIONS(473), + [aux_sym_preproc_if_token2] = ACTIONS(239), + [aux_sym_preproc_ifdef_token1] = ACTIONS(476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(476), + [sym_preproc_directive] = ACTIONS(479), + [anon_sym_LPAREN2] = ACTIONS(247), + [anon_sym_BANG] = ACTIONS(250), + [anon_sym_TILDE] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(253), + [anon_sym_STAR] = ACTIONS(256), + [anon_sym_AMP] = ACTIONS(256), + [anon_sym_SEMI] = ACTIONS(482), + [anon_sym___extension__] = ACTIONS(485), + [anon_sym_typedef] = ACTIONS(488), + [anon_sym_extern] = ACTIONS(491), + [anon_sym___attribute__] = ACTIONS(271), + [anon_sym_LBRACK_LBRACK] = ACTIONS(274), + [anon_sym___declspec] = ACTIONS(277), + [anon_sym___cdecl] = ACTIONS(280), + [anon_sym___clrcall] = ACTIONS(280), + [anon_sym___stdcall] = ACTIONS(280), + [anon_sym___fastcall] = ACTIONS(280), + [anon_sym___thiscall] = ACTIONS(280), + [anon_sym___vectorcall] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(494), + [anon_sym_signed] = ACTIONS(286), + [anon_sym_unsigned] = ACTIONS(286), + [anon_sym_long] = ACTIONS(286), + [anon_sym_short] = ACTIONS(286), + [anon_sym_static] = ACTIONS(289), + [anon_sym_auto] = ACTIONS(289), + [anon_sym_register] = ACTIONS(289), + [anon_sym_inline] = ACTIONS(289), + [anon_sym___inline] = ACTIONS(289), + [anon_sym___inline__] = ACTIONS(289), + [anon_sym___forceinline] = ACTIONS(289), + [anon_sym_thread_local] = ACTIONS(289), + [anon_sym___thread] = ACTIONS(289), + [anon_sym_const] = ACTIONS(292), + [anon_sym_constexpr] = ACTIONS(292), + [anon_sym_volatile] = ACTIONS(292), + [anon_sym_restrict] = ACTIONS(292), + [anon_sym___restrict__] = ACTIONS(292), + [anon_sym__Atomic] = ACTIONS(292), + [anon_sym__Noreturn] = ACTIONS(292), + [anon_sym_noreturn] = ACTIONS(292), + [sym_primitive_type] = ACTIONS(295), + [anon_sym_enum] = ACTIONS(298), + [anon_sym_struct] = ACTIONS(301), + [anon_sym_union] = ACTIONS(304), + [anon_sym_if] = ACTIONS(497), + [anon_sym_switch] = ACTIONS(500), + [anon_sym_case] = ACTIONS(503), + [anon_sym_default] = ACTIONS(506), + [anon_sym_while] = ACTIONS(509), + [anon_sym_do] = ACTIONS(512), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(518), + [anon_sym_break] = ACTIONS(521), + [anon_sym_continue] = ACTIONS(524), + [anon_sym_goto] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(340), + [anon_sym_sizeof] = ACTIONS(343), + [anon_sym___alignof__] = ACTIONS(346), + [anon_sym___alignof] = ACTIONS(346), + [anon_sym__alignof] = ACTIONS(346), + [anon_sym_alignof] = ACTIONS(346), + [anon_sym__Alignof] = ACTIONS(346), + [anon_sym_offsetof] = ACTIONS(349), + [anon_sym___builtin_va_arg] = ACTIONS(352), + [anon_sym__Generic] = ACTIONS(355), + [anon_sym_asm] = ACTIONS(358), + [anon_sym___asm__] = ACTIONS(358), + [sym_number_literal] = ACTIONS(361), + [anon_sym_L_SQUOTE] = ACTIONS(364), + [anon_sym_u_SQUOTE] = ACTIONS(364), + [anon_sym_U_SQUOTE] = ACTIONS(364), + [anon_sym_u8_SQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(364), + [anon_sym_L_DQUOTE] = ACTIONS(367), + [anon_sym_u_DQUOTE] = ACTIONS(367), + [anon_sym_U_DQUOTE] = ACTIONS(367), + [anon_sym_u8_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [sym_true] = ACTIONS(370), + [sym_false] = ACTIONS(370), + [anon_sym_NULL] = ACTIONS(373), + [anon_sym_nullptr] = ACTIONS(373), [sym_comment] = ACTIONS(3), }, [29] = { - [sym_preproc_include] = STATE(51), - [sym_preproc_def] = STATE(51), - [sym_preproc_function_def] = STATE(51), - [sym_preproc_call] = STATE(51), - [sym_preproc_if] = STATE(51), - [sym_preproc_ifdef] = STATE(51), - [sym_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1386), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(823), - [sym_compound_statement] = STATE(51), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1048), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(51), - [sym_labeled_statement] = STATE(51), - [sym_expression_statement] = STATE(51), - [sym_if_statement] = STATE(51), - [sym_switch_statement] = STATE(51), - [sym_case_statement] = STATE(51), - [sym_while_statement] = STATE(51), - [sym_do_statement] = STATE(51), - [sym_for_statement] = STATE(51), - [sym_return_statement] = STATE(51), - [sym_break_statement] = STATE(51), - [sym_continue_statement] = STATE(51), - [sym_goto_statement] = STATE(51), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym__empty_declaration] = STATE(51), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(486), - [aux_sym_preproc_include_token1] = ACTIONS(488), - [aux_sym_preproc_def_token1] = ACTIONS(490), - [aux_sym_preproc_if_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(494), - [aux_sym_preproc_ifdef_token2] = ACTIONS(494), - [sym_preproc_directive] = ACTIONS(496), + [sym_preproc_include] = STATE(49), + [sym_preproc_def] = STATE(49), + [sym_preproc_function_def] = STATE(49), + [sym_preproc_call] = STATE(49), + [sym_preproc_if] = STATE(49), + [sym_preproc_ifdef] = STATE(49), + [sym_function_definition] = STATE(49), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1514), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(877), + [sym_compound_statement] = STATE(49), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1126), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(49), + [sym_labeled_statement] = STATE(49), + [sym_expression_statement] = STATE(49), + [sym_if_statement] = STATE(49), + [sym_switch_statement] = STATE(49), + [sym_case_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(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym__empty_declaration] = STATE(49), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_repeat1] = STATE(49), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(530), + [aux_sym_preproc_include_token1] = ACTIONS(532), + [aux_sym_preproc_def_token1] = ACTIONS(534), + [aux_sym_preproc_if_token1] = ACTIONS(536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(538), + [sym_preproc_directive] = ACTIONS(540), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19378,686 +20426,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(506), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym___extension__] = ACTIONS(544), + [anon_sym_typedef] = ACTIONS(546), + [anon_sym_extern] = ACTIONS(548), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(550), + [anon_sym_RBRACE] = ACTIONS(552), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [30] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1386), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(823), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1048), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_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(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym__empty_declaration] = STATE(46), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(486), - [aux_sym_preproc_include_token1] = ACTIONS(488), - [aux_sym_preproc_def_token1] = ACTIONS(490), - [aux_sym_preproc_if_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(494), - [aux_sym_preproc_ifdef_token2] = ACTIONS(494), - [sym_preproc_directive] = ACTIONS(496), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(530), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [31] = { - [sym_preproc_include] = STATE(35), - [sym_preproc_def] = STATE(35), - [sym_preproc_function_def] = STATE(35), - [sym_preproc_call] = STATE(35), - [sym_preproc_if] = STATE(35), - [sym_preproc_ifdef] = STATE(35), - [sym_function_definition] = STATE(35), - [sym_declaration] = STATE(35), - [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1386), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(823), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1048), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(35), - [sym_labeled_statement] = STATE(35), - [sym_expression_statement] = STATE(35), - [sym_if_statement] = STATE(35), - [sym_switch_statement] = STATE(35), - [sym_case_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_do_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym_return_statement] = STATE(35), - [sym_break_statement] = STATE(35), - [sym_continue_statement] = STATE(35), - [sym_goto_statement] = STATE(35), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(486), - [aux_sym_preproc_include_token1] = ACTIONS(488), - [aux_sym_preproc_def_token1] = ACTIONS(490), - [aux_sym_preproc_if_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(494), - [aux_sym_preproc_ifdef_token2] = ACTIONS(494), - [sym_preproc_directive] = ACTIONS(496), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(532), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [32] = { - [sym_preproc_include] = STATE(35), - [sym_preproc_def] = STATE(35), - [sym_preproc_function_def] = STATE(35), - [sym_preproc_call] = STATE(35), - [sym_preproc_if] = STATE(35), - [sym_preproc_ifdef] = STATE(35), - [sym_function_definition] = STATE(35), - [sym_declaration] = STATE(35), - [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1386), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(823), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1048), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(35), - [sym_labeled_statement] = STATE(35), - [sym_expression_statement] = STATE(35), - [sym_if_statement] = STATE(35), - [sym_switch_statement] = STATE(35), - [sym_case_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_do_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym_return_statement] = STATE(35), - [sym_break_statement] = STATE(35), - [sym_continue_statement] = STATE(35), - [sym_goto_statement] = STATE(35), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(486), - [aux_sym_preproc_include_token1] = ACTIONS(488), - [aux_sym_preproc_def_token1] = ACTIONS(490), - [aux_sym_preproc_if_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(494), - [aux_sym_preproc_ifdef_token2] = ACTIONS(494), - [sym_preproc_directive] = ACTIONS(496), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(534), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [33] = { - [sym_preproc_include] = STATE(35), - [sym_preproc_def] = STATE(35), - [sym_preproc_function_def] = STATE(35), - [sym_preproc_call] = STATE(35), - [sym_preproc_if] = STATE(35), - [sym_preproc_ifdef] = STATE(35), - [sym_function_definition] = STATE(35), - [sym_declaration] = STATE(35), - [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1386), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(823), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1048), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(35), - [sym_labeled_statement] = STATE(35), - [sym_expression_statement] = STATE(35), - [sym_if_statement] = STATE(35), - [sym_switch_statement] = STATE(35), - [sym_case_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_do_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym_return_statement] = STATE(35), - [sym_break_statement] = STATE(35), - [sym_continue_statement] = STATE(35), - [sym_goto_statement] = STATE(35), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(486), - [aux_sym_preproc_include_token1] = ACTIONS(488), - [aux_sym_preproc_def_token1] = ACTIONS(490), - [aux_sym_preproc_if_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(494), - [aux_sym_preproc_ifdef_token2] = ACTIONS(494), - [sym_preproc_directive] = ACTIONS(496), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(536), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [34] = { [sym_preproc_include] = STATE(33), [sym_preproc_def] = STATE(33), [sym_preproc_function_def] = STATE(33), @@ -20067,21 +20517,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(33), [sym_declaration] = STATE(33), [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1386), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1514), [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(823), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(877), [sym_compound_statement] = STATE(33), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1048), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1126), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), [sym_attributed_statement] = STATE(33), [sym_labeled_statement] = STATE(33), [sym_expression_statement] = STATE(33), @@ -20095,42 +20545,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(33), [sym_continue_statement] = STATE(33), [sym_goto_statement] = STATE(33), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), [sym__empty_declaration] = STATE(33), - [sym_macro_type_specifier] = STATE(1028), + [sym_macro_type_specifier] = STATE(1104), [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(486), - [aux_sym_preproc_include_token1] = ACTIONS(488), - [aux_sym_preproc_def_token1] = ACTIONS(490), - [aux_sym_preproc_if_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(494), - [aux_sym_preproc_ifdef_token2] = ACTIONS(494), - [sym_preproc_directive] = ACTIONS(496), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(530), + [aux_sym_preproc_include_token1] = ACTIONS(532), + [aux_sym_preproc_def_token1] = ACTIONS(534), + [aux_sym_preproc_if_token1] = ACTIONS(536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(538), + [sym_preproc_directive] = ACTIONS(540), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20138,303 +20590,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(538), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [35] = { - [sym_preproc_include] = STATE(35), - [sym_preproc_def] = STATE(35), - [sym_preproc_function_def] = STATE(35), - [sym_preproc_call] = STATE(35), - [sym_preproc_if] = STATE(35), - [sym_preproc_ifdef] = STATE(35), - [sym_function_definition] = STATE(35), - [sym_declaration] = STATE(35), - [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1386), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(823), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1048), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(35), - [sym_labeled_statement] = STATE(35), - [sym_expression_statement] = STATE(35), - [sym_if_statement] = STATE(35), - [sym_switch_statement] = STATE(35), - [sym_case_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_do_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym_return_statement] = STATE(35), - [sym_break_statement] = STATE(35), - [sym_continue_statement] = STATE(35), - [sym_goto_statement] = STATE(35), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(540), - [aux_sym_preproc_include_token1] = ACTIONS(543), - [aux_sym_preproc_def_token1] = ACTIONS(546), - [aux_sym_preproc_if_token1] = ACTIONS(549), - [aux_sym_preproc_ifdef_token1] = ACTIONS(552), - [aux_sym_preproc_ifdef_token2] = ACTIONS(552), - [sym_preproc_directive] = ACTIONS(555), - [anon_sym_LPAREN2] = ACTIONS(257), - [anon_sym_BANG] = ACTIONS(260), - [anon_sym_TILDE] = ACTIONS(260), - [anon_sym_DASH] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(263), - [anon_sym_STAR] = ACTIONS(266), - [anon_sym_AMP] = ACTIONS(266), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_typedef] = ACTIONS(561), - [anon_sym_extern] = ACTIONS(564), - [anon_sym___attribute__] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym___declspec] = ACTIONS(284), - [anon_sym___cdecl] = ACTIONS(287), - [anon_sym___clrcall] = ACTIONS(287), - [anon_sym___stdcall] = ACTIONS(287), - [anon_sym___fastcall] = ACTIONS(287), - [anon_sym___thiscall] = ACTIONS(287), - [anon_sym___vectorcall] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(567), - [anon_sym_RBRACE] = ACTIONS(570), - [anon_sym_signed] = ACTIONS(293), - [anon_sym_unsigned] = ACTIONS(293), - [anon_sym_long] = ACTIONS(293), - [anon_sym_short] = ACTIONS(293), - [anon_sym_static] = ACTIONS(296), - [anon_sym_auto] = ACTIONS(296), - [anon_sym_register] = ACTIONS(296), - [anon_sym_inline] = ACTIONS(296), - [anon_sym_thread_local] = ACTIONS(296), - [anon_sym___thread] = ACTIONS(296), - [anon_sym_const] = ACTIONS(299), - [anon_sym_constexpr] = ACTIONS(299), - [anon_sym_volatile] = ACTIONS(299), - [anon_sym_restrict] = ACTIONS(299), - [anon_sym___restrict__] = ACTIONS(299), - [anon_sym__Atomic] = ACTIONS(299), - [anon_sym__Noreturn] = ACTIONS(299), - [anon_sym_noreturn] = ACTIONS(299), - [sym_primitive_type] = ACTIONS(302), - [anon_sym_enum] = ACTIONS(305), - [anon_sym_struct] = ACTIONS(308), - [anon_sym_union] = ACTIONS(311), - [anon_sym_if] = ACTIONS(572), - [anon_sym_switch] = ACTIONS(575), - [anon_sym_case] = ACTIONS(578), - [anon_sym_default] = ACTIONS(581), - [anon_sym_while] = ACTIONS(584), - [anon_sym_do] = ACTIONS(587), - [anon_sym_for] = ACTIONS(590), - [anon_sym_return] = ACTIONS(593), - [anon_sym_break] = ACTIONS(596), - [anon_sym_continue] = ACTIONS(599), - [anon_sym_goto] = ACTIONS(602), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(350), - [anon_sym_offsetof] = ACTIONS(353), - [anon_sym__Generic] = ACTIONS(356), - [anon_sym_asm] = ACTIONS(359), - [anon_sym___asm__] = ACTIONS(359), - [sym_number_literal] = ACTIONS(362), - [anon_sym_L_SQUOTE] = ACTIONS(365), - [anon_sym_u_SQUOTE] = ACTIONS(365), - [anon_sym_U_SQUOTE] = ACTIONS(365), - [anon_sym_u8_SQUOTE] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_L_DQUOTE] = ACTIONS(368), - [anon_sym_u_DQUOTE] = ACTIONS(368), - [anon_sym_U_DQUOTE] = ACTIONS(368), - [anon_sym_u8_DQUOTE] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(368), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [anon_sym_NULL] = ACTIONS(374), - [anon_sym_nullptr] = ACTIONS(374), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym___extension__] = ACTIONS(544), + [anon_sym_typedef] = ACTIONS(546), + [anon_sym_extern] = ACTIONS(548), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(550), + [anon_sym_RBRACE] = ACTIONS(576), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [36] = { - [sym_preproc_include] = STATE(35), - [sym_preproc_def] = STATE(35), - [sym_preproc_function_def] = STATE(35), - [sym_preproc_call] = STATE(35), - [sym_preproc_if] = STATE(35), - [sym_preproc_ifdef] = STATE(35), - [sym_function_definition] = STATE(35), - [sym_declaration] = STATE(35), - [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1386), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(823), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1048), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(35), - [sym_labeled_statement] = STATE(35), - [sym_expression_statement] = STATE(35), - [sym_if_statement] = STATE(35), - [sym_switch_statement] = STATE(35), - [sym_case_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_do_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym_return_statement] = STATE(35), - [sym_break_statement] = STATE(35), - [sym_continue_statement] = STATE(35), - [sym_goto_statement] = STATE(35), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(486), - [aux_sym_preproc_include_token1] = ACTIONS(488), - [aux_sym_preproc_def_token1] = ACTIONS(490), - [aux_sym_preproc_if_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(494), - [aux_sym_preproc_ifdef_token2] = ACTIONS(494), - [sym_preproc_directive] = ACTIONS(496), + [31] = { + [sym_preproc_include] = STATE(44), + [sym_preproc_def] = STATE(44), + [sym_preproc_function_def] = STATE(44), + [sym_preproc_call] = STATE(44), + [sym_preproc_if] = STATE(44), + [sym_preproc_ifdef] = STATE(44), + [sym_function_definition] = STATE(44), + [sym_declaration] = STATE(44), + [sym_type_definition] = STATE(44), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1514), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(877), + [sym_compound_statement] = STATE(44), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1126), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(44), + [sym_labeled_statement] = STATE(44), + [sym_expression_statement] = STATE(44), + [sym_if_statement] = STATE(44), + [sym_switch_statement] = STATE(44), + [sym_case_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(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym__empty_declaration] = STATE(44), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(530), + [aux_sym_preproc_include_token1] = ACTIONS(532), + [aux_sym_preproc_def_token1] = ACTIONS(534), + [aux_sym_preproc_if_token1] = ACTIONS(536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(538), + [sym_preproc_directive] = ACTIONS(540), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20442,151 +20754,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(605), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym___extension__] = ACTIONS(544), + [anon_sym_typedef] = ACTIONS(546), + [anon_sym_extern] = ACTIONS(548), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(550), + [anon_sym_RBRACE] = ACTIONS(578), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [37] = { - [sym_preproc_include] = STATE(35), - [sym_preproc_def] = STATE(35), - [sym_preproc_function_def] = STATE(35), - [sym_preproc_call] = STATE(35), - [sym_preproc_if] = STATE(35), - [sym_preproc_ifdef] = STATE(35), - [sym_function_definition] = STATE(35), - [sym_declaration] = STATE(35), - [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1386), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(823), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1048), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(35), - [sym_labeled_statement] = STATE(35), - [sym_expression_statement] = STATE(35), - [sym_if_statement] = STATE(35), - [sym_switch_statement] = STATE(35), - [sym_case_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_do_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym_return_statement] = STATE(35), - [sym_break_statement] = STATE(35), - [sym_continue_statement] = STATE(35), - [sym_goto_statement] = STATE(35), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(486), - [aux_sym_preproc_include_token1] = ACTIONS(488), - [aux_sym_preproc_def_token1] = ACTIONS(490), - [aux_sym_preproc_if_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(494), - [aux_sym_preproc_ifdef_token2] = ACTIONS(494), - [sym_preproc_directive] = ACTIONS(496), + [32] = { + [sym_preproc_include] = STATE(41), + [sym_preproc_def] = STATE(41), + [sym_preproc_function_def] = STATE(41), + [sym_preproc_call] = STATE(41), + [sym_preproc_if] = STATE(41), + [sym_preproc_ifdef] = STATE(41), + [sym_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1514), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(877), + [sym_compound_statement] = STATE(41), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1126), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(41), + [sym_labeled_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_case_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(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym__empty_declaration] = STATE(41), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(530), + [aux_sym_preproc_include_token1] = ACTIONS(532), + [aux_sym_preproc_def_token1] = ACTIONS(534), + [aux_sym_preproc_if_token1] = ACTIONS(536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(538), + [sym_preproc_directive] = ACTIONS(540), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20594,151 +20918,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(607), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym___extension__] = ACTIONS(544), + [anon_sym_typedef] = ACTIONS(546), + [anon_sym_extern] = ACTIONS(548), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(550), + [anon_sym_RBRACE] = ACTIONS(580), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [38] = { - [sym_preproc_include] = STATE(36), - [sym_preproc_def] = STATE(36), - [sym_preproc_function_def] = STATE(36), - [sym_preproc_call] = 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_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1386), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(823), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1048), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(36), - [sym_labeled_statement] = STATE(36), - [sym_expression_statement] = STATE(36), - [sym_if_statement] = STATE(36), - [sym_switch_statement] = STATE(36), - [sym_case_statement] = STATE(36), - [sym_while_statement] = STATE(36), - [sym_do_statement] = STATE(36), - [sym_for_statement] = STATE(36), - [sym_return_statement] = STATE(36), - [sym_break_statement] = STATE(36), - [sym_continue_statement] = STATE(36), - [sym_goto_statement] = STATE(36), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_preproc_if_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(486), - [aux_sym_preproc_include_token1] = ACTIONS(488), - [aux_sym_preproc_def_token1] = ACTIONS(490), - [aux_sym_preproc_if_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(494), - [aux_sym_preproc_ifdef_token2] = ACTIONS(494), - [sym_preproc_directive] = ACTIONS(496), + [33] = { + [sym_preproc_include] = STATE(44), + [sym_preproc_def] = STATE(44), + [sym_preproc_function_def] = STATE(44), + [sym_preproc_call] = STATE(44), + [sym_preproc_if] = STATE(44), + [sym_preproc_ifdef] = STATE(44), + [sym_function_definition] = STATE(44), + [sym_declaration] = STATE(44), + [sym_type_definition] = STATE(44), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1514), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(877), + [sym_compound_statement] = STATE(44), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1126), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(44), + [sym_labeled_statement] = STATE(44), + [sym_expression_statement] = STATE(44), + [sym_if_statement] = STATE(44), + [sym_switch_statement] = STATE(44), + [sym_case_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(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym__empty_declaration] = STATE(44), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(530), + [aux_sym_preproc_include_token1] = ACTIONS(532), + [aux_sym_preproc_def_token1] = ACTIONS(534), + [aux_sym_preproc_if_token1] = ACTIONS(536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(538), + [sym_preproc_directive] = ACTIONS(540), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20746,78 +21082,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(609), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym___extension__] = ACTIONS(544), + [anon_sym_typedef] = ACTIONS(546), + [anon_sym_extern] = ACTIONS(548), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(550), + [anon_sym_RBRACE] = ACTIONS(582), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [39] = { + [34] = { [sym_preproc_include] = STATE(31), [sym_preproc_def] = STATE(31), [sym_preproc_function_def] = STATE(31), @@ -20827,21 +21173,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(31), [sym_declaration] = STATE(31), [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1386), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1514), [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(823), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(877), [sym_compound_statement] = STATE(31), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1048), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1126), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), [sym_attributed_statement] = STATE(31), [sym_labeled_statement] = STATE(31), [sym_expression_statement] = STATE(31), @@ -20855,42 +21201,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(31), [sym_continue_statement] = STATE(31), [sym_goto_statement] = STATE(31), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(1028), + [sym_macro_type_specifier] = STATE(1104), [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(486), - [aux_sym_preproc_include_token1] = ACTIONS(488), - [aux_sym_preproc_def_token1] = ACTIONS(490), - [aux_sym_preproc_if_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(494), - [aux_sym_preproc_ifdef_token2] = ACTIONS(494), - [sym_preproc_directive] = ACTIONS(496), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(530), + [aux_sym_preproc_include_token1] = ACTIONS(532), + [aux_sym_preproc_def_token1] = ACTIONS(534), + [aux_sym_preproc_if_token1] = ACTIONS(536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(538), + [sym_preproc_directive] = ACTIONS(540), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20898,78 +21246,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(611), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym___extension__] = ACTIONS(544), + [anon_sym_typedef] = ACTIONS(546), + [anon_sym_extern] = ACTIONS(548), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(550), + [anon_sym_RBRACE] = ACTIONS(584), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [40] = { + [35] = { [sym_preproc_include] = STATE(44), [sym_preproc_def] = STATE(44), [sym_preproc_function_def] = STATE(44), @@ -20979,21 +21337,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(44), [sym_declaration] = STATE(44), [sym_type_definition] = STATE(44), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1386), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1514), [sym_linkage_specification] = STATE(44), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(823), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(877), [sym_compound_statement] = STATE(44), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1048), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1126), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), [sym_attributed_statement] = STATE(44), [sym_labeled_statement] = STATE(44), [sym_expression_statement] = STATE(44), @@ -21007,42 +21365,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(44), [sym_continue_statement] = STATE(44), [sym_goto_statement] = STATE(44), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), [sym__empty_declaration] = STATE(44), - [sym_macro_type_specifier] = STATE(1028), + [sym_macro_type_specifier] = STATE(1104), [aux_sym_preproc_if_repeat1] = STATE(44), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(486), - [aux_sym_preproc_include_token1] = ACTIONS(488), - [aux_sym_preproc_def_token1] = ACTIONS(490), - [aux_sym_preproc_if_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(494), - [aux_sym_preproc_ifdef_token2] = ACTIONS(494), - [sym_preproc_directive] = ACTIONS(496), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(530), + [aux_sym_preproc_include_token1] = ACTIONS(532), + [aux_sym_preproc_def_token1] = ACTIONS(534), + [aux_sym_preproc_if_token1] = ACTIONS(536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(538), + [sym_preproc_directive] = ACTIONS(540), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21050,78 +21410,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(613), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym___extension__] = ACTIONS(544), + [anon_sym_typedef] = ACTIONS(546), + [anon_sym_extern] = ACTIONS(548), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(550), + [anon_sym_RBRACE] = ACTIONS(586), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [41] = { + [36] = { + [sym_preproc_include] = STATE(42), + [sym_preproc_def] = STATE(42), + [sym_preproc_function_def] = STATE(42), + [sym_preproc_call] = STATE(42), + [sym_preproc_if] = STATE(42), + [sym_preproc_ifdef] = STATE(42), + [sym_function_definition] = STATE(42), + [sym_declaration] = STATE(42), + [sym_type_definition] = STATE(42), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1514), + [sym_linkage_specification] = STATE(42), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(877), + [sym_compound_statement] = STATE(42), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1126), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(42), + [sym_labeled_statement] = STATE(42), + [sym_expression_statement] = STATE(42), + [sym_if_statement] = STATE(42), + [sym_switch_statement] = STATE(42), + [sym_case_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(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym__empty_declaration] = STATE(42), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_repeat1] = STATE(42), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(530), + [aux_sym_preproc_include_token1] = ACTIONS(532), + [aux_sym_preproc_def_token1] = ACTIONS(534), + [aux_sym_preproc_if_token1] = ACTIONS(536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(538), + [sym_preproc_directive] = ACTIONS(540), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym___extension__] = ACTIONS(544), + [anon_sym_typedef] = ACTIONS(546), + [anon_sym_extern] = ACTIONS(548), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(550), + [anon_sym_RBRACE] = ACTIONS(588), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [37] = { [sym_preproc_include] = STATE(28), [sym_preproc_def] = STATE(28), [sym_preproc_function_def] = STATE(28), @@ -21131,21 +21665,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(28), [sym_declaration] = STATE(28), [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1394), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1526), [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(821), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(876), [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1045), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1128), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), [sym_attributed_statement] = STATE(28), [sym_labeled_statement] = STATE(28), [sym_expression_statement] = STATE(28), @@ -21159,43 +21693,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(28), [sym_continue_statement] = STATE(28), [sym_goto_statement] = STATE(28), - [sym__expression] = STATE(1112), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2191), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), [sym__empty_declaration] = STATE(28), - [sym_macro_type_specifier] = STATE(1028), + [sym_macro_type_specifier] = STATE(1104), [aux_sym_preproc_if_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(442), - [aux_sym_preproc_include_token1] = ACTIONS(444), - [aux_sym_preproc_def_token1] = ACTIONS(446), - [aux_sym_preproc_if_token1] = ACTIONS(448), - [aux_sym_preproc_if_token2] = ACTIONS(615), - [aux_sym_preproc_ifdef_token1] = ACTIONS(452), - [aux_sym_preproc_ifdef_token2] = ACTIONS(452), - [sym_preproc_directive] = ACTIONS(454), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(539), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(590), + [aux_sym_preproc_include_token1] = ACTIONS(592), + [aux_sym_preproc_def_token1] = ACTIONS(594), + [aux_sym_preproc_if_token1] = ACTIONS(596), + [aux_sym_preproc_if_token2] = ACTIONS(598), + [aux_sym_preproc_ifdef_token1] = ACTIONS(600), + [aux_sym_preproc_ifdef_token2] = ACTIONS(600), + [sym_preproc_directive] = ACTIONS(602), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21203,105 +21739,443 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(456), - [anon_sym_typedef] = ACTIONS(458), - [anon_sym_extern] = ACTIONS(460), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(462), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(604), + [anon_sym___extension__] = ACTIONS(606), + [anon_sym_typedef] = ACTIONS(608), + [anon_sym_extern] = ACTIONS(610), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(612), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(614), + [anon_sym_switch] = ACTIONS(616), + [anon_sym_case] = ACTIONS(618), + [anon_sym_default] = ACTIONS(620), + [anon_sym_while] = ACTIONS(622), + [anon_sym_do] = ACTIONS(624), + [anon_sym_for] = ACTIONS(626), + [anon_sym_return] = ACTIONS(628), + [anon_sym_break] = ACTIONS(630), + [anon_sym_continue] = ACTIONS(632), + [anon_sym_goto] = ACTIONS(634), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [42] = { - [sym_preproc_include] = STATE(43), - [sym_preproc_def] = STATE(43), - [sym_preproc_function_def] = STATE(43), - [sym_preproc_call] = STATE(43), - [sym_preproc_if] = STATE(43), - [sym_preproc_ifdef] = STATE(43), - [sym_function_definition] = STATE(43), - [sym_declaration] = STATE(43), - [sym_type_definition] = STATE(43), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1386), - [sym_linkage_specification] = STATE(43), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(823), - [sym_compound_statement] = STATE(43), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1048), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(43), - [sym_labeled_statement] = STATE(43), - [sym_expression_statement] = STATE(43), - [sym_if_statement] = STATE(43), + [38] = { + [sym_preproc_include] = STATE(39), + [sym_preproc_def] = STATE(39), + [sym_preproc_function_def] = STATE(39), + [sym_preproc_call] = 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_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1514), + [sym_linkage_specification] = STATE(39), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(877), + [sym_compound_statement] = STATE(39), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1126), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(39), + [sym_labeled_statement] = STATE(39), + [sym_expression_statement] = STATE(39), + [sym_if_statement] = STATE(39), + [sym_switch_statement] = STATE(39), + [sym_case_statement] = STATE(39), + [sym_while_statement] = STATE(39), + [sym_do_statement] = STATE(39), + [sym_for_statement] = STATE(39), + [sym_return_statement] = STATE(39), + [sym_break_statement] = STATE(39), + [sym_continue_statement] = STATE(39), + [sym_goto_statement] = STATE(39), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym__empty_declaration] = STATE(39), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_repeat1] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(530), + [aux_sym_preproc_include_token1] = ACTIONS(532), + [aux_sym_preproc_def_token1] = ACTIONS(534), + [aux_sym_preproc_if_token1] = ACTIONS(536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(538), + [sym_preproc_directive] = ACTIONS(540), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym___extension__] = ACTIONS(544), + [anon_sym_typedef] = ACTIONS(546), + [anon_sym_extern] = ACTIONS(548), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(550), + [anon_sym_RBRACE] = ACTIONS(636), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [39] = { + [sym_preproc_include] = STATE(44), + [sym_preproc_def] = STATE(44), + [sym_preproc_function_def] = STATE(44), + [sym_preproc_call] = STATE(44), + [sym_preproc_if] = STATE(44), + [sym_preproc_ifdef] = STATE(44), + [sym_function_definition] = STATE(44), + [sym_declaration] = STATE(44), + [sym_type_definition] = STATE(44), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1514), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(877), + [sym_compound_statement] = STATE(44), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1126), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(44), + [sym_labeled_statement] = STATE(44), + [sym_expression_statement] = STATE(44), + [sym_if_statement] = STATE(44), + [sym_switch_statement] = STATE(44), + [sym_case_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(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym__empty_declaration] = STATE(44), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(530), + [aux_sym_preproc_include_token1] = ACTIONS(532), + [aux_sym_preproc_def_token1] = ACTIONS(534), + [aux_sym_preproc_if_token1] = ACTIONS(536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(538), + [sym_preproc_directive] = ACTIONS(540), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym___extension__] = ACTIONS(544), + [anon_sym_typedef] = ACTIONS(546), + [anon_sym_extern] = ACTIONS(548), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(550), + [anon_sym_RBRACE] = ACTIONS(638), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [40] = { + [sym_preproc_include] = STATE(43), + [sym_preproc_def] = STATE(43), + [sym_preproc_function_def] = STATE(43), + [sym_preproc_call] = STATE(43), + [sym_preproc_if] = STATE(43), + [sym_preproc_ifdef] = STATE(43), + [sym_function_definition] = STATE(43), + [sym_declaration] = STATE(43), + [sym_type_definition] = STATE(43), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1514), + [sym_linkage_specification] = STATE(43), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(877), + [sym_compound_statement] = STATE(43), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1126), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(43), + [sym_labeled_statement] = STATE(43), + [sym_expression_statement] = STATE(43), + [sym_if_statement] = STATE(43), [sym_switch_statement] = STATE(43), [sym_case_statement] = STATE(43), [sym_while_statement] = STATE(43), @@ -21311,42 +22185,44 @@ 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(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), [sym__empty_declaration] = STATE(43), - [sym_macro_type_specifier] = STATE(1028), + [sym_macro_type_specifier] = STATE(1104), [aux_sym_preproc_if_repeat1] = STATE(43), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(486), - [aux_sym_preproc_include_token1] = ACTIONS(488), - [aux_sym_preproc_def_token1] = ACTIONS(490), - [aux_sym_preproc_if_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(494), - [aux_sym_preproc_ifdef_token2] = ACTIONS(494), - [sym_preproc_directive] = ACTIONS(496), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(530), + [aux_sym_preproc_include_token1] = ACTIONS(532), + [aux_sym_preproc_def_token1] = ACTIONS(534), + [aux_sym_preproc_if_token1] = ACTIONS(536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(538), + [sym_preproc_directive] = ACTIONS(540), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21354,151 +22230,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(617), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym___extension__] = ACTIONS(544), + [anon_sym_typedef] = ACTIONS(546), + [anon_sym_extern] = ACTIONS(548), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(550), + [anon_sym_RBRACE] = ACTIONS(640), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [43] = { - [sym_preproc_include] = STATE(35), - [sym_preproc_def] = STATE(35), - [sym_preproc_function_def] = STATE(35), - [sym_preproc_call] = STATE(35), - [sym_preproc_if] = STATE(35), - [sym_preproc_ifdef] = STATE(35), - [sym_function_definition] = STATE(35), - [sym_declaration] = STATE(35), - [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1386), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(823), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1048), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(35), - [sym_labeled_statement] = STATE(35), - [sym_expression_statement] = STATE(35), - [sym_if_statement] = STATE(35), - [sym_switch_statement] = STATE(35), - [sym_case_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_do_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym_return_statement] = STATE(35), - [sym_break_statement] = STATE(35), - [sym_continue_statement] = STATE(35), - [sym_goto_statement] = STATE(35), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(486), - [aux_sym_preproc_include_token1] = ACTIONS(488), - [aux_sym_preproc_def_token1] = ACTIONS(490), - [aux_sym_preproc_if_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(494), - [aux_sym_preproc_ifdef_token2] = ACTIONS(494), - [sym_preproc_directive] = ACTIONS(496), + [41] = { + [sym_preproc_include] = STATE(44), + [sym_preproc_def] = STATE(44), + [sym_preproc_function_def] = STATE(44), + [sym_preproc_call] = STATE(44), + [sym_preproc_if] = STATE(44), + [sym_preproc_ifdef] = STATE(44), + [sym_function_definition] = STATE(44), + [sym_declaration] = STATE(44), + [sym_type_definition] = STATE(44), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1514), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(877), + [sym_compound_statement] = STATE(44), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1126), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(44), + [sym_labeled_statement] = STATE(44), + [sym_expression_statement] = STATE(44), + [sym_if_statement] = STATE(44), + [sym_switch_statement] = STATE(44), + [sym_case_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(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym__empty_declaration] = STATE(44), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(530), + [aux_sym_preproc_include_token1] = ACTIONS(532), + [aux_sym_preproc_def_token1] = ACTIONS(534), + [aux_sym_preproc_if_token1] = ACTIONS(536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(538), + [sym_preproc_directive] = ACTIONS(540), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21506,151 +22394,327 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(619), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym___extension__] = ACTIONS(544), + [anon_sym_typedef] = ACTIONS(546), + [anon_sym_extern] = ACTIONS(548), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(550), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [44] = { - [sym_preproc_include] = STATE(35), - [sym_preproc_def] = STATE(35), - [sym_preproc_function_def] = STATE(35), - [sym_preproc_call] = STATE(35), - [sym_preproc_if] = STATE(35), - [sym_preproc_ifdef] = STATE(35), - [sym_function_definition] = STATE(35), - [sym_declaration] = STATE(35), - [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1386), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(823), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1048), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(35), - [sym_labeled_statement] = STATE(35), - [sym_expression_statement] = STATE(35), - [sym_if_statement] = STATE(35), - [sym_switch_statement] = STATE(35), - [sym_case_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_do_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym_return_statement] = STATE(35), - [sym_break_statement] = STATE(35), - [sym_continue_statement] = STATE(35), - [sym_goto_statement] = STATE(35), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(486), - [aux_sym_preproc_include_token1] = ACTIONS(488), - [aux_sym_preproc_def_token1] = ACTIONS(490), - [aux_sym_preproc_if_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(494), - [aux_sym_preproc_ifdef_token2] = ACTIONS(494), - [sym_preproc_directive] = ACTIONS(496), + [42] = { + [sym_preproc_include] = STATE(44), + [sym_preproc_def] = STATE(44), + [sym_preproc_function_def] = STATE(44), + [sym_preproc_call] = STATE(44), + [sym_preproc_if] = STATE(44), + [sym_preproc_ifdef] = STATE(44), + [sym_function_definition] = STATE(44), + [sym_declaration] = STATE(44), + [sym_type_definition] = STATE(44), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1514), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(877), + [sym_compound_statement] = STATE(44), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1126), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(44), + [sym_labeled_statement] = STATE(44), + [sym_expression_statement] = STATE(44), + [sym_if_statement] = STATE(44), + [sym_switch_statement] = STATE(44), + [sym_case_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(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym__empty_declaration] = STATE(44), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(530), + [aux_sym_preproc_include_token1] = ACTIONS(532), + [aux_sym_preproc_def_token1] = ACTIONS(534), + [aux_sym_preproc_if_token1] = ACTIONS(536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(538), + [sym_preproc_directive] = ACTIONS(540), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym___extension__] = ACTIONS(544), + [anon_sym_typedef] = ACTIONS(546), + [anon_sym_extern] = ACTIONS(548), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(550), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [43] = { + [sym_preproc_include] = STATE(44), + [sym_preproc_def] = STATE(44), + [sym_preproc_function_def] = STATE(44), + [sym_preproc_call] = STATE(44), + [sym_preproc_if] = STATE(44), + [sym_preproc_ifdef] = STATE(44), + [sym_function_definition] = STATE(44), + [sym_declaration] = STATE(44), + [sym_type_definition] = STATE(44), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1514), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(877), + [sym_compound_statement] = STATE(44), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1126), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(44), + [sym_labeled_statement] = STATE(44), + [sym_expression_statement] = STATE(44), + [sym_if_statement] = STATE(44), + [sym_switch_statement] = STATE(44), + [sym_case_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(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym__empty_declaration] = STATE(44), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(530), + [aux_sym_preproc_include_token1] = ACTIONS(532), + [aux_sym_preproc_def_token1] = ACTIONS(534), + [aux_sym_preproc_if_token1] = ACTIONS(536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(538), + [sym_preproc_directive] = ACTIONS(540), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21658,230 +22722,580 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(621), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym___extension__] = ACTIONS(544), + [anon_sym_typedef] = ACTIONS(546), + [anon_sym_extern] = ACTIONS(548), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(550), + [anon_sym_RBRACE] = ACTIONS(646), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [44] = { + [sym_preproc_include] = STATE(44), + [sym_preproc_def] = STATE(44), + [sym_preproc_function_def] = STATE(44), + [sym_preproc_call] = STATE(44), + [sym_preproc_if] = STATE(44), + [sym_preproc_ifdef] = STATE(44), + [sym_function_definition] = STATE(44), + [sym_declaration] = STATE(44), + [sym_type_definition] = STATE(44), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1514), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(877), + [sym_compound_statement] = STATE(44), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1126), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(44), + [sym_labeled_statement] = STATE(44), + [sym_expression_statement] = STATE(44), + [sym_if_statement] = STATE(44), + [sym_switch_statement] = STATE(44), + [sym_case_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(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym__empty_declaration] = STATE(44), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(648), + [aux_sym_preproc_include_token1] = ACTIONS(651), + [aux_sym_preproc_def_token1] = ACTIONS(654), + [aux_sym_preproc_if_token1] = ACTIONS(657), + [aux_sym_preproc_ifdef_token1] = ACTIONS(660), + [aux_sym_preproc_ifdef_token2] = ACTIONS(660), + [sym_preproc_directive] = ACTIONS(663), + [anon_sym_LPAREN2] = ACTIONS(247), + [anon_sym_BANG] = ACTIONS(250), + [anon_sym_TILDE] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(253), + [anon_sym_STAR] = ACTIONS(256), + [anon_sym_AMP] = ACTIONS(256), + [anon_sym_SEMI] = ACTIONS(666), + [anon_sym___extension__] = ACTIONS(669), + [anon_sym_typedef] = ACTIONS(672), + [anon_sym_extern] = ACTIONS(675), + [anon_sym___attribute__] = ACTIONS(271), + [anon_sym_LBRACK_LBRACK] = ACTIONS(274), + [anon_sym___declspec] = ACTIONS(277), + [anon_sym___cdecl] = ACTIONS(280), + [anon_sym___clrcall] = ACTIONS(280), + [anon_sym___stdcall] = ACTIONS(280), + [anon_sym___fastcall] = ACTIONS(280), + [anon_sym___thiscall] = ACTIONS(280), + [anon_sym___vectorcall] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(678), + [anon_sym_RBRACE] = ACTIONS(681), + [anon_sym_signed] = ACTIONS(286), + [anon_sym_unsigned] = ACTIONS(286), + [anon_sym_long] = ACTIONS(286), + [anon_sym_short] = ACTIONS(286), + [anon_sym_static] = ACTIONS(289), + [anon_sym_auto] = ACTIONS(289), + [anon_sym_register] = ACTIONS(289), + [anon_sym_inline] = ACTIONS(289), + [anon_sym___inline] = ACTIONS(289), + [anon_sym___inline__] = ACTIONS(289), + [anon_sym___forceinline] = ACTIONS(289), + [anon_sym_thread_local] = ACTIONS(289), + [anon_sym___thread] = ACTIONS(289), + [anon_sym_const] = ACTIONS(292), + [anon_sym_constexpr] = ACTIONS(292), + [anon_sym_volatile] = ACTIONS(292), + [anon_sym_restrict] = ACTIONS(292), + [anon_sym___restrict__] = ACTIONS(292), + [anon_sym__Atomic] = ACTIONS(292), + [anon_sym__Noreturn] = ACTIONS(292), + [anon_sym_noreturn] = ACTIONS(292), + [sym_primitive_type] = ACTIONS(295), + [anon_sym_enum] = ACTIONS(298), + [anon_sym_struct] = ACTIONS(301), + [anon_sym_union] = ACTIONS(304), + [anon_sym_if] = ACTIONS(683), + [anon_sym_switch] = ACTIONS(686), + [anon_sym_case] = ACTIONS(689), + [anon_sym_default] = ACTIONS(692), + [anon_sym_while] = ACTIONS(695), + [anon_sym_do] = ACTIONS(698), + [anon_sym_for] = ACTIONS(701), + [anon_sym_return] = ACTIONS(704), + [anon_sym_break] = ACTIONS(707), + [anon_sym_continue] = ACTIONS(710), + [anon_sym_goto] = ACTIONS(713), + [anon_sym_DASH_DASH] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(340), + [anon_sym_sizeof] = ACTIONS(343), + [anon_sym___alignof__] = ACTIONS(346), + [anon_sym___alignof] = ACTIONS(346), + [anon_sym__alignof] = ACTIONS(346), + [anon_sym_alignof] = ACTIONS(346), + [anon_sym__Alignof] = ACTIONS(346), + [anon_sym_offsetof] = ACTIONS(349), + [anon_sym___builtin_va_arg] = ACTIONS(352), + [anon_sym__Generic] = ACTIONS(355), + [anon_sym_asm] = ACTIONS(358), + [anon_sym___asm__] = ACTIONS(358), + [sym_number_literal] = ACTIONS(361), + [anon_sym_L_SQUOTE] = ACTIONS(364), + [anon_sym_u_SQUOTE] = ACTIONS(364), + [anon_sym_U_SQUOTE] = ACTIONS(364), + [anon_sym_u8_SQUOTE] = ACTIONS(364), + [anon_sym_SQUOTE] = ACTIONS(364), + [anon_sym_L_DQUOTE] = ACTIONS(367), + [anon_sym_u_DQUOTE] = ACTIONS(367), + [anon_sym_U_DQUOTE] = ACTIONS(367), + [anon_sym_u8_DQUOTE] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [sym_true] = ACTIONS(370), + [sym_false] = ACTIONS(370), + [anon_sym_NULL] = ACTIONS(373), + [anon_sym_nullptr] = ACTIONS(373), [sym_comment] = ACTIONS(3), }, [45] = { - [sym_preproc_include] = STATE(45), - [sym_preproc_def] = STATE(45), - [sym_preproc_function_def] = STATE(45), - [sym_preproc_call] = STATE(45), - [sym_preproc_if] = STATE(45), - [sym_preproc_ifdef] = STATE(45), - [sym_function_definition] = STATE(45), - [sym_declaration] = STATE(45), - [sym_type_definition] = STATE(45), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1394), - [sym_linkage_specification] = STATE(45), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(821), - [sym_compound_statement] = STATE(45), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1045), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(45), - [sym_labeled_statement] = STATE(45), - [sym_expression_statement] = STATE(45), - [sym_if_statement] = STATE(45), - [sym_switch_statement] = STATE(45), - [sym_case_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(1112), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym__empty_declaration] = STATE(45), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_preproc_if_repeat1] = STATE(45), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(623), - [aux_sym_preproc_include_token1] = ACTIONS(626), - [aux_sym_preproc_def_token1] = ACTIONS(629), - [aux_sym_preproc_if_token1] = ACTIONS(632), - [aux_sym_preproc_if_token2] = ACTIONS(249), - [aux_sym_preproc_ifdef_token1] = ACTIONS(635), - [aux_sym_preproc_ifdef_token2] = ACTIONS(635), - [sym_preproc_directive] = ACTIONS(638), - [anon_sym_LPAREN2] = ACTIONS(257), - [anon_sym_BANG] = ACTIONS(260), - [anon_sym_TILDE] = ACTIONS(260), - [anon_sym_DASH] = ACTIONS(263), - [anon_sym_PLUS] = ACTIONS(263), - [anon_sym_STAR] = ACTIONS(266), - [anon_sym_AMP] = ACTIONS(266), - [anon_sym_SEMI] = ACTIONS(641), - [anon_sym_typedef] = ACTIONS(644), - [anon_sym_extern] = ACTIONS(647), - [anon_sym___attribute__] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(281), - [anon_sym___declspec] = ACTIONS(284), - [anon_sym___cdecl] = ACTIONS(287), - [anon_sym___clrcall] = ACTIONS(287), - [anon_sym___stdcall] = ACTIONS(287), - [anon_sym___fastcall] = ACTIONS(287), - [anon_sym___thiscall] = ACTIONS(287), - [anon_sym___vectorcall] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(650), - [anon_sym_signed] = ACTIONS(293), - [anon_sym_unsigned] = ACTIONS(293), - [anon_sym_long] = ACTIONS(293), - [anon_sym_short] = ACTIONS(293), - [anon_sym_static] = ACTIONS(296), - [anon_sym_auto] = ACTIONS(296), - [anon_sym_register] = ACTIONS(296), - [anon_sym_inline] = ACTIONS(296), - [anon_sym_thread_local] = ACTIONS(296), - [anon_sym___thread] = ACTIONS(296), - [anon_sym_const] = ACTIONS(299), - [anon_sym_constexpr] = ACTIONS(299), - [anon_sym_volatile] = ACTIONS(299), - [anon_sym_restrict] = ACTIONS(299), - [anon_sym___restrict__] = ACTIONS(299), - [anon_sym__Atomic] = ACTIONS(299), - [anon_sym__Noreturn] = ACTIONS(299), - [anon_sym_noreturn] = ACTIONS(299), - [sym_primitive_type] = ACTIONS(302), - [anon_sym_enum] = ACTIONS(305), - [anon_sym_struct] = ACTIONS(308), - [anon_sym_union] = ACTIONS(311), - [anon_sym_if] = ACTIONS(653), - [anon_sym_switch] = ACTIONS(656), - [anon_sym_case] = ACTIONS(659), - [anon_sym_default] = ACTIONS(662), - [anon_sym_while] = ACTIONS(665), - [anon_sym_do] = ACTIONS(668), - [anon_sym_for] = ACTIONS(671), - [anon_sym_return] = ACTIONS(674), - [anon_sym_break] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(680), - [anon_sym_goto] = ACTIONS(683), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_sizeof] = ACTIONS(350), - [anon_sym_offsetof] = ACTIONS(353), - [anon_sym__Generic] = ACTIONS(356), - [anon_sym_asm] = ACTIONS(359), - [anon_sym___asm__] = ACTIONS(359), - [sym_number_literal] = ACTIONS(362), - [anon_sym_L_SQUOTE] = ACTIONS(365), - [anon_sym_u_SQUOTE] = ACTIONS(365), - [anon_sym_U_SQUOTE] = ACTIONS(365), - [anon_sym_u8_SQUOTE] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_L_DQUOTE] = ACTIONS(368), - [anon_sym_u_DQUOTE] = ACTIONS(368), - [anon_sym_U_DQUOTE] = ACTIONS(368), - [anon_sym_u8_DQUOTE] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(368), - [sym_true] = ACTIONS(371), - [sym_false] = ACTIONS(371), - [anon_sym_NULL] = ACTIONS(374), - [anon_sym_nullptr] = ACTIONS(374), + [sym_preproc_include] = STATE(46), + [sym_preproc_def] = STATE(46), + [sym_preproc_function_def] = STATE(46), + [sym_preproc_call] = STATE(46), + [sym_preproc_if] = STATE(46), + [sym_preproc_ifdef] = STATE(46), + [sym_function_definition] = STATE(46), + [sym_declaration] = STATE(46), + [sym_type_definition] = STATE(46), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1514), + [sym_linkage_specification] = STATE(46), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(877), + [sym_compound_statement] = STATE(46), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1126), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(46), + [sym_labeled_statement] = STATE(46), + [sym_expression_statement] = STATE(46), + [sym_if_statement] = STATE(46), + [sym_switch_statement] = STATE(46), + [sym_case_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(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym__empty_declaration] = STATE(46), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_repeat1] = STATE(46), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(530), + [aux_sym_preproc_include_token1] = ACTIONS(532), + [aux_sym_preproc_def_token1] = ACTIONS(534), + [aux_sym_preproc_if_token1] = ACTIONS(536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(538), + [sym_preproc_directive] = ACTIONS(540), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym___extension__] = ACTIONS(544), + [anon_sym_typedef] = ACTIONS(546), + [anon_sym_extern] = ACTIONS(548), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(550), + [anon_sym_RBRACE] = ACTIONS(716), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [46] = { + [sym_preproc_include] = STATE(44), + [sym_preproc_def] = STATE(44), + [sym_preproc_function_def] = STATE(44), + [sym_preproc_call] = STATE(44), + [sym_preproc_if] = STATE(44), + [sym_preproc_ifdef] = STATE(44), + [sym_function_definition] = STATE(44), + [sym_declaration] = STATE(44), + [sym_type_definition] = STATE(44), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1514), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(877), + [sym_compound_statement] = STATE(44), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1126), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(44), + [sym_labeled_statement] = STATE(44), + [sym_expression_statement] = STATE(44), + [sym_if_statement] = STATE(44), + [sym_switch_statement] = STATE(44), + [sym_case_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(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym__empty_declaration] = STATE(44), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(530), + [aux_sym_preproc_include_token1] = ACTIONS(532), + [aux_sym_preproc_def_token1] = ACTIONS(534), + [aux_sym_preproc_if_token1] = ACTIONS(536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(538), + [sym_preproc_directive] = ACTIONS(540), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym___extension__] = ACTIONS(544), + [anon_sym_typedef] = ACTIONS(546), + [anon_sym_extern] = ACTIONS(548), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(550), + [anon_sym_RBRACE] = ACTIONS(718), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [47] = { [sym_preproc_include] = STATE(35), [sym_preproc_def] = STATE(35), [sym_preproc_function_def] = STATE(35), @@ -21891,21 +23305,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(35), [sym_declaration] = STATE(35), [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1386), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1514), [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(823), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(877), [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1048), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1126), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), [sym_attributed_statement] = STATE(35), [sym_labeled_statement] = STATE(35), [sym_expression_statement] = STATE(35), @@ -21919,42 +23333,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(35), [sym_continue_statement] = STATE(35), [sym_goto_statement] = STATE(35), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(1028), + [sym_macro_type_specifier] = STATE(1104), [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(486), - [aux_sym_preproc_include_token1] = ACTIONS(488), - [aux_sym_preproc_def_token1] = ACTIONS(490), - [aux_sym_preproc_if_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(494), - [aux_sym_preproc_ifdef_token2] = ACTIONS(494), - [sym_preproc_directive] = ACTIONS(496), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(530), + [aux_sym_preproc_include_token1] = ACTIONS(532), + [aux_sym_preproc_def_token1] = ACTIONS(534), + [aux_sym_preproc_if_token1] = ACTIONS(536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(538), + [sym_preproc_directive] = ACTIONS(540), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21962,151 +23378,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(686), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym___extension__] = ACTIONS(544), + [anon_sym_typedef] = ACTIONS(546), + [anon_sym_extern] = ACTIONS(548), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(550), + [anon_sym_RBRACE] = ACTIONS(720), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [47] = { - [sym_preproc_include] = STATE(32), - [sym_preproc_def] = STATE(32), - [sym_preproc_function_def] = STATE(32), - [sym_preproc_call] = 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_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1386), - [sym_linkage_specification] = STATE(32), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(823), - [sym_compound_statement] = STATE(32), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1048), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(32), - [sym_labeled_statement] = STATE(32), - [sym_expression_statement] = STATE(32), - [sym_if_statement] = STATE(32), - [sym_switch_statement] = STATE(32), - [sym_case_statement] = STATE(32), - [sym_while_statement] = STATE(32), - [sym_do_statement] = STATE(32), - [sym_for_statement] = STATE(32), - [sym_return_statement] = STATE(32), - [sym_break_statement] = STATE(32), - [sym_continue_statement] = STATE(32), - [sym_goto_statement] = STATE(32), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym__empty_declaration] = STATE(32), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_preproc_if_repeat1] = STATE(32), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(486), - [aux_sym_preproc_include_token1] = ACTIONS(488), - [aux_sym_preproc_def_token1] = ACTIONS(490), - [aux_sym_preproc_if_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(494), - [aux_sym_preproc_ifdef_token2] = ACTIONS(494), - [sym_preproc_directive] = ACTIONS(496), + [48] = { + [sym_preproc_include] = STATE(44), + [sym_preproc_def] = STATE(44), + [sym_preproc_function_def] = STATE(44), + [sym_preproc_call] = STATE(44), + [sym_preproc_if] = STATE(44), + [sym_preproc_ifdef] = STATE(44), + [sym_function_definition] = STATE(44), + [sym_declaration] = STATE(44), + [sym_type_definition] = STATE(44), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1514), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(877), + [sym_compound_statement] = STATE(44), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1126), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(44), + [sym_labeled_statement] = STATE(44), + [sym_expression_statement] = STATE(44), + [sym_if_statement] = STATE(44), + [sym_switch_statement] = STATE(44), + [sym_case_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(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym__empty_declaration] = STATE(44), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(530), + [aux_sym_preproc_include_token1] = ACTIONS(532), + [aux_sym_preproc_def_token1] = ACTIONS(534), + [aux_sym_preproc_if_token1] = ACTIONS(536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(538), + [sym_preproc_directive] = ACTIONS(540), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22114,151 +23542,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(688), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym___extension__] = ACTIONS(544), + [anon_sym_typedef] = ACTIONS(546), + [anon_sym_extern] = ACTIONS(548), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(550), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [48] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1386), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(823), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1048), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym__empty_declaration] = STATE(50), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_preproc_if_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(486), - [aux_sym_preproc_include_token1] = ACTIONS(488), - [aux_sym_preproc_def_token1] = ACTIONS(490), - [aux_sym_preproc_if_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(494), - [aux_sym_preproc_ifdef_token2] = ACTIONS(494), - [sym_preproc_directive] = ACTIONS(496), + [49] = { + [sym_preproc_include] = STATE(44), + [sym_preproc_def] = STATE(44), + [sym_preproc_function_def] = STATE(44), + [sym_preproc_call] = STATE(44), + [sym_preproc_if] = STATE(44), + [sym_preproc_ifdef] = STATE(44), + [sym_function_definition] = STATE(44), + [sym_declaration] = STATE(44), + [sym_type_definition] = STATE(44), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1514), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(877), + [sym_compound_statement] = STATE(44), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1126), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(44), + [sym_labeled_statement] = STATE(44), + [sym_expression_statement] = STATE(44), + [sym_if_statement] = STATE(44), + [sym_switch_statement] = STATE(44), + [sym_case_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(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym__empty_declaration] = STATE(44), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(530), + [aux_sym_preproc_include_token1] = ACTIONS(532), + [aux_sym_preproc_def_token1] = ACTIONS(534), + [aux_sym_preproc_if_token1] = ACTIONS(536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(538), + [sym_preproc_directive] = ACTIONS(540), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22266,78 +23706,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(690), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym___extension__] = ACTIONS(544), + [anon_sym_typedef] = ACTIONS(546), + [anon_sym_extern] = ACTIONS(548), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(550), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [49] = { + [50] = { + [sym_preproc_include] = STATE(48), + [sym_preproc_def] = STATE(48), + [sym_preproc_function_def] = STATE(48), + [sym_preproc_call] = STATE(48), + [sym_preproc_if] = STATE(48), + [sym_preproc_ifdef] = STATE(48), + [sym_function_definition] = STATE(48), + [sym_declaration] = STATE(48), + [sym_type_definition] = STATE(48), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1514), + [sym_linkage_specification] = STATE(48), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(877), + [sym_compound_statement] = STATE(48), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1126), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(48), + [sym_labeled_statement] = STATE(48), + [sym_expression_statement] = STATE(48), + [sym_if_statement] = STATE(48), + [sym_switch_statement] = STATE(48), + [sym_case_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(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym__empty_declaration] = STATE(48), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_repeat1] = STATE(48), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(530), + [aux_sym_preproc_include_token1] = ACTIONS(532), + [aux_sym_preproc_def_token1] = ACTIONS(534), + [aux_sym_preproc_if_token1] = ACTIONS(536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(538), + [sym_preproc_directive] = ACTIONS(540), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym___extension__] = ACTIONS(544), + [anon_sym_typedef] = ACTIONS(546), + [anon_sym_extern] = ACTIONS(548), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(550), + [anon_sym_RBRACE] = ACTIONS(726), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [51] = { [sym_preproc_include] = STATE(37), [sym_preproc_def] = STATE(37), [sym_preproc_function_def] = STATE(37), @@ -22347,21 +23961,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(37), [sym_declaration] = STATE(37), [sym_type_definition] = STATE(37), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1386), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1526), [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(823), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(876), [sym_compound_statement] = STATE(37), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1048), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1128), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), [sym_attributed_statement] = STATE(37), [sym_labeled_statement] = STATE(37), [sym_expression_statement] = STATE(37), @@ -22375,42 +23989,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(37), [sym_continue_statement] = STATE(37), [sym_goto_statement] = STATE(37), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2191), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(1028), + [sym_macro_type_specifier] = STATE(1104), [aux_sym_preproc_if_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(486), - [aux_sym_preproc_include_token1] = ACTIONS(488), - [aux_sym_preproc_def_token1] = ACTIONS(490), - [aux_sym_preproc_if_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(494), - [aux_sym_preproc_ifdef_token2] = ACTIONS(494), - [sym_preproc_directive] = ACTIONS(496), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(539), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(590), + [aux_sym_preproc_include_token1] = ACTIONS(592), + [aux_sym_preproc_def_token1] = ACTIONS(594), + [aux_sym_preproc_if_token1] = ACTIONS(596), + [aux_sym_preproc_if_token2] = ACTIONS(728), + [aux_sym_preproc_ifdef_token1] = ACTIONS(600), + [aux_sym_preproc_ifdef_token2] = ACTIONS(600), + [sym_preproc_directive] = ACTIONS(602), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22418,303 +24035,324 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(692), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(604), + [anon_sym___extension__] = ACTIONS(606), + [anon_sym_typedef] = ACTIONS(608), + [anon_sym_extern] = ACTIONS(610), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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(612), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(614), + [anon_sym_switch] = ACTIONS(616), + [anon_sym_case] = ACTIONS(618), + [anon_sym_default] = ACTIONS(620), + [anon_sym_while] = ACTIONS(622), + [anon_sym_do] = ACTIONS(624), + [anon_sym_for] = ACTIONS(626), + [anon_sym_return] = ACTIONS(628), + [anon_sym_break] = ACTIONS(630), + [anon_sym_continue] = ACTIONS(632), + [anon_sym_goto] = ACTIONS(634), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [50] = { - [sym_preproc_include] = STATE(35), - [sym_preproc_def] = STATE(35), - [sym_preproc_function_def] = STATE(35), - [sym_preproc_call] = STATE(35), - [sym_preproc_if] = STATE(35), - [sym_preproc_ifdef] = STATE(35), - [sym_function_definition] = STATE(35), - [sym_declaration] = STATE(35), - [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1386), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(823), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1048), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(35), - [sym_labeled_statement] = STATE(35), - [sym_expression_statement] = STATE(35), - [sym_if_statement] = STATE(35), - [sym_switch_statement] = STATE(35), - [sym_case_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_do_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym_return_statement] = STATE(35), - [sym_break_statement] = STATE(35), - [sym_continue_statement] = STATE(35), - [sym_goto_statement] = STATE(35), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(486), - [aux_sym_preproc_include_token1] = ACTIONS(488), - [aux_sym_preproc_def_token1] = ACTIONS(490), - [aux_sym_preproc_if_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(494), - [aux_sym_preproc_ifdef_token2] = ACTIONS(494), - [sym_preproc_directive] = ACTIONS(496), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(694), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [52] = { + [sym_preproc_include] = STATE(52), + [sym_preproc_def] = STATE(52), + [sym_preproc_function_def] = STATE(52), + [sym_preproc_call] = STATE(52), + [sym_preproc_if] = STATE(52), + [sym_preproc_ifdef] = STATE(52), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1522), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(875), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1125), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(52), + [sym_labeled_statement] = STATE(52), + [sym__top_level_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_case_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(1354), + [sym__expression_not_binary] = STATE(1352), + [sym_conditional_expression] = STATE(1352), + [sym_assignment_expression] = STATE(1352), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(1352), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(1352), + [sym_cast_expression] = STATE(1352), + [sym_sizeof_expression] = STATE(1352), + [sym_alignof_expression] = STATE(1352), + [sym_offsetof_expression] = STATE(1352), + [sym_builtin_va_arg] = STATE(1352), + [sym_generic_expression] = STATE(1352), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(1352), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(1352), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(1352), + [sym_concatenated_string] = STATE(1352), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(1352), + [sym__empty_declaration] = STATE(52), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_translation_unit_repeat1] = STATE(52), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(594), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [ts_builtin_sym_end] = ACTIONS(730), + [sym_identifier] = ACTIONS(732), + [aux_sym_preproc_include_token1] = ACTIONS(735), + [aux_sym_preproc_def_token1] = ACTIONS(738), + [aux_sym_preproc_if_token1] = ACTIONS(741), + [aux_sym_preproc_ifdef_token1] = ACTIONS(744), + [aux_sym_preproc_ifdef_token2] = ACTIONS(744), + [sym_preproc_directive] = ACTIONS(747), + [anon_sym_LPAREN2] = ACTIONS(750), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_TILDE] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym___extension__] = ACTIONS(762), + [anon_sym_typedef] = ACTIONS(765), + [anon_sym_extern] = ACTIONS(768), + [anon_sym___attribute__] = ACTIONS(771), + [anon_sym_LBRACK_LBRACK] = ACTIONS(774), + [anon_sym___declspec] = ACTIONS(777), + [anon_sym___cdecl] = ACTIONS(780), + [anon_sym___clrcall] = ACTIONS(780), + [anon_sym___stdcall] = ACTIONS(780), + [anon_sym___fastcall] = ACTIONS(780), + [anon_sym___thiscall] = ACTIONS(780), + [anon_sym___vectorcall] = ACTIONS(780), + [anon_sym_LBRACE] = ACTIONS(783), + [anon_sym_signed] = ACTIONS(786), + [anon_sym_unsigned] = ACTIONS(786), + [anon_sym_long] = ACTIONS(786), + [anon_sym_short] = ACTIONS(786), + [anon_sym_static] = ACTIONS(789), + [anon_sym_auto] = ACTIONS(789), + [anon_sym_register] = ACTIONS(789), + [anon_sym_inline] = ACTIONS(789), + [anon_sym___inline] = ACTIONS(789), + [anon_sym___inline__] = ACTIONS(789), + [anon_sym___forceinline] = ACTIONS(789), + [anon_sym_thread_local] = ACTIONS(789), + [anon_sym___thread] = ACTIONS(789), + [anon_sym_const] = ACTIONS(792), + [anon_sym_constexpr] = ACTIONS(792), + [anon_sym_volatile] = ACTIONS(792), + [anon_sym_restrict] = ACTIONS(792), + [anon_sym___restrict__] = ACTIONS(792), + [anon_sym__Atomic] = ACTIONS(792), + [anon_sym__Noreturn] = ACTIONS(792), + [anon_sym_noreturn] = ACTIONS(792), + [sym_primitive_type] = ACTIONS(795), + [anon_sym_enum] = ACTIONS(798), + [anon_sym_struct] = ACTIONS(801), + [anon_sym_union] = ACTIONS(804), + [anon_sym_if] = ACTIONS(807), + [anon_sym_switch] = ACTIONS(810), + [anon_sym_case] = ACTIONS(813), + [anon_sym_default] = ACTIONS(816), + [anon_sym_while] = ACTIONS(819), + [anon_sym_do] = ACTIONS(822), + [anon_sym_for] = ACTIONS(825), + [anon_sym_return] = ACTIONS(828), + [anon_sym_break] = ACTIONS(831), + [anon_sym_continue] = ACTIONS(834), + [anon_sym_goto] = ACTIONS(837), + [anon_sym_DASH_DASH] = ACTIONS(840), + [anon_sym_PLUS_PLUS] = ACTIONS(840), + [anon_sym_sizeof] = ACTIONS(843), + [anon_sym___alignof__] = ACTIONS(846), + [anon_sym___alignof] = ACTIONS(846), + [anon_sym__alignof] = ACTIONS(846), + [anon_sym_alignof] = ACTIONS(846), + [anon_sym__Alignof] = ACTIONS(846), + [anon_sym_offsetof] = ACTIONS(849), + [anon_sym___builtin_va_arg] = ACTIONS(852), + [anon_sym__Generic] = ACTIONS(855), + [anon_sym_asm] = ACTIONS(858), + [anon_sym___asm__] = ACTIONS(858), + [sym_number_literal] = ACTIONS(861), + [anon_sym_L_SQUOTE] = ACTIONS(864), + [anon_sym_u_SQUOTE] = ACTIONS(864), + [anon_sym_U_SQUOTE] = ACTIONS(864), + [anon_sym_u8_SQUOTE] = ACTIONS(864), + [anon_sym_SQUOTE] = ACTIONS(864), + [anon_sym_L_DQUOTE] = ACTIONS(867), + [anon_sym_u_DQUOTE] = ACTIONS(867), + [anon_sym_U_DQUOTE] = ACTIONS(867), + [anon_sym_u8_DQUOTE] = ACTIONS(867), + [anon_sym_DQUOTE] = ACTIONS(867), + [sym_true] = ACTIONS(870), + [sym_false] = ACTIONS(870), + [anon_sym_NULL] = ACTIONS(873), + [anon_sym_nullptr] = ACTIONS(873), [sym_comment] = ACTIONS(3), }, - [51] = { - [sym_preproc_include] = STATE(35), - [sym_preproc_def] = STATE(35), - [sym_preproc_function_def] = STATE(35), - [sym_preproc_call] = STATE(35), - [sym_preproc_if] = STATE(35), - [sym_preproc_ifdef] = STATE(35), - [sym_function_definition] = STATE(35), - [sym_declaration] = STATE(35), - [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1386), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(823), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1048), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(35), - [sym_labeled_statement] = STATE(35), - [sym_expression_statement] = STATE(35), - [sym_if_statement] = STATE(35), - [sym_switch_statement] = STATE(35), - [sym_case_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_do_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym_return_statement] = STATE(35), - [sym_break_statement] = STATE(35), - [sym_continue_statement] = STATE(35), - [sym_goto_statement] = STATE(35), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(486), - [aux_sym_preproc_include_token1] = ACTIONS(488), - [aux_sym_preproc_def_token1] = ACTIONS(490), - [aux_sym_preproc_if_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(494), - [aux_sym_preproc_ifdef_token2] = ACTIONS(494), - [sym_preproc_directive] = ACTIONS(496), + [53] = { + [sym_preproc_include] = STATE(52), + [sym_preproc_def] = STATE(52), + [sym_preproc_function_def] = STATE(52), + [sym_preproc_call] = STATE(52), + [sym_preproc_if] = STATE(52), + [sym_preproc_ifdef] = STATE(52), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1522), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_call_modifier] = STATE(875), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1125), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(52), + [sym_labeled_statement] = STATE(52), + [sym__top_level_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_case_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(1354), + [sym__expression_not_binary] = STATE(1352), + [sym_conditional_expression] = STATE(1352), + [sym_assignment_expression] = STATE(1352), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(1352), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(1352), + [sym_cast_expression] = STATE(1352), + [sym_sizeof_expression] = STATE(1352), + [sym_alignof_expression] = STATE(1352), + [sym_offsetof_expression] = STATE(1352), + [sym_builtin_va_arg] = STATE(1352), + [sym_generic_expression] = STATE(1352), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(1352), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(1352), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(1352), + [sym_concatenated_string] = STATE(1352), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(1352), + [sym__empty_declaration] = STATE(52), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_translation_unit_repeat1] = STATE(52), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(594), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [ts_builtin_sym_end] = ACTIONS(876), + [sym_identifier] = ACTIONS(7), + [aux_sym_preproc_include_token1] = ACTIONS(9), + [aux_sym_preproc_def_token1] = ACTIONS(11), + [aux_sym_preproc_if_token1] = ACTIONS(13), + [aux_sym_preproc_ifdef_token1] = ACTIONS(15), + [aux_sym_preproc_ifdef_token2] = ACTIONS(15), + [sym_preproc_directive] = ACTIONS(17), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22722,393 +24360,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(696), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [52] = { - [sym_preproc_include] = STATE(53), - [sym_preproc_def] = STATE(53), - [sym_preproc_function_def] = STATE(53), - [sym_preproc_call] = STATE(53), - [sym_preproc_if] = STATE(53), - [sym_preproc_ifdef] = STATE(53), - [sym_function_definition] = STATE(53), - [sym_declaration] = STATE(53), - [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1389), - [sym_linkage_specification] = STATE(53), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(825), - [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1049), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(53), - [sym_labeled_statement] = STATE(53), - [sym__top_level_expression_statement] = STATE(53), - [sym_if_statement] = STATE(53), - [sym_switch_statement] = STATE(53), - [sym_case_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(1225), - [sym__expression_not_binary] = STATE(1224), - [sym_conditional_expression] = STATE(1224), - [sym_assignment_expression] = STATE(1224), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(1224), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(1224), - [sym_cast_expression] = STATE(1224), - [sym_sizeof_expression] = STATE(1224), - [sym_offsetof_expression] = STATE(1224), - [sym_generic_expression] = STATE(1224), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(1224), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(1224), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(1224), - [sym_concatenated_string] = STATE(1224), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(1224), - [sym__empty_declaration] = STATE(53), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_translation_unit_repeat1] = STATE(53), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(413), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [ts_builtin_sym_end] = ACTIONS(698), - [sym_identifier] = ACTIONS(7), - [aux_sym_preproc_include_token1] = ACTIONS(9), - [aux_sym_preproc_def_token1] = ACTIONS(11), - [aux_sym_preproc_if_token1] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(15), - [aux_sym_preproc_ifdef_token2] = ACTIONS(15), - [sym_preproc_directive] = 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_AMP] = ACTIONS(25), - [anon_sym_typedef] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(29), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = 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), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [53] = { - [sym_preproc_include] = STATE(53), - [sym_preproc_def] = STATE(53), - [sym_preproc_function_def] = STATE(53), - [sym_preproc_call] = STATE(53), - [sym_preproc_if] = STATE(53), - [sym_preproc_ifdef] = STATE(53), - [sym_function_definition] = STATE(53), - [sym_declaration] = STATE(53), - [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1389), - [sym_linkage_specification] = STATE(53), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_ms_call_modifier] = STATE(825), - [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(1049), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(53), - [sym_labeled_statement] = STATE(53), - [sym__top_level_expression_statement] = STATE(53), - [sym_if_statement] = STATE(53), - [sym_switch_statement] = STATE(53), - [sym_case_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(1225), - [sym__expression_not_binary] = STATE(1224), - [sym_conditional_expression] = STATE(1224), - [sym_assignment_expression] = STATE(1224), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(1224), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(1224), - [sym_cast_expression] = STATE(1224), - [sym_sizeof_expression] = STATE(1224), - [sym_offsetof_expression] = STATE(1224), - [sym_generic_expression] = STATE(1224), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(1224), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(1224), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(1224), - [sym_concatenated_string] = STATE(1224), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(1224), - [sym__empty_declaration] = STATE(53), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_translation_unit_repeat1] = STATE(53), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(413), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [ts_builtin_sym_end] = ACTIONS(700), - [sym_identifier] = ACTIONS(702), - [aux_sym_preproc_include_token1] = ACTIONS(705), - [aux_sym_preproc_def_token1] = ACTIONS(708), - [aux_sym_preproc_if_token1] = ACTIONS(711), - [aux_sym_preproc_ifdef_token1] = ACTIONS(714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(714), - [sym_preproc_directive] = ACTIONS(717), - [anon_sym_LPAREN2] = ACTIONS(720), - [anon_sym_BANG] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(723), - [anon_sym_DASH] = ACTIONS(726), - [anon_sym_PLUS] = ACTIONS(726), - [anon_sym_STAR] = ACTIONS(729), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_typedef] = ACTIONS(732), - [anon_sym_extern] = ACTIONS(735), - [anon_sym___attribute__] = ACTIONS(738), - [anon_sym_LBRACK_LBRACK] = ACTIONS(741), - [anon_sym___declspec] = ACTIONS(744), - [anon_sym___cdecl] = ACTIONS(747), - [anon_sym___clrcall] = ACTIONS(747), - [anon_sym___stdcall] = ACTIONS(747), - [anon_sym___fastcall] = ACTIONS(747), - [anon_sym___thiscall] = ACTIONS(747), - [anon_sym___vectorcall] = ACTIONS(747), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_signed] = ACTIONS(753), - [anon_sym_unsigned] = ACTIONS(753), - [anon_sym_long] = ACTIONS(753), - [anon_sym_short] = ACTIONS(753), - [anon_sym_static] = ACTIONS(756), - [anon_sym_auto] = ACTIONS(756), - [anon_sym_register] = ACTIONS(756), - [anon_sym_inline] = ACTIONS(756), - [anon_sym_thread_local] = ACTIONS(756), - [anon_sym___thread] = ACTIONS(756), - [anon_sym_const] = ACTIONS(759), - [anon_sym_constexpr] = ACTIONS(759), - [anon_sym_volatile] = ACTIONS(759), - [anon_sym_restrict] = ACTIONS(759), - [anon_sym___restrict__] = ACTIONS(759), - [anon_sym__Atomic] = ACTIONS(759), - [anon_sym__Noreturn] = ACTIONS(759), - [anon_sym_noreturn] = ACTIONS(759), - [sym_primitive_type] = ACTIONS(762), - [anon_sym_enum] = ACTIONS(765), - [anon_sym_struct] = ACTIONS(768), - [anon_sym_union] = ACTIONS(771), - [anon_sym_if] = ACTIONS(774), - [anon_sym_switch] = ACTIONS(777), - [anon_sym_case] = ACTIONS(780), - [anon_sym_default] = ACTIONS(783), - [anon_sym_while] = ACTIONS(786), - [anon_sym_do] = ACTIONS(789), - [anon_sym_for] = ACTIONS(792), - [anon_sym_return] = ACTIONS(795), - [anon_sym_break] = ACTIONS(798), - [anon_sym_continue] = ACTIONS(801), - [anon_sym_goto] = ACTIONS(804), - [anon_sym_DASH_DASH] = ACTIONS(807), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_sizeof] = ACTIONS(810), - [anon_sym_offsetof] = ACTIONS(813), - [anon_sym__Generic] = ACTIONS(816), - [anon_sym_asm] = ACTIONS(819), - [anon_sym___asm__] = ACTIONS(819), - [sym_number_literal] = ACTIONS(822), - [anon_sym_L_SQUOTE] = ACTIONS(825), - [anon_sym_u_SQUOTE] = ACTIONS(825), - [anon_sym_U_SQUOTE] = ACTIONS(825), - [anon_sym_u8_SQUOTE] = ACTIONS(825), - [anon_sym_SQUOTE] = ACTIONS(825), - [anon_sym_L_DQUOTE] = ACTIONS(828), - [anon_sym_u_DQUOTE] = ACTIONS(828), - [anon_sym_U_DQUOTE] = ACTIONS(828), - [anon_sym_u8_DQUOTE] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(828), - [sym_true] = ACTIONS(831), - [sym_false] = ACTIONS(831), - [anon_sym_NULL] = ACTIONS(834), - [anon_sym_nullptr] = ACTIONS(834), + [anon_sym___extension__] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(31), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = 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_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(93), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(99), + [sym_false] = ACTIONS(99), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [54] = { [sym_declaration] = STATE(56), [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1392), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1541), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), [sym_attributed_statement] = STATE(56), [sym_labeled_statement] = STATE(56), [sym_expression_statement] = STATE(56), @@ -23121,46 +24467,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(56), [sym_continue_statement] = STATE(56), [sym_goto_statement] = STATE(56), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1801), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), + [sym__expression] = STATE(1198), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2197), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(508), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), [aux_sym_case_statement_repeat1] = STATE(56), - [sym_identifier] = ACTIONS(837), - [aux_sym_preproc_include_token1] = ACTIONS(839), - [aux_sym_preproc_def_token1] = ACTIONS(839), - [aux_sym_preproc_if_token1] = ACTIONS(839), - [aux_sym_preproc_if_token2] = ACTIONS(839), - [aux_sym_preproc_ifdef_token1] = ACTIONS(839), - [aux_sym_preproc_ifdef_token2] = ACTIONS(839), - [aux_sym_preproc_else_token1] = ACTIONS(839), - [aux_sym_preproc_elif_token1] = ACTIONS(839), - [aux_sym_preproc_elifdef_token1] = ACTIONS(839), - [aux_sym_preproc_elifdef_token2] = ACTIONS(839), - [sym_preproc_directive] = ACTIONS(839), + [sym_identifier] = ACTIONS(878), + [aux_sym_preproc_include_token1] = ACTIONS(880), + [aux_sym_preproc_def_token1] = ACTIONS(880), + [aux_sym_preproc_if_token1] = ACTIONS(880), + [aux_sym_preproc_if_token2] = ACTIONS(880), + [aux_sym_preproc_ifdef_token1] = ACTIONS(880), + [aux_sym_preproc_ifdef_token2] = ACTIONS(880), + [aux_sym_preproc_else_token1] = ACTIONS(880), + [aux_sym_preproc_elif_token1] = ACTIONS(880), + [aux_sym_preproc_elifdef_token1] = ACTIONS(880), + [aux_sym_preproc_elifdef_token2] = ACTIONS(880), + [sym_preproc_directive] = ACTIONS(880), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23168,145 +24516,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_typedef] = ACTIONS(119), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(839), - [anon_sym___clrcall] = ACTIONS(839), - [anon_sym___stdcall] = ACTIONS(839), - [anon_sym___fastcall] = ACTIONS(839), - [anon_sym___thiscall] = ACTIONS(839), - [anon_sym___vectorcall] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(125), - [anon_sym_else] = ACTIONS(839), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(839), - [anon_sym_default] = ACTIONS(839), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(880), + [anon_sym___clrcall] = ACTIONS(880), + [anon_sym___stdcall] = ACTIONS(880), + [anon_sym___fastcall] = ACTIONS(880), + [anon_sym___thiscall] = ACTIONS(880), + [anon_sym___vectorcall] = ACTIONS(880), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(133), + [anon_sym_else] = ACTIONS(880), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(880), + [anon_sym_default] = ACTIONS(880), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [55] = { - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1392), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1801), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [aux_sym_case_statement_repeat1] = STATE(56), - [sym_identifier] = ACTIONS(837), - [aux_sym_preproc_include_token1] = ACTIONS(841), - [aux_sym_preproc_def_token1] = ACTIONS(841), - [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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(841), - [aux_sym_preproc_elifdef_token2] = ACTIONS(841), - [sym_preproc_directive] = ACTIONS(841), + [sym_declaration] = STATE(55), + [sym_type_definition] = STATE(55), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1541), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_compound_statement] = STATE(55), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(55), + [sym_labeled_statement] = STATE(55), + [sym_expression_statement] = STATE(55), + [sym_if_statement] = STATE(55), + [sym_switch_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_do_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_return_statement] = STATE(55), + [sym_break_statement] = STATE(55), + [sym_continue_statement] = STATE(55), + [sym_goto_statement] = STATE(55), + [sym__expression] = STATE(1198), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2197), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(508), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [aux_sym_case_statement_repeat1] = STATE(55), + [sym_identifier] = ACTIONS(882), + [aux_sym_preproc_include_token1] = ACTIONS(885), + [aux_sym_preproc_def_token1] = ACTIONS(885), + [aux_sym_preproc_if_token1] = ACTIONS(885), + [aux_sym_preproc_if_token2] = ACTIONS(885), + [aux_sym_preproc_ifdef_token1] = ACTIONS(885), + [aux_sym_preproc_ifdef_token2] = ACTIONS(885), + [aux_sym_preproc_else_token1] = ACTIONS(885), + [aux_sym_preproc_elif_token1] = ACTIONS(885), + [aux_sym_preproc_elifdef_token1] = ACTIONS(885), + [aux_sym_preproc_elifdef_token2] = ACTIONS(885), + [sym_preproc_directive] = ACTIONS(885), + [anon_sym_LPAREN2] = ACTIONS(887), + [anon_sym_BANG] = ACTIONS(890), + [anon_sym_TILDE] = ACTIONS(890), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(896), + [anon_sym_AMP] = ACTIONS(896), + [anon_sym_SEMI] = ACTIONS(899), + [anon_sym___extension__] = ACTIONS(902), + [anon_sym_typedef] = ACTIONS(905), + [anon_sym_extern] = ACTIONS(908), + [anon_sym___attribute__] = ACTIONS(911), + [anon_sym_LBRACK_LBRACK] = ACTIONS(914), + [anon_sym___declspec] = ACTIONS(917), + [anon_sym___cdecl] = ACTIONS(885), + [anon_sym___clrcall] = ACTIONS(885), + [anon_sym___stdcall] = ACTIONS(885), + [anon_sym___fastcall] = ACTIONS(885), + [anon_sym___thiscall] = ACTIONS(885), + [anon_sym___vectorcall] = ACTIONS(885), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_signed] = ACTIONS(923), + [anon_sym_unsigned] = ACTIONS(923), + [anon_sym_long] = ACTIONS(923), + [anon_sym_short] = ACTIONS(923), + [anon_sym_static] = ACTIONS(908), + [anon_sym_auto] = ACTIONS(908), + [anon_sym_register] = ACTIONS(908), + [anon_sym_inline] = ACTIONS(908), + [anon_sym___inline] = ACTIONS(908), + [anon_sym___inline__] = ACTIONS(908), + [anon_sym___forceinline] = ACTIONS(908), + [anon_sym_thread_local] = ACTIONS(908), + [anon_sym___thread] = ACTIONS(908), + [anon_sym_const] = ACTIONS(926), + [anon_sym_constexpr] = ACTIONS(926), + [anon_sym_volatile] = ACTIONS(926), + [anon_sym_restrict] = ACTIONS(926), + [anon_sym___restrict__] = ACTIONS(926), + [anon_sym__Atomic] = ACTIONS(926), + [anon_sym__Noreturn] = ACTIONS(926), + [anon_sym_noreturn] = ACTIONS(926), + [sym_primitive_type] = ACTIONS(929), + [anon_sym_enum] = ACTIONS(932), + [anon_sym_struct] = ACTIONS(935), + [anon_sym_union] = ACTIONS(938), + [anon_sym_if] = ACTIONS(941), + [anon_sym_else] = ACTIONS(885), + [anon_sym_switch] = ACTIONS(944), + [anon_sym_case] = ACTIONS(885), + [anon_sym_default] = ACTIONS(885), + [anon_sym_while] = ACTIONS(947), + [anon_sym_do] = ACTIONS(950), + [anon_sym_for] = ACTIONS(953), + [anon_sym_return] = ACTIONS(956), + [anon_sym_break] = ACTIONS(959), + [anon_sym_continue] = ACTIONS(962), + [anon_sym_goto] = ACTIONS(965), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(971), + [anon_sym___alignof__] = ACTIONS(974), + [anon_sym___alignof] = ACTIONS(974), + [anon_sym__alignof] = ACTIONS(974), + [anon_sym_alignof] = ACTIONS(974), + [anon_sym__Alignof] = ACTIONS(974), + [anon_sym_offsetof] = ACTIONS(977), + [anon_sym___builtin_va_arg] = ACTIONS(980), + [anon_sym__Generic] = ACTIONS(983), + [anon_sym_asm] = ACTIONS(986), + [anon_sym___asm__] = ACTIONS(986), + [sym_number_literal] = ACTIONS(989), + [anon_sym_L_SQUOTE] = ACTIONS(992), + [anon_sym_u_SQUOTE] = ACTIONS(992), + [anon_sym_U_SQUOTE] = ACTIONS(992), + [anon_sym_u8_SQUOTE] = ACTIONS(992), + [anon_sym_SQUOTE] = ACTIONS(992), + [anon_sym_L_DQUOTE] = ACTIONS(995), + [anon_sym_u_DQUOTE] = ACTIONS(995), + [anon_sym_U_DQUOTE] = ACTIONS(995), + [anon_sym_u8_DQUOTE] = ACTIONS(995), + [anon_sym_DQUOTE] = ACTIONS(995), + [sym_true] = ACTIONS(998), + [sym_false] = ACTIONS(998), + [anon_sym_NULL] = ACTIONS(1001), + [anon_sym_nullptr] = ACTIONS(1001), + [sym_comment] = ACTIONS(3), + }, + [56] = { + [sym_declaration] = STATE(55), + [sym_type_definition] = STATE(55), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1541), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_compound_statement] = STATE(55), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(55), + [sym_labeled_statement] = STATE(55), + [sym_expression_statement] = STATE(55), + [sym_if_statement] = STATE(55), + [sym_switch_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_do_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_return_statement] = STATE(55), + [sym_break_statement] = STATE(55), + [sym_continue_statement] = STATE(55), + [sym_goto_statement] = STATE(55), + [sym__expression] = STATE(1198), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2197), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(508), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [aux_sym_case_statement_repeat1] = STATE(55), + [sym_identifier] = ACTIONS(878), + [aux_sym_preproc_include_token1] = ACTIONS(1004), + [aux_sym_preproc_def_token1] = ACTIONS(1004), + [aux_sym_preproc_if_token1] = ACTIONS(1004), + [aux_sym_preproc_if_token2] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), + [aux_sym_preproc_else_token1] = ACTIONS(1004), + [aux_sym_preproc_elif_token1] = ACTIONS(1004), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1004), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1004), + [sym_preproc_directive] = ACTIONS(1004), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23314,291 +24832,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_typedef] = ACTIONS(119), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [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(123), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(125), - [anon_sym_else] = ACTIONS(841), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(841), - [anon_sym_default] = ACTIONS(841), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [56] = { - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1392), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1801), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [aux_sym_case_statement_repeat1] = STATE(56), - [sym_identifier] = ACTIONS(843), - [aux_sym_preproc_include_token1] = ACTIONS(846), - [aux_sym_preproc_def_token1] = ACTIONS(846), - [aux_sym_preproc_if_token1] = ACTIONS(846), - [aux_sym_preproc_if_token2] = ACTIONS(846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(846), - [aux_sym_preproc_else_token1] = ACTIONS(846), - [aux_sym_preproc_elif_token1] = ACTIONS(846), - [aux_sym_preproc_elifdef_token1] = ACTIONS(846), - [aux_sym_preproc_elifdef_token2] = ACTIONS(846), - [sym_preproc_directive] = ACTIONS(846), - [anon_sym_LPAREN2] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_STAR] = ACTIONS(857), - [anon_sym_AMP] = ACTIONS(857), - [anon_sym_SEMI] = ACTIONS(860), - [anon_sym_typedef] = ACTIONS(863), - [anon_sym_extern] = ACTIONS(866), - [anon_sym___attribute__] = ACTIONS(869), - [anon_sym_LBRACK_LBRACK] = ACTIONS(872), - [anon_sym___declspec] = ACTIONS(875), - [anon_sym___cdecl] = ACTIONS(846), - [anon_sym___clrcall] = ACTIONS(846), - [anon_sym___stdcall] = ACTIONS(846), - [anon_sym___fastcall] = ACTIONS(846), - [anon_sym___thiscall] = ACTIONS(846), - [anon_sym___vectorcall] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(878), - [anon_sym_signed] = ACTIONS(881), - [anon_sym_unsigned] = ACTIONS(881), - [anon_sym_long] = ACTIONS(881), - [anon_sym_short] = ACTIONS(881), - [anon_sym_static] = ACTIONS(866), - [anon_sym_auto] = ACTIONS(866), - [anon_sym_register] = ACTIONS(866), - [anon_sym_inline] = ACTIONS(866), - [anon_sym_thread_local] = ACTIONS(866), - [anon_sym___thread] = ACTIONS(866), - [anon_sym_const] = ACTIONS(884), - [anon_sym_constexpr] = ACTIONS(884), - [anon_sym_volatile] = ACTIONS(884), - [anon_sym_restrict] = ACTIONS(884), - [anon_sym___restrict__] = ACTIONS(884), - [anon_sym__Atomic] = ACTIONS(884), - [anon_sym__Noreturn] = ACTIONS(884), - [anon_sym_noreturn] = 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(846), - [anon_sym_switch] = ACTIONS(902), - [anon_sym_case] = ACTIONS(846), - [anon_sym_default] = ACTIONS(846), - [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), - [anon_sym_offsetof] = ACTIONS(932), - [anon_sym__Generic] = ACTIONS(935), - [anon_sym_asm] = ACTIONS(938), - [anon_sym___asm__] = ACTIONS(938), - [sym_number_literal] = ACTIONS(941), - [anon_sym_L_SQUOTE] = ACTIONS(944), - [anon_sym_u_SQUOTE] = ACTIONS(944), - [anon_sym_U_SQUOTE] = ACTIONS(944), - [anon_sym_u8_SQUOTE] = ACTIONS(944), - [anon_sym_SQUOTE] = ACTIONS(944), - [anon_sym_L_DQUOTE] = ACTIONS(947), - [anon_sym_u_DQUOTE] = ACTIONS(947), - [anon_sym_U_DQUOTE] = ACTIONS(947), - [anon_sym_u8_DQUOTE] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(947), - [sym_true] = ACTIONS(950), - [sym_false] = ACTIONS(950), - [anon_sym_NULL] = ACTIONS(953), - [anon_sym_nullptr] = ACTIONS(953), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(1004), + [anon_sym___clrcall] = ACTIONS(1004), + [anon_sym___stdcall] = ACTIONS(1004), + [anon_sym___fastcall] = ACTIONS(1004), + [anon_sym___thiscall] = ACTIONS(1004), + [anon_sym___vectorcall] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(133), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(1004), + [anon_sym_default] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [57] = { - [sym_declaration] = STATE(54), - [sym_type_definition] = STATE(54), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1392), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_compound_statement] = STATE(54), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(54), - [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(1121), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1801), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [aux_sym_case_statement_repeat1] = STATE(54), - [sym_identifier] = ACTIONS(837), - [aux_sym_preproc_include_token1] = ACTIONS(956), - [aux_sym_preproc_def_token1] = ACTIONS(956), - [aux_sym_preproc_if_token1] = ACTIONS(956), - [aux_sym_preproc_if_token2] = ACTIONS(956), - [aux_sym_preproc_ifdef_token1] = ACTIONS(956), - [aux_sym_preproc_ifdef_token2] = ACTIONS(956), - [aux_sym_preproc_else_token1] = ACTIONS(956), - [aux_sym_preproc_elif_token1] = ACTIONS(956), - [aux_sym_preproc_elifdef_token1] = ACTIONS(956), - [aux_sym_preproc_elifdef_token2] = ACTIONS(956), - [sym_preproc_directive] = ACTIONS(956), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1541), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(58), + [sym_labeled_statement] = STATE(58), + [sym_expression_statement] = STATE(58), + [sym_if_statement] = STATE(58), + [sym_switch_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_do_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_return_statement] = STATE(58), + [sym_break_statement] = STATE(58), + [sym_continue_statement] = STATE(58), + [sym_goto_statement] = STATE(58), + [sym__expression] = STATE(1198), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2197), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(508), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [aux_sym_case_statement_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(878), + [aux_sym_preproc_include_token1] = ACTIONS(1006), + [aux_sym_preproc_def_token1] = ACTIONS(1006), + [aux_sym_preproc_if_token1] = ACTIONS(1006), + [aux_sym_preproc_if_token2] = ACTIONS(1006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1006), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1006), + [aux_sym_preproc_else_token1] = ACTIONS(1006), + [aux_sym_preproc_elif_token1] = ACTIONS(1006), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1006), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1006), + [sym_preproc_directive] = ACTIONS(1006), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23606,93 +24990,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_typedef] = ACTIONS(119), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(956), - [anon_sym___clrcall] = ACTIONS(956), - [anon_sym___stdcall] = ACTIONS(956), - [anon_sym___fastcall] = ACTIONS(956), - [anon_sym___thiscall] = ACTIONS(956), - [anon_sym___vectorcall] = ACTIONS(956), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(125), - [anon_sym_else] = ACTIONS(956), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(956), - [anon_sym_default] = ACTIONS(956), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(1006), + [anon_sym___clrcall] = ACTIONS(1006), + [anon_sym___stdcall] = ACTIONS(1006), + [anon_sym___fastcall] = ACTIONS(1006), + [anon_sym___thiscall] = ACTIONS(1006), + [anon_sym___vectorcall] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(133), + [anon_sym_else] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(1006), + [anon_sym_default] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [58] = { [sym_declaration] = STATE(55), [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1392), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1541), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), [sym_attributed_statement] = STATE(55), [sym_labeled_statement] = STATE(55), [sym_expression_statement] = STATE(55), @@ -23705,46 +25099,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(55), [sym_continue_statement] = STATE(55), [sym_goto_statement] = STATE(55), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1801), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), + [sym__expression] = STATE(1198), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2197), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(508), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), [aux_sym_case_statement_repeat1] = STATE(55), - [sym_identifier] = ACTIONS(837), - [aux_sym_preproc_include_token1] = ACTIONS(958), - [aux_sym_preproc_def_token1] = ACTIONS(958), - [aux_sym_preproc_if_token1] = ACTIONS(958), - [aux_sym_preproc_if_token2] = ACTIONS(958), - [aux_sym_preproc_ifdef_token1] = ACTIONS(958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(958), - [aux_sym_preproc_else_token1] = ACTIONS(958), - [aux_sym_preproc_elif_token1] = ACTIONS(958), - [aux_sym_preproc_elifdef_token1] = ACTIONS(958), - [aux_sym_preproc_elifdef_token2] = ACTIONS(958), - [sym_preproc_directive] = ACTIONS(958), + [sym_identifier] = ACTIONS(878), + [aux_sym_preproc_include_token1] = ACTIONS(1008), + [aux_sym_preproc_def_token1] = ACTIONS(1008), + [aux_sym_preproc_if_token1] = ACTIONS(1008), + [aux_sym_preproc_if_token2] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), + [aux_sym_preproc_else_token1] = ACTIONS(1008), + [aux_sym_preproc_elif_token1] = ACTIONS(1008), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1008), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1008), + [sym_preproc_directive] = ACTIONS(1008), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23752,431 +25148,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_typedef] = ACTIONS(119), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(958), - [anon_sym___clrcall] = ACTIONS(958), - [anon_sym___stdcall] = ACTIONS(958), - [anon_sym___fastcall] = ACTIONS(958), - [anon_sym___thiscall] = ACTIONS(958), - [anon_sym___vectorcall] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(125), - [anon_sym_else] = ACTIONS(958), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(958), - [anon_sym_default] = ACTIONS(958), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym___extension__] = ACTIONS(125), + [anon_sym_typedef] = ACTIONS(127), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(1008), + [anon_sym___clrcall] = ACTIONS(1008), + [anon_sym___stdcall] = ACTIONS(1008), + [anon_sym___fastcall] = ACTIONS(1008), + [anon_sym___thiscall] = ACTIONS(1008), + [anon_sym___vectorcall] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(133), + [anon_sym_else] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(1008), + [anon_sym_default] = ACTIONS(1008), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [59] = { - [sym_declaration] = STATE(59), - [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1378), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(59), - [sym_labeled_statement] = STATE(59), - [sym_expression_statement] = STATE(59), - [sym_if_statement] = STATE(59), - [sym_switch_statement] = STATE(59), - [sym_while_statement] = STATE(59), - [sym_do_statement] = STATE(59), - [sym_for_statement] = STATE(59), - [sym_return_statement] = STATE(59), - [sym_break_statement] = STATE(59), - [sym_continue_statement] = STATE(59), - [sym_goto_statement] = STATE(59), - [sym__expression] = STATE(1077), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(437), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [aux_sym_case_statement_repeat1] = STATE(59), - [sym_identifier] = ACTIONS(960), - [aux_sym_preproc_include_token1] = ACTIONS(846), - [aux_sym_preproc_def_token1] = ACTIONS(846), - [aux_sym_preproc_if_token1] = ACTIONS(846), - [aux_sym_preproc_if_token2] = ACTIONS(846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(846), - [aux_sym_preproc_else_token1] = ACTIONS(846), - [aux_sym_preproc_elif_token1] = ACTIONS(846), - [sym_preproc_directive] = ACTIONS(846), - [anon_sym_LPAREN2] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_STAR] = ACTIONS(857), - [anon_sym_AMP] = ACTIONS(857), - [anon_sym_SEMI] = ACTIONS(963), - [anon_sym_typedef] = ACTIONS(966), - [anon_sym_extern] = ACTIONS(866), - [anon_sym___attribute__] = ACTIONS(869), - [anon_sym_LBRACK_LBRACK] = ACTIONS(872), - [anon_sym___declspec] = ACTIONS(875), - [anon_sym___cdecl] = ACTIONS(846), - [anon_sym___clrcall] = ACTIONS(846), - [anon_sym___stdcall] = ACTIONS(846), - [anon_sym___fastcall] = ACTIONS(846), - [anon_sym___thiscall] = ACTIONS(846), - [anon_sym___vectorcall] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(969), - [anon_sym_signed] = ACTIONS(881), - [anon_sym_unsigned] = ACTIONS(881), - [anon_sym_long] = ACTIONS(881), - [anon_sym_short] = ACTIONS(881), - [anon_sym_static] = ACTIONS(866), - [anon_sym_auto] = ACTIONS(866), - [anon_sym_register] = ACTIONS(866), - [anon_sym_inline] = ACTIONS(866), - [anon_sym_thread_local] = ACTIONS(866), - [anon_sym___thread] = ACTIONS(866), - [anon_sym_const] = ACTIONS(884), - [anon_sym_constexpr] = ACTIONS(884), - [anon_sym_volatile] = ACTIONS(884), - [anon_sym_restrict] = ACTIONS(884), - [anon_sym___restrict__] = ACTIONS(884), - [anon_sym__Atomic] = ACTIONS(884), - [anon_sym__Noreturn] = ACTIONS(884), - [anon_sym_noreturn] = 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(972), - [anon_sym_else] = ACTIONS(846), - [anon_sym_switch] = ACTIONS(975), - [anon_sym_case] = ACTIONS(846), - [anon_sym_default] = ACTIONS(846), - [anon_sym_while] = ACTIONS(978), - [anon_sym_do] = ACTIONS(981), - [anon_sym_for] = ACTIONS(984), - [anon_sym_return] = ACTIONS(987), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(993), - [anon_sym_goto] = ACTIONS(996), - [anon_sym_DASH_DASH] = ACTIONS(926), - [anon_sym_PLUS_PLUS] = ACTIONS(926), - [anon_sym_sizeof] = ACTIONS(929), - [anon_sym_offsetof] = ACTIONS(932), - [anon_sym__Generic] = ACTIONS(935), - [anon_sym_asm] = ACTIONS(938), - [anon_sym___asm__] = ACTIONS(938), - [sym_number_literal] = ACTIONS(941), - [anon_sym_L_SQUOTE] = ACTIONS(944), - [anon_sym_u_SQUOTE] = ACTIONS(944), - [anon_sym_U_SQUOTE] = ACTIONS(944), - [anon_sym_u8_SQUOTE] = ACTIONS(944), - [anon_sym_SQUOTE] = ACTIONS(944), - [anon_sym_L_DQUOTE] = ACTIONS(947), - [anon_sym_u_DQUOTE] = ACTIONS(947), - [anon_sym_U_DQUOTE] = ACTIONS(947), - [anon_sym_u8_DQUOTE] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(947), - [sym_true] = ACTIONS(950), - [sym_false] = ACTIONS(950), - [anon_sym_NULL] = ACTIONS(953), - [anon_sym_nullptr] = ACTIONS(953), - [sym_comment] = ACTIONS(3), - }, - [60] = { - [sym_declaration] = STATE(59), - [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1378), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(59), - [sym_labeled_statement] = STATE(59), - [sym_expression_statement] = STATE(59), - [sym_if_statement] = STATE(59), - [sym_switch_statement] = STATE(59), - [sym_while_statement] = STATE(59), - [sym_do_statement] = STATE(59), - [sym_for_statement] = STATE(59), - [sym_return_statement] = STATE(59), - [sym_break_statement] = STATE(59), - [sym_continue_statement] = STATE(59), - [sym_goto_statement] = STATE(59), - [sym__expression] = STATE(1077), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(437), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [aux_sym_case_statement_repeat1] = STATE(59), - [sym_identifier] = ACTIONS(999), - [aux_sym_preproc_include_token1] = ACTIONS(839), - [aux_sym_preproc_def_token1] = ACTIONS(839), - [aux_sym_preproc_if_token1] = ACTIONS(839), - [aux_sym_preproc_if_token2] = ACTIONS(839), - [aux_sym_preproc_ifdef_token1] = ACTIONS(839), - [aux_sym_preproc_ifdef_token2] = ACTIONS(839), - [aux_sym_preproc_else_token1] = ACTIONS(839), - [aux_sym_preproc_elif_token1] = ACTIONS(839), - [sym_preproc_directive] = ACTIONS(839), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(839), - [anon_sym___clrcall] = ACTIONS(839), - [anon_sym___stdcall] = ACTIONS(839), - [anon_sym___fastcall] = ACTIONS(839), - [anon_sym___thiscall] = ACTIONS(839), - [anon_sym___vectorcall] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(191), - [anon_sym_else] = ACTIONS(839), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(839), - [anon_sym_default] = ACTIONS(839), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [61] = { - [sym_declaration] = STATE(62), - [sym_type_definition] = STATE(62), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1378), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_compound_statement] = STATE(62), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(62), - [sym_labeled_statement] = STATE(62), - [sym_expression_statement] = STATE(62), - [sym_if_statement] = STATE(62), - [sym_switch_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_do_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_return_statement] = STATE(62), - [sym_break_statement] = STATE(62), - [sym_continue_statement] = STATE(62), - [sym_goto_statement] = STATE(62), - [sym__expression] = STATE(1077), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(437), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [aux_sym_case_statement_repeat1] = STATE(62), - [sym_identifier] = ACTIONS(999), - [aux_sym_preproc_include_token1] = ACTIONS(958), - [aux_sym_preproc_def_token1] = ACTIONS(958), - [aux_sym_preproc_if_token1] = ACTIONS(958), - [aux_sym_preproc_if_token2] = ACTIONS(958), - [aux_sym_preproc_ifdef_token1] = ACTIONS(958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(958), - [aux_sym_preproc_else_token1] = ACTIONS(958), - [aux_sym_preproc_elif_token1] = ACTIONS(958), - [sym_preproc_directive] = ACTIONS(958), + [sym_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1537), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_compound_statement] = STATE(61), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(61), + [sym_labeled_statement] = STATE(61), + [sym_expression_statement] = STATE(61), + [sym_if_statement] = STATE(61), + [sym_switch_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_do_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_return_statement] = STATE(61), + [sym_break_statement] = STATE(61), + [sym_continue_statement] = STATE(61), + [sym_goto_statement] = STATE(61), + [sym__expression] = STATE(1240), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2024), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(560), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [aux_sym_case_statement_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(1010), + [aux_sym_preproc_include_token1] = ACTIONS(1004), + [aux_sym_preproc_def_token1] = ACTIONS(1004), + [aux_sym_preproc_if_token1] = ACTIONS(1004), + [aux_sym_preproc_if_token2] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), + [aux_sym_preproc_else_token1] = ACTIONS(1004), + [aux_sym_preproc_elif_token1] = ACTIONS(1004), + [sym_preproc_directive] = ACTIONS(1004), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24184,93 +25304,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(958), - [anon_sym___clrcall] = ACTIONS(958), - [anon_sym___stdcall] = ACTIONS(958), - [anon_sym___fastcall] = ACTIONS(958), - [anon_sym___thiscall] = ACTIONS(958), - [anon_sym___vectorcall] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(191), - [anon_sym_else] = ACTIONS(958), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(958), - [anon_sym_default] = ACTIONS(958), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym___extension__] = ACTIONS(193), + [anon_sym_typedef] = ACTIONS(195), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(1004), + [anon_sym___clrcall] = ACTIONS(1004), + [anon_sym___stdcall] = ACTIONS(1004), + [anon_sym___fastcall] = ACTIONS(1004), + [anon_sym___thiscall] = ACTIONS(1004), + [anon_sym___vectorcall] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(201), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_switch] = ACTIONS(203), + [anon_sym_case] = ACTIONS(1004), + [anon_sym_default] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(209), + [anon_sym_do] = ACTIONS(211), + [anon_sym_for] = ACTIONS(213), + [anon_sym_return] = ACTIONS(215), + [anon_sym_break] = ACTIONS(217), + [anon_sym_continue] = ACTIONS(219), + [anon_sym_goto] = ACTIONS(221), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [62] = { + [60] = { [sym_declaration] = STATE(59), [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1378), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1537), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), [sym_attributed_statement] = STATE(59), [sym_labeled_statement] = STATE(59), [sym_expression_statement] = STATE(59), @@ -24283,188 +25413,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(59), [sym_continue_statement] = STATE(59), [sym_goto_statement] = STATE(59), - [sym__expression] = STATE(1077), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(437), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), + [sym__expression] = STATE(1240), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2024), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(560), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), [aux_sym_case_statement_repeat1] = STATE(59), - [sym_identifier] = ACTIONS(999), - [aux_sym_preproc_include_token1] = ACTIONS(841), - [aux_sym_preproc_def_token1] = ACTIONS(841), - [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), - [sym_preproc_directive] = 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_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [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(189), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(191), - [anon_sym_else] = ACTIONS(841), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(841), - [anon_sym_default] = ACTIONS(841), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [63] = { - [sym_declaration] = STATE(60), - [sym_type_definition] = STATE(60), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1378), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(60), - [sym_labeled_statement] = STATE(60), - [sym_expression_statement] = STATE(60), - [sym_if_statement] = STATE(60), - [sym_switch_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_do_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_return_statement] = STATE(60), - [sym_break_statement] = STATE(60), - [sym_continue_statement] = STATE(60), - [sym_goto_statement] = STATE(60), - [sym__expression] = STATE(1077), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(437), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [aux_sym_case_statement_repeat1] = STATE(60), - [sym_identifier] = ACTIONS(999), - [aux_sym_preproc_include_token1] = ACTIONS(956), - [aux_sym_preproc_def_token1] = ACTIONS(956), - [aux_sym_preproc_if_token1] = ACTIONS(956), - [aux_sym_preproc_if_token2] = ACTIONS(956), - [aux_sym_preproc_ifdef_token1] = ACTIONS(956), - [aux_sym_preproc_ifdef_token2] = ACTIONS(956), - [aux_sym_preproc_else_token1] = ACTIONS(956), - [aux_sym_preproc_elif_token1] = ACTIONS(956), - [sym_preproc_directive] = ACTIONS(956), + [sym_identifier] = ACTIONS(1010), + [aux_sym_preproc_include_token1] = ACTIONS(880), + [aux_sym_preproc_def_token1] = ACTIONS(880), + [aux_sym_preproc_if_token1] = ACTIONS(880), + [aux_sym_preproc_if_token2] = ACTIONS(880), + [aux_sym_preproc_ifdef_token1] = ACTIONS(880), + [aux_sym_preproc_ifdef_token2] = ACTIONS(880), + [aux_sym_preproc_else_token1] = ACTIONS(880), + [aux_sym_preproc_elif_token1] = ACTIONS(880), + [sym_preproc_directive] = ACTIONS(880), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24472,425 +25460,311 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_typedef] = ACTIONS(185), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(956), - [anon_sym___clrcall] = ACTIONS(956), - [anon_sym___stdcall] = ACTIONS(956), - [anon_sym___fastcall] = ACTIONS(956), - [anon_sym___thiscall] = ACTIONS(956), - [anon_sym___vectorcall] = ACTIONS(956), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(191), - [anon_sym_else] = ACTIONS(956), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(956), - [anon_sym_default] = ACTIONS(956), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [64] = { - [sym_declaration] = STATE(64), - [sym_type_definition] = STATE(64), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1382), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_compound_statement] = STATE(64), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(64), - [sym_labeled_statement] = STATE(64), - [sym_expression_statement] = STATE(64), - [sym_if_statement] = STATE(64), - [sym_switch_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_do_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_return_statement] = STATE(64), - [sym_break_statement] = STATE(64), - [sym_continue_statement] = STATE(64), - [sym_goto_statement] = STATE(64), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [aux_sym_case_statement_repeat1] = STATE(64), - [sym_identifier] = ACTIONS(1001), - [aux_sym_preproc_include_token1] = ACTIONS(846), - [aux_sym_preproc_def_token1] = ACTIONS(846), - [aux_sym_preproc_if_token1] = ACTIONS(846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(846), - [sym_preproc_directive] = ACTIONS(846), - [anon_sym_LPAREN2] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_STAR] = ACTIONS(857), - [anon_sym_AMP] = ACTIONS(857), - [anon_sym_SEMI] = ACTIONS(1004), - [anon_sym_typedef] = ACTIONS(1007), - [anon_sym_extern] = ACTIONS(866), - [anon_sym___attribute__] = ACTIONS(869), - [anon_sym_LBRACK_LBRACK] = ACTIONS(872), - [anon_sym___declspec] = ACTIONS(875), - [anon_sym___cdecl] = ACTIONS(846), - [anon_sym___clrcall] = ACTIONS(846), - [anon_sym___stdcall] = ACTIONS(846), - [anon_sym___fastcall] = ACTIONS(846), - [anon_sym___thiscall] = ACTIONS(846), - [anon_sym___vectorcall] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1013), - [anon_sym_signed] = ACTIONS(881), - [anon_sym_unsigned] = ACTIONS(881), - [anon_sym_long] = ACTIONS(881), - [anon_sym_short] = ACTIONS(881), - [anon_sym_static] = ACTIONS(866), - [anon_sym_auto] = ACTIONS(866), - [anon_sym_register] = ACTIONS(866), - [anon_sym_inline] = ACTIONS(866), - [anon_sym_thread_local] = ACTIONS(866), - [anon_sym___thread] = ACTIONS(866), - [anon_sym_const] = ACTIONS(884), - [anon_sym_constexpr] = ACTIONS(884), - [anon_sym_volatile] = ACTIONS(884), - [anon_sym_restrict] = ACTIONS(884), - [anon_sym___restrict__] = ACTIONS(884), - [anon_sym__Atomic] = ACTIONS(884), - [anon_sym__Noreturn] = ACTIONS(884), - [anon_sym_noreturn] = 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(1015), - [anon_sym_else] = ACTIONS(846), - [anon_sym_switch] = ACTIONS(1018), - [anon_sym_case] = ACTIONS(846), - [anon_sym_default] = ACTIONS(846), - [anon_sym_while] = ACTIONS(1021), - [anon_sym_do] = ACTIONS(1024), - [anon_sym_for] = ACTIONS(1027), - [anon_sym_return] = ACTIONS(1030), - [anon_sym_break] = ACTIONS(1033), - [anon_sym_continue] = ACTIONS(1036), - [anon_sym_goto] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(926), - [anon_sym_PLUS_PLUS] = ACTIONS(926), - [anon_sym_sizeof] = ACTIONS(929), - [anon_sym_offsetof] = ACTIONS(932), - [anon_sym__Generic] = ACTIONS(935), - [anon_sym_asm] = ACTIONS(938), - [anon_sym___asm__] = ACTIONS(938), - [sym_number_literal] = ACTIONS(941), - [anon_sym_L_SQUOTE] = ACTIONS(944), - [anon_sym_u_SQUOTE] = ACTIONS(944), - [anon_sym_U_SQUOTE] = ACTIONS(944), - [anon_sym_u8_SQUOTE] = ACTIONS(944), - [anon_sym_SQUOTE] = ACTIONS(944), - [anon_sym_L_DQUOTE] = ACTIONS(947), - [anon_sym_u_DQUOTE] = ACTIONS(947), - [anon_sym_U_DQUOTE] = ACTIONS(947), - [anon_sym_u8_DQUOTE] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(947), - [sym_true] = ACTIONS(950), - [sym_false] = ACTIONS(950), - [anon_sym_NULL] = ACTIONS(953), - [anon_sym_nullptr] = ACTIONS(953), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym___extension__] = ACTIONS(193), + [anon_sym_typedef] = ACTIONS(195), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(880), + [anon_sym___clrcall] = ACTIONS(880), + [anon_sym___stdcall] = ACTIONS(880), + [anon_sym___fastcall] = ACTIONS(880), + [anon_sym___thiscall] = ACTIONS(880), + [anon_sym___vectorcall] = ACTIONS(880), + [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(201), + [anon_sym_else] = ACTIONS(880), + [anon_sym_switch] = ACTIONS(203), + [anon_sym_case] = ACTIONS(880), + [anon_sym_default] = ACTIONS(880), + [anon_sym_while] = ACTIONS(209), + [anon_sym_do] = ACTIONS(211), + [anon_sym_for] = ACTIONS(213), + [anon_sym_return] = ACTIONS(215), + [anon_sym_break] = ACTIONS(217), + [anon_sym_continue] = ACTIONS(219), + [anon_sym_goto] = ACTIONS(221), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [65] = { - [sym_declaration] = STATE(65), - [sym_type_definition] = STATE(65), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1384), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_compound_statement] = STATE(65), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(65), - [sym_labeled_statement] = STATE(65), - [sym_expression_statement] = STATE(65), - [sym_if_statement] = STATE(65), - [sym_switch_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_do_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_return_statement] = STATE(65), - [sym_break_statement] = STATE(65), - [sym_continue_statement] = STATE(65), - [sym_goto_statement] = STATE(65), - [sym__expression] = STATE(1098), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1873), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(413), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [aux_sym_case_statement_repeat1] = STATE(65), - [ts_builtin_sym_end] = ACTIONS(1013), - [sym_identifier] = ACTIONS(1042), - [aux_sym_preproc_include_token1] = ACTIONS(846), - [aux_sym_preproc_def_token1] = ACTIONS(846), - [aux_sym_preproc_if_token1] = ACTIONS(846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(846), - [sym_preproc_directive] = ACTIONS(846), - [anon_sym_LPAREN2] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_STAR] = ACTIONS(857), - [anon_sym_AMP] = ACTIONS(857), - [anon_sym_SEMI] = ACTIONS(1045), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(866), - [anon_sym___attribute__] = ACTIONS(869), - [anon_sym_LBRACK_LBRACK] = ACTIONS(872), - [anon_sym___declspec] = ACTIONS(875), - [anon_sym___cdecl] = ACTIONS(846), - [anon_sym___clrcall] = ACTIONS(846), - [anon_sym___stdcall] = ACTIONS(846), - [anon_sym___fastcall] = ACTIONS(846), - [anon_sym___thiscall] = ACTIONS(846), - [anon_sym___vectorcall] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_signed] = ACTIONS(881), - [anon_sym_unsigned] = ACTIONS(881), - [anon_sym_long] = ACTIONS(881), - [anon_sym_short] = ACTIONS(881), - [anon_sym_static] = ACTIONS(866), - [anon_sym_auto] = ACTIONS(866), - [anon_sym_register] = ACTIONS(866), - [anon_sym_inline] = ACTIONS(866), - [anon_sym_thread_local] = ACTIONS(866), - [anon_sym___thread] = ACTIONS(866), - [anon_sym_const] = ACTIONS(884), - [anon_sym_constexpr] = ACTIONS(884), - [anon_sym_volatile] = ACTIONS(884), - [anon_sym_restrict] = ACTIONS(884), - [anon_sym___restrict__] = ACTIONS(884), - [anon_sym__Atomic] = ACTIONS(884), - [anon_sym__Noreturn] = ACTIONS(884), - [anon_sym_noreturn] = 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(1054), - [anon_sym_else] = ACTIONS(846), - [anon_sym_switch] = ACTIONS(1057), - [anon_sym_case] = ACTIONS(846), - [anon_sym_default] = ACTIONS(846), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_for] = ACTIONS(1066), - [anon_sym_return] = ACTIONS(1069), - [anon_sym_break] = ACTIONS(1072), - [anon_sym_continue] = ACTIONS(1075), - [anon_sym_goto] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(926), - [anon_sym_PLUS_PLUS] = ACTIONS(926), - [anon_sym_sizeof] = ACTIONS(929), - [anon_sym_offsetof] = ACTIONS(932), - [anon_sym__Generic] = ACTIONS(935), - [anon_sym_asm] = ACTIONS(938), - [anon_sym___asm__] = ACTIONS(938), - [sym_number_literal] = ACTIONS(941), - [anon_sym_L_SQUOTE] = ACTIONS(944), - [anon_sym_u_SQUOTE] = ACTIONS(944), - [anon_sym_U_SQUOTE] = ACTIONS(944), - [anon_sym_u8_SQUOTE] = ACTIONS(944), - [anon_sym_SQUOTE] = ACTIONS(944), - [anon_sym_L_DQUOTE] = ACTIONS(947), - [anon_sym_u_DQUOTE] = ACTIONS(947), - [anon_sym_U_DQUOTE] = ACTIONS(947), - [anon_sym_u8_DQUOTE] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(947), - [sym_true] = ACTIONS(950), - [sym_false] = ACTIONS(950), - [anon_sym_NULL] = ACTIONS(953), - [anon_sym_nullptr] = ACTIONS(953), + [61] = { + [sym_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1537), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_compound_statement] = STATE(61), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(61), + [sym_labeled_statement] = STATE(61), + [sym_expression_statement] = STATE(61), + [sym_if_statement] = STATE(61), + [sym_switch_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_do_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_return_statement] = STATE(61), + [sym_break_statement] = STATE(61), + [sym_continue_statement] = STATE(61), + [sym_goto_statement] = STATE(61), + [sym__expression] = STATE(1240), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2024), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(560), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [aux_sym_case_statement_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(1012), + [aux_sym_preproc_include_token1] = ACTIONS(885), + [aux_sym_preproc_def_token1] = ACTIONS(885), + [aux_sym_preproc_if_token1] = ACTIONS(885), + [aux_sym_preproc_if_token2] = ACTIONS(885), + [aux_sym_preproc_ifdef_token1] = ACTIONS(885), + [aux_sym_preproc_ifdef_token2] = ACTIONS(885), + [aux_sym_preproc_else_token1] = ACTIONS(885), + [aux_sym_preproc_elif_token1] = ACTIONS(885), + [sym_preproc_directive] = ACTIONS(885), + [anon_sym_LPAREN2] = ACTIONS(887), + [anon_sym_BANG] = ACTIONS(890), + [anon_sym_TILDE] = ACTIONS(890), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(896), + [anon_sym_AMP] = ACTIONS(896), + [anon_sym_SEMI] = ACTIONS(1015), + [anon_sym___extension__] = ACTIONS(1018), + [anon_sym_typedef] = ACTIONS(1021), + [anon_sym_extern] = ACTIONS(908), + [anon_sym___attribute__] = ACTIONS(911), + [anon_sym_LBRACK_LBRACK] = ACTIONS(914), + [anon_sym___declspec] = ACTIONS(917), + [anon_sym___cdecl] = ACTIONS(885), + [anon_sym___clrcall] = ACTIONS(885), + [anon_sym___stdcall] = ACTIONS(885), + [anon_sym___fastcall] = ACTIONS(885), + [anon_sym___thiscall] = ACTIONS(885), + [anon_sym___vectorcall] = ACTIONS(885), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_signed] = ACTIONS(923), + [anon_sym_unsigned] = ACTIONS(923), + [anon_sym_long] = ACTIONS(923), + [anon_sym_short] = ACTIONS(923), + [anon_sym_static] = ACTIONS(908), + [anon_sym_auto] = ACTIONS(908), + [anon_sym_register] = ACTIONS(908), + [anon_sym_inline] = ACTIONS(908), + [anon_sym___inline] = ACTIONS(908), + [anon_sym___inline__] = ACTIONS(908), + [anon_sym___forceinline] = ACTIONS(908), + [anon_sym_thread_local] = ACTIONS(908), + [anon_sym___thread] = ACTIONS(908), + [anon_sym_const] = ACTIONS(926), + [anon_sym_constexpr] = ACTIONS(926), + [anon_sym_volatile] = ACTIONS(926), + [anon_sym_restrict] = ACTIONS(926), + [anon_sym___restrict__] = ACTIONS(926), + [anon_sym__Atomic] = ACTIONS(926), + [anon_sym__Noreturn] = ACTIONS(926), + [anon_sym_noreturn] = ACTIONS(926), + [sym_primitive_type] = ACTIONS(929), + [anon_sym_enum] = ACTIONS(932), + [anon_sym_struct] = ACTIONS(935), + [anon_sym_union] = ACTIONS(938), + [anon_sym_if] = ACTIONS(1027), + [anon_sym_else] = ACTIONS(885), + [anon_sym_switch] = ACTIONS(1030), + [anon_sym_case] = ACTIONS(885), + [anon_sym_default] = ACTIONS(885), + [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(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(971), + [anon_sym___alignof__] = ACTIONS(974), + [anon_sym___alignof] = ACTIONS(974), + [anon_sym__alignof] = ACTIONS(974), + [anon_sym_alignof] = ACTIONS(974), + [anon_sym__Alignof] = ACTIONS(974), + [anon_sym_offsetof] = ACTIONS(977), + [anon_sym___builtin_va_arg] = ACTIONS(980), + [anon_sym__Generic] = ACTIONS(983), + [anon_sym_asm] = ACTIONS(986), + [anon_sym___asm__] = ACTIONS(986), + [sym_number_literal] = ACTIONS(989), + [anon_sym_L_SQUOTE] = ACTIONS(992), + [anon_sym_u_SQUOTE] = ACTIONS(992), + [anon_sym_U_SQUOTE] = ACTIONS(992), + [anon_sym_u8_SQUOTE] = ACTIONS(992), + [anon_sym_SQUOTE] = ACTIONS(992), + [anon_sym_L_DQUOTE] = ACTIONS(995), + [anon_sym_u_DQUOTE] = ACTIONS(995), + [anon_sym_U_DQUOTE] = ACTIONS(995), + [anon_sym_u8_DQUOTE] = ACTIONS(995), + [anon_sym_DQUOTE] = ACTIONS(995), + [sym_true] = ACTIONS(998), + [sym_false] = ACTIONS(998), + [anon_sym_NULL] = ACTIONS(1001), + [anon_sym_nullptr] = ACTIONS(1001), [sym_comment] = ACTIONS(3), }, - [66] = { - [sym_declaration] = STATE(74), - [sym_type_definition] = STATE(74), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1388), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_compound_statement] = STATE(74), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(74), - [sym_labeled_statement] = STATE(74), - [sym_expression_statement] = STATE(74), - [sym_if_statement] = STATE(74), - [sym_switch_statement] = STATE(74), - [sym_while_statement] = STATE(74), - [sym_do_statement] = STATE(74), - [sym_for_statement] = STATE(74), - [sym_return_statement] = STATE(74), - [sym_break_statement] = STATE(74), - [sym_continue_statement] = STATE(74), - [sym_goto_statement] = STATE(74), - [sym__expression] = STATE(1112), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [aux_sym_case_statement_repeat1] = STATE(74), - [sym_identifier] = ACTIONS(1081), - [aux_sym_preproc_include_token1] = ACTIONS(841), - [aux_sym_preproc_def_token1] = ACTIONS(841), - [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), - [sym_preproc_directive] = ACTIONS(841), + [62] = { + [sym_declaration] = STATE(63), + [sym_type_definition] = STATE(63), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1537), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_compound_statement] = STATE(63), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(63), + [sym_labeled_statement] = STATE(63), + [sym_expression_statement] = STATE(63), + [sym_if_statement] = STATE(63), + [sym_switch_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_do_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_return_statement] = STATE(63), + [sym_break_statement] = STATE(63), + [sym_continue_statement] = STATE(63), + [sym_goto_statement] = STATE(63), + [sym__expression] = STATE(1240), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2024), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(560), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [aux_sym_case_statement_repeat1] = STATE(63), + [sym_identifier] = ACTIONS(1010), + [aux_sym_preproc_include_token1] = ACTIONS(1006), + [aux_sym_preproc_def_token1] = ACTIONS(1006), + [aux_sym_preproc_if_token1] = ACTIONS(1006), + [aux_sym_preproc_if_token2] = ACTIONS(1006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1006), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1006), + [aux_sym_preproc_else_token1] = ACTIONS(1006), + [aux_sym_preproc_elif_token1] = ACTIONS(1006), + [sym_preproc_directive] = ACTIONS(1006), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24898,140 +25772,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(456), - [anon_sym_typedef] = ACTIONS(458), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [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(462), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(464), - [anon_sym_else] = ACTIONS(841), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(841), - [anon_sym_default] = ACTIONS(841), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym___extension__] = ACTIONS(193), + [anon_sym_typedef] = ACTIONS(195), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(1006), + [anon_sym___clrcall] = ACTIONS(1006), + [anon_sym___stdcall] = ACTIONS(1006), + [anon_sym___fastcall] = ACTIONS(1006), + [anon_sym___thiscall] = ACTIONS(1006), + [anon_sym___vectorcall] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(201), + [anon_sym_else] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(203), + [anon_sym_case] = ACTIONS(1006), + [anon_sym_default] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(209), + [anon_sym_do] = ACTIONS(211), + [anon_sym_for] = ACTIONS(213), + [anon_sym_return] = ACTIONS(215), + [anon_sym_break] = ACTIONS(217), + [anon_sym_continue] = ACTIONS(219), + [anon_sym_goto] = ACTIONS(221), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [67] = { - [sym_declaration] = STATE(70), - [sym_type_definition] = STATE(70), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1382), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_compound_statement] = STATE(70), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(70), - [sym_labeled_statement] = STATE(70), - [sym_expression_statement] = STATE(70), - [sym_if_statement] = STATE(70), - [sym_switch_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_do_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_return_statement] = STATE(70), - [sym_break_statement] = STATE(70), - [sym_continue_statement] = STATE(70), - [sym_goto_statement] = STATE(70), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [aux_sym_case_statement_repeat1] = STATE(70), - [sym_identifier] = ACTIONS(1083), - [aux_sym_preproc_include_token1] = ACTIONS(958), - [aux_sym_preproc_def_token1] = ACTIONS(958), - [aux_sym_preproc_if_token1] = ACTIONS(958), - [aux_sym_preproc_ifdef_token1] = ACTIONS(958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(958), - [sym_preproc_directive] = ACTIONS(958), + [63] = { + [sym_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1537), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_compound_statement] = STATE(61), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(61), + [sym_labeled_statement] = STATE(61), + [sym_expression_statement] = STATE(61), + [sym_if_statement] = STATE(61), + [sym_switch_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_do_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_return_statement] = STATE(61), + [sym_break_statement] = STATE(61), + [sym_continue_statement] = STATE(61), + [sym_goto_statement] = STATE(61), + [sym__expression] = STATE(1240), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2024), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(560), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [aux_sym_case_statement_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(1010), + [aux_sym_preproc_include_token1] = ACTIONS(1008), + [aux_sym_preproc_def_token1] = ACTIONS(1008), + [aux_sym_preproc_if_token1] = ACTIONS(1008), + [aux_sym_preproc_if_token2] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), + [aux_sym_preproc_else_token1] = ACTIONS(1008), + [aux_sym_preproc_elif_token1] = ACTIONS(1008), + [sym_preproc_directive] = ACTIONS(1008), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25039,142 +25928,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(958), - [anon_sym___clrcall] = ACTIONS(958), - [anon_sym___stdcall] = ACTIONS(958), - [anon_sym___fastcall] = ACTIONS(958), - [anon_sym___thiscall] = ACTIONS(958), - [anon_sym___vectorcall] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(1085), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(508), - [anon_sym_else] = ACTIONS(958), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(958), - [anon_sym_default] = ACTIONS(958), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym___extension__] = ACTIONS(193), + [anon_sym_typedef] = ACTIONS(195), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(1008), + [anon_sym___clrcall] = ACTIONS(1008), + [anon_sym___stdcall] = ACTIONS(1008), + [anon_sym___fastcall] = ACTIONS(1008), + [anon_sym___thiscall] = ACTIONS(1008), + [anon_sym___vectorcall] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(201), + [anon_sym_else] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(203), + [anon_sym_case] = ACTIONS(1008), + [anon_sym_default] = ACTIONS(1008), + [anon_sym_while] = ACTIONS(209), + [anon_sym_do] = ACTIONS(211), + [anon_sym_for] = ACTIONS(213), + [anon_sym_return] = ACTIONS(215), + [anon_sym_break] = ACTIONS(217), + [anon_sym_continue] = ACTIONS(219), + [anon_sym_goto] = ACTIONS(221), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [68] = { - [sym_declaration] = STATE(74), - [sym_type_definition] = STATE(74), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1388), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_compound_statement] = STATE(74), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(74), - [sym_labeled_statement] = STATE(74), - [sym_expression_statement] = STATE(74), - [sym_if_statement] = STATE(74), - [sym_switch_statement] = STATE(74), - [sym_while_statement] = STATE(74), - [sym_do_statement] = STATE(74), - [sym_for_statement] = STATE(74), - [sym_return_statement] = STATE(74), - [sym_break_statement] = STATE(74), - [sym_continue_statement] = STATE(74), - [sym_goto_statement] = STATE(74), - [sym__expression] = STATE(1112), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [aux_sym_case_statement_repeat1] = STATE(74), - [sym_identifier] = ACTIONS(1081), - [aux_sym_preproc_include_token1] = ACTIONS(839), - [aux_sym_preproc_def_token1] = ACTIONS(839), - [aux_sym_preproc_if_token1] = ACTIONS(839), - [aux_sym_preproc_if_token2] = ACTIONS(839), - [aux_sym_preproc_ifdef_token1] = ACTIONS(839), - [aux_sym_preproc_ifdef_token2] = ACTIONS(839), - [sym_preproc_directive] = ACTIONS(839), + [64] = { + [sym_declaration] = STATE(76), + [sym_type_definition] = STATE(76), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1540), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(76), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_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(1243), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2191), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(539), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [aux_sym_case_statement_repeat1] = STATE(76), + [sym_identifier] = ACTIONS(1054), + [aux_sym_preproc_include_token1] = ACTIONS(1008), + [aux_sym_preproc_def_token1] = ACTIONS(1008), + [aux_sym_preproc_if_token1] = ACTIONS(1008), + [aux_sym_preproc_if_token2] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), + [sym_preproc_directive] = ACTIONS(1008), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25182,141 +26082,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(456), - [anon_sym_typedef] = ACTIONS(458), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(839), - [anon_sym___clrcall] = ACTIONS(839), - [anon_sym___stdcall] = ACTIONS(839), - [anon_sym___fastcall] = ACTIONS(839), - [anon_sym___thiscall] = ACTIONS(839), - [anon_sym___vectorcall] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(462), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(464), - [anon_sym_else] = ACTIONS(839), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(839), - [anon_sym_default] = ACTIONS(839), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(604), + [anon_sym___extension__] = ACTIONS(606), + [anon_sym_typedef] = ACTIONS(608), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(1008), + [anon_sym___clrcall] = ACTIONS(1008), + [anon_sym___stdcall] = ACTIONS(1008), + [anon_sym___fastcall] = ACTIONS(1008), + [anon_sym___thiscall] = ACTIONS(1008), + [anon_sym___vectorcall] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(614), + [anon_sym_else] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(616), + [anon_sym_case] = ACTIONS(1008), + [anon_sym_default] = ACTIONS(1008), + [anon_sym_while] = ACTIONS(622), + [anon_sym_do] = ACTIONS(624), + [anon_sym_for] = ACTIONS(626), + [anon_sym_return] = ACTIONS(628), + [anon_sym_break] = ACTIONS(630), + [anon_sym_continue] = ACTIONS(632), + [anon_sym_goto] = ACTIONS(634), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [69] = { - [sym_declaration] = STATE(65), - [sym_type_definition] = STATE(65), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1384), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_compound_statement] = STATE(65), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(65), - [sym_labeled_statement] = STATE(65), - [sym_expression_statement] = STATE(65), - [sym_if_statement] = STATE(65), - [sym_switch_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_do_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_return_statement] = STATE(65), - [sym_break_statement] = STATE(65), - [sym_continue_statement] = STATE(65), - [sym_goto_statement] = STATE(65), - [sym__expression] = STATE(1098), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1873), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(413), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [aux_sym_case_statement_repeat1] = STATE(65), - [ts_builtin_sym_end] = ACTIONS(1087), - [sym_identifier] = ACTIONS(1089), - [aux_sym_preproc_include_token1] = ACTIONS(841), - [aux_sym_preproc_def_token1] = ACTIONS(841), - [aux_sym_preproc_if_token1] = ACTIONS(841), - [aux_sym_preproc_ifdef_token1] = ACTIONS(841), - [aux_sym_preproc_ifdef_token2] = ACTIONS(841), - [sym_preproc_directive] = ACTIONS(841), + [65] = { + [sym_declaration] = STATE(77), + [sym_type_definition] = STATE(77), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1512), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_compound_statement] = STATE(77), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(77), + [sym_labeled_statement] = STATE(77), + [sym_expression_statement] = STATE(77), + [sym_if_statement] = STATE(77), + [sym_switch_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(1251), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2030), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(594), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [aux_sym_case_statement_repeat1] = STATE(77), + [ts_builtin_sym_end] = ACTIONS(1056), + [sym_identifier] = ACTIONS(1058), + [aux_sym_preproc_include_token1] = ACTIONS(1006), + [aux_sym_preproc_def_token1] = ACTIONS(1006), + [aux_sym_preproc_if_token1] = ACTIONS(1006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1006), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1006), + [sym_preproc_directive] = ACTIONS(1006), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25324,140 +26236,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_typedef] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [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(39), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(841), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(841), - [anon_sym_default] = ACTIONS(841), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym___extension__] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(1006), + [anon_sym___clrcall] = ACTIONS(1006), + [anon_sym___stdcall] = ACTIONS(1006), + [anon_sym___fastcall] = ACTIONS(1006), + [anon_sym___thiscall] = ACTIONS(1006), + [anon_sym___vectorcall] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_else] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1006), + [anon_sym_default] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [70] = { - [sym_declaration] = STATE(64), - [sym_type_definition] = STATE(64), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1382), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_compound_statement] = STATE(64), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(64), - [sym_labeled_statement] = STATE(64), - [sym_expression_statement] = STATE(64), - [sym_if_statement] = STATE(64), - [sym_switch_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_do_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_return_statement] = STATE(64), - [sym_break_statement] = STATE(64), - [sym_continue_statement] = STATE(64), - [sym_goto_statement] = STATE(64), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [aux_sym_case_statement_repeat1] = STATE(64), - [sym_identifier] = ACTIONS(1083), - [aux_sym_preproc_include_token1] = ACTIONS(841), - [aux_sym_preproc_def_token1] = ACTIONS(841), - [aux_sym_preproc_if_token1] = ACTIONS(841), - [aux_sym_preproc_ifdef_token1] = ACTIONS(841), - [aux_sym_preproc_ifdef_token2] = ACTIONS(841), - [sym_preproc_directive] = ACTIONS(841), + [66] = { + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1524), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [aux_sym_case_statement_repeat1] = STATE(69), + [sym_identifier] = ACTIONS(1062), + [aux_sym_preproc_include_token1] = ACTIONS(1004), + [aux_sym_preproc_def_token1] = ACTIONS(1004), + [aux_sym_preproc_if_token1] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), + [sym_preproc_directive] = ACTIONS(1004), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25465,94 +26389,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [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(504), - [anon_sym_RBRACE] = ACTIONS(1087), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(508), - [anon_sym_else] = ACTIONS(841), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(841), - [anon_sym_default] = ACTIONS(841), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym___extension__] = ACTIONS(544), + [anon_sym_typedef] = ACTIONS(546), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(1004), + [anon_sym___clrcall] = ACTIONS(1004), + [anon_sym___stdcall] = ACTIONS(1004), + [anon_sym___fastcall] = ACTIONS(1004), + [anon_sym___thiscall] = ACTIONS(1004), + [anon_sym___vectorcall] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_RBRACE] = ACTIONS(1064), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(554), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(1004), + [anon_sym_default] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [71] = { + [67] = { [sym_declaration] = STATE(64), [sym_type_definition] = STATE(64), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1382), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1540), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), [sym_compound_statement] = STATE(64), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), [sym_attributed_statement] = STATE(64), [sym_labeled_statement] = STATE(64), [sym_expression_statement] = STATE(64), @@ -25565,41 +26499,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(64), [sym_continue_statement] = STATE(64), [sym_goto_statement] = STATE(64), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2191), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(539), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), [aux_sym_case_statement_repeat1] = STATE(64), - [sym_identifier] = ACTIONS(1083), - [aux_sym_preproc_include_token1] = ACTIONS(839), - [aux_sym_preproc_def_token1] = ACTIONS(839), - [aux_sym_preproc_if_token1] = ACTIONS(839), - [aux_sym_preproc_ifdef_token1] = ACTIONS(839), - [aux_sym_preproc_ifdef_token2] = ACTIONS(839), - [sym_preproc_directive] = ACTIONS(839), + [sym_identifier] = ACTIONS(1054), + [aux_sym_preproc_include_token1] = ACTIONS(1006), + [aux_sym_preproc_def_token1] = ACTIONS(1006), + [aux_sym_preproc_if_token1] = ACTIONS(1006), + [aux_sym_preproc_if_token2] = ACTIONS(1006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1006), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1006), + [sym_preproc_directive] = ACTIONS(1006), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25607,142 +26544,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(839), - [anon_sym___clrcall] = ACTIONS(839), - [anon_sym___stdcall] = ACTIONS(839), - [anon_sym___fastcall] = ACTIONS(839), - [anon_sym___thiscall] = ACTIONS(839), - [anon_sym___vectorcall] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(1093), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(508), - [anon_sym_else] = ACTIONS(839), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(839), - [anon_sym_default] = ACTIONS(839), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(604), + [anon_sym___extension__] = ACTIONS(606), + [anon_sym_typedef] = ACTIONS(608), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(1006), + [anon_sym___clrcall] = ACTIONS(1006), + [anon_sym___stdcall] = ACTIONS(1006), + [anon_sym___fastcall] = ACTIONS(1006), + [anon_sym___thiscall] = ACTIONS(1006), + [anon_sym___vectorcall] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(614), + [anon_sym_else] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(616), + [anon_sym_case] = ACTIONS(1006), + [anon_sym_default] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(622), + [anon_sym_do] = ACTIONS(624), + [anon_sym_for] = ACTIONS(626), + [anon_sym_return] = ACTIONS(628), + [anon_sym_break] = ACTIONS(630), + [anon_sym_continue] = ACTIONS(632), + [anon_sym_goto] = ACTIONS(634), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [72] = { - [sym_declaration] = STATE(68), - [sym_type_definition] = STATE(68), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1388), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_compound_statement] = STATE(68), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(68), - [sym_labeled_statement] = STATE(68), - [sym_expression_statement] = STATE(68), - [sym_if_statement] = STATE(68), - [sym_switch_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_do_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_return_statement] = STATE(68), - [sym_break_statement] = STATE(68), - [sym_continue_statement] = STATE(68), - [sym_goto_statement] = STATE(68), - [sym__expression] = STATE(1112), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [aux_sym_case_statement_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(1081), - [aux_sym_preproc_include_token1] = ACTIONS(956), - [aux_sym_preproc_def_token1] = ACTIONS(956), - [aux_sym_preproc_if_token1] = ACTIONS(956), - [aux_sym_preproc_if_token2] = ACTIONS(956), - [aux_sym_preproc_ifdef_token1] = ACTIONS(956), - [aux_sym_preproc_ifdef_token2] = ACTIONS(956), - [sym_preproc_directive] = ACTIONS(956), + [68] = { + [sym_declaration] = STATE(71), + [sym_type_definition] = STATE(71), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1524), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_compound_statement] = STATE(71), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(71), + [sym_labeled_statement] = STATE(71), + [sym_expression_statement] = STATE(71), + [sym_if_statement] = STATE(71), + [sym_switch_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_do_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_return_statement] = STATE(71), + [sym_break_statement] = STATE(71), + [sym_continue_statement] = STATE(71), + [sym_goto_statement] = STATE(71), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [aux_sym_case_statement_repeat1] = STATE(71), + [sym_identifier] = ACTIONS(1062), + [aux_sym_preproc_include_token1] = ACTIONS(1006), + [aux_sym_preproc_def_token1] = ACTIONS(1006), + [aux_sym_preproc_if_token1] = ACTIONS(1006), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1006), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1006), + [sym_preproc_directive] = ACTIONS(1006), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25750,93 +26697,258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(456), - [anon_sym_typedef] = ACTIONS(458), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(956), - [anon_sym___clrcall] = ACTIONS(956), - [anon_sym___stdcall] = ACTIONS(956), - [anon_sym___fastcall] = ACTIONS(956), - [anon_sym___thiscall] = ACTIONS(956), - [anon_sym___vectorcall] = ACTIONS(956), - [anon_sym_LBRACE] = ACTIONS(462), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(464), - [anon_sym_else] = ACTIONS(956), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(956), - [anon_sym_default] = ACTIONS(956), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym___extension__] = ACTIONS(544), + [anon_sym_typedef] = ACTIONS(546), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(1006), + [anon_sym___clrcall] = ACTIONS(1006), + [anon_sym___stdcall] = ACTIONS(1006), + [anon_sym___fastcall] = ACTIONS(1006), + [anon_sym___thiscall] = ACTIONS(1006), + [anon_sym___vectorcall] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(554), + [anon_sym_else] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(1006), + [anon_sym_default] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [73] = { + [69] = { + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1524), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [aux_sym_case_statement_repeat1] = STATE(69), + [sym_identifier] = ACTIONS(1066), + [aux_sym_preproc_include_token1] = ACTIONS(885), + [aux_sym_preproc_def_token1] = ACTIONS(885), + [aux_sym_preproc_if_token1] = ACTIONS(885), + [aux_sym_preproc_ifdef_token1] = ACTIONS(885), + [aux_sym_preproc_ifdef_token2] = ACTIONS(885), + [sym_preproc_directive] = ACTIONS(885), + [anon_sym_LPAREN2] = ACTIONS(887), + [anon_sym_BANG] = ACTIONS(890), + [anon_sym_TILDE] = ACTIONS(890), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(896), + [anon_sym_AMP] = ACTIONS(896), + [anon_sym_SEMI] = ACTIONS(1069), + [anon_sym___extension__] = ACTIONS(1072), + [anon_sym_typedef] = ACTIONS(1075), + [anon_sym_extern] = ACTIONS(908), + [anon_sym___attribute__] = ACTIONS(911), + [anon_sym_LBRACK_LBRACK] = ACTIONS(914), + [anon_sym___declspec] = ACTIONS(917), + [anon_sym___cdecl] = ACTIONS(885), + [anon_sym___clrcall] = ACTIONS(885), + [anon_sym___stdcall] = ACTIONS(885), + [anon_sym___fastcall] = ACTIONS(885), + [anon_sym___thiscall] = ACTIONS(885), + [anon_sym___vectorcall] = ACTIONS(885), + [anon_sym_LBRACE] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1081), + [anon_sym_signed] = ACTIONS(923), + [anon_sym_unsigned] = ACTIONS(923), + [anon_sym_long] = ACTIONS(923), + [anon_sym_short] = ACTIONS(923), + [anon_sym_static] = ACTIONS(908), + [anon_sym_auto] = ACTIONS(908), + [anon_sym_register] = ACTIONS(908), + [anon_sym_inline] = ACTIONS(908), + [anon_sym___inline] = ACTIONS(908), + [anon_sym___inline__] = ACTIONS(908), + [anon_sym___forceinline] = ACTIONS(908), + [anon_sym_thread_local] = ACTIONS(908), + [anon_sym___thread] = ACTIONS(908), + [anon_sym_const] = ACTIONS(926), + [anon_sym_constexpr] = ACTIONS(926), + [anon_sym_volatile] = ACTIONS(926), + [anon_sym_restrict] = ACTIONS(926), + [anon_sym___restrict__] = ACTIONS(926), + [anon_sym__Atomic] = ACTIONS(926), + [anon_sym__Noreturn] = ACTIONS(926), + [anon_sym_noreturn] = ACTIONS(926), + [sym_primitive_type] = ACTIONS(929), + [anon_sym_enum] = ACTIONS(932), + [anon_sym_struct] = ACTIONS(935), + [anon_sym_union] = ACTIONS(938), + [anon_sym_if] = ACTIONS(1083), + [anon_sym_else] = ACTIONS(885), + [anon_sym_switch] = ACTIONS(1086), + [anon_sym_case] = ACTIONS(885), + [anon_sym_default] = ACTIONS(885), + [anon_sym_while] = ACTIONS(1089), + [anon_sym_do] = ACTIONS(1092), + [anon_sym_for] = ACTIONS(1095), + [anon_sym_return] = ACTIONS(1098), + [anon_sym_break] = ACTIONS(1101), + [anon_sym_continue] = ACTIONS(1104), + [anon_sym_goto] = ACTIONS(1107), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(971), + [anon_sym___alignof__] = ACTIONS(974), + [anon_sym___alignof] = ACTIONS(974), + [anon_sym__alignof] = ACTIONS(974), + [anon_sym_alignof] = ACTIONS(974), + [anon_sym__Alignof] = ACTIONS(974), + [anon_sym_offsetof] = ACTIONS(977), + [anon_sym___builtin_va_arg] = ACTIONS(980), + [anon_sym__Generic] = ACTIONS(983), + [anon_sym_asm] = ACTIONS(986), + [anon_sym___asm__] = ACTIONS(986), + [sym_number_literal] = ACTIONS(989), + [anon_sym_L_SQUOTE] = ACTIONS(992), + [anon_sym_u_SQUOTE] = ACTIONS(992), + [anon_sym_U_SQUOTE] = ACTIONS(992), + [anon_sym_u8_SQUOTE] = ACTIONS(992), + [anon_sym_SQUOTE] = ACTIONS(992), + [anon_sym_L_DQUOTE] = ACTIONS(995), + [anon_sym_u_DQUOTE] = ACTIONS(995), + [anon_sym_U_DQUOTE] = ACTIONS(995), + [anon_sym_u8_DQUOTE] = ACTIONS(995), + [anon_sym_DQUOTE] = ACTIONS(995), + [sym_true] = ACTIONS(998), + [sym_false] = ACTIONS(998), + [anon_sym_NULL] = ACTIONS(1001), + [anon_sym_nullptr] = ACTIONS(1001), + [sym_comment] = ACTIONS(3), + }, + [70] = { [sym_declaration] = STATE(66), [sym_type_definition] = STATE(66), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1388), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1524), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), [sym_compound_statement] = STATE(66), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), [sym_attributed_statement] = STATE(66), [sym_labeled_statement] = STATE(66), [sym_expression_statement] = STATE(66), @@ -25849,42 +26961,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(66), [sym_continue_statement] = STATE(66), [sym_goto_statement] = STATE(66), - [sym__expression] = STATE(1112), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), [aux_sym_case_statement_repeat1] = STATE(66), - [sym_identifier] = ACTIONS(1081), - [aux_sym_preproc_include_token1] = ACTIONS(958), - [aux_sym_preproc_def_token1] = ACTIONS(958), - [aux_sym_preproc_if_token1] = ACTIONS(958), - [aux_sym_preproc_if_token2] = ACTIONS(958), - [aux_sym_preproc_ifdef_token1] = ACTIONS(958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(958), - [sym_preproc_directive] = ACTIONS(958), + [sym_identifier] = ACTIONS(1062), + [aux_sym_preproc_include_token1] = ACTIONS(880), + [aux_sym_preproc_def_token1] = ACTIONS(880), + [aux_sym_preproc_if_token1] = ACTIONS(880), + [aux_sym_preproc_ifdef_token1] = ACTIONS(880), + [aux_sym_preproc_ifdef_token2] = ACTIONS(880), + [sym_preproc_directive] = ACTIONS(880), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25892,235 +27005,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(456), - [anon_sym_typedef] = ACTIONS(458), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(958), - [anon_sym___clrcall] = ACTIONS(958), - [anon_sym___stdcall] = ACTIONS(958), - [anon_sym___fastcall] = ACTIONS(958), - [anon_sym___thiscall] = ACTIONS(958), - [anon_sym___vectorcall] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(462), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(464), - [anon_sym_else] = ACTIONS(958), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(958), - [anon_sym_default] = ACTIONS(958), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [74] = { - [sym_declaration] = STATE(74), - [sym_type_definition] = STATE(74), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1388), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_compound_statement] = STATE(74), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(74), - [sym_labeled_statement] = STATE(74), - [sym_expression_statement] = STATE(74), - [sym_if_statement] = STATE(74), - [sym_switch_statement] = STATE(74), - [sym_while_statement] = STATE(74), - [sym_do_statement] = STATE(74), - [sym_for_statement] = STATE(74), - [sym_return_statement] = STATE(74), - [sym_break_statement] = STATE(74), - [sym_continue_statement] = STATE(74), - [sym_goto_statement] = STATE(74), - [sym__expression] = STATE(1112), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [aux_sym_case_statement_repeat1] = STATE(74), - [sym_identifier] = ACTIONS(1095), - [aux_sym_preproc_include_token1] = ACTIONS(846), - [aux_sym_preproc_def_token1] = ACTIONS(846), - [aux_sym_preproc_if_token1] = ACTIONS(846), - [aux_sym_preproc_if_token2] = ACTIONS(846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(846), - [sym_preproc_directive] = ACTIONS(846), - [anon_sym_LPAREN2] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_STAR] = ACTIONS(857), - [anon_sym_AMP] = ACTIONS(857), - [anon_sym_SEMI] = ACTIONS(1098), - [anon_sym_typedef] = ACTIONS(1101), - [anon_sym_extern] = ACTIONS(866), - [anon_sym___attribute__] = ACTIONS(869), - [anon_sym_LBRACK_LBRACK] = ACTIONS(872), - [anon_sym___declspec] = ACTIONS(875), - [anon_sym___cdecl] = ACTIONS(846), - [anon_sym___clrcall] = ACTIONS(846), - [anon_sym___stdcall] = ACTIONS(846), - [anon_sym___fastcall] = ACTIONS(846), - [anon_sym___thiscall] = ACTIONS(846), - [anon_sym___vectorcall] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_signed] = ACTIONS(881), - [anon_sym_unsigned] = ACTIONS(881), - [anon_sym_long] = ACTIONS(881), - [anon_sym_short] = ACTIONS(881), - [anon_sym_static] = ACTIONS(866), - [anon_sym_auto] = ACTIONS(866), - [anon_sym_register] = ACTIONS(866), - [anon_sym_inline] = ACTIONS(866), - [anon_sym_thread_local] = ACTIONS(866), - [anon_sym___thread] = ACTIONS(866), - [anon_sym_const] = ACTIONS(884), - [anon_sym_constexpr] = ACTIONS(884), - [anon_sym_volatile] = ACTIONS(884), - [anon_sym_restrict] = ACTIONS(884), - [anon_sym___restrict__] = ACTIONS(884), - [anon_sym__Atomic] = ACTIONS(884), - [anon_sym__Noreturn] = ACTIONS(884), - [anon_sym_noreturn] = 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(1107), - [anon_sym_else] = ACTIONS(846), - [anon_sym_switch] = ACTIONS(1110), - [anon_sym_case] = ACTIONS(846), - [anon_sym_default] = ACTIONS(846), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1116), - [anon_sym_for] = ACTIONS(1119), - [anon_sym_return] = ACTIONS(1122), - [anon_sym_break] = ACTIONS(1125), - [anon_sym_continue] = ACTIONS(1128), - [anon_sym_goto] = ACTIONS(1131), - [anon_sym_DASH_DASH] = ACTIONS(926), - [anon_sym_PLUS_PLUS] = ACTIONS(926), - [anon_sym_sizeof] = ACTIONS(929), - [anon_sym_offsetof] = ACTIONS(932), - [anon_sym__Generic] = ACTIONS(935), - [anon_sym_asm] = ACTIONS(938), - [anon_sym___asm__] = ACTIONS(938), - [sym_number_literal] = ACTIONS(941), - [anon_sym_L_SQUOTE] = ACTIONS(944), - [anon_sym_u_SQUOTE] = ACTIONS(944), - [anon_sym_U_SQUOTE] = ACTIONS(944), - [anon_sym_u8_SQUOTE] = ACTIONS(944), - [anon_sym_SQUOTE] = ACTIONS(944), - [anon_sym_L_DQUOTE] = ACTIONS(947), - [anon_sym_u_DQUOTE] = ACTIONS(947), - [anon_sym_U_DQUOTE] = ACTIONS(947), - [anon_sym_u8_DQUOTE] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(947), - [sym_true] = ACTIONS(950), - [sym_false] = ACTIONS(950), - [anon_sym_NULL] = ACTIONS(953), - [anon_sym_nullptr] = ACTIONS(953), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym___extension__] = ACTIONS(544), + [anon_sym_typedef] = ACTIONS(546), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(880), + [anon_sym___clrcall] = ACTIONS(880), + [anon_sym___stdcall] = ACTIONS(880), + [anon_sym___fastcall] = ACTIONS(880), + [anon_sym___thiscall] = ACTIONS(880), + [anon_sym___vectorcall] = ACTIONS(880), + [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_RBRACE] = ACTIONS(1110), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(554), + [anon_sym_else] = ACTIONS(880), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(880), + [anon_sym_default] = ACTIONS(880), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [75] = { + [71] = { [sym_declaration] = STATE(69), [sym_type_definition] = STATE(69), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1384), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1524), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), [sym_compound_statement] = STATE(69), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), [sym_attributed_statement] = STATE(69), [sym_labeled_statement] = STATE(69), [sym_expression_statement] = STATE(69), @@ -26133,42 +27115,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(69), [sym_continue_statement] = STATE(69), [sym_goto_statement] = STATE(69), - [sym__expression] = STATE(1098), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1873), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(413), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), [aux_sym_case_statement_repeat1] = STATE(69), - [ts_builtin_sym_end] = ACTIONS(1085), - [sym_identifier] = ACTIONS(1089), - [aux_sym_preproc_include_token1] = ACTIONS(958), - [aux_sym_preproc_def_token1] = ACTIONS(958), - [aux_sym_preproc_if_token1] = ACTIONS(958), - [aux_sym_preproc_ifdef_token1] = ACTIONS(958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(958), - [sym_preproc_directive] = ACTIONS(958), + [sym_identifier] = ACTIONS(1062), + [aux_sym_preproc_include_token1] = ACTIONS(1008), + [aux_sym_preproc_def_token1] = ACTIONS(1008), + [aux_sym_preproc_if_token1] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), + [sym_preproc_directive] = ACTIONS(1008), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26176,141 +27159,616 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_typedef] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(958), - [anon_sym___clrcall] = ACTIONS(958), - [anon_sym___stdcall] = ACTIONS(958), - [anon_sym___fastcall] = ACTIONS(958), - [anon_sym___thiscall] = ACTIONS(958), - [anon_sym___vectorcall] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(958), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(958), - [anon_sym_default] = ACTIONS(958), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym___extension__] = ACTIONS(544), + [anon_sym_typedef] = ACTIONS(546), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(1008), + [anon_sym___clrcall] = ACTIONS(1008), + [anon_sym___stdcall] = ACTIONS(1008), + [anon_sym___fastcall] = ACTIONS(1008), + [anon_sym___thiscall] = ACTIONS(1008), + [anon_sym___vectorcall] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_RBRACE] = ACTIONS(1112), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(554), + [anon_sym_else] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(1008), + [anon_sym_default] = ACTIONS(1008), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [76] = { - [sym_declaration] = STATE(78), - [sym_type_definition] = STATE(78), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1384), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_compound_statement] = STATE(78), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(78), - [sym_labeled_statement] = STATE(78), - [sym_expression_statement] = STATE(78), - [sym_if_statement] = STATE(78), - [sym_switch_statement] = STATE(78), - [sym_while_statement] = STATE(78), - [sym_do_statement] = STATE(78), - [sym_for_statement] = STATE(78), - [sym_return_statement] = STATE(78), - [sym_break_statement] = STATE(78), - [sym_continue_statement] = STATE(78), - [sym_goto_statement] = STATE(78), - [sym__expression] = STATE(1098), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1873), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(413), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [aux_sym_case_statement_repeat1] = STATE(78), - [ts_builtin_sym_end] = ACTIONS(1134), - [sym_identifier] = ACTIONS(1089), - [aux_sym_preproc_include_token1] = ACTIONS(956), - [aux_sym_preproc_def_token1] = ACTIONS(956), - [aux_sym_preproc_if_token1] = ACTIONS(956), - [aux_sym_preproc_ifdef_token1] = ACTIONS(956), - [aux_sym_preproc_ifdef_token2] = ACTIONS(956), - [sym_preproc_directive] = ACTIONS(956), + [72] = { + [sym_declaration] = STATE(75), + [sym_type_definition] = STATE(75), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1540), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_compound_statement] = STATE(75), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(75), + [sym_labeled_statement] = STATE(75), + [sym_expression_statement] = STATE(75), + [sym_if_statement] = STATE(75), + [sym_switch_statement] = STATE(75), + [sym_while_statement] = STATE(75), + [sym_do_statement] = STATE(75), + [sym_for_statement] = STATE(75), + [sym_return_statement] = STATE(75), + [sym_break_statement] = STATE(75), + [sym_continue_statement] = STATE(75), + [sym_goto_statement] = STATE(75), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2191), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(539), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [aux_sym_case_statement_repeat1] = STATE(75), + [sym_identifier] = ACTIONS(1054), + [aux_sym_preproc_include_token1] = ACTIONS(880), + [aux_sym_preproc_def_token1] = ACTIONS(880), + [aux_sym_preproc_if_token1] = ACTIONS(880), + [aux_sym_preproc_if_token2] = ACTIONS(880), + [aux_sym_preproc_ifdef_token1] = ACTIONS(880), + [aux_sym_preproc_ifdef_token2] = ACTIONS(880), + [sym_preproc_directive] = ACTIONS(880), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(604), + [anon_sym___extension__] = ACTIONS(606), + [anon_sym_typedef] = ACTIONS(608), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(880), + [anon_sym___clrcall] = ACTIONS(880), + [anon_sym___stdcall] = ACTIONS(880), + [anon_sym___fastcall] = ACTIONS(880), + [anon_sym___thiscall] = ACTIONS(880), + [anon_sym___vectorcall] = ACTIONS(880), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(614), + [anon_sym_else] = ACTIONS(880), + [anon_sym_switch] = ACTIONS(616), + [anon_sym_case] = ACTIONS(880), + [anon_sym_default] = ACTIONS(880), + [anon_sym_while] = ACTIONS(622), + [anon_sym_do] = ACTIONS(624), + [anon_sym_for] = ACTIONS(626), + [anon_sym_return] = ACTIONS(628), + [anon_sym_break] = ACTIONS(630), + [anon_sym_continue] = ACTIONS(632), + [anon_sym_goto] = ACTIONS(634), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [73] = { + [sym_declaration] = STATE(73), + [sym_type_definition] = STATE(73), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1512), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_compound_statement] = STATE(73), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(73), + [sym_labeled_statement] = STATE(73), + [sym_expression_statement] = STATE(73), + [sym_if_statement] = STATE(73), + [sym_switch_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_do_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_return_statement] = STATE(73), + [sym_break_statement] = STATE(73), + [sym_continue_statement] = STATE(73), + [sym_goto_statement] = STATE(73), + [sym__expression] = STATE(1251), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2030), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(594), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [aux_sym_case_statement_repeat1] = STATE(73), + [ts_builtin_sym_end] = ACTIONS(1081), + [sym_identifier] = ACTIONS(1114), + [aux_sym_preproc_include_token1] = ACTIONS(885), + [aux_sym_preproc_def_token1] = ACTIONS(885), + [aux_sym_preproc_if_token1] = ACTIONS(885), + [aux_sym_preproc_ifdef_token1] = ACTIONS(885), + [aux_sym_preproc_ifdef_token2] = ACTIONS(885), + [sym_preproc_directive] = ACTIONS(885), + [anon_sym_LPAREN2] = ACTIONS(887), + [anon_sym_BANG] = ACTIONS(890), + [anon_sym_TILDE] = ACTIONS(890), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(896), + [anon_sym_AMP] = ACTIONS(896), + [anon_sym_SEMI] = ACTIONS(1117), + [anon_sym___extension__] = ACTIONS(1120), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(908), + [anon_sym___attribute__] = ACTIONS(911), + [anon_sym_LBRACK_LBRACK] = ACTIONS(914), + [anon_sym___declspec] = ACTIONS(917), + [anon_sym___cdecl] = ACTIONS(885), + [anon_sym___clrcall] = ACTIONS(885), + [anon_sym___stdcall] = ACTIONS(885), + [anon_sym___fastcall] = ACTIONS(885), + [anon_sym___thiscall] = ACTIONS(885), + [anon_sym___vectorcall] = ACTIONS(885), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_signed] = ACTIONS(923), + [anon_sym_unsigned] = ACTIONS(923), + [anon_sym_long] = ACTIONS(923), + [anon_sym_short] = ACTIONS(923), + [anon_sym_static] = ACTIONS(908), + [anon_sym_auto] = ACTIONS(908), + [anon_sym_register] = ACTIONS(908), + [anon_sym_inline] = ACTIONS(908), + [anon_sym___inline] = ACTIONS(908), + [anon_sym___inline__] = ACTIONS(908), + [anon_sym___forceinline] = ACTIONS(908), + [anon_sym_thread_local] = ACTIONS(908), + [anon_sym___thread] = ACTIONS(908), + [anon_sym_const] = ACTIONS(926), + [anon_sym_constexpr] = ACTIONS(926), + [anon_sym_volatile] = ACTIONS(926), + [anon_sym_restrict] = ACTIONS(926), + [anon_sym___restrict__] = ACTIONS(926), + [anon_sym__Atomic] = ACTIONS(926), + [anon_sym__Noreturn] = ACTIONS(926), + [anon_sym_noreturn] = ACTIONS(926), + [sym_primitive_type] = ACTIONS(929), + [anon_sym_enum] = ACTIONS(932), + [anon_sym_struct] = ACTIONS(935), + [anon_sym_union] = ACTIONS(938), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_else] = ACTIONS(885), + [anon_sym_switch] = ACTIONS(1132), + [anon_sym_case] = ACTIONS(885), + [anon_sym_default] = ACTIONS(885), + [anon_sym_while] = ACTIONS(1135), + [anon_sym_do] = ACTIONS(1138), + [anon_sym_for] = ACTIONS(1141), + [anon_sym_return] = ACTIONS(1144), + [anon_sym_break] = ACTIONS(1147), + [anon_sym_continue] = ACTIONS(1150), + [anon_sym_goto] = ACTIONS(1153), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(971), + [anon_sym___alignof__] = ACTIONS(974), + [anon_sym___alignof] = ACTIONS(974), + [anon_sym__alignof] = ACTIONS(974), + [anon_sym_alignof] = ACTIONS(974), + [anon_sym__Alignof] = ACTIONS(974), + [anon_sym_offsetof] = ACTIONS(977), + [anon_sym___builtin_va_arg] = ACTIONS(980), + [anon_sym__Generic] = ACTIONS(983), + [anon_sym_asm] = ACTIONS(986), + [anon_sym___asm__] = ACTIONS(986), + [sym_number_literal] = ACTIONS(989), + [anon_sym_L_SQUOTE] = ACTIONS(992), + [anon_sym_u_SQUOTE] = ACTIONS(992), + [anon_sym_U_SQUOTE] = ACTIONS(992), + [anon_sym_u8_SQUOTE] = ACTIONS(992), + [anon_sym_SQUOTE] = ACTIONS(992), + [anon_sym_L_DQUOTE] = ACTIONS(995), + [anon_sym_u_DQUOTE] = ACTIONS(995), + [anon_sym_U_DQUOTE] = ACTIONS(995), + [anon_sym_u8_DQUOTE] = ACTIONS(995), + [anon_sym_DQUOTE] = ACTIONS(995), + [sym_true] = ACTIONS(998), + [sym_false] = ACTIONS(998), + [anon_sym_NULL] = ACTIONS(1001), + [anon_sym_nullptr] = ACTIONS(1001), + [sym_comment] = ACTIONS(3), + }, + [74] = { + [sym_declaration] = STATE(73), + [sym_type_definition] = STATE(73), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1512), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_compound_statement] = STATE(73), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(73), + [sym_labeled_statement] = STATE(73), + [sym_expression_statement] = STATE(73), + [sym_if_statement] = STATE(73), + [sym_switch_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_do_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_return_statement] = STATE(73), + [sym_break_statement] = STATE(73), + [sym_continue_statement] = STATE(73), + [sym_goto_statement] = STATE(73), + [sym__expression] = STATE(1251), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2030), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(594), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [aux_sym_case_statement_repeat1] = STATE(73), + [ts_builtin_sym_end] = ACTIONS(1064), + [sym_identifier] = ACTIONS(1058), + [aux_sym_preproc_include_token1] = ACTIONS(1004), + [aux_sym_preproc_def_token1] = ACTIONS(1004), + [aux_sym_preproc_if_token1] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), + [sym_preproc_directive] = ACTIONS(1004), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym___extension__] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(1004), + [anon_sym___clrcall] = ACTIONS(1004), + [anon_sym___stdcall] = ACTIONS(1004), + [anon_sym___fastcall] = ACTIONS(1004), + [anon_sym___thiscall] = ACTIONS(1004), + [anon_sym___vectorcall] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1004), + [anon_sym_default] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [75] = { + [sym_declaration] = STATE(76), + [sym_type_definition] = STATE(76), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1540), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(76), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_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(1243), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2191), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(539), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [aux_sym_case_statement_repeat1] = STATE(76), + [sym_identifier] = ACTIONS(1054), + [aux_sym_preproc_include_token1] = ACTIONS(1004), + [aux_sym_preproc_def_token1] = ACTIONS(1004), + [aux_sym_preproc_if_token1] = ACTIONS(1004), + [aux_sym_preproc_if_token2] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1004), + [sym_preproc_directive] = ACTIONS(1004), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26318,140 +27776,307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_typedef] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(956), - [anon_sym___clrcall] = ACTIONS(956), - [anon_sym___stdcall] = ACTIONS(956), - [anon_sym___fastcall] = ACTIONS(956), - [anon_sym___thiscall] = ACTIONS(956), - [anon_sym___vectorcall] = ACTIONS(956), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(956), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(956), - [anon_sym_default] = ACTIONS(956), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(604), + [anon_sym___extension__] = ACTIONS(606), + [anon_sym_typedef] = ACTIONS(608), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(1004), + [anon_sym___clrcall] = ACTIONS(1004), + [anon_sym___stdcall] = ACTIONS(1004), + [anon_sym___fastcall] = ACTIONS(1004), + [anon_sym___thiscall] = ACTIONS(1004), + [anon_sym___vectorcall] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(614), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_switch] = ACTIONS(616), + [anon_sym_case] = ACTIONS(1004), + [anon_sym_default] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(622), + [anon_sym_do] = ACTIONS(624), + [anon_sym_for] = ACTIONS(626), + [anon_sym_return] = ACTIONS(628), + [anon_sym_break] = ACTIONS(630), + [anon_sym_continue] = ACTIONS(632), + [anon_sym_goto] = ACTIONS(634), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [76] = { + [sym_declaration] = STATE(76), + [sym_type_definition] = STATE(76), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1540), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(76), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_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(1243), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2191), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(539), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [aux_sym_case_statement_repeat1] = STATE(76), + [sym_identifier] = ACTIONS(1156), + [aux_sym_preproc_include_token1] = ACTIONS(885), + [aux_sym_preproc_def_token1] = ACTIONS(885), + [aux_sym_preproc_if_token1] = ACTIONS(885), + [aux_sym_preproc_if_token2] = ACTIONS(885), + [aux_sym_preproc_ifdef_token1] = ACTIONS(885), + [aux_sym_preproc_ifdef_token2] = ACTIONS(885), + [sym_preproc_directive] = ACTIONS(885), + [anon_sym_LPAREN2] = ACTIONS(887), + [anon_sym_BANG] = ACTIONS(890), + [anon_sym_TILDE] = ACTIONS(890), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(896), + [anon_sym_AMP] = ACTIONS(896), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym___extension__] = ACTIONS(1162), + [anon_sym_typedef] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(908), + [anon_sym___attribute__] = ACTIONS(911), + [anon_sym_LBRACK_LBRACK] = ACTIONS(914), + [anon_sym___declspec] = ACTIONS(917), + [anon_sym___cdecl] = ACTIONS(885), + [anon_sym___clrcall] = ACTIONS(885), + [anon_sym___stdcall] = ACTIONS(885), + [anon_sym___fastcall] = ACTIONS(885), + [anon_sym___thiscall] = ACTIONS(885), + [anon_sym___vectorcall] = ACTIONS(885), + [anon_sym_LBRACE] = ACTIONS(1168), + [anon_sym_signed] = ACTIONS(923), + [anon_sym_unsigned] = ACTIONS(923), + [anon_sym_long] = ACTIONS(923), + [anon_sym_short] = ACTIONS(923), + [anon_sym_static] = ACTIONS(908), + [anon_sym_auto] = ACTIONS(908), + [anon_sym_register] = ACTIONS(908), + [anon_sym_inline] = ACTIONS(908), + [anon_sym___inline] = ACTIONS(908), + [anon_sym___inline__] = ACTIONS(908), + [anon_sym___forceinline] = ACTIONS(908), + [anon_sym_thread_local] = ACTIONS(908), + [anon_sym___thread] = ACTIONS(908), + [anon_sym_const] = ACTIONS(926), + [anon_sym_constexpr] = ACTIONS(926), + [anon_sym_volatile] = ACTIONS(926), + [anon_sym_restrict] = ACTIONS(926), + [anon_sym___restrict__] = ACTIONS(926), + [anon_sym__Atomic] = ACTIONS(926), + [anon_sym__Noreturn] = ACTIONS(926), + [anon_sym_noreturn] = ACTIONS(926), + [sym_primitive_type] = ACTIONS(929), + [anon_sym_enum] = ACTIONS(932), + [anon_sym_struct] = ACTIONS(935), + [anon_sym_union] = ACTIONS(938), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(885), + [anon_sym_switch] = ACTIONS(1174), + [anon_sym_case] = ACTIONS(885), + [anon_sym_default] = ACTIONS(885), + [anon_sym_while] = ACTIONS(1177), + [anon_sym_do] = ACTIONS(1180), + [anon_sym_for] = ACTIONS(1183), + [anon_sym_return] = ACTIONS(1186), + [anon_sym_break] = ACTIONS(1189), + [anon_sym_continue] = ACTIONS(1192), + [anon_sym_goto] = ACTIONS(1195), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(971), + [anon_sym___alignof__] = ACTIONS(974), + [anon_sym___alignof] = ACTIONS(974), + [anon_sym__alignof] = ACTIONS(974), + [anon_sym_alignof] = ACTIONS(974), + [anon_sym__Alignof] = ACTIONS(974), + [anon_sym_offsetof] = ACTIONS(977), + [anon_sym___builtin_va_arg] = ACTIONS(980), + [anon_sym__Generic] = ACTIONS(983), + [anon_sym_asm] = ACTIONS(986), + [anon_sym___asm__] = ACTIONS(986), + [sym_number_literal] = ACTIONS(989), + [anon_sym_L_SQUOTE] = ACTIONS(992), + [anon_sym_u_SQUOTE] = ACTIONS(992), + [anon_sym_U_SQUOTE] = ACTIONS(992), + [anon_sym_u8_SQUOTE] = ACTIONS(992), + [anon_sym_SQUOTE] = ACTIONS(992), + [anon_sym_L_DQUOTE] = ACTIONS(995), + [anon_sym_u_DQUOTE] = ACTIONS(995), + [anon_sym_U_DQUOTE] = ACTIONS(995), + [anon_sym_u8_DQUOTE] = ACTIONS(995), + [anon_sym_DQUOTE] = ACTIONS(995), + [sym_true] = ACTIONS(998), + [sym_false] = ACTIONS(998), + [anon_sym_NULL] = ACTIONS(1001), + [anon_sym_nullptr] = ACTIONS(1001), [sym_comment] = ACTIONS(3), }, [77] = { - [sym_declaration] = STATE(71), - [sym_type_definition] = STATE(71), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1382), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_compound_statement] = STATE(71), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(71), - [sym_labeled_statement] = STATE(71), - [sym_expression_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_return_statement] = STATE(71), - [sym_break_statement] = STATE(71), - [sym_continue_statement] = STATE(71), - [sym_goto_statement] = STATE(71), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [aux_sym_case_statement_repeat1] = STATE(71), - [sym_identifier] = ACTIONS(1083), - [aux_sym_preproc_include_token1] = ACTIONS(956), - [aux_sym_preproc_def_token1] = ACTIONS(956), - [aux_sym_preproc_if_token1] = ACTIONS(956), - [aux_sym_preproc_ifdef_token1] = ACTIONS(956), - [aux_sym_preproc_ifdef_token2] = ACTIONS(956), - [sym_preproc_directive] = ACTIONS(956), + [sym_declaration] = STATE(73), + [sym_type_definition] = STATE(73), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1512), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_compound_statement] = STATE(73), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(73), + [sym_labeled_statement] = STATE(73), + [sym_expression_statement] = STATE(73), + [sym_if_statement] = STATE(73), + [sym_switch_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_do_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_return_statement] = STATE(73), + [sym_break_statement] = STATE(73), + [sym_continue_statement] = STATE(73), + [sym_goto_statement] = STATE(73), + [sym__expression] = STATE(1251), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2030), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(594), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [aux_sym_case_statement_repeat1] = STATE(73), + [ts_builtin_sym_end] = ACTIONS(1112), + [sym_identifier] = ACTIONS(1058), + [aux_sym_preproc_include_token1] = ACTIONS(1008), + [aux_sym_preproc_def_token1] = ACTIONS(1008), + [aux_sym_preproc_if_token1] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1008), + [sym_preproc_directive] = ACTIONS(1008), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26459,142 +28084,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(956), - [anon_sym___clrcall] = ACTIONS(956), - [anon_sym___stdcall] = ACTIONS(956), - [anon_sym___fastcall] = ACTIONS(956), - [anon_sym___thiscall] = ACTIONS(956), - [anon_sym___vectorcall] = ACTIONS(956), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(1134), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(508), - [anon_sym_else] = ACTIONS(956), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(956), - [anon_sym_default] = ACTIONS(956), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym___extension__] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(1008), + [anon_sym___clrcall] = ACTIONS(1008), + [anon_sym___stdcall] = ACTIONS(1008), + [anon_sym___fastcall] = ACTIONS(1008), + [anon_sym___thiscall] = ACTIONS(1008), + [anon_sym___vectorcall] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_else] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1008), + [anon_sym_default] = ACTIONS(1008), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [78] = { - [sym_declaration] = STATE(65), - [sym_type_definition] = STATE(65), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1384), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_compound_statement] = STATE(65), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(65), - [sym_labeled_statement] = STATE(65), - [sym_expression_statement] = STATE(65), - [sym_if_statement] = STATE(65), - [sym_switch_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_do_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_return_statement] = STATE(65), - [sym_break_statement] = STATE(65), - [sym_continue_statement] = STATE(65), - [sym_goto_statement] = STATE(65), - [sym__expression] = STATE(1098), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1873), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(413), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [aux_sym_case_statement_repeat1] = STATE(65), - [ts_builtin_sym_end] = ACTIONS(1093), - [sym_identifier] = ACTIONS(1089), - [aux_sym_preproc_include_token1] = ACTIONS(839), - [aux_sym_preproc_def_token1] = ACTIONS(839), - [aux_sym_preproc_if_token1] = ACTIONS(839), - [aux_sym_preproc_ifdef_token1] = ACTIONS(839), - [aux_sym_preproc_ifdef_token2] = ACTIONS(839), - [sym_preproc_directive] = ACTIONS(839), + [sym_declaration] = STATE(74), + [sym_type_definition] = STATE(74), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1512), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_compound_statement] = STATE(74), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(74), + [sym_labeled_statement] = STATE(74), + [sym_expression_statement] = STATE(74), + [sym_if_statement] = STATE(74), + [sym_switch_statement] = STATE(74), + [sym_while_statement] = STATE(74), + [sym_do_statement] = STATE(74), + [sym_for_statement] = STATE(74), + [sym_return_statement] = STATE(74), + [sym_break_statement] = STATE(74), + [sym_continue_statement] = STATE(74), + [sym_goto_statement] = STATE(74), + [sym__expression] = STATE(1251), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2030), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(594), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [aux_sym_case_statement_repeat1] = STATE(74), + [ts_builtin_sym_end] = ACTIONS(1110), + [sym_identifier] = ACTIONS(1058), + [aux_sym_preproc_include_token1] = ACTIONS(880), + [aux_sym_preproc_def_token1] = ACTIONS(880), + [aux_sym_preproc_if_token1] = ACTIONS(880), + [aux_sym_preproc_ifdef_token1] = ACTIONS(880), + [aux_sym_preproc_ifdef_token2] = ACTIONS(880), + [sym_preproc_directive] = ACTIONS(880), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26602,93 +28238,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_typedef] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(839), - [anon_sym___clrcall] = ACTIONS(839), - [anon_sym___stdcall] = ACTIONS(839), - [anon_sym___fastcall] = ACTIONS(839), - [anon_sym___thiscall] = ACTIONS(839), - [anon_sym___vectorcall] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(839), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(839), - [anon_sym_default] = ACTIONS(839), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym___extension__] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(880), + [anon_sym___clrcall] = ACTIONS(880), + [anon_sym___stdcall] = ACTIONS(880), + [anon_sym___fastcall] = ACTIONS(880), + [anon_sym___thiscall] = ACTIONS(880), + [anon_sym___vectorcall] = ACTIONS(880), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_else] = ACTIONS(880), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(880), + [anon_sym_default] = ACTIONS(880), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [79] = { + [sym_declaration] = STATE(79), + [sym_type_definition] = STATE(79), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1512), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(79), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(505), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [aux_sym_case_statement_repeat1] = STATE(79), + [sym_identifier] = ACTIONS(1198), + [anon_sym_LPAREN2] = ACTIONS(887), + [anon_sym_BANG] = ACTIONS(890), + [anon_sym_TILDE] = ACTIONS(890), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(896), + [anon_sym_AMP] = ACTIONS(896), + [anon_sym_SEMI] = ACTIONS(1069), + [anon_sym___extension__] = ACTIONS(1120), + [anon_sym_typedef] = ACTIONS(1123), + [anon_sym_extern] = ACTIONS(908), + [anon_sym___attribute__] = ACTIONS(911), + [anon_sym_LBRACK_LBRACK] = ACTIONS(914), + [anon_sym___declspec] = ACTIONS(917), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_signed] = ACTIONS(923), + [anon_sym_unsigned] = ACTIONS(923), + [anon_sym_long] = ACTIONS(923), + [anon_sym_short] = ACTIONS(923), + [anon_sym_static] = ACTIONS(908), + [anon_sym_auto] = ACTIONS(908), + [anon_sym_register] = ACTIONS(908), + [anon_sym_inline] = ACTIONS(908), + [anon_sym___inline] = ACTIONS(908), + [anon_sym___inline__] = ACTIONS(908), + [anon_sym___forceinline] = ACTIONS(908), + [anon_sym_thread_local] = ACTIONS(908), + [anon_sym___thread] = ACTIONS(908), + [anon_sym_const] = ACTIONS(926), + [anon_sym_constexpr] = ACTIONS(926), + [anon_sym_volatile] = ACTIONS(926), + [anon_sym_restrict] = ACTIONS(926), + [anon_sym___restrict__] = ACTIONS(926), + [anon_sym__Atomic] = ACTIONS(926), + [anon_sym__Noreturn] = ACTIONS(926), + [anon_sym_noreturn] = ACTIONS(926), + [sym_primitive_type] = ACTIONS(929), + [anon_sym_enum] = ACTIONS(932), + [anon_sym_struct] = ACTIONS(935), + [anon_sym_union] = ACTIONS(938), + [anon_sym_if] = ACTIONS(1201), + [anon_sym_else] = ACTIONS(885), + [anon_sym_switch] = ACTIONS(1132), + [anon_sym_while] = ACTIONS(1204), + [anon_sym_do] = ACTIONS(1138), + [anon_sym_for] = ACTIONS(1207), + [anon_sym_return] = ACTIONS(1144), + [anon_sym_break] = ACTIONS(1147), + [anon_sym_continue] = ACTIONS(1150), + [anon_sym_goto] = ACTIONS(1153), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_sizeof] = ACTIONS(971), + [anon_sym___alignof__] = ACTIONS(974), + [anon_sym___alignof] = ACTIONS(974), + [anon_sym__alignof] = ACTIONS(974), + [anon_sym_alignof] = ACTIONS(974), + [anon_sym__Alignof] = ACTIONS(974), + [anon_sym_offsetof] = ACTIONS(977), + [anon_sym___builtin_va_arg] = ACTIONS(980), + [anon_sym__Generic] = ACTIONS(983), + [anon_sym_asm] = ACTIONS(986), + [anon_sym___asm__] = ACTIONS(986), + [sym_number_literal] = ACTIONS(989), + [anon_sym_L_SQUOTE] = ACTIONS(992), + [anon_sym_u_SQUOTE] = ACTIONS(992), + [anon_sym_U_SQUOTE] = ACTIONS(992), + [anon_sym_u8_SQUOTE] = ACTIONS(992), + [anon_sym_SQUOTE] = ACTIONS(992), + [anon_sym_L_DQUOTE] = ACTIONS(995), + [anon_sym_u_DQUOTE] = ACTIONS(995), + [anon_sym_U_DQUOTE] = ACTIONS(995), + [anon_sym_u8_DQUOTE] = ACTIONS(995), + [anon_sym_DQUOTE] = ACTIONS(995), + [sym_true] = ACTIONS(998), + [sym_false] = ACTIONS(998), + [anon_sym_NULL] = ACTIONS(1001), + [anon_sym_nullptr] = ACTIONS(1001), + [sym_comment] = ACTIONS(3), + }, + [80] = { [sym_declaration] = STATE(82), [sym_type_definition] = STATE(82), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1384), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1512), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), [sym_compound_statement] = STATE(82), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), [sym_attributed_statement] = STATE(82), [sym_labeled_statement] = STATE(82), [sym_expression_statement] = STATE(82), @@ -26701,35 +28486,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(82), [sym_continue_statement] = STATE(82), [sym_goto_statement] = STATE(82), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(505), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), [aux_sym_case_statement_repeat1] = STATE(82), - [sym_identifier] = ACTIONS(1136), + [sym_identifier] = ACTIONS(1210), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26737,253 +28524,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_else] = ACTIONS(958), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [80] = { - [sym_declaration] = STATE(80), - [sym_type_definition] = STATE(80), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1384), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_compound_statement] = STATE(80), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(80), - [sym_labeled_statement] = STATE(80), - [sym_expression_statement] = STATE(80), - [sym_if_statement] = STATE(80), - [sym_switch_statement] = STATE(80), - [sym_while_statement] = STATE(80), - [sym_do_statement] = STATE(80), - [sym_for_statement] = STATE(80), - [sym_return_statement] = STATE(80), - [sym_break_statement] = STATE(80), - [sym_continue_statement] = STATE(80), - [sym_goto_statement] = STATE(80), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [aux_sym_case_statement_repeat1] = STATE(80), - [sym_identifier] = ACTIONS(1144), - [anon_sym_LPAREN2] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(854), - [anon_sym_PLUS] = ACTIONS(854), - [anon_sym_STAR] = ACTIONS(857), - [anon_sym_AMP] = ACTIONS(857), - [anon_sym_SEMI] = ACTIONS(1004), - [anon_sym_typedef] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(866), - [anon_sym___attribute__] = ACTIONS(869), - [anon_sym_LBRACK_LBRACK] = ACTIONS(872), - [anon_sym___declspec] = ACTIONS(875), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_signed] = ACTIONS(881), - [anon_sym_unsigned] = ACTIONS(881), - [anon_sym_long] = ACTIONS(881), - [anon_sym_short] = ACTIONS(881), - [anon_sym_static] = ACTIONS(866), - [anon_sym_auto] = ACTIONS(866), - [anon_sym_register] = ACTIONS(866), - [anon_sym_inline] = ACTIONS(866), - [anon_sym_thread_local] = ACTIONS(866), - [anon_sym___thread] = ACTIONS(866), - [anon_sym_const] = ACTIONS(884), - [anon_sym_constexpr] = ACTIONS(884), - [anon_sym_volatile] = ACTIONS(884), - [anon_sym_restrict] = ACTIONS(884), - [anon_sym___restrict__] = ACTIONS(884), - [anon_sym__Atomic] = ACTIONS(884), - [anon_sym__Noreturn] = ACTIONS(884), - [anon_sym_noreturn] = 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(1147), - [anon_sym_else] = ACTIONS(846), - [anon_sym_switch] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1150), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_for] = ACTIONS(1153), - [anon_sym_return] = ACTIONS(1069), - [anon_sym_break] = ACTIONS(1072), - [anon_sym_continue] = ACTIONS(1075), - [anon_sym_goto] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(926), - [anon_sym_PLUS_PLUS] = ACTIONS(926), - [anon_sym_sizeof] = ACTIONS(929), - [anon_sym_offsetof] = ACTIONS(932), - [anon_sym__Generic] = ACTIONS(935), - [anon_sym_asm] = ACTIONS(938), - [anon_sym___asm__] = ACTIONS(938), - [sym_number_literal] = ACTIONS(941), - [anon_sym_L_SQUOTE] = ACTIONS(944), - [anon_sym_u_SQUOTE] = ACTIONS(944), - [anon_sym_U_SQUOTE] = ACTIONS(944), - [anon_sym_u8_SQUOTE] = ACTIONS(944), - [anon_sym_SQUOTE] = ACTIONS(944), - [anon_sym_L_DQUOTE] = ACTIONS(947), - [anon_sym_u_DQUOTE] = ACTIONS(947), - [anon_sym_U_DQUOTE] = ACTIONS(947), - [anon_sym_u8_DQUOTE] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(947), - [sym_true] = ACTIONS(950), - [sym_false] = ACTIONS(950), - [anon_sym_NULL] = ACTIONS(953), - [anon_sym_nullptr] = ACTIONS(953), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym___extension__] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_else] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [81] = { - [sym_declaration] = STATE(80), - [sym_type_definition] = STATE(80), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1384), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_compound_statement] = STATE(80), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(80), - [sym_labeled_statement] = STATE(80), - [sym_expression_statement] = STATE(80), - [sym_if_statement] = STATE(80), - [sym_switch_statement] = STATE(80), - [sym_while_statement] = STATE(80), - [sym_do_statement] = STATE(80), - [sym_for_statement] = STATE(80), - [sym_return_statement] = STATE(80), - [sym_break_statement] = STATE(80), - [sym_continue_statement] = STATE(80), - [sym_goto_statement] = STATE(80), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [aux_sym_case_statement_repeat1] = STATE(80), - [sym_identifier] = ACTIONS(1136), + [sym_declaration] = STATE(83), + [sym_type_definition] = STATE(83), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1512), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_compound_statement] = STATE(83), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(83), + [sym_labeled_statement] = STATE(83), + [sym_expression_statement] = STATE(83), + [sym_if_statement] = STATE(83), + [sym_switch_statement] = STATE(83), + [sym_while_statement] = STATE(83), + [sym_do_statement] = STATE(83), + [sym_for_statement] = STATE(83), + [sym_return_statement] = STATE(83), + [sym_break_statement] = STATE(83), + [sym_continue_statement] = STATE(83), + [sym_goto_statement] = STATE(83), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(505), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [aux_sym_case_statement_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(1210), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26991,126 +28663,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_else] = ACTIONS(839), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym___extension__] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_else] = ACTIONS(880), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [82] = { - [sym_declaration] = STATE(80), - [sym_type_definition] = STATE(80), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1384), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_compound_statement] = STATE(80), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(80), - [sym_labeled_statement] = STATE(80), - [sym_expression_statement] = STATE(80), - [sym_if_statement] = STATE(80), - [sym_switch_statement] = STATE(80), - [sym_while_statement] = STATE(80), - [sym_do_statement] = STATE(80), - [sym_for_statement] = STATE(80), - [sym_return_statement] = STATE(80), - [sym_break_statement] = STATE(80), - [sym_continue_statement] = STATE(80), - [sym_goto_statement] = STATE(80), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [aux_sym_case_statement_repeat1] = STATE(80), - [sym_identifier] = ACTIONS(1136), + [sym_declaration] = STATE(79), + [sym_type_definition] = STATE(79), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1512), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(79), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(505), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [aux_sym_case_statement_repeat1] = STATE(79), + [sym_identifier] = ACTIONS(1210), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27118,126 +28802,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_else] = ACTIONS(841), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym___extension__] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_else] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [83] = { - [sym_declaration] = STATE(81), - [sym_type_definition] = STATE(81), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1384), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(539), - [sym_ms_declspec_modifier] = STATE(827), - [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym_attributed_statement] = STATE(81), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [aux_sym_case_statement_repeat1] = STATE(81), - [sym_identifier] = ACTIONS(1136), + [sym_declaration] = STATE(79), + [sym_type_definition] = STATE(79), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1512), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(619), + [sym_ms_declspec_modifier] = STATE(885), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_attributed_statement] = STATE(79), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_attributed_declarator_repeat1] = STATE(505), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [aux_sym_case_statement_repeat1] = STATE(79), + [sym_identifier] = ACTIONS(1210), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27245,110 +28941,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_else] = ACTIONS(956), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym___extension__] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [84] = { - [sym_declaration] = STATE(648), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1390), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(827), - [sym_ms_declspec_modifier] = STATE(827), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym__expression] = STATE(1142), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1971), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(1156), + [sym_declaration] = STATE(723), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1547), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(885), + [sym_ms_declspec_modifier] = STATE(885), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym__expression] = STATE(1191), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2238), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(1218), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27356,98 +29064,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1158), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(1220), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [85] = { - [sym_declaration] = STATE(604), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1390), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(827), - [sym_ms_declspec_modifier] = STATE(827), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym__expression] = STATE(1100), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(2023), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(1156), + [sym_declaration] = STATE(669), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1547), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(885), + [sym_ms_declspec_modifier] = STATE(885), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym__expression] = STATE(1179), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2243), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(1218), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27455,98 +29175,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1162), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(1224), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [86] = { - [sym_declaration] = STATE(647), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1390), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(827), - [sym_ms_declspec_modifier] = STATE(827), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym__expression] = STATE(1074), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(2032), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(1156), + [sym_declaration] = STATE(672), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1547), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(885), + [sym_ms_declspec_modifier] = STATE(885), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym__expression] = STATE(1249), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2140), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(1218), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27554,98 +29286,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1164), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [87] = { - [sym_declaration] = STATE(623), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1390), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(827), - [sym_ms_declspec_modifier] = STATE(827), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym__expression] = STATE(1093), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(2028), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(1156), + [sym_declaration] = STATE(727), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1547), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(885), + [sym_ms_declspec_modifier] = STATE(885), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym__expression] = STATE(1241), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2173), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(1218), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27653,98 +29397,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1166), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(1228), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [88] = { - [sym_declaration] = STATE(606), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1390), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(827), - [sym_ms_declspec_modifier] = STATE(827), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym__expression] = STATE(1126), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1910), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(1156), + [sym_declaration] = STATE(719), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1547), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(885), + [sym_ms_declspec_modifier] = STATE(885), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym__expression] = STATE(1210), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2194), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(1218), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27752,98 +29508,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(1230), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [89] = { - [sym_declaration] = STATE(599), - [sym__declaration_modifiers] = STATE(827), - [sym__declaration_specifiers] = STATE(1390), - [sym_attribute_specifier] = STATE(827), - [sym_attribute_declaration] = STATE(827), - [sym_ms_declspec_modifier] = STATE(827), - [sym_storage_class_specifier] = STATE(827), - [sym_type_qualifier] = STATE(827), - [sym__type_specifier] = STATE(939), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym__expression] = STATE(1101), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1990), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym__declaration_specifiers_repeat1] = STATE(827), - [aux_sym_sized_type_specifier_repeat1] = STATE(1023), - [sym_identifier] = ACTIONS(1156), + [sym_declaration] = STATE(686), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1547), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(885), + [sym_ms_declspec_modifier] = STATE(885), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym__expression] = STATE(1209), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2232), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(1218), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27851,1334 +29619,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1170), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym___thread] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(1232), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [90] = { - [sym_else_clause] = STATE(132), - [sym_identifier] = ACTIONS(1172), - [aux_sym_preproc_include_token1] = ACTIONS(1172), - [aux_sym_preproc_def_token1] = ACTIONS(1172), - [aux_sym_preproc_if_token1] = ACTIONS(1172), - [aux_sym_preproc_if_token2] = ACTIONS(1172), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1172), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1172), - [aux_sym_preproc_else_token1] = ACTIONS(1172), - [aux_sym_preproc_elif_token1] = ACTIONS(1172), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1172), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1172), - [sym_preproc_directive] = ACTIONS(1172), - [anon_sym_LPAREN2] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1174), - [anon_sym_TILDE] = ACTIONS(1174), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_PLUS] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(1174), - [anon_sym_SEMI] = ACTIONS(1174), - [anon_sym_typedef] = ACTIONS(1172), - [anon_sym_extern] = ACTIONS(1172), - [anon_sym___attribute__] = ACTIONS(1172), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1174), - [anon_sym___declspec] = ACTIONS(1172), - [anon_sym___cdecl] = ACTIONS(1172), - [anon_sym___clrcall] = ACTIONS(1172), - [anon_sym___stdcall] = ACTIONS(1172), - [anon_sym___fastcall] = ACTIONS(1172), - [anon_sym___thiscall] = ACTIONS(1172), - [anon_sym___vectorcall] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1174), - [anon_sym_signed] = ACTIONS(1172), - [anon_sym_unsigned] = ACTIONS(1172), - [anon_sym_long] = ACTIONS(1172), - [anon_sym_short] = ACTIONS(1172), - [anon_sym_static] = ACTIONS(1172), - [anon_sym_auto] = ACTIONS(1172), - [anon_sym_register] = ACTIONS(1172), - [anon_sym_inline] = ACTIONS(1172), - [anon_sym_thread_local] = ACTIONS(1172), - [anon_sym___thread] = ACTIONS(1172), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_constexpr] = ACTIONS(1172), - [anon_sym_volatile] = ACTIONS(1172), - [anon_sym_restrict] = ACTIONS(1172), - [anon_sym___restrict__] = ACTIONS(1172), - [anon_sym__Atomic] = ACTIONS(1172), - [anon_sym__Noreturn] = ACTIONS(1172), - [anon_sym_noreturn] = ACTIONS(1172), - [sym_primitive_type] = ACTIONS(1172), - [anon_sym_enum] = ACTIONS(1172), - [anon_sym_struct] = ACTIONS(1172), - [anon_sym_union] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_else] = ACTIONS(1176), - [anon_sym_switch] = ACTIONS(1172), - [anon_sym_case] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(1172), - [anon_sym_while] = ACTIONS(1172), - [anon_sym_do] = ACTIONS(1172), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1172), - [anon_sym_break] = ACTIONS(1172), - [anon_sym_continue] = ACTIONS(1172), - [anon_sym_goto] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1174), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_sizeof] = ACTIONS(1172), - [anon_sym_offsetof] = ACTIONS(1172), - [anon_sym__Generic] = ACTIONS(1172), - [anon_sym_asm] = ACTIONS(1172), - [anon_sym___asm__] = ACTIONS(1172), - [sym_number_literal] = ACTIONS(1174), - [anon_sym_L_SQUOTE] = ACTIONS(1174), - [anon_sym_u_SQUOTE] = ACTIONS(1174), - [anon_sym_U_SQUOTE] = ACTIONS(1174), - [anon_sym_u8_SQUOTE] = ACTIONS(1174), - [anon_sym_SQUOTE] = ACTIONS(1174), - [anon_sym_L_DQUOTE] = ACTIONS(1174), - [anon_sym_u_DQUOTE] = ACTIONS(1174), - [anon_sym_U_DQUOTE] = ACTIONS(1174), - [anon_sym_u8_DQUOTE] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1174), - [sym_true] = ACTIONS(1172), - [sym_false] = ACTIONS(1172), - [anon_sym_NULL] = ACTIONS(1172), - [anon_sym_nullptr] = ACTIONS(1172), + [sym_else_clause] = STATE(120), + [sym_identifier] = ACTIONS(1234), + [aux_sym_preproc_include_token1] = ACTIONS(1234), + [aux_sym_preproc_def_token1] = ACTIONS(1234), + [aux_sym_preproc_if_token1] = ACTIONS(1234), + [aux_sym_preproc_if_token2] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), + [aux_sym_preproc_else_token1] = ACTIONS(1234), + [aux_sym_preproc_elif_token1] = ACTIONS(1234), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1234), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1234), + [sym_preproc_directive] = ACTIONS(1234), + [anon_sym_LPAREN2] = ACTIONS(1236), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(1236), + [anon_sym_SEMI] = ACTIONS(1236), + [anon_sym___extension__] = ACTIONS(1234), + [anon_sym_typedef] = ACTIONS(1234), + [anon_sym_extern] = ACTIONS(1234), + [anon_sym___attribute__] = ACTIONS(1234), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1236), + [anon_sym___declspec] = ACTIONS(1234), + [anon_sym___cdecl] = ACTIONS(1234), + [anon_sym___clrcall] = ACTIONS(1234), + [anon_sym___stdcall] = ACTIONS(1234), + [anon_sym___fastcall] = ACTIONS(1234), + [anon_sym___thiscall] = ACTIONS(1234), + [anon_sym___vectorcall] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(1236), + [anon_sym_signed] = ACTIONS(1234), + [anon_sym_unsigned] = ACTIONS(1234), + [anon_sym_long] = ACTIONS(1234), + [anon_sym_short] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_auto] = ACTIONS(1234), + [anon_sym_register] = ACTIONS(1234), + [anon_sym_inline] = ACTIONS(1234), + [anon_sym___inline] = ACTIONS(1234), + [anon_sym___inline__] = ACTIONS(1234), + [anon_sym___forceinline] = ACTIONS(1234), + [anon_sym_thread_local] = ACTIONS(1234), + [anon_sym___thread] = ACTIONS(1234), + [anon_sym_const] = ACTIONS(1234), + [anon_sym_constexpr] = ACTIONS(1234), + [anon_sym_volatile] = ACTIONS(1234), + [anon_sym_restrict] = ACTIONS(1234), + [anon_sym___restrict__] = ACTIONS(1234), + [anon_sym__Atomic] = ACTIONS(1234), + [anon_sym__Noreturn] = ACTIONS(1234), + [anon_sym_noreturn] = ACTIONS(1234), + [sym_primitive_type] = ACTIONS(1234), + [anon_sym_enum] = ACTIONS(1234), + [anon_sym_struct] = ACTIONS(1234), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_if] = ACTIONS(1234), + [anon_sym_else] = ACTIONS(1238), + [anon_sym_switch] = ACTIONS(1234), + [anon_sym_case] = ACTIONS(1234), + [anon_sym_default] = ACTIONS(1234), + [anon_sym_while] = ACTIONS(1234), + [anon_sym_do] = ACTIONS(1234), + [anon_sym_for] = ACTIONS(1234), + [anon_sym_return] = ACTIONS(1234), + [anon_sym_break] = ACTIONS(1234), + [anon_sym_continue] = ACTIONS(1234), + [anon_sym_goto] = ACTIONS(1234), + [anon_sym_DASH_DASH] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_sizeof] = ACTIONS(1234), + [anon_sym___alignof__] = ACTIONS(1234), + [anon_sym___alignof] = ACTIONS(1234), + [anon_sym__alignof] = ACTIONS(1234), + [anon_sym_alignof] = ACTIONS(1234), + [anon_sym__Alignof] = ACTIONS(1234), + [anon_sym_offsetof] = ACTIONS(1234), + [anon_sym___builtin_va_arg] = ACTIONS(1234), + [anon_sym__Generic] = ACTIONS(1234), + [anon_sym_asm] = ACTIONS(1234), + [anon_sym___asm__] = ACTIONS(1234), + [sym_number_literal] = ACTIONS(1236), + [anon_sym_L_SQUOTE] = ACTIONS(1236), + [anon_sym_u_SQUOTE] = ACTIONS(1236), + [anon_sym_U_SQUOTE] = ACTIONS(1236), + [anon_sym_u8_SQUOTE] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1236), + [anon_sym_L_DQUOTE] = ACTIONS(1236), + [anon_sym_u_DQUOTE] = ACTIONS(1236), + [anon_sym_U_DQUOTE] = ACTIONS(1236), + [anon_sym_u8_DQUOTE] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(1236), + [sym_true] = ACTIONS(1234), + [sym_false] = ACTIONS(1234), + [anon_sym_NULL] = ACTIONS(1234), + [anon_sym_nullptr] = ACTIONS(1234), [sym_comment] = ACTIONS(3), }, [91] = { - [sym__expression] = STATE(802), - [sym__expression_not_binary] = STATE(795), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(795), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(795), - [sym_call_expression] = STATE(795), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(795), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_initializer_list] = STATE(815), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_identifier] = ACTIONS(149), - [anon_sym_COMMA] = ACTIONS(1178), - [anon_sym_RPAREN] = ACTIONS(1178), - [anon_sym_LPAREN2] = ACTIONS(1180), - [anon_sym_BANG] = ACTIONS(1182), - [anon_sym_TILDE] = ACTIONS(1184), - [anon_sym_DASH] = ACTIONS(1182), - [anon_sym_PLUS] = ACTIONS(1182), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1188), - [anon_sym_PERCENT] = ACTIONS(1188), - [anon_sym_PIPE_PIPE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(1178), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_CARET] = ACTIONS(1188), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1178), - [anon_sym_BANG_EQ] = ACTIONS(1178), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_GT_EQ] = ACTIONS(1178), - [anon_sym_LT_EQ] = ACTIONS(1178), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_LT_LT] = ACTIONS(1188), - [anon_sym_GT_GT] = ACTIONS(1188), - [anon_sym_SEMI] = ACTIONS(1178), - [anon_sym___attribute__] = ACTIONS(1188), - [anon_sym_LBRACE] = ACTIONS(1190), - [anon_sym_RBRACE] = ACTIONS(1178), - [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_EQ] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1178), - [anon_sym_QMARK] = ACTIONS(1178), - [anon_sym_STAR_EQ] = ACTIONS(1178), - [anon_sym_SLASH_EQ] = ACTIONS(1178), - [anon_sym_PERCENT_EQ] = ACTIONS(1178), - [anon_sym_PLUS_EQ] = ACTIONS(1178), - [anon_sym_DASH_EQ] = ACTIONS(1178), - [anon_sym_LT_LT_EQ] = ACTIONS(1178), - [anon_sym_GT_GT_EQ] = ACTIONS(1178), - [anon_sym_AMP_EQ] = ACTIONS(1178), - [anon_sym_CARET_EQ] = ACTIONS(1178), - [anon_sym_PIPE_EQ] = ACTIONS(1178), - [anon_sym_DASH_DASH] = ACTIONS(1192), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_sizeof] = ACTIONS(1194), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [anon_sym_DOT] = ACTIONS(1188), - [anon_sym_DASH_GT] = ACTIONS(1178), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [92] = { - [sym_identifier] = ACTIONS(1196), - [aux_sym_preproc_include_token1] = ACTIONS(1196), - [aux_sym_preproc_def_token1] = ACTIONS(1196), - [aux_sym_preproc_if_token1] = ACTIONS(1196), - [aux_sym_preproc_if_token2] = ACTIONS(1196), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1196), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1196), - [aux_sym_preproc_else_token1] = ACTIONS(1196), - [aux_sym_preproc_elif_token1] = ACTIONS(1196), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1196), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1196), - [sym_preproc_directive] = ACTIONS(1196), - [anon_sym_LPAREN2] = ACTIONS(1198), - [anon_sym_BANG] = ACTIONS(1198), - [anon_sym_TILDE] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_SEMI] = ACTIONS(1198), - [anon_sym_typedef] = ACTIONS(1196), - [anon_sym_extern] = ACTIONS(1196), - [anon_sym___attribute__] = ACTIONS(1196), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1198), - [anon_sym___declspec] = ACTIONS(1196), - [anon_sym___cdecl] = ACTIONS(1196), - [anon_sym___clrcall] = ACTIONS(1196), - [anon_sym___stdcall] = ACTIONS(1196), - [anon_sym___fastcall] = ACTIONS(1196), - [anon_sym___thiscall] = ACTIONS(1196), - [anon_sym___vectorcall] = ACTIONS(1196), - [anon_sym_LBRACE] = ACTIONS(1198), - [anon_sym_signed] = ACTIONS(1196), - [anon_sym_unsigned] = ACTIONS(1196), - [anon_sym_long] = ACTIONS(1196), - [anon_sym_short] = ACTIONS(1196), - [anon_sym_static] = ACTIONS(1196), - [anon_sym_auto] = ACTIONS(1196), - [anon_sym_register] = ACTIONS(1196), - [anon_sym_inline] = ACTIONS(1196), - [anon_sym_thread_local] = ACTIONS(1196), - [anon_sym___thread] = ACTIONS(1196), - [anon_sym_const] = ACTIONS(1196), - [anon_sym_constexpr] = ACTIONS(1196), - [anon_sym_volatile] = ACTIONS(1196), - [anon_sym_restrict] = ACTIONS(1196), - [anon_sym___restrict__] = ACTIONS(1196), - [anon_sym__Atomic] = ACTIONS(1196), - [anon_sym__Noreturn] = ACTIONS(1196), - [anon_sym_noreturn] = ACTIONS(1196), - [sym_primitive_type] = ACTIONS(1196), - [anon_sym_enum] = ACTIONS(1196), - [anon_sym_struct] = ACTIONS(1196), - [anon_sym_union] = ACTIONS(1196), - [anon_sym_if] = ACTIONS(1196), - [anon_sym_else] = ACTIONS(1196), - [anon_sym_switch] = ACTIONS(1196), - [anon_sym_case] = ACTIONS(1196), - [anon_sym_default] = ACTIONS(1196), - [anon_sym_while] = ACTIONS(1196), - [anon_sym_do] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1196), - [anon_sym_return] = ACTIONS(1196), - [anon_sym_break] = ACTIONS(1196), - [anon_sym_continue] = ACTIONS(1196), - [anon_sym_goto] = ACTIONS(1196), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_sizeof] = ACTIONS(1196), - [anon_sym_offsetof] = ACTIONS(1196), - [anon_sym__Generic] = ACTIONS(1196), - [anon_sym_asm] = ACTIONS(1196), - [anon_sym___asm__] = ACTIONS(1196), - [sym_number_literal] = ACTIONS(1198), - [anon_sym_L_SQUOTE] = ACTIONS(1198), - [anon_sym_u_SQUOTE] = ACTIONS(1198), - [anon_sym_U_SQUOTE] = ACTIONS(1198), - [anon_sym_u8_SQUOTE] = ACTIONS(1198), - [anon_sym_SQUOTE] = ACTIONS(1198), - [anon_sym_L_DQUOTE] = ACTIONS(1198), - [anon_sym_u_DQUOTE] = ACTIONS(1198), - [anon_sym_U_DQUOTE] = ACTIONS(1198), - [anon_sym_u8_DQUOTE] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(1198), - [sym_true] = ACTIONS(1196), - [sym_false] = ACTIONS(1196), - [anon_sym_NULL] = ACTIONS(1196), - [anon_sym_nullptr] = ACTIONS(1196), - [sym_comment] = ACTIONS(3), - }, - [93] = { - [sym_identifier] = ACTIONS(1200), - [aux_sym_preproc_include_token1] = ACTIONS(1200), - [aux_sym_preproc_def_token1] = ACTIONS(1200), - [aux_sym_preproc_if_token1] = ACTIONS(1200), - [aux_sym_preproc_if_token2] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1200), - [aux_sym_preproc_else_token1] = ACTIONS(1200), - [aux_sym_preproc_elif_token1] = ACTIONS(1200), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1200), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1200), - [sym_preproc_directive] = ACTIONS(1200), - [anon_sym_LPAREN2] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1202), - [anon_sym_TILDE] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(1200), - [anon_sym_STAR] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1202), - [anon_sym_typedef] = ACTIONS(1200), - [anon_sym_extern] = ACTIONS(1200), - [anon_sym___attribute__] = ACTIONS(1200), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1202), - [anon_sym___declspec] = ACTIONS(1200), - [anon_sym___cdecl] = ACTIONS(1200), - [anon_sym___clrcall] = ACTIONS(1200), - [anon_sym___stdcall] = ACTIONS(1200), - [anon_sym___fastcall] = ACTIONS(1200), - [anon_sym___thiscall] = ACTIONS(1200), - [anon_sym___vectorcall] = ACTIONS(1200), - [anon_sym_LBRACE] = ACTIONS(1202), - [anon_sym_signed] = ACTIONS(1200), - [anon_sym_unsigned] = ACTIONS(1200), - [anon_sym_long] = ACTIONS(1200), - [anon_sym_short] = ACTIONS(1200), - [anon_sym_static] = ACTIONS(1200), - [anon_sym_auto] = ACTIONS(1200), - [anon_sym_register] = ACTIONS(1200), - [anon_sym_inline] = ACTIONS(1200), - [anon_sym_thread_local] = ACTIONS(1200), - [anon_sym___thread] = ACTIONS(1200), - [anon_sym_const] = ACTIONS(1200), - [anon_sym_constexpr] = ACTIONS(1200), - [anon_sym_volatile] = ACTIONS(1200), - [anon_sym_restrict] = ACTIONS(1200), - [anon_sym___restrict__] = ACTIONS(1200), - [anon_sym__Atomic] = ACTIONS(1200), - [anon_sym__Noreturn] = ACTIONS(1200), - [anon_sym_noreturn] = ACTIONS(1200), - [sym_primitive_type] = ACTIONS(1200), - [anon_sym_enum] = ACTIONS(1200), - [anon_sym_struct] = ACTIONS(1200), - [anon_sym_union] = ACTIONS(1200), - [anon_sym_if] = ACTIONS(1200), - [anon_sym_else] = ACTIONS(1200), - [anon_sym_switch] = ACTIONS(1200), - [anon_sym_case] = ACTIONS(1200), - [anon_sym_default] = ACTIONS(1200), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_do] = ACTIONS(1200), - [anon_sym_for] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1200), - [anon_sym_continue] = ACTIONS(1200), - [anon_sym_goto] = ACTIONS(1200), - [anon_sym_DASH_DASH] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1202), - [anon_sym_sizeof] = ACTIONS(1200), - [anon_sym_offsetof] = ACTIONS(1200), - [anon_sym__Generic] = ACTIONS(1200), - [anon_sym_asm] = ACTIONS(1200), - [anon_sym___asm__] = ACTIONS(1200), - [sym_number_literal] = ACTIONS(1202), - [anon_sym_L_SQUOTE] = ACTIONS(1202), - [anon_sym_u_SQUOTE] = ACTIONS(1202), - [anon_sym_U_SQUOTE] = ACTIONS(1202), - [anon_sym_u8_SQUOTE] = ACTIONS(1202), - [anon_sym_SQUOTE] = ACTIONS(1202), - [anon_sym_L_DQUOTE] = ACTIONS(1202), - [anon_sym_u_DQUOTE] = ACTIONS(1202), - [anon_sym_U_DQUOTE] = ACTIONS(1202), - [anon_sym_u8_DQUOTE] = ACTIONS(1202), - [anon_sym_DQUOTE] = ACTIONS(1202), - [sym_true] = ACTIONS(1200), - [sym_false] = ACTIONS(1200), - [anon_sym_NULL] = ACTIONS(1200), - [anon_sym_nullptr] = ACTIONS(1200), - [sym_comment] = ACTIONS(3), - }, - [94] = { - [sym_identifier] = ACTIONS(1204), - [aux_sym_preproc_include_token1] = ACTIONS(1204), - [aux_sym_preproc_def_token1] = ACTIONS(1204), - [aux_sym_preproc_if_token1] = ACTIONS(1204), - [aux_sym_preproc_if_token2] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1204), - [aux_sym_preproc_else_token1] = ACTIONS(1204), - [aux_sym_preproc_elif_token1] = ACTIONS(1204), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1204), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1204), - [sym_preproc_directive] = ACTIONS(1204), - [anon_sym_LPAREN2] = ACTIONS(1206), - [anon_sym_BANG] = ACTIONS(1206), - [anon_sym_TILDE] = ACTIONS(1206), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_STAR] = ACTIONS(1206), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_SEMI] = ACTIONS(1206), - [anon_sym_typedef] = ACTIONS(1204), - [anon_sym_extern] = ACTIONS(1204), - [anon_sym___attribute__] = ACTIONS(1204), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1206), - [anon_sym___declspec] = ACTIONS(1204), - [anon_sym___cdecl] = ACTIONS(1204), - [anon_sym___clrcall] = ACTIONS(1204), - [anon_sym___stdcall] = ACTIONS(1204), - [anon_sym___fastcall] = ACTIONS(1204), - [anon_sym___thiscall] = ACTIONS(1204), - [anon_sym___vectorcall] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_signed] = ACTIONS(1204), - [anon_sym_unsigned] = ACTIONS(1204), - [anon_sym_long] = ACTIONS(1204), - [anon_sym_short] = ACTIONS(1204), - [anon_sym_static] = ACTIONS(1204), - [anon_sym_auto] = ACTIONS(1204), - [anon_sym_register] = ACTIONS(1204), - [anon_sym_inline] = ACTIONS(1204), - [anon_sym_thread_local] = ACTIONS(1204), - [anon_sym___thread] = ACTIONS(1204), - [anon_sym_const] = ACTIONS(1204), - [anon_sym_constexpr] = ACTIONS(1204), - [anon_sym_volatile] = ACTIONS(1204), - [anon_sym_restrict] = ACTIONS(1204), - [anon_sym___restrict__] = ACTIONS(1204), - [anon_sym__Atomic] = ACTIONS(1204), - [anon_sym__Noreturn] = ACTIONS(1204), - [anon_sym_noreturn] = ACTIONS(1204), - [sym_primitive_type] = ACTIONS(1204), - [anon_sym_enum] = ACTIONS(1204), - [anon_sym_struct] = ACTIONS(1204), - [anon_sym_union] = ACTIONS(1204), - [anon_sym_if] = ACTIONS(1204), - [anon_sym_else] = ACTIONS(1204), - [anon_sym_switch] = ACTIONS(1204), - [anon_sym_case] = ACTIONS(1204), - [anon_sym_default] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1204), - [anon_sym_do] = ACTIONS(1204), - [anon_sym_for] = ACTIONS(1204), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_break] = ACTIONS(1204), - [anon_sym_continue] = ACTIONS(1204), - [anon_sym_goto] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_sizeof] = ACTIONS(1204), - [anon_sym_offsetof] = ACTIONS(1204), - [anon_sym__Generic] = ACTIONS(1204), - [anon_sym_asm] = ACTIONS(1204), - [anon_sym___asm__] = ACTIONS(1204), - [sym_number_literal] = ACTIONS(1206), - [anon_sym_L_SQUOTE] = ACTIONS(1206), - [anon_sym_u_SQUOTE] = ACTIONS(1206), - [anon_sym_U_SQUOTE] = ACTIONS(1206), - [anon_sym_u8_SQUOTE] = ACTIONS(1206), - [anon_sym_SQUOTE] = ACTIONS(1206), - [anon_sym_L_DQUOTE] = ACTIONS(1206), - [anon_sym_u_DQUOTE] = ACTIONS(1206), - [anon_sym_U_DQUOTE] = ACTIONS(1206), - [anon_sym_u8_DQUOTE] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(1206), - [sym_true] = ACTIONS(1204), - [sym_false] = ACTIONS(1204), - [anon_sym_NULL] = ACTIONS(1204), - [anon_sym_nullptr] = ACTIONS(1204), - [sym_comment] = ACTIONS(3), - }, - [95] = { - [sym_identifier] = ACTIONS(1208), - [aux_sym_preproc_include_token1] = ACTIONS(1208), - [aux_sym_preproc_def_token1] = ACTIONS(1208), - [aux_sym_preproc_if_token1] = ACTIONS(1208), - [aux_sym_preproc_if_token2] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1208), - [aux_sym_preproc_else_token1] = ACTIONS(1208), - [aux_sym_preproc_elif_token1] = ACTIONS(1208), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1208), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1208), - [sym_preproc_directive] = ACTIONS(1208), - [anon_sym_LPAREN2] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1210), - [anon_sym_AMP] = ACTIONS(1210), - [anon_sym_SEMI] = ACTIONS(1210), - [anon_sym_typedef] = ACTIONS(1208), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym___attribute__] = ACTIONS(1208), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(1208), - [anon_sym___cdecl] = ACTIONS(1208), - [anon_sym___clrcall] = ACTIONS(1208), - [anon_sym___stdcall] = ACTIONS(1208), - [anon_sym___fastcall] = ACTIONS(1208), - [anon_sym___thiscall] = ACTIONS(1208), - [anon_sym___vectorcall] = ACTIONS(1208), - [anon_sym_LBRACE] = ACTIONS(1210), - [anon_sym_signed] = ACTIONS(1208), - [anon_sym_unsigned] = ACTIONS(1208), - [anon_sym_long] = ACTIONS(1208), - [anon_sym_short] = ACTIONS(1208), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_auto] = ACTIONS(1208), - [anon_sym_register] = ACTIONS(1208), - [anon_sym_inline] = ACTIONS(1208), - [anon_sym_thread_local] = ACTIONS(1208), - [anon_sym___thread] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_constexpr] = ACTIONS(1208), - [anon_sym_volatile] = ACTIONS(1208), - [anon_sym_restrict] = ACTIONS(1208), - [anon_sym___restrict__] = ACTIONS(1208), - [anon_sym__Atomic] = ACTIONS(1208), - [anon_sym__Noreturn] = ACTIONS(1208), - [anon_sym_noreturn] = ACTIONS(1208), - [sym_primitive_type] = ACTIONS(1208), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_struct] = ACTIONS(1208), - [anon_sym_union] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_else] = ACTIONS(1208), - [anon_sym_switch] = ACTIONS(1208), - [anon_sym_case] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_do] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_goto] = ACTIONS(1208), - [anon_sym_DASH_DASH] = ACTIONS(1210), - [anon_sym_PLUS_PLUS] = ACTIONS(1210), - [anon_sym_sizeof] = ACTIONS(1208), - [anon_sym_offsetof] = ACTIONS(1208), - [anon_sym__Generic] = ACTIONS(1208), - [anon_sym_asm] = ACTIONS(1208), - [anon_sym___asm__] = ACTIONS(1208), - [sym_number_literal] = ACTIONS(1210), - [anon_sym_L_SQUOTE] = ACTIONS(1210), - [anon_sym_u_SQUOTE] = ACTIONS(1210), - [anon_sym_U_SQUOTE] = ACTIONS(1210), - [anon_sym_u8_SQUOTE] = ACTIONS(1210), - [anon_sym_SQUOTE] = ACTIONS(1210), - [anon_sym_L_DQUOTE] = ACTIONS(1210), - [anon_sym_u_DQUOTE] = ACTIONS(1210), - [anon_sym_U_DQUOTE] = ACTIONS(1210), - [anon_sym_u8_DQUOTE] = ACTIONS(1210), - [anon_sym_DQUOTE] = ACTIONS(1210), - [sym_true] = ACTIONS(1208), - [sym_false] = ACTIONS(1208), - [anon_sym_NULL] = ACTIONS(1208), - [anon_sym_nullptr] = ACTIONS(1208), - [sym_comment] = ACTIONS(3), - }, - [96] = { - [sym_identifier] = ACTIONS(1212), - [aux_sym_preproc_include_token1] = ACTIONS(1212), - [aux_sym_preproc_def_token1] = ACTIONS(1212), - [aux_sym_preproc_if_token1] = ACTIONS(1212), - [aux_sym_preproc_if_token2] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1212), - [aux_sym_preproc_else_token1] = ACTIONS(1212), - [aux_sym_preproc_elif_token1] = ACTIONS(1212), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1212), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1212), - [sym_preproc_directive] = ACTIONS(1212), - [anon_sym_LPAREN2] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_DASH] = ACTIONS(1212), - [anon_sym_PLUS] = ACTIONS(1212), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_typedef] = ACTIONS(1212), - [anon_sym_extern] = ACTIONS(1212), - [anon_sym___attribute__] = ACTIONS(1212), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), - [anon_sym___declspec] = ACTIONS(1212), - [anon_sym___cdecl] = ACTIONS(1212), - [anon_sym___clrcall] = ACTIONS(1212), - [anon_sym___stdcall] = ACTIONS(1212), - [anon_sym___fastcall] = ACTIONS(1212), - [anon_sym___thiscall] = ACTIONS(1212), - [anon_sym___vectorcall] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_signed] = ACTIONS(1212), - [anon_sym_unsigned] = ACTIONS(1212), - [anon_sym_long] = ACTIONS(1212), - [anon_sym_short] = ACTIONS(1212), - [anon_sym_static] = ACTIONS(1212), - [anon_sym_auto] = ACTIONS(1212), - [anon_sym_register] = ACTIONS(1212), - [anon_sym_inline] = ACTIONS(1212), - [anon_sym_thread_local] = ACTIONS(1212), - [anon_sym___thread] = ACTIONS(1212), - [anon_sym_const] = ACTIONS(1212), - [anon_sym_constexpr] = ACTIONS(1212), - [anon_sym_volatile] = ACTIONS(1212), - [anon_sym_restrict] = ACTIONS(1212), - [anon_sym___restrict__] = ACTIONS(1212), - [anon_sym__Atomic] = ACTIONS(1212), - [anon_sym__Noreturn] = ACTIONS(1212), - [anon_sym_noreturn] = ACTIONS(1212), - [sym_primitive_type] = ACTIONS(1212), - [anon_sym_enum] = ACTIONS(1212), - [anon_sym_struct] = ACTIONS(1212), - [anon_sym_union] = ACTIONS(1212), - [anon_sym_if] = ACTIONS(1212), - [anon_sym_else] = ACTIONS(1212), - [anon_sym_switch] = ACTIONS(1212), - [anon_sym_case] = ACTIONS(1212), - [anon_sym_default] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(1212), - [anon_sym_do] = ACTIONS(1212), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_return] = ACTIONS(1212), - [anon_sym_break] = ACTIONS(1212), - [anon_sym_continue] = ACTIONS(1212), - [anon_sym_goto] = ACTIONS(1212), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_sizeof] = ACTIONS(1212), - [anon_sym_offsetof] = ACTIONS(1212), - [anon_sym__Generic] = ACTIONS(1212), - [anon_sym_asm] = ACTIONS(1212), - [anon_sym___asm__] = ACTIONS(1212), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_L_SQUOTE] = ACTIONS(1214), - [anon_sym_u_SQUOTE] = ACTIONS(1214), - [anon_sym_U_SQUOTE] = ACTIONS(1214), - [anon_sym_u8_SQUOTE] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [anon_sym_L_DQUOTE] = ACTIONS(1214), - [anon_sym_u_DQUOTE] = ACTIONS(1214), - [anon_sym_U_DQUOTE] = ACTIONS(1214), - [anon_sym_u8_DQUOTE] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_true] = ACTIONS(1212), - [sym_false] = ACTIONS(1212), - [anon_sym_NULL] = ACTIONS(1212), - [anon_sym_nullptr] = ACTIONS(1212), - [sym_comment] = ACTIONS(3), - }, - [97] = { - [sym_identifier] = ACTIONS(1208), - [aux_sym_preproc_include_token1] = ACTIONS(1208), - [aux_sym_preproc_def_token1] = ACTIONS(1208), - [aux_sym_preproc_if_token1] = ACTIONS(1208), - [aux_sym_preproc_if_token2] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1208), - [aux_sym_preproc_else_token1] = ACTIONS(1208), - [aux_sym_preproc_elif_token1] = ACTIONS(1208), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1208), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1208), - [sym_preproc_directive] = ACTIONS(1208), - [anon_sym_LPAREN2] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1210), - [anon_sym_AMP] = ACTIONS(1210), - [anon_sym_SEMI] = ACTIONS(1210), - [anon_sym_typedef] = ACTIONS(1208), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym___attribute__] = ACTIONS(1208), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(1208), - [anon_sym___cdecl] = ACTIONS(1208), - [anon_sym___clrcall] = ACTIONS(1208), - [anon_sym___stdcall] = ACTIONS(1208), - [anon_sym___fastcall] = ACTIONS(1208), - [anon_sym___thiscall] = ACTIONS(1208), - [anon_sym___vectorcall] = ACTIONS(1208), - [anon_sym_LBRACE] = ACTIONS(1210), - [anon_sym_signed] = ACTIONS(1208), - [anon_sym_unsigned] = ACTIONS(1208), - [anon_sym_long] = ACTIONS(1208), - [anon_sym_short] = ACTIONS(1208), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_auto] = ACTIONS(1208), - [anon_sym_register] = ACTIONS(1208), - [anon_sym_inline] = ACTIONS(1208), - [anon_sym_thread_local] = ACTIONS(1208), - [anon_sym___thread] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_constexpr] = ACTIONS(1208), - [anon_sym_volatile] = ACTIONS(1208), - [anon_sym_restrict] = ACTIONS(1208), - [anon_sym___restrict__] = ACTIONS(1208), - [anon_sym__Atomic] = ACTIONS(1208), - [anon_sym__Noreturn] = ACTIONS(1208), - [anon_sym_noreturn] = ACTIONS(1208), - [sym_primitive_type] = ACTIONS(1208), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_struct] = ACTIONS(1208), - [anon_sym_union] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_else] = ACTIONS(1208), - [anon_sym_switch] = ACTIONS(1208), - [anon_sym_case] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_do] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_goto] = ACTIONS(1208), - [anon_sym_DASH_DASH] = ACTIONS(1210), - [anon_sym_PLUS_PLUS] = ACTIONS(1210), - [anon_sym_sizeof] = ACTIONS(1208), - [anon_sym_offsetof] = ACTIONS(1208), - [anon_sym__Generic] = ACTIONS(1208), - [anon_sym_asm] = ACTIONS(1208), - [anon_sym___asm__] = ACTIONS(1208), - [sym_number_literal] = ACTIONS(1210), - [anon_sym_L_SQUOTE] = ACTIONS(1210), - [anon_sym_u_SQUOTE] = ACTIONS(1210), - [anon_sym_U_SQUOTE] = ACTIONS(1210), - [anon_sym_u8_SQUOTE] = ACTIONS(1210), - [anon_sym_SQUOTE] = ACTIONS(1210), - [anon_sym_L_DQUOTE] = ACTIONS(1210), - [anon_sym_u_DQUOTE] = ACTIONS(1210), - [anon_sym_U_DQUOTE] = ACTIONS(1210), - [anon_sym_u8_DQUOTE] = ACTIONS(1210), - [anon_sym_DQUOTE] = ACTIONS(1210), - [sym_true] = ACTIONS(1208), - [sym_false] = ACTIONS(1208), - [anon_sym_NULL] = ACTIONS(1208), - [anon_sym_nullptr] = ACTIONS(1208), - [sym_comment] = ACTIONS(3), - }, - [98] = { - [sym_identifier] = ACTIONS(1216), - [aux_sym_preproc_include_token1] = ACTIONS(1216), - [aux_sym_preproc_def_token1] = ACTIONS(1216), - [aux_sym_preproc_if_token1] = ACTIONS(1216), - [aux_sym_preproc_if_token2] = ACTIONS(1216), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1216), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1216), - [aux_sym_preproc_else_token1] = ACTIONS(1216), - [aux_sym_preproc_elif_token1] = ACTIONS(1216), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1216), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1216), - [sym_preproc_directive] = ACTIONS(1216), - [anon_sym_LPAREN2] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1218), - [anon_sym_TILDE] = ACTIONS(1218), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_STAR] = ACTIONS(1218), - [anon_sym_AMP] = ACTIONS(1218), - [anon_sym_SEMI] = ACTIONS(1218), - [anon_sym_typedef] = ACTIONS(1216), - [anon_sym_extern] = ACTIONS(1216), - [anon_sym___attribute__] = ACTIONS(1216), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1218), - [anon_sym___declspec] = ACTIONS(1216), - [anon_sym___cdecl] = ACTIONS(1216), - [anon_sym___clrcall] = ACTIONS(1216), - [anon_sym___stdcall] = ACTIONS(1216), - [anon_sym___fastcall] = ACTIONS(1216), - [anon_sym___thiscall] = ACTIONS(1216), - [anon_sym___vectorcall] = ACTIONS(1216), - [anon_sym_LBRACE] = ACTIONS(1218), - [anon_sym_signed] = ACTIONS(1216), - [anon_sym_unsigned] = ACTIONS(1216), - [anon_sym_long] = ACTIONS(1216), - [anon_sym_short] = ACTIONS(1216), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_auto] = ACTIONS(1216), - [anon_sym_register] = ACTIONS(1216), - [anon_sym_inline] = ACTIONS(1216), - [anon_sym_thread_local] = ACTIONS(1216), - [anon_sym___thread] = ACTIONS(1216), - [anon_sym_const] = ACTIONS(1216), - [anon_sym_constexpr] = ACTIONS(1216), - [anon_sym_volatile] = ACTIONS(1216), - [anon_sym_restrict] = ACTIONS(1216), - [anon_sym___restrict__] = ACTIONS(1216), - [anon_sym__Atomic] = ACTIONS(1216), - [anon_sym__Noreturn] = ACTIONS(1216), - [anon_sym_noreturn] = ACTIONS(1216), - [sym_primitive_type] = ACTIONS(1216), - [anon_sym_enum] = ACTIONS(1216), - [anon_sym_struct] = ACTIONS(1216), - [anon_sym_union] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_else] = ACTIONS(1216), - [anon_sym_switch] = ACTIONS(1216), - [anon_sym_case] = ACTIONS(1216), - [anon_sym_default] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_do] = ACTIONS(1216), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_goto] = ACTIONS(1216), - [anon_sym_DASH_DASH] = ACTIONS(1218), - [anon_sym_PLUS_PLUS] = ACTIONS(1218), - [anon_sym_sizeof] = ACTIONS(1216), - [anon_sym_offsetof] = ACTIONS(1216), - [anon_sym__Generic] = ACTIONS(1216), - [anon_sym_asm] = ACTIONS(1216), - [anon_sym___asm__] = ACTIONS(1216), - [sym_number_literal] = ACTIONS(1218), - [anon_sym_L_SQUOTE] = ACTIONS(1218), - [anon_sym_u_SQUOTE] = ACTIONS(1218), - [anon_sym_U_SQUOTE] = ACTIONS(1218), - [anon_sym_u8_SQUOTE] = ACTIONS(1218), - [anon_sym_SQUOTE] = ACTIONS(1218), - [anon_sym_L_DQUOTE] = ACTIONS(1218), - [anon_sym_u_DQUOTE] = ACTIONS(1218), - [anon_sym_U_DQUOTE] = ACTIONS(1218), - [anon_sym_u8_DQUOTE] = ACTIONS(1218), - [anon_sym_DQUOTE] = ACTIONS(1218), - [sym_true] = ACTIONS(1216), - [sym_false] = ACTIONS(1216), - [anon_sym_NULL] = ACTIONS(1216), - [anon_sym_nullptr] = ACTIONS(1216), - [sym_comment] = ACTIONS(3), - }, - [99] = { - [sym_identifier] = ACTIONS(1220), - [aux_sym_preproc_include_token1] = ACTIONS(1220), - [aux_sym_preproc_def_token1] = ACTIONS(1220), - [aux_sym_preproc_if_token1] = ACTIONS(1220), - [aux_sym_preproc_if_token2] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1220), - [aux_sym_preproc_else_token1] = ACTIONS(1220), - [aux_sym_preproc_elif_token1] = ACTIONS(1220), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1220), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1220), - [sym_preproc_directive] = ACTIONS(1220), - [anon_sym_LPAREN2] = ACTIONS(1222), - [anon_sym_BANG] = ACTIONS(1222), - [anon_sym_TILDE] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_typedef] = ACTIONS(1220), - [anon_sym_extern] = ACTIONS(1220), - [anon_sym___attribute__] = ACTIONS(1220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), - [anon_sym___declspec] = ACTIONS(1220), - [anon_sym___cdecl] = ACTIONS(1220), - [anon_sym___clrcall] = ACTIONS(1220), - [anon_sym___stdcall] = ACTIONS(1220), - [anon_sym___fastcall] = ACTIONS(1220), - [anon_sym___thiscall] = ACTIONS(1220), - [anon_sym___vectorcall] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_signed] = ACTIONS(1220), - [anon_sym_unsigned] = ACTIONS(1220), - [anon_sym_long] = ACTIONS(1220), - [anon_sym_short] = ACTIONS(1220), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_auto] = ACTIONS(1220), - [anon_sym_register] = ACTIONS(1220), - [anon_sym_inline] = ACTIONS(1220), - [anon_sym_thread_local] = ACTIONS(1220), - [anon_sym___thread] = ACTIONS(1220), - [anon_sym_const] = ACTIONS(1220), - [anon_sym_constexpr] = ACTIONS(1220), - [anon_sym_volatile] = ACTIONS(1220), - [anon_sym_restrict] = ACTIONS(1220), - [anon_sym___restrict__] = ACTIONS(1220), - [anon_sym__Atomic] = ACTIONS(1220), - [anon_sym__Noreturn] = ACTIONS(1220), - [anon_sym_noreturn] = ACTIONS(1220), - [sym_primitive_type] = ACTIONS(1220), - [anon_sym_enum] = ACTIONS(1220), - [anon_sym_struct] = ACTIONS(1220), - [anon_sym_union] = ACTIONS(1220), - [anon_sym_if] = ACTIONS(1220), - [anon_sym_else] = ACTIONS(1220), - [anon_sym_switch] = ACTIONS(1220), - [anon_sym_case] = ACTIONS(1220), - [anon_sym_default] = ACTIONS(1220), - [anon_sym_while] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1220), - [anon_sym_for] = ACTIONS(1220), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_break] = ACTIONS(1220), - [anon_sym_continue] = ACTIONS(1220), - [anon_sym_goto] = ACTIONS(1220), - [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_PLUS_PLUS] = ACTIONS(1222), - [anon_sym_sizeof] = ACTIONS(1220), - [anon_sym_offsetof] = ACTIONS(1220), - [anon_sym__Generic] = ACTIONS(1220), - [anon_sym_asm] = ACTIONS(1220), - [anon_sym___asm__] = ACTIONS(1220), - [sym_number_literal] = ACTIONS(1222), - [anon_sym_L_SQUOTE] = ACTIONS(1222), - [anon_sym_u_SQUOTE] = ACTIONS(1222), - [anon_sym_U_SQUOTE] = ACTIONS(1222), - [anon_sym_u8_SQUOTE] = ACTIONS(1222), - [anon_sym_SQUOTE] = ACTIONS(1222), - [anon_sym_L_DQUOTE] = ACTIONS(1222), - [anon_sym_u_DQUOTE] = ACTIONS(1222), - [anon_sym_U_DQUOTE] = ACTIONS(1222), - [anon_sym_u8_DQUOTE] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym_true] = ACTIONS(1220), - [sym_false] = ACTIONS(1220), - [anon_sym_NULL] = ACTIONS(1220), - [anon_sym_nullptr] = ACTIONS(1220), - [sym_comment] = ACTIONS(3), - }, - [100] = { - [sym_identifier] = ACTIONS(1224), - [aux_sym_preproc_include_token1] = ACTIONS(1224), - [aux_sym_preproc_def_token1] = ACTIONS(1224), - [aux_sym_preproc_if_token1] = ACTIONS(1224), - [aux_sym_preproc_if_token2] = ACTIONS(1224), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1224), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1224), - [aux_sym_preproc_else_token1] = ACTIONS(1224), - [aux_sym_preproc_elif_token1] = ACTIONS(1224), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1224), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1224), - [sym_preproc_directive] = ACTIONS(1224), - [anon_sym_LPAREN2] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(1226), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_DASH] = ACTIONS(1224), - [anon_sym_PLUS] = ACTIONS(1224), - [anon_sym_STAR] = ACTIONS(1226), - [anon_sym_AMP] = ACTIONS(1226), - [anon_sym_SEMI] = ACTIONS(1226), - [anon_sym_typedef] = ACTIONS(1224), - [anon_sym_extern] = ACTIONS(1224), - [anon_sym___attribute__] = ACTIONS(1224), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1226), - [anon_sym___declspec] = ACTIONS(1224), - [anon_sym___cdecl] = ACTIONS(1224), - [anon_sym___clrcall] = ACTIONS(1224), - [anon_sym___stdcall] = ACTIONS(1224), - [anon_sym___fastcall] = ACTIONS(1224), - [anon_sym___thiscall] = ACTIONS(1224), - [anon_sym___vectorcall] = ACTIONS(1224), - [anon_sym_LBRACE] = ACTIONS(1226), - [anon_sym_signed] = ACTIONS(1224), - [anon_sym_unsigned] = ACTIONS(1224), - [anon_sym_long] = ACTIONS(1224), - [anon_sym_short] = ACTIONS(1224), - [anon_sym_static] = ACTIONS(1224), - [anon_sym_auto] = ACTIONS(1224), - [anon_sym_register] = ACTIONS(1224), - [anon_sym_inline] = ACTIONS(1224), - [anon_sym_thread_local] = ACTIONS(1224), - [anon_sym___thread] = ACTIONS(1224), - [anon_sym_const] = ACTIONS(1224), - [anon_sym_constexpr] = ACTIONS(1224), - [anon_sym_volatile] = ACTIONS(1224), - [anon_sym_restrict] = ACTIONS(1224), - [anon_sym___restrict__] = ACTIONS(1224), - [anon_sym__Atomic] = ACTIONS(1224), - [anon_sym__Noreturn] = ACTIONS(1224), - [anon_sym_noreturn] = ACTIONS(1224), - [sym_primitive_type] = ACTIONS(1224), - [anon_sym_enum] = ACTIONS(1224), - [anon_sym_struct] = ACTIONS(1224), - [anon_sym_union] = ACTIONS(1224), - [anon_sym_if] = ACTIONS(1224), - [anon_sym_else] = ACTIONS(1224), - [anon_sym_switch] = ACTIONS(1224), - [anon_sym_case] = ACTIONS(1224), - [anon_sym_default] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1224), - [anon_sym_do] = ACTIONS(1224), - [anon_sym_for] = ACTIONS(1224), - [anon_sym_return] = ACTIONS(1224), - [anon_sym_break] = ACTIONS(1224), - [anon_sym_continue] = ACTIONS(1224), - [anon_sym_goto] = ACTIONS(1224), - [anon_sym_DASH_DASH] = ACTIONS(1226), - [anon_sym_PLUS_PLUS] = ACTIONS(1226), - [anon_sym_sizeof] = ACTIONS(1224), - [anon_sym_offsetof] = ACTIONS(1224), - [anon_sym__Generic] = ACTIONS(1224), - [anon_sym_asm] = ACTIONS(1224), - [anon_sym___asm__] = ACTIONS(1224), - [sym_number_literal] = ACTIONS(1226), - [anon_sym_L_SQUOTE] = ACTIONS(1226), - [anon_sym_u_SQUOTE] = ACTIONS(1226), - [anon_sym_U_SQUOTE] = ACTIONS(1226), - [anon_sym_u8_SQUOTE] = ACTIONS(1226), - [anon_sym_SQUOTE] = ACTIONS(1226), - [anon_sym_L_DQUOTE] = ACTIONS(1226), - [anon_sym_u_DQUOTE] = ACTIONS(1226), - [anon_sym_U_DQUOTE] = ACTIONS(1226), - [anon_sym_u8_DQUOTE] = ACTIONS(1226), - [anon_sym_DQUOTE] = ACTIONS(1226), - [sym_true] = ACTIONS(1224), - [sym_false] = ACTIONS(1224), - [anon_sym_NULL] = ACTIONS(1224), - [anon_sym_nullptr] = ACTIONS(1224), - [sym_comment] = ACTIONS(3), - }, - [101] = { - [sym_identifier] = ACTIONS(1228), - [aux_sym_preproc_include_token1] = ACTIONS(1228), - [aux_sym_preproc_def_token1] = ACTIONS(1228), - [aux_sym_preproc_if_token1] = ACTIONS(1228), - [aux_sym_preproc_if_token2] = ACTIONS(1228), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1228), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1228), - [aux_sym_preproc_else_token1] = ACTIONS(1228), - [aux_sym_preproc_elif_token1] = ACTIONS(1228), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1228), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1228), - [sym_preproc_directive] = ACTIONS(1228), - [anon_sym_LPAREN2] = ACTIONS(1230), - [anon_sym_BANG] = ACTIONS(1230), - [anon_sym_TILDE] = ACTIONS(1230), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1230), - [anon_sym_AMP] = ACTIONS(1230), - [anon_sym_SEMI] = ACTIONS(1230), - [anon_sym_typedef] = ACTIONS(1228), - [anon_sym_extern] = ACTIONS(1228), - [anon_sym___attribute__] = ACTIONS(1228), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1230), - [anon_sym___declspec] = ACTIONS(1228), - [anon_sym___cdecl] = ACTIONS(1228), - [anon_sym___clrcall] = ACTIONS(1228), - [anon_sym___stdcall] = ACTIONS(1228), - [anon_sym___fastcall] = ACTIONS(1228), - [anon_sym___thiscall] = ACTIONS(1228), - [anon_sym___vectorcall] = ACTIONS(1228), - [anon_sym_LBRACE] = ACTIONS(1230), - [anon_sym_signed] = ACTIONS(1228), - [anon_sym_unsigned] = ACTIONS(1228), - [anon_sym_long] = ACTIONS(1228), - [anon_sym_short] = ACTIONS(1228), - [anon_sym_static] = ACTIONS(1228), - [anon_sym_auto] = ACTIONS(1228), - [anon_sym_register] = ACTIONS(1228), - [anon_sym_inline] = ACTIONS(1228), - [anon_sym_thread_local] = ACTIONS(1228), - [anon_sym___thread] = ACTIONS(1228), - [anon_sym_const] = ACTIONS(1228), - [anon_sym_constexpr] = ACTIONS(1228), - [anon_sym_volatile] = ACTIONS(1228), - [anon_sym_restrict] = ACTIONS(1228), - [anon_sym___restrict__] = ACTIONS(1228), - [anon_sym__Atomic] = ACTIONS(1228), - [anon_sym__Noreturn] = ACTIONS(1228), - [anon_sym_noreturn] = ACTIONS(1228), - [sym_primitive_type] = ACTIONS(1228), - [anon_sym_enum] = ACTIONS(1228), - [anon_sym_struct] = ACTIONS(1228), - [anon_sym_union] = ACTIONS(1228), - [anon_sym_if] = ACTIONS(1228), - [anon_sym_else] = ACTIONS(1228), - [anon_sym_switch] = ACTIONS(1228), - [anon_sym_case] = ACTIONS(1228), - [anon_sym_default] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(1228), - [anon_sym_for] = ACTIONS(1228), - [anon_sym_return] = ACTIONS(1228), - [anon_sym_break] = ACTIONS(1228), - [anon_sym_continue] = ACTIONS(1228), - [anon_sym_goto] = ACTIONS(1228), - [anon_sym_DASH_DASH] = ACTIONS(1230), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_sizeof] = ACTIONS(1228), - [anon_sym_offsetof] = ACTIONS(1228), - [anon_sym__Generic] = ACTIONS(1228), - [anon_sym_asm] = ACTIONS(1228), - [anon_sym___asm__] = ACTIONS(1228), - [sym_number_literal] = ACTIONS(1230), - [anon_sym_L_SQUOTE] = ACTIONS(1230), - [anon_sym_u_SQUOTE] = ACTIONS(1230), - [anon_sym_U_SQUOTE] = ACTIONS(1230), - [anon_sym_u8_SQUOTE] = ACTIONS(1230), - [anon_sym_SQUOTE] = ACTIONS(1230), - [anon_sym_L_DQUOTE] = ACTIONS(1230), - [anon_sym_u_DQUOTE] = ACTIONS(1230), - [anon_sym_U_DQUOTE] = ACTIONS(1230), - [anon_sym_u8_DQUOTE] = ACTIONS(1230), - [anon_sym_DQUOTE] = ACTIONS(1230), - [sym_true] = ACTIONS(1228), - [sym_false] = ACTIONS(1228), - [anon_sym_NULL] = ACTIONS(1228), - [anon_sym_nullptr] = ACTIONS(1228), - [sym_comment] = ACTIONS(3), - }, - [102] = { - [sym_identifier] = ACTIONS(1232), - [aux_sym_preproc_include_token1] = ACTIONS(1232), - [aux_sym_preproc_def_token1] = ACTIONS(1232), - [aux_sym_preproc_if_token1] = ACTIONS(1232), - [aux_sym_preproc_if_token2] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1232), - [aux_sym_preproc_else_token1] = ACTIONS(1232), - [aux_sym_preproc_elif_token1] = ACTIONS(1232), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1232), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1232), - [sym_preproc_directive] = ACTIONS(1232), - [anon_sym_LPAREN2] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1234), - [anon_sym_TILDE] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_PLUS] = ACTIONS(1232), - [anon_sym_STAR] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1232), - [anon_sym_extern] = ACTIONS(1232), - [anon_sym___attribute__] = ACTIONS(1232), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1234), - [anon_sym___declspec] = ACTIONS(1232), - [anon_sym___cdecl] = ACTIONS(1232), - [anon_sym___clrcall] = ACTIONS(1232), - [anon_sym___stdcall] = ACTIONS(1232), - [anon_sym___fastcall] = ACTIONS(1232), - [anon_sym___thiscall] = ACTIONS(1232), - [anon_sym___vectorcall] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_signed] = ACTIONS(1232), - [anon_sym_unsigned] = ACTIONS(1232), - [anon_sym_long] = ACTIONS(1232), - [anon_sym_short] = ACTIONS(1232), - [anon_sym_static] = ACTIONS(1232), - [anon_sym_auto] = ACTIONS(1232), - [anon_sym_register] = ACTIONS(1232), - [anon_sym_inline] = ACTIONS(1232), - [anon_sym_thread_local] = ACTIONS(1232), - [anon_sym___thread] = ACTIONS(1232), - [anon_sym_const] = ACTIONS(1232), - [anon_sym_constexpr] = ACTIONS(1232), - [anon_sym_volatile] = ACTIONS(1232), - [anon_sym_restrict] = ACTIONS(1232), - [anon_sym___restrict__] = ACTIONS(1232), - [anon_sym__Atomic] = ACTIONS(1232), - [anon_sym__Noreturn] = ACTIONS(1232), - [anon_sym_noreturn] = ACTIONS(1232), - [sym_primitive_type] = ACTIONS(1232), - [anon_sym_enum] = ACTIONS(1232), - [anon_sym_struct] = ACTIONS(1232), - [anon_sym_union] = ACTIONS(1232), - [anon_sym_if] = ACTIONS(1232), - [anon_sym_else] = ACTIONS(1232), - [anon_sym_switch] = ACTIONS(1232), - [anon_sym_case] = ACTIONS(1232), - [anon_sym_default] = ACTIONS(1232), - [anon_sym_while] = ACTIONS(1232), - [anon_sym_do] = ACTIONS(1232), - [anon_sym_for] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1232), - [anon_sym_break] = ACTIONS(1232), - [anon_sym_continue] = ACTIONS(1232), - [anon_sym_goto] = ACTIONS(1232), - [anon_sym_DASH_DASH] = ACTIONS(1234), - [anon_sym_PLUS_PLUS] = ACTIONS(1234), - [anon_sym_sizeof] = ACTIONS(1232), - [anon_sym_offsetof] = ACTIONS(1232), - [anon_sym__Generic] = ACTIONS(1232), - [anon_sym_asm] = ACTIONS(1232), - [anon_sym___asm__] = ACTIONS(1232), - [sym_number_literal] = ACTIONS(1234), - [anon_sym_L_SQUOTE] = ACTIONS(1234), - [anon_sym_u_SQUOTE] = ACTIONS(1234), - [anon_sym_U_SQUOTE] = ACTIONS(1234), - [anon_sym_u8_SQUOTE] = ACTIONS(1234), - [anon_sym_SQUOTE] = ACTIONS(1234), - [anon_sym_L_DQUOTE] = ACTIONS(1234), - [anon_sym_u_DQUOTE] = ACTIONS(1234), - [anon_sym_U_DQUOTE] = ACTIONS(1234), - [anon_sym_u8_DQUOTE] = ACTIONS(1234), - [anon_sym_DQUOTE] = ACTIONS(1234), - [sym_true] = ACTIONS(1232), - [sym_false] = ACTIONS(1232), - [anon_sym_NULL] = ACTIONS(1232), - [anon_sym_nullptr] = ACTIONS(1232), - [sym_comment] = ACTIONS(3), - }, - [103] = { - [sym_identifier] = ACTIONS(1236), - [aux_sym_preproc_include_token1] = ACTIONS(1236), - [aux_sym_preproc_def_token1] = ACTIONS(1236), - [aux_sym_preproc_if_token1] = ACTIONS(1236), - [aux_sym_preproc_if_token2] = ACTIONS(1236), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1236), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1236), - [aux_sym_preproc_else_token1] = ACTIONS(1236), - [aux_sym_preproc_elif_token1] = ACTIONS(1236), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1236), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1236), - [sym_preproc_directive] = ACTIONS(1236), - [anon_sym_LPAREN2] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(1238), - [anon_sym_TILDE] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1236), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1238), - [anon_sym_typedef] = ACTIONS(1236), - [anon_sym_extern] = ACTIONS(1236), - [anon_sym___attribute__] = ACTIONS(1236), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1238), - [anon_sym___declspec] = ACTIONS(1236), - [anon_sym___cdecl] = ACTIONS(1236), - [anon_sym___clrcall] = ACTIONS(1236), - [anon_sym___stdcall] = ACTIONS(1236), - [anon_sym___fastcall] = ACTIONS(1236), - [anon_sym___thiscall] = ACTIONS(1236), - [anon_sym___vectorcall] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_signed] = ACTIONS(1236), - [anon_sym_unsigned] = ACTIONS(1236), - [anon_sym_long] = ACTIONS(1236), - [anon_sym_short] = ACTIONS(1236), - [anon_sym_static] = ACTIONS(1236), - [anon_sym_auto] = ACTIONS(1236), - [anon_sym_register] = ACTIONS(1236), - [anon_sym_inline] = ACTIONS(1236), - [anon_sym_thread_local] = ACTIONS(1236), - [anon_sym___thread] = ACTIONS(1236), - [anon_sym_const] = ACTIONS(1236), - [anon_sym_constexpr] = ACTIONS(1236), - [anon_sym_volatile] = ACTIONS(1236), - [anon_sym_restrict] = ACTIONS(1236), - [anon_sym___restrict__] = ACTIONS(1236), - [anon_sym__Atomic] = ACTIONS(1236), - [anon_sym__Noreturn] = ACTIONS(1236), - [anon_sym_noreturn] = ACTIONS(1236), - [sym_primitive_type] = ACTIONS(1236), - [anon_sym_enum] = ACTIONS(1236), - [anon_sym_struct] = ACTIONS(1236), - [anon_sym_union] = ACTIONS(1236), - [anon_sym_if] = ACTIONS(1236), - [anon_sym_else] = ACTIONS(1236), - [anon_sym_switch] = ACTIONS(1236), - [anon_sym_case] = ACTIONS(1236), - [anon_sym_default] = ACTIONS(1236), - [anon_sym_while] = ACTIONS(1236), - [anon_sym_do] = ACTIONS(1236), - [anon_sym_for] = ACTIONS(1236), - [anon_sym_return] = ACTIONS(1236), - [anon_sym_break] = ACTIONS(1236), - [anon_sym_continue] = ACTIONS(1236), - [anon_sym_goto] = ACTIONS(1236), - [anon_sym_DASH_DASH] = ACTIONS(1238), - [anon_sym_PLUS_PLUS] = ACTIONS(1238), - [anon_sym_sizeof] = ACTIONS(1236), - [anon_sym_offsetof] = ACTIONS(1236), - [anon_sym__Generic] = ACTIONS(1236), - [anon_sym_asm] = ACTIONS(1236), - [anon_sym___asm__] = ACTIONS(1236), - [sym_number_literal] = ACTIONS(1238), - [anon_sym_L_SQUOTE] = ACTIONS(1238), - [anon_sym_u_SQUOTE] = ACTIONS(1238), - [anon_sym_U_SQUOTE] = ACTIONS(1238), - [anon_sym_u8_SQUOTE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1238), - [anon_sym_L_DQUOTE] = ACTIONS(1238), - [anon_sym_u_DQUOTE] = ACTIONS(1238), - [anon_sym_U_DQUOTE] = ACTIONS(1238), - [anon_sym_u8_DQUOTE] = ACTIONS(1238), - [anon_sym_DQUOTE] = ACTIONS(1238), - [sym_true] = ACTIONS(1236), - [sym_false] = ACTIONS(1236), - [anon_sym_NULL] = ACTIONS(1236), - [anon_sym_nullptr] = ACTIONS(1236), - [sym_comment] = ACTIONS(3), - }, - [104] = { [sym_identifier] = ACTIONS(1240), [aux_sym_preproc_include_token1] = ACTIONS(1240), [aux_sym_preproc_def_token1] = ACTIONS(1240), @@ -29199,6 +29803,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1242), [anon_sym_AMP] = ACTIONS(1242), [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym___extension__] = ACTIONS(1240), [anon_sym_typedef] = ACTIONS(1240), [anon_sym_extern] = ACTIONS(1240), [anon_sym___attribute__] = ACTIONS(1240), @@ -29219,6 +29824,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1240), [anon_sym_register] = ACTIONS(1240), [anon_sym_inline] = ACTIONS(1240), + [anon_sym___inline] = ACTIONS(1240), + [anon_sym___inline__] = ACTIONS(1240), + [anon_sym___forceinline] = ACTIONS(1240), [anon_sym_thread_local] = ACTIONS(1240), [anon_sym___thread] = ACTIONS(1240), [anon_sym_const] = ACTIONS(1240), @@ -29248,7 +29856,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1242), [anon_sym_PLUS_PLUS] = ACTIONS(1242), [anon_sym_sizeof] = ACTIONS(1240), + [anon_sym___alignof__] = ACTIONS(1240), + [anon_sym___alignof] = ACTIONS(1240), + [anon_sym__alignof] = ACTIONS(1240), + [anon_sym_alignof] = ACTIONS(1240), + [anon_sym__Alignof] = ACTIONS(1240), [anon_sym_offsetof] = ACTIONS(1240), + [anon_sym___builtin_va_arg] = ACTIONS(1240), [anon_sym__Generic] = ACTIONS(1240), [anon_sym_asm] = ACTIONS(1240), [anon_sym___asm__] = ACTIONS(1240), @@ -29269,7 +29883,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1240), [sym_comment] = ACTIONS(3), }, - [105] = { + [92] = { [sym_identifier] = ACTIONS(1244), [aux_sym_preproc_include_token1] = ACTIONS(1244), [aux_sym_preproc_def_token1] = ACTIONS(1244), @@ -29290,6 +29904,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1246), [anon_sym_AMP] = ACTIONS(1246), [anon_sym_SEMI] = ACTIONS(1246), + [anon_sym___extension__] = ACTIONS(1244), [anon_sym_typedef] = ACTIONS(1244), [anon_sym_extern] = ACTIONS(1244), [anon_sym___attribute__] = ACTIONS(1244), @@ -29310,6 +29925,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1244), [anon_sym_register] = ACTIONS(1244), [anon_sym_inline] = ACTIONS(1244), + [anon_sym___inline] = ACTIONS(1244), + [anon_sym___inline__] = ACTIONS(1244), + [anon_sym___forceinline] = ACTIONS(1244), [anon_sym_thread_local] = ACTIONS(1244), [anon_sym___thread] = ACTIONS(1244), [anon_sym_const] = ACTIONS(1244), @@ -29339,7 +29957,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1246), [anon_sym_PLUS_PLUS] = ACTIONS(1246), [anon_sym_sizeof] = ACTIONS(1244), + [anon_sym___alignof__] = ACTIONS(1244), + [anon_sym___alignof] = ACTIONS(1244), + [anon_sym__alignof] = ACTIONS(1244), + [anon_sym_alignof] = ACTIONS(1244), + [anon_sym__Alignof] = ACTIONS(1244), [anon_sym_offsetof] = ACTIONS(1244), + [anon_sym___builtin_va_arg] = ACTIONS(1244), [anon_sym__Generic] = ACTIONS(1244), [anon_sym_asm] = ACTIONS(1244), [anon_sym___asm__] = ACTIONS(1244), @@ -29360,7 +29984,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1244), [sym_comment] = ACTIONS(3), }, - [106] = { + [93] = { [sym_identifier] = ACTIONS(1248), [aux_sym_preproc_include_token1] = ACTIONS(1248), [aux_sym_preproc_def_token1] = ACTIONS(1248), @@ -29381,6 +30005,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1250), [anon_sym_AMP] = ACTIONS(1250), [anon_sym_SEMI] = ACTIONS(1250), + [anon_sym___extension__] = ACTIONS(1248), [anon_sym_typedef] = ACTIONS(1248), [anon_sym_extern] = ACTIONS(1248), [anon_sym___attribute__] = ACTIONS(1248), @@ -29401,6 +30026,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1248), [anon_sym_register] = ACTIONS(1248), [anon_sym_inline] = ACTIONS(1248), + [anon_sym___inline] = ACTIONS(1248), + [anon_sym___inline__] = ACTIONS(1248), + [anon_sym___forceinline] = ACTIONS(1248), [anon_sym_thread_local] = ACTIONS(1248), [anon_sym___thread] = ACTIONS(1248), [anon_sym_const] = ACTIONS(1248), @@ -29430,7 +30058,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1250), [anon_sym_PLUS_PLUS] = ACTIONS(1250), [anon_sym_sizeof] = ACTIONS(1248), + [anon_sym___alignof__] = ACTIONS(1248), + [anon_sym___alignof] = ACTIONS(1248), + [anon_sym__alignof] = ACTIONS(1248), + [anon_sym_alignof] = ACTIONS(1248), + [anon_sym__Alignof] = ACTIONS(1248), [anon_sym_offsetof] = ACTIONS(1248), + [anon_sym___builtin_va_arg] = ACTIONS(1248), [anon_sym__Generic] = ACTIONS(1248), [anon_sym_asm] = ACTIONS(1248), [anon_sym___asm__] = ACTIONS(1248), @@ -29451,7 +30085,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1248), [sym_comment] = ACTIONS(3), }, - [107] = { + [94] = { [sym_identifier] = ACTIONS(1252), [aux_sym_preproc_include_token1] = ACTIONS(1252), [aux_sym_preproc_def_token1] = ACTIONS(1252), @@ -29472,6 +30106,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(1252), [anon_sym_typedef] = ACTIONS(1252), [anon_sym_extern] = ACTIONS(1252), [anon_sym___attribute__] = ACTIONS(1252), @@ -29492,6 +30127,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1252), [anon_sym_register] = ACTIONS(1252), [anon_sym_inline] = ACTIONS(1252), + [anon_sym___inline] = ACTIONS(1252), + [anon_sym___inline__] = ACTIONS(1252), + [anon_sym___forceinline] = ACTIONS(1252), [anon_sym_thread_local] = ACTIONS(1252), [anon_sym___thread] = ACTIONS(1252), [anon_sym_const] = ACTIONS(1252), @@ -29521,7 +30159,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1254), [anon_sym_PLUS_PLUS] = ACTIONS(1254), [anon_sym_sizeof] = ACTIONS(1252), + [anon_sym___alignof__] = ACTIONS(1252), + [anon_sym___alignof] = ACTIONS(1252), + [anon_sym__alignof] = ACTIONS(1252), + [anon_sym_alignof] = ACTIONS(1252), + [anon_sym__Alignof] = ACTIONS(1252), [anon_sym_offsetof] = ACTIONS(1252), + [anon_sym___builtin_va_arg] = ACTIONS(1252), [anon_sym__Generic] = ACTIONS(1252), [anon_sym_asm] = ACTIONS(1252), [anon_sym___asm__] = ACTIONS(1252), @@ -29542,7 +30186,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1252), [sym_comment] = ACTIONS(3), }, - [108] = { + [95] = { [sym_identifier] = ACTIONS(1256), [aux_sym_preproc_include_token1] = ACTIONS(1256), [aux_sym_preproc_def_token1] = ACTIONS(1256), @@ -29563,6 +30207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1258), [anon_sym_AMP] = ACTIONS(1258), [anon_sym_SEMI] = ACTIONS(1258), + [anon_sym___extension__] = ACTIONS(1256), [anon_sym_typedef] = ACTIONS(1256), [anon_sym_extern] = ACTIONS(1256), [anon_sym___attribute__] = ACTIONS(1256), @@ -29583,6 +30228,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1256), [anon_sym_register] = ACTIONS(1256), [anon_sym_inline] = ACTIONS(1256), + [anon_sym___inline] = ACTIONS(1256), + [anon_sym___inline__] = ACTIONS(1256), + [anon_sym___forceinline] = ACTIONS(1256), [anon_sym_thread_local] = ACTIONS(1256), [anon_sym___thread] = ACTIONS(1256), [anon_sym_const] = ACTIONS(1256), @@ -29612,7 +30260,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1258), [anon_sym_PLUS_PLUS] = ACTIONS(1258), [anon_sym_sizeof] = ACTIONS(1256), + [anon_sym___alignof__] = ACTIONS(1256), + [anon_sym___alignof] = ACTIONS(1256), + [anon_sym__alignof] = ACTIONS(1256), + [anon_sym_alignof] = ACTIONS(1256), + [anon_sym__Alignof] = ACTIONS(1256), [anon_sym_offsetof] = ACTIONS(1256), + [anon_sym___builtin_va_arg] = ACTIONS(1256), [anon_sym__Generic] = ACTIONS(1256), [anon_sym_asm] = ACTIONS(1256), [anon_sym___asm__] = ACTIONS(1256), @@ -29633,7 +30287,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1256), [sym_comment] = ACTIONS(3), }, - [109] = { + [96] = { [sym_identifier] = ACTIONS(1260), [aux_sym_preproc_include_token1] = ACTIONS(1260), [aux_sym_preproc_def_token1] = ACTIONS(1260), @@ -29654,6 +30308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(1262), [anon_sym_SEMI] = ACTIONS(1262), + [anon_sym___extension__] = ACTIONS(1260), [anon_sym_typedef] = ACTIONS(1260), [anon_sym_extern] = ACTIONS(1260), [anon_sym___attribute__] = ACTIONS(1260), @@ -29674,6 +30329,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1260), [anon_sym_register] = ACTIONS(1260), [anon_sym_inline] = ACTIONS(1260), + [anon_sym___inline] = ACTIONS(1260), + [anon_sym___inline__] = ACTIONS(1260), + [anon_sym___forceinline] = ACTIONS(1260), [anon_sym_thread_local] = ACTIONS(1260), [anon_sym___thread] = ACTIONS(1260), [anon_sym_const] = ACTIONS(1260), @@ -29703,7 +30361,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1262), [anon_sym_PLUS_PLUS] = ACTIONS(1262), [anon_sym_sizeof] = ACTIONS(1260), + [anon_sym___alignof__] = ACTIONS(1260), + [anon_sym___alignof] = ACTIONS(1260), + [anon_sym__alignof] = ACTIONS(1260), + [anon_sym_alignof] = ACTIONS(1260), + [anon_sym__Alignof] = ACTIONS(1260), [anon_sym_offsetof] = ACTIONS(1260), + [anon_sym___builtin_va_arg] = ACTIONS(1260), [anon_sym__Generic] = ACTIONS(1260), [anon_sym_asm] = ACTIONS(1260), [anon_sym___asm__] = ACTIONS(1260), @@ -29724,7 +30388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1260), [sym_comment] = ACTIONS(3), }, - [110] = { + [97] = { [sym_identifier] = ACTIONS(1264), [aux_sym_preproc_include_token1] = ACTIONS(1264), [aux_sym_preproc_def_token1] = ACTIONS(1264), @@ -29745,6 +30409,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1266), [anon_sym_AMP] = ACTIONS(1266), [anon_sym_SEMI] = ACTIONS(1266), + [anon_sym___extension__] = ACTIONS(1264), [anon_sym_typedef] = ACTIONS(1264), [anon_sym_extern] = ACTIONS(1264), [anon_sym___attribute__] = ACTIONS(1264), @@ -29765,6 +30430,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1264), [anon_sym_register] = ACTIONS(1264), [anon_sym_inline] = ACTIONS(1264), + [anon_sym___inline] = ACTIONS(1264), + [anon_sym___inline__] = ACTIONS(1264), + [anon_sym___forceinline] = ACTIONS(1264), [anon_sym_thread_local] = ACTIONS(1264), [anon_sym___thread] = ACTIONS(1264), [anon_sym_const] = ACTIONS(1264), @@ -29794,7 +30462,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1266), [anon_sym_PLUS_PLUS] = ACTIONS(1266), [anon_sym_sizeof] = ACTIONS(1264), + [anon_sym___alignof__] = ACTIONS(1264), + [anon_sym___alignof] = ACTIONS(1264), + [anon_sym__alignof] = ACTIONS(1264), + [anon_sym_alignof] = ACTIONS(1264), + [anon_sym__Alignof] = ACTIONS(1264), [anon_sym_offsetof] = ACTIONS(1264), + [anon_sym___builtin_va_arg] = ACTIONS(1264), [anon_sym__Generic] = ACTIONS(1264), [anon_sym_asm] = ACTIONS(1264), [anon_sym___asm__] = ACTIONS(1264), @@ -29815,7 +30489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1264), [sym_comment] = ACTIONS(3), }, - [111] = { + [98] = { [sym_identifier] = ACTIONS(1268), [aux_sym_preproc_include_token1] = ACTIONS(1268), [aux_sym_preproc_def_token1] = ACTIONS(1268), @@ -29836,6 +30510,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1270), [anon_sym_AMP] = ACTIONS(1270), [anon_sym_SEMI] = ACTIONS(1270), + [anon_sym___extension__] = ACTIONS(1268), [anon_sym_typedef] = ACTIONS(1268), [anon_sym_extern] = ACTIONS(1268), [anon_sym___attribute__] = ACTIONS(1268), @@ -29856,6 +30531,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1268), [anon_sym_register] = ACTIONS(1268), [anon_sym_inline] = ACTIONS(1268), + [anon_sym___inline] = ACTIONS(1268), + [anon_sym___inline__] = ACTIONS(1268), + [anon_sym___forceinline] = ACTIONS(1268), [anon_sym_thread_local] = ACTIONS(1268), [anon_sym___thread] = ACTIONS(1268), [anon_sym_const] = ACTIONS(1268), @@ -29885,7 +30563,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1270), [anon_sym_PLUS_PLUS] = ACTIONS(1270), [anon_sym_sizeof] = ACTIONS(1268), + [anon_sym___alignof__] = ACTIONS(1268), + [anon_sym___alignof] = ACTIONS(1268), + [anon_sym__alignof] = ACTIONS(1268), + [anon_sym_alignof] = ACTIONS(1268), + [anon_sym__Alignof] = ACTIONS(1268), [anon_sym_offsetof] = ACTIONS(1268), + [anon_sym___builtin_va_arg] = ACTIONS(1268), [anon_sym__Generic] = ACTIONS(1268), [anon_sym_asm] = ACTIONS(1268), [anon_sym___asm__] = ACTIONS(1268), @@ -29906,7 +30590,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1268), [sym_comment] = ACTIONS(3), }, - [112] = { + [99] = { [sym_identifier] = ACTIONS(1272), [aux_sym_preproc_include_token1] = ACTIONS(1272), [aux_sym_preproc_def_token1] = ACTIONS(1272), @@ -29927,6 +30611,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1274), [anon_sym_AMP] = ACTIONS(1274), [anon_sym_SEMI] = ACTIONS(1274), + [anon_sym___extension__] = ACTIONS(1272), [anon_sym_typedef] = ACTIONS(1272), [anon_sym_extern] = ACTIONS(1272), [anon_sym___attribute__] = ACTIONS(1272), @@ -29947,6 +30632,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1272), [anon_sym_register] = ACTIONS(1272), [anon_sym_inline] = ACTIONS(1272), + [anon_sym___inline] = ACTIONS(1272), + [anon_sym___inline__] = ACTIONS(1272), + [anon_sym___forceinline] = ACTIONS(1272), [anon_sym_thread_local] = ACTIONS(1272), [anon_sym___thread] = ACTIONS(1272), [anon_sym_const] = ACTIONS(1272), @@ -29976,7 +30664,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1274), [anon_sym_PLUS_PLUS] = ACTIONS(1274), [anon_sym_sizeof] = ACTIONS(1272), + [anon_sym___alignof__] = ACTIONS(1272), + [anon_sym___alignof] = ACTIONS(1272), + [anon_sym__alignof] = ACTIONS(1272), + [anon_sym_alignof] = ACTIONS(1272), + [anon_sym__Alignof] = ACTIONS(1272), [anon_sym_offsetof] = ACTIONS(1272), + [anon_sym___builtin_va_arg] = ACTIONS(1272), [anon_sym__Generic] = ACTIONS(1272), [anon_sym_asm] = ACTIONS(1272), [anon_sym___asm__] = ACTIONS(1272), @@ -29997,7 +30691,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1272), [sym_comment] = ACTIONS(3), }, - [113] = { + [100] = { [sym_identifier] = ACTIONS(1276), [aux_sym_preproc_include_token1] = ACTIONS(1276), [aux_sym_preproc_def_token1] = ACTIONS(1276), @@ -30018,6 +30712,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1278), [anon_sym_AMP] = ACTIONS(1278), [anon_sym_SEMI] = ACTIONS(1278), + [anon_sym___extension__] = ACTIONS(1276), [anon_sym_typedef] = ACTIONS(1276), [anon_sym_extern] = ACTIONS(1276), [anon_sym___attribute__] = ACTIONS(1276), @@ -30038,6 +30733,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1276), [anon_sym_register] = ACTIONS(1276), [anon_sym_inline] = ACTIONS(1276), + [anon_sym___inline] = ACTIONS(1276), + [anon_sym___inline__] = ACTIONS(1276), + [anon_sym___forceinline] = ACTIONS(1276), [anon_sym_thread_local] = ACTIONS(1276), [anon_sym___thread] = ACTIONS(1276), [anon_sym_const] = ACTIONS(1276), @@ -30067,7 +30765,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1278), [anon_sym_PLUS_PLUS] = ACTIONS(1278), [anon_sym_sizeof] = ACTIONS(1276), + [anon_sym___alignof__] = ACTIONS(1276), + [anon_sym___alignof] = ACTIONS(1276), + [anon_sym__alignof] = ACTIONS(1276), + [anon_sym_alignof] = ACTIONS(1276), + [anon_sym__Alignof] = ACTIONS(1276), [anon_sym_offsetof] = ACTIONS(1276), + [anon_sym___builtin_va_arg] = ACTIONS(1276), [anon_sym__Generic] = ACTIONS(1276), [anon_sym_asm] = ACTIONS(1276), [anon_sym___asm__] = ACTIONS(1276), @@ -30088,7 +30792,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1276), [sym_comment] = ACTIONS(3), }, - [114] = { + [101] = { [sym_identifier] = ACTIONS(1280), [aux_sym_preproc_include_token1] = ACTIONS(1280), [aux_sym_preproc_def_token1] = ACTIONS(1280), @@ -30109,6 +30813,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1282), [anon_sym_AMP] = ACTIONS(1282), [anon_sym_SEMI] = ACTIONS(1282), + [anon_sym___extension__] = ACTIONS(1280), [anon_sym_typedef] = ACTIONS(1280), [anon_sym_extern] = ACTIONS(1280), [anon_sym___attribute__] = ACTIONS(1280), @@ -30129,6 +30834,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1280), [anon_sym_register] = ACTIONS(1280), [anon_sym_inline] = ACTIONS(1280), + [anon_sym___inline] = ACTIONS(1280), + [anon_sym___inline__] = ACTIONS(1280), + [anon_sym___forceinline] = ACTIONS(1280), [anon_sym_thread_local] = ACTIONS(1280), [anon_sym___thread] = ACTIONS(1280), [anon_sym_const] = ACTIONS(1280), @@ -30158,7 +30866,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1282), [anon_sym_PLUS_PLUS] = ACTIONS(1282), [anon_sym_sizeof] = ACTIONS(1280), + [anon_sym___alignof__] = ACTIONS(1280), + [anon_sym___alignof] = ACTIONS(1280), + [anon_sym__alignof] = ACTIONS(1280), + [anon_sym_alignof] = ACTIONS(1280), + [anon_sym__Alignof] = ACTIONS(1280), [anon_sym_offsetof] = ACTIONS(1280), + [anon_sym___builtin_va_arg] = ACTIONS(1280), [anon_sym__Generic] = ACTIONS(1280), [anon_sym_asm] = ACTIONS(1280), [anon_sym___asm__] = ACTIONS(1280), @@ -30179,7 +30893,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1280), [sym_comment] = ACTIONS(3), }, - [115] = { + [102] = { [sym_identifier] = ACTIONS(1284), [aux_sym_preproc_include_token1] = ACTIONS(1284), [aux_sym_preproc_def_token1] = ACTIONS(1284), @@ -30200,6 +30914,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1286), [anon_sym_AMP] = ACTIONS(1286), [anon_sym_SEMI] = ACTIONS(1286), + [anon_sym___extension__] = ACTIONS(1284), [anon_sym_typedef] = ACTIONS(1284), [anon_sym_extern] = ACTIONS(1284), [anon_sym___attribute__] = ACTIONS(1284), @@ -30220,6 +30935,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1284), [anon_sym_register] = ACTIONS(1284), [anon_sym_inline] = ACTIONS(1284), + [anon_sym___inline] = ACTIONS(1284), + [anon_sym___inline__] = ACTIONS(1284), + [anon_sym___forceinline] = ACTIONS(1284), [anon_sym_thread_local] = ACTIONS(1284), [anon_sym___thread] = ACTIONS(1284), [anon_sym_const] = ACTIONS(1284), @@ -30249,7 +30967,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1286), [anon_sym_PLUS_PLUS] = ACTIONS(1286), [anon_sym_sizeof] = ACTIONS(1284), + [anon_sym___alignof__] = ACTIONS(1284), + [anon_sym___alignof] = ACTIONS(1284), + [anon_sym__alignof] = ACTIONS(1284), + [anon_sym_alignof] = ACTIONS(1284), + [anon_sym__Alignof] = ACTIONS(1284), [anon_sym_offsetof] = ACTIONS(1284), + [anon_sym___builtin_va_arg] = ACTIONS(1284), [anon_sym__Generic] = ACTIONS(1284), [anon_sym_asm] = ACTIONS(1284), [anon_sym___asm__] = ACTIONS(1284), @@ -30270,7 +30994,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1284), [sym_comment] = ACTIONS(3), }, - [116] = { + [103] = { [sym_identifier] = ACTIONS(1288), [aux_sym_preproc_include_token1] = ACTIONS(1288), [aux_sym_preproc_def_token1] = ACTIONS(1288), @@ -30291,6 +31015,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1290), [anon_sym_AMP] = ACTIONS(1290), [anon_sym_SEMI] = ACTIONS(1290), + [anon_sym___extension__] = ACTIONS(1288), [anon_sym_typedef] = ACTIONS(1288), [anon_sym_extern] = ACTIONS(1288), [anon_sym___attribute__] = ACTIONS(1288), @@ -30311,6 +31036,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1288), [anon_sym_register] = ACTIONS(1288), [anon_sym_inline] = ACTIONS(1288), + [anon_sym___inline] = ACTIONS(1288), + [anon_sym___inline__] = ACTIONS(1288), + [anon_sym___forceinline] = ACTIONS(1288), [anon_sym_thread_local] = ACTIONS(1288), [anon_sym___thread] = ACTIONS(1288), [anon_sym_const] = ACTIONS(1288), @@ -30340,7 +31068,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1290), [anon_sym_PLUS_PLUS] = ACTIONS(1290), [anon_sym_sizeof] = ACTIONS(1288), + [anon_sym___alignof__] = ACTIONS(1288), + [anon_sym___alignof] = ACTIONS(1288), + [anon_sym__alignof] = ACTIONS(1288), + [anon_sym_alignof] = ACTIONS(1288), + [anon_sym__Alignof] = ACTIONS(1288), [anon_sym_offsetof] = ACTIONS(1288), + [anon_sym___builtin_va_arg] = ACTIONS(1288), [anon_sym__Generic] = ACTIONS(1288), [anon_sym_asm] = ACTIONS(1288), [anon_sym___asm__] = ACTIONS(1288), @@ -30361,7 +31095,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1288), [sym_comment] = ACTIONS(3), }, - [117] = { + [104] = { [sym_identifier] = ACTIONS(1292), [aux_sym_preproc_include_token1] = ACTIONS(1292), [aux_sym_preproc_def_token1] = ACTIONS(1292), @@ -30382,6 +31116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1294), [anon_sym_AMP] = ACTIONS(1294), [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym___extension__] = ACTIONS(1292), [anon_sym_typedef] = ACTIONS(1292), [anon_sym_extern] = ACTIONS(1292), [anon_sym___attribute__] = ACTIONS(1292), @@ -30402,6 +31137,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1292), [anon_sym_register] = ACTIONS(1292), [anon_sym_inline] = ACTIONS(1292), + [anon_sym___inline] = ACTIONS(1292), + [anon_sym___inline__] = ACTIONS(1292), + [anon_sym___forceinline] = ACTIONS(1292), [anon_sym_thread_local] = ACTIONS(1292), [anon_sym___thread] = ACTIONS(1292), [anon_sym_const] = ACTIONS(1292), @@ -30431,7 +31169,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1294), [anon_sym_PLUS_PLUS] = ACTIONS(1294), [anon_sym_sizeof] = ACTIONS(1292), + [anon_sym___alignof__] = ACTIONS(1292), + [anon_sym___alignof] = ACTIONS(1292), + [anon_sym__alignof] = ACTIONS(1292), + [anon_sym_alignof] = ACTIONS(1292), + [anon_sym__Alignof] = ACTIONS(1292), [anon_sym_offsetof] = ACTIONS(1292), + [anon_sym___builtin_va_arg] = ACTIONS(1292), [anon_sym__Generic] = ACTIONS(1292), [anon_sym_asm] = ACTIONS(1292), [anon_sym___asm__] = ACTIONS(1292), @@ -30452,7 +31196,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1292), [sym_comment] = ACTIONS(3), }, - [118] = { + [105] = { [sym_identifier] = ACTIONS(1296), [aux_sym_preproc_include_token1] = ACTIONS(1296), [aux_sym_preproc_def_token1] = ACTIONS(1296), @@ -30473,6 +31217,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1298), [anon_sym_AMP] = ACTIONS(1298), [anon_sym_SEMI] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(1296), [anon_sym_typedef] = ACTIONS(1296), [anon_sym_extern] = ACTIONS(1296), [anon_sym___attribute__] = ACTIONS(1296), @@ -30493,6 +31238,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1296), [anon_sym_register] = ACTIONS(1296), [anon_sym_inline] = ACTIONS(1296), + [anon_sym___inline] = ACTIONS(1296), + [anon_sym___inline__] = ACTIONS(1296), + [anon_sym___forceinline] = ACTIONS(1296), [anon_sym_thread_local] = ACTIONS(1296), [anon_sym___thread] = ACTIONS(1296), [anon_sym_const] = ACTIONS(1296), @@ -30522,7 +31270,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1298), [anon_sym_PLUS_PLUS] = ACTIONS(1298), [anon_sym_sizeof] = ACTIONS(1296), + [anon_sym___alignof__] = ACTIONS(1296), + [anon_sym___alignof] = ACTIONS(1296), + [anon_sym__alignof] = ACTIONS(1296), + [anon_sym_alignof] = ACTIONS(1296), + [anon_sym__Alignof] = ACTIONS(1296), [anon_sym_offsetof] = ACTIONS(1296), + [anon_sym___builtin_va_arg] = ACTIONS(1296), [anon_sym__Generic] = ACTIONS(1296), [anon_sym_asm] = ACTIONS(1296), [anon_sym___asm__] = ACTIONS(1296), @@ -30543,7 +31297,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1296), [sym_comment] = ACTIONS(3), }, - [119] = { + [106] = { [sym_identifier] = ACTIONS(1300), [aux_sym_preproc_include_token1] = ACTIONS(1300), [aux_sym_preproc_def_token1] = ACTIONS(1300), @@ -30564,6 +31318,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1302), [anon_sym_AMP] = ACTIONS(1302), [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym___extension__] = ACTIONS(1300), [anon_sym_typedef] = ACTIONS(1300), [anon_sym_extern] = ACTIONS(1300), [anon_sym___attribute__] = ACTIONS(1300), @@ -30584,6 +31339,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1300), [anon_sym_register] = ACTIONS(1300), [anon_sym_inline] = ACTIONS(1300), + [anon_sym___inline] = ACTIONS(1300), + [anon_sym___inline__] = ACTIONS(1300), + [anon_sym___forceinline] = ACTIONS(1300), [anon_sym_thread_local] = ACTIONS(1300), [anon_sym___thread] = ACTIONS(1300), [anon_sym_const] = ACTIONS(1300), @@ -30613,7 +31371,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1302), [anon_sym_PLUS_PLUS] = ACTIONS(1302), [anon_sym_sizeof] = ACTIONS(1300), + [anon_sym___alignof__] = ACTIONS(1300), + [anon_sym___alignof] = ACTIONS(1300), + [anon_sym__alignof] = ACTIONS(1300), + [anon_sym_alignof] = ACTIONS(1300), + [anon_sym__Alignof] = ACTIONS(1300), [anon_sym_offsetof] = ACTIONS(1300), + [anon_sym___builtin_va_arg] = ACTIONS(1300), [anon_sym__Generic] = ACTIONS(1300), [anon_sym_asm] = ACTIONS(1300), [anon_sym___asm__] = ACTIONS(1300), @@ -30634,7 +31398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1300), [sym_comment] = ACTIONS(3), }, - [120] = { + [107] = { [sym_identifier] = ACTIONS(1304), [aux_sym_preproc_include_token1] = ACTIONS(1304), [aux_sym_preproc_def_token1] = ACTIONS(1304), @@ -30655,6 +31419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1306), [anon_sym_AMP] = ACTIONS(1306), [anon_sym_SEMI] = ACTIONS(1306), + [anon_sym___extension__] = ACTIONS(1304), [anon_sym_typedef] = ACTIONS(1304), [anon_sym_extern] = ACTIONS(1304), [anon_sym___attribute__] = ACTIONS(1304), @@ -30675,6 +31440,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1304), [anon_sym_register] = ACTIONS(1304), [anon_sym_inline] = ACTIONS(1304), + [anon_sym___inline] = ACTIONS(1304), + [anon_sym___inline__] = ACTIONS(1304), + [anon_sym___forceinline] = ACTIONS(1304), [anon_sym_thread_local] = ACTIONS(1304), [anon_sym___thread] = ACTIONS(1304), [anon_sym_const] = ACTIONS(1304), @@ -30704,7 +31472,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1306), [anon_sym_PLUS_PLUS] = ACTIONS(1306), [anon_sym_sizeof] = ACTIONS(1304), + [anon_sym___alignof__] = ACTIONS(1304), + [anon_sym___alignof] = ACTIONS(1304), + [anon_sym__alignof] = ACTIONS(1304), + [anon_sym_alignof] = ACTIONS(1304), + [anon_sym__Alignof] = ACTIONS(1304), [anon_sym_offsetof] = ACTIONS(1304), + [anon_sym___builtin_va_arg] = ACTIONS(1304), [anon_sym__Generic] = ACTIONS(1304), [anon_sym_asm] = ACTIONS(1304), [anon_sym___asm__] = ACTIONS(1304), @@ -30725,7 +31499,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1304), [sym_comment] = ACTIONS(3), }, - [121] = { + [108] = { [sym_identifier] = ACTIONS(1308), [aux_sym_preproc_include_token1] = ACTIONS(1308), [aux_sym_preproc_def_token1] = ACTIONS(1308), @@ -30746,6 +31520,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1310), [anon_sym_AMP] = ACTIONS(1310), [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym___extension__] = ACTIONS(1308), [anon_sym_typedef] = ACTIONS(1308), [anon_sym_extern] = ACTIONS(1308), [anon_sym___attribute__] = ACTIONS(1308), @@ -30766,6 +31541,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1308), [anon_sym_register] = ACTIONS(1308), [anon_sym_inline] = ACTIONS(1308), + [anon_sym___inline] = ACTIONS(1308), + [anon_sym___inline__] = ACTIONS(1308), + [anon_sym___forceinline] = ACTIONS(1308), [anon_sym_thread_local] = ACTIONS(1308), [anon_sym___thread] = ACTIONS(1308), [anon_sym_const] = ACTIONS(1308), @@ -30795,7 +31573,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1310), [anon_sym_PLUS_PLUS] = ACTIONS(1310), [anon_sym_sizeof] = ACTIONS(1308), + [anon_sym___alignof__] = ACTIONS(1308), + [anon_sym___alignof] = ACTIONS(1308), + [anon_sym__alignof] = ACTIONS(1308), + [anon_sym_alignof] = ACTIONS(1308), + [anon_sym__Alignof] = ACTIONS(1308), [anon_sym_offsetof] = ACTIONS(1308), + [anon_sym___builtin_va_arg] = ACTIONS(1308), [anon_sym__Generic] = ACTIONS(1308), [anon_sym_asm] = ACTIONS(1308), [anon_sym___asm__] = ACTIONS(1308), @@ -30816,7 +31600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1308), [sym_comment] = ACTIONS(3), }, - [122] = { + [109] = { [sym_identifier] = ACTIONS(1312), [aux_sym_preproc_include_token1] = ACTIONS(1312), [aux_sym_preproc_def_token1] = ACTIONS(1312), @@ -30837,6 +31621,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1314), [anon_sym_AMP] = ACTIONS(1314), [anon_sym_SEMI] = ACTIONS(1314), + [anon_sym___extension__] = ACTIONS(1312), [anon_sym_typedef] = ACTIONS(1312), [anon_sym_extern] = ACTIONS(1312), [anon_sym___attribute__] = ACTIONS(1312), @@ -30857,6 +31642,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1312), [anon_sym_register] = ACTIONS(1312), [anon_sym_inline] = ACTIONS(1312), + [anon_sym___inline] = ACTIONS(1312), + [anon_sym___inline__] = ACTIONS(1312), + [anon_sym___forceinline] = ACTIONS(1312), [anon_sym_thread_local] = ACTIONS(1312), [anon_sym___thread] = ACTIONS(1312), [anon_sym_const] = ACTIONS(1312), @@ -30886,7 +31674,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1314), [anon_sym_PLUS_PLUS] = ACTIONS(1314), [anon_sym_sizeof] = ACTIONS(1312), + [anon_sym___alignof__] = ACTIONS(1312), + [anon_sym___alignof] = ACTIONS(1312), + [anon_sym__alignof] = ACTIONS(1312), + [anon_sym_alignof] = ACTIONS(1312), + [anon_sym__Alignof] = ACTIONS(1312), [anon_sym_offsetof] = ACTIONS(1312), + [anon_sym___builtin_va_arg] = ACTIONS(1312), [anon_sym__Generic] = ACTIONS(1312), [anon_sym_asm] = ACTIONS(1312), [anon_sym___asm__] = ACTIONS(1312), @@ -30907,7 +31701,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1312), [sym_comment] = ACTIONS(3), }, - [123] = { + [110] = { + [sym_identifier] = ACTIONS(1308), + [aux_sym_preproc_include_token1] = ACTIONS(1308), + [aux_sym_preproc_def_token1] = ACTIONS(1308), + [aux_sym_preproc_if_token1] = ACTIONS(1308), + [aux_sym_preproc_if_token2] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), + [aux_sym_preproc_else_token1] = ACTIONS(1308), + [aux_sym_preproc_elif_token1] = ACTIONS(1308), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1308), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1308), + [sym_preproc_directive] = ACTIONS(1308), + [anon_sym_LPAREN2] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym___extension__] = ACTIONS(1308), + [anon_sym_typedef] = ACTIONS(1308), + [anon_sym_extern] = ACTIONS(1308), + [anon_sym___attribute__] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), + [anon_sym___declspec] = ACTIONS(1308), + [anon_sym___cdecl] = ACTIONS(1308), + [anon_sym___clrcall] = ACTIONS(1308), + [anon_sym___stdcall] = ACTIONS(1308), + [anon_sym___fastcall] = ACTIONS(1308), + [anon_sym___thiscall] = ACTIONS(1308), + [anon_sym___vectorcall] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_signed] = ACTIONS(1308), + [anon_sym_unsigned] = ACTIONS(1308), + [anon_sym_long] = ACTIONS(1308), + [anon_sym_short] = ACTIONS(1308), + [anon_sym_static] = ACTIONS(1308), + [anon_sym_auto] = ACTIONS(1308), + [anon_sym_register] = ACTIONS(1308), + [anon_sym_inline] = ACTIONS(1308), + [anon_sym___inline] = ACTIONS(1308), + [anon_sym___inline__] = ACTIONS(1308), + [anon_sym___forceinline] = ACTIONS(1308), + [anon_sym_thread_local] = ACTIONS(1308), + [anon_sym___thread] = ACTIONS(1308), + [anon_sym_const] = ACTIONS(1308), + [anon_sym_constexpr] = ACTIONS(1308), + [anon_sym_volatile] = ACTIONS(1308), + [anon_sym_restrict] = ACTIONS(1308), + [anon_sym___restrict__] = ACTIONS(1308), + [anon_sym__Atomic] = ACTIONS(1308), + [anon_sym__Noreturn] = ACTIONS(1308), + [anon_sym_noreturn] = ACTIONS(1308), + [sym_primitive_type] = ACTIONS(1308), + [anon_sym_enum] = ACTIONS(1308), + [anon_sym_struct] = ACTIONS(1308), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_if] = ACTIONS(1308), + [anon_sym_else] = ACTIONS(1308), + [anon_sym_switch] = ACTIONS(1308), + [anon_sym_case] = ACTIONS(1308), + [anon_sym_default] = ACTIONS(1308), + [anon_sym_while] = ACTIONS(1308), + [anon_sym_do] = ACTIONS(1308), + [anon_sym_for] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1308), + [anon_sym_break] = ACTIONS(1308), + [anon_sym_continue] = ACTIONS(1308), + [anon_sym_goto] = ACTIONS(1308), + [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_sizeof] = ACTIONS(1308), + [anon_sym___alignof__] = ACTIONS(1308), + [anon_sym___alignof] = ACTIONS(1308), + [anon_sym__alignof] = ACTIONS(1308), + [anon_sym_alignof] = ACTIONS(1308), + [anon_sym__Alignof] = ACTIONS(1308), + [anon_sym_offsetof] = ACTIONS(1308), + [anon_sym___builtin_va_arg] = ACTIONS(1308), + [anon_sym__Generic] = ACTIONS(1308), + [anon_sym_asm] = ACTIONS(1308), + [anon_sym___asm__] = ACTIONS(1308), + [sym_number_literal] = ACTIONS(1310), + [anon_sym_L_SQUOTE] = ACTIONS(1310), + [anon_sym_u_SQUOTE] = ACTIONS(1310), + [anon_sym_U_SQUOTE] = ACTIONS(1310), + [anon_sym_u8_SQUOTE] = ACTIONS(1310), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_L_DQUOTE] = ACTIONS(1310), + [anon_sym_u_DQUOTE] = ACTIONS(1310), + [anon_sym_U_DQUOTE] = ACTIONS(1310), + [anon_sym_u8_DQUOTE] = ACTIONS(1310), + [anon_sym_DQUOTE] = ACTIONS(1310), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [anon_sym_NULL] = ACTIONS(1308), + [anon_sym_nullptr] = ACTIONS(1308), + [sym_comment] = ACTIONS(3), + }, + [111] = { [sym_identifier] = ACTIONS(1316), [aux_sym_preproc_include_token1] = ACTIONS(1316), [aux_sym_preproc_def_token1] = ACTIONS(1316), @@ -30928,6 +31823,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1318), [anon_sym_AMP] = ACTIONS(1318), [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym___extension__] = ACTIONS(1316), [anon_sym_typedef] = ACTIONS(1316), [anon_sym_extern] = ACTIONS(1316), [anon_sym___attribute__] = ACTIONS(1316), @@ -30948,6 +31844,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1316), [anon_sym_register] = ACTIONS(1316), [anon_sym_inline] = ACTIONS(1316), + [anon_sym___inline] = ACTIONS(1316), + [anon_sym___inline__] = ACTIONS(1316), + [anon_sym___forceinline] = ACTIONS(1316), [anon_sym_thread_local] = ACTIONS(1316), [anon_sym___thread] = ACTIONS(1316), [anon_sym_const] = ACTIONS(1316), @@ -30977,7 +31876,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1318), [anon_sym_PLUS_PLUS] = ACTIONS(1318), [anon_sym_sizeof] = ACTIONS(1316), + [anon_sym___alignof__] = ACTIONS(1316), + [anon_sym___alignof] = ACTIONS(1316), + [anon_sym__alignof] = ACTIONS(1316), + [anon_sym_alignof] = ACTIONS(1316), + [anon_sym__Alignof] = ACTIONS(1316), [anon_sym_offsetof] = ACTIONS(1316), + [anon_sym___builtin_va_arg] = ACTIONS(1316), [anon_sym__Generic] = ACTIONS(1316), [anon_sym_asm] = ACTIONS(1316), [anon_sym___asm__] = ACTIONS(1316), @@ -30998,7 +31903,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1316), [sym_comment] = ACTIONS(3), }, - [124] = { + [112] = { [sym_identifier] = ACTIONS(1320), [aux_sym_preproc_include_token1] = ACTIONS(1320), [aux_sym_preproc_def_token1] = ACTIONS(1320), @@ -31019,6 +31924,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1322), [anon_sym_AMP] = ACTIONS(1322), [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), [anon_sym_typedef] = ACTIONS(1320), [anon_sym_extern] = ACTIONS(1320), [anon_sym___attribute__] = ACTIONS(1320), @@ -31039,6 +31945,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1320), [anon_sym_register] = ACTIONS(1320), [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), [anon_sym_thread_local] = ACTIONS(1320), [anon_sym___thread] = ACTIONS(1320), [anon_sym_const] = ACTIONS(1320), @@ -31068,7 +31977,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1322), [anon_sym_PLUS_PLUS] = ACTIONS(1322), [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym___builtin_va_arg] = ACTIONS(1320), [anon_sym__Generic] = ACTIONS(1320), [anon_sym_asm] = ACTIONS(1320), [anon_sym___asm__] = ACTIONS(1320), @@ -31089,7 +32004,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, - [125] = { + [113] = { [sym_identifier] = ACTIONS(1324), [aux_sym_preproc_include_token1] = ACTIONS(1324), [aux_sym_preproc_def_token1] = ACTIONS(1324), @@ -31110,6 +32025,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1326), [anon_sym_AMP] = ACTIONS(1326), [anon_sym_SEMI] = ACTIONS(1326), + [anon_sym___extension__] = ACTIONS(1324), [anon_sym_typedef] = ACTIONS(1324), [anon_sym_extern] = ACTIONS(1324), [anon_sym___attribute__] = ACTIONS(1324), @@ -31130,6 +32046,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1324), [anon_sym_register] = ACTIONS(1324), [anon_sym_inline] = ACTIONS(1324), + [anon_sym___inline] = ACTIONS(1324), + [anon_sym___inline__] = ACTIONS(1324), + [anon_sym___forceinline] = ACTIONS(1324), [anon_sym_thread_local] = ACTIONS(1324), [anon_sym___thread] = ACTIONS(1324), [anon_sym_const] = ACTIONS(1324), @@ -31159,7 +32078,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1326), [anon_sym_PLUS_PLUS] = ACTIONS(1326), [anon_sym_sizeof] = ACTIONS(1324), + [anon_sym___alignof__] = ACTIONS(1324), + [anon_sym___alignof] = ACTIONS(1324), + [anon_sym__alignof] = ACTIONS(1324), + [anon_sym_alignof] = ACTIONS(1324), + [anon_sym__Alignof] = ACTIONS(1324), [anon_sym_offsetof] = ACTIONS(1324), + [anon_sym___builtin_va_arg] = ACTIONS(1324), [anon_sym__Generic] = ACTIONS(1324), [anon_sym_asm] = ACTIONS(1324), [anon_sym___asm__] = ACTIONS(1324), @@ -31180,7 +32105,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1324), [sym_comment] = ACTIONS(3), }, - [126] = { + [114] = { [sym_identifier] = ACTIONS(1328), [aux_sym_preproc_include_token1] = ACTIONS(1328), [aux_sym_preproc_def_token1] = ACTIONS(1328), @@ -31201,6 +32126,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1330), [anon_sym_AMP] = ACTIONS(1330), [anon_sym_SEMI] = ACTIONS(1330), + [anon_sym___extension__] = ACTIONS(1328), [anon_sym_typedef] = ACTIONS(1328), [anon_sym_extern] = ACTIONS(1328), [anon_sym___attribute__] = ACTIONS(1328), @@ -31221,6 +32147,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1328), [anon_sym_register] = ACTIONS(1328), [anon_sym_inline] = ACTIONS(1328), + [anon_sym___inline] = ACTIONS(1328), + [anon_sym___inline__] = ACTIONS(1328), + [anon_sym___forceinline] = ACTIONS(1328), [anon_sym_thread_local] = ACTIONS(1328), [anon_sym___thread] = ACTIONS(1328), [anon_sym_const] = ACTIONS(1328), @@ -31250,7 +32179,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1330), [anon_sym_PLUS_PLUS] = ACTIONS(1330), [anon_sym_sizeof] = ACTIONS(1328), + [anon_sym___alignof__] = ACTIONS(1328), + [anon_sym___alignof] = ACTIONS(1328), + [anon_sym__alignof] = ACTIONS(1328), + [anon_sym_alignof] = ACTIONS(1328), + [anon_sym__Alignof] = ACTIONS(1328), [anon_sym_offsetof] = ACTIONS(1328), + [anon_sym___builtin_va_arg] = ACTIONS(1328), [anon_sym__Generic] = ACTIONS(1328), [anon_sym_asm] = ACTIONS(1328), [anon_sym___asm__] = ACTIONS(1328), @@ -31271,7 +32206,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1328), [sym_comment] = ACTIONS(3), }, - [127] = { + [115] = { [sym_identifier] = ACTIONS(1332), [aux_sym_preproc_include_token1] = ACTIONS(1332), [aux_sym_preproc_def_token1] = ACTIONS(1332), @@ -31292,6 +32227,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1334), [anon_sym_AMP] = ACTIONS(1334), [anon_sym_SEMI] = ACTIONS(1334), + [anon_sym___extension__] = ACTIONS(1332), [anon_sym_typedef] = ACTIONS(1332), [anon_sym_extern] = ACTIONS(1332), [anon_sym___attribute__] = ACTIONS(1332), @@ -31312,6 +32248,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1332), [anon_sym_register] = ACTIONS(1332), [anon_sym_inline] = ACTIONS(1332), + [anon_sym___inline] = ACTIONS(1332), + [anon_sym___inline__] = ACTIONS(1332), + [anon_sym___forceinline] = ACTIONS(1332), [anon_sym_thread_local] = ACTIONS(1332), [anon_sym___thread] = ACTIONS(1332), [anon_sym_const] = ACTIONS(1332), @@ -31341,7 +32280,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1334), [anon_sym_PLUS_PLUS] = ACTIONS(1334), [anon_sym_sizeof] = ACTIONS(1332), + [anon_sym___alignof__] = ACTIONS(1332), + [anon_sym___alignof] = ACTIONS(1332), + [anon_sym__alignof] = ACTIONS(1332), + [anon_sym_alignof] = ACTIONS(1332), + [anon_sym__Alignof] = ACTIONS(1332), [anon_sym_offsetof] = ACTIONS(1332), + [anon_sym___builtin_va_arg] = ACTIONS(1332), [anon_sym__Generic] = ACTIONS(1332), [anon_sym_asm] = ACTIONS(1332), [anon_sym___asm__] = ACTIONS(1332), @@ -31362,7 +32307,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1332), [sym_comment] = ACTIONS(3), }, - [128] = { + [116] = { [sym_identifier] = ACTIONS(1336), [aux_sym_preproc_include_token1] = ACTIONS(1336), [aux_sym_preproc_def_token1] = ACTIONS(1336), @@ -31383,6 +32328,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1338), [anon_sym_AMP] = ACTIONS(1338), [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym___extension__] = ACTIONS(1336), [anon_sym_typedef] = ACTIONS(1336), [anon_sym_extern] = ACTIONS(1336), [anon_sym___attribute__] = ACTIONS(1336), @@ -31403,6 +32349,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1336), [anon_sym_register] = ACTIONS(1336), [anon_sym_inline] = ACTIONS(1336), + [anon_sym___inline] = ACTIONS(1336), + [anon_sym___inline__] = ACTIONS(1336), + [anon_sym___forceinline] = ACTIONS(1336), [anon_sym_thread_local] = ACTIONS(1336), [anon_sym___thread] = ACTIONS(1336), [anon_sym_const] = ACTIONS(1336), @@ -31432,7 +32381,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1338), [anon_sym_PLUS_PLUS] = ACTIONS(1338), [anon_sym_sizeof] = ACTIONS(1336), + [anon_sym___alignof__] = ACTIONS(1336), + [anon_sym___alignof] = ACTIONS(1336), + [anon_sym__alignof] = ACTIONS(1336), + [anon_sym_alignof] = ACTIONS(1336), + [anon_sym__Alignof] = ACTIONS(1336), [anon_sym_offsetof] = ACTIONS(1336), + [anon_sym___builtin_va_arg] = ACTIONS(1336), [anon_sym__Generic] = ACTIONS(1336), [anon_sym_asm] = ACTIONS(1336), [anon_sym___asm__] = ACTIONS(1336), @@ -31453,98 +32408,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1336), [sym_comment] = ACTIONS(3), }, - [129] = { - [sym_identifier] = ACTIONS(1204), - [aux_sym_preproc_include_token1] = ACTIONS(1204), - [aux_sym_preproc_def_token1] = ACTIONS(1204), - [aux_sym_preproc_if_token1] = ACTIONS(1204), - [aux_sym_preproc_if_token2] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1204), - [aux_sym_preproc_else_token1] = ACTIONS(1204), - [aux_sym_preproc_elif_token1] = ACTIONS(1204), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1204), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1204), - [sym_preproc_directive] = ACTIONS(1204), - [anon_sym_LPAREN2] = ACTIONS(1206), - [anon_sym_BANG] = ACTIONS(1206), - [anon_sym_TILDE] = ACTIONS(1206), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_STAR] = ACTIONS(1206), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_SEMI] = ACTIONS(1206), - [anon_sym_typedef] = ACTIONS(1204), - [anon_sym_extern] = ACTIONS(1204), - [anon_sym___attribute__] = ACTIONS(1204), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1206), - [anon_sym___declspec] = ACTIONS(1204), - [anon_sym___cdecl] = ACTIONS(1204), - [anon_sym___clrcall] = ACTIONS(1204), - [anon_sym___stdcall] = ACTIONS(1204), - [anon_sym___fastcall] = ACTIONS(1204), - [anon_sym___thiscall] = ACTIONS(1204), - [anon_sym___vectorcall] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_signed] = ACTIONS(1204), - [anon_sym_unsigned] = ACTIONS(1204), - [anon_sym_long] = ACTIONS(1204), - [anon_sym_short] = ACTIONS(1204), - [anon_sym_static] = ACTIONS(1204), - [anon_sym_auto] = ACTIONS(1204), - [anon_sym_register] = ACTIONS(1204), - [anon_sym_inline] = ACTIONS(1204), - [anon_sym_thread_local] = ACTIONS(1204), - [anon_sym___thread] = ACTIONS(1204), - [anon_sym_const] = ACTIONS(1204), - [anon_sym_constexpr] = ACTIONS(1204), - [anon_sym_volatile] = ACTIONS(1204), - [anon_sym_restrict] = ACTIONS(1204), - [anon_sym___restrict__] = ACTIONS(1204), - [anon_sym__Atomic] = ACTIONS(1204), - [anon_sym__Noreturn] = ACTIONS(1204), - [anon_sym_noreturn] = ACTIONS(1204), - [sym_primitive_type] = ACTIONS(1204), - [anon_sym_enum] = ACTIONS(1204), - [anon_sym_struct] = ACTIONS(1204), - [anon_sym_union] = ACTIONS(1204), - [anon_sym_if] = ACTIONS(1204), - [anon_sym_else] = ACTIONS(1204), - [anon_sym_switch] = ACTIONS(1204), - [anon_sym_case] = ACTIONS(1204), - [anon_sym_default] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1204), - [anon_sym_do] = ACTIONS(1204), - [anon_sym_for] = ACTIONS(1204), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_break] = ACTIONS(1204), - [anon_sym_continue] = ACTIONS(1204), - [anon_sym_goto] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_sizeof] = ACTIONS(1204), - [anon_sym_offsetof] = ACTIONS(1204), - [anon_sym__Generic] = ACTIONS(1204), - [anon_sym_asm] = ACTIONS(1204), - [anon_sym___asm__] = ACTIONS(1204), - [sym_number_literal] = ACTIONS(1206), - [anon_sym_L_SQUOTE] = ACTIONS(1206), - [anon_sym_u_SQUOTE] = ACTIONS(1206), - [anon_sym_U_SQUOTE] = ACTIONS(1206), - [anon_sym_u8_SQUOTE] = ACTIONS(1206), - [anon_sym_SQUOTE] = ACTIONS(1206), - [anon_sym_L_DQUOTE] = ACTIONS(1206), - [anon_sym_u_DQUOTE] = ACTIONS(1206), - [anon_sym_U_DQUOTE] = ACTIONS(1206), - [anon_sym_u8_DQUOTE] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(1206), - [sym_true] = ACTIONS(1204), - [sym_false] = ACTIONS(1204), - [anon_sym_NULL] = ACTIONS(1204), - [anon_sym_nullptr] = ACTIONS(1204), - [sym_comment] = ACTIONS(3), - }, - [130] = { + [117] = { [sym_identifier] = ACTIONS(1340), [aux_sym_preproc_include_token1] = ACTIONS(1340), [aux_sym_preproc_def_token1] = ACTIONS(1340), @@ -31565,6 +32429,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1342), [anon_sym_AMP] = ACTIONS(1342), [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym___extension__] = ACTIONS(1340), [anon_sym_typedef] = ACTIONS(1340), [anon_sym_extern] = ACTIONS(1340), [anon_sym___attribute__] = ACTIONS(1340), @@ -31585,6 +32450,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1340), [anon_sym_register] = ACTIONS(1340), [anon_sym_inline] = ACTIONS(1340), + [anon_sym___inline] = ACTIONS(1340), + [anon_sym___inline__] = ACTIONS(1340), + [anon_sym___forceinline] = ACTIONS(1340), [anon_sym_thread_local] = ACTIONS(1340), [anon_sym___thread] = ACTIONS(1340), [anon_sym_const] = ACTIONS(1340), @@ -31614,7 +32482,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1342), [anon_sym_PLUS_PLUS] = ACTIONS(1342), [anon_sym_sizeof] = ACTIONS(1340), + [anon_sym___alignof__] = ACTIONS(1340), + [anon_sym___alignof] = ACTIONS(1340), + [anon_sym__alignof] = ACTIONS(1340), + [anon_sym_alignof] = ACTIONS(1340), + [anon_sym__Alignof] = ACTIONS(1340), [anon_sym_offsetof] = ACTIONS(1340), + [anon_sym___builtin_va_arg] = ACTIONS(1340), [anon_sym__Generic] = ACTIONS(1340), [anon_sym_asm] = ACTIONS(1340), [anon_sym___asm__] = ACTIONS(1340), @@ -31635,7 +32509,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1340), [sym_comment] = ACTIONS(3), }, - [131] = { + [118] = { [sym_identifier] = ACTIONS(1344), [aux_sym_preproc_include_token1] = ACTIONS(1344), [aux_sym_preproc_def_token1] = ACTIONS(1344), @@ -31656,6 +32530,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1346), [anon_sym_AMP] = ACTIONS(1346), [anon_sym_SEMI] = ACTIONS(1346), + [anon_sym___extension__] = ACTIONS(1344), [anon_sym_typedef] = ACTIONS(1344), [anon_sym_extern] = ACTIONS(1344), [anon_sym___attribute__] = ACTIONS(1344), @@ -31676,6 +32551,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1344), [anon_sym_register] = ACTIONS(1344), [anon_sym_inline] = ACTIONS(1344), + [anon_sym___inline] = ACTIONS(1344), + [anon_sym___inline__] = ACTIONS(1344), + [anon_sym___forceinline] = ACTIONS(1344), [anon_sym_thread_local] = ACTIONS(1344), [anon_sym___thread] = ACTIONS(1344), [anon_sym_const] = ACTIONS(1344), @@ -31705,7 +32583,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1346), [anon_sym_PLUS_PLUS] = ACTIONS(1346), [anon_sym_sizeof] = ACTIONS(1344), + [anon_sym___alignof__] = ACTIONS(1344), + [anon_sym___alignof] = ACTIONS(1344), + [anon_sym__alignof] = ACTIONS(1344), + [anon_sym_alignof] = ACTIONS(1344), + [anon_sym__Alignof] = ACTIONS(1344), [anon_sym_offsetof] = ACTIONS(1344), + [anon_sym___builtin_va_arg] = ACTIONS(1344), [anon_sym__Generic] = ACTIONS(1344), [anon_sym_asm] = ACTIONS(1344), [anon_sym___asm__] = ACTIONS(1344), @@ -31726,7 +32610,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1344), [sym_comment] = ACTIONS(3), }, - [132] = { + [119] = { [sym_identifier] = ACTIONS(1348), [aux_sym_preproc_include_token1] = ACTIONS(1348), [aux_sym_preproc_def_token1] = ACTIONS(1348), @@ -31747,6 +32631,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1350), [anon_sym_AMP] = ACTIONS(1350), [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym___extension__] = ACTIONS(1348), [anon_sym_typedef] = ACTIONS(1348), [anon_sym_extern] = ACTIONS(1348), [anon_sym___attribute__] = ACTIONS(1348), @@ -31767,6 +32652,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1348), [anon_sym_register] = ACTIONS(1348), [anon_sym_inline] = ACTIONS(1348), + [anon_sym___inline] = ACTIONS(1348), + [anon_sym___inline__] = ACTIONS(1348), + [anon_sym___forceinline] = ACTIONS(1348), [anon_sym_thread_local] = ACTIONS(1348), [anon_sym___thread] = ACTIONS(1348), [anon_sym_const] = ACTIONS(1348), @@ -31796,7 +32684,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1350), [anon_sym_PLUS_PLUS] = ACTIONS(1350), [anon_sym_sizeof] = ACTIONS(1348), + [anon_sym___alignof__] = ACTIONS(1348), + [anon_sym___alignof] = ACTIONS(1348), + [anon_sym__alignof] = ACTIONS(1348), + [anon_sym_alignof] = ACTIONS(1348), + [anon_sym__Alignof] = ACTIONS(1348), [anon_sym_offsetof] = ACTIONS(1348), + [anon_sym___builtin_va_arg] = ACTIONS(1348), [anon_sym__Generic] = ACTIONS(1348), [anon_sym_asm] = ACTIONS(1348), [anon_sym___asm__] = ACTIONS(1348), @@ -31817,7 +32711,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1348), [sym_comment] = ACTIONS(3), }, - [133] = { + [120] = { [sym_identifier] = ACTIONS(1352), [aux_sym_preproc_include_token1] = ACTIONS(1352), [aux_sym_preproc_def_token1] = ACTIONS(1352), @@ -31838,6 +32732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1354), [anon_sym_AMP] = ACTIONS(1354), [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym___extension__] = ACTIONS(1352), [anon_sym_typedef] = ACTIONS(1352), [anon_sym_extern] = ACTIONS(1352), [anon_sym___attribute__] = ACTIONS(1352), @@ -31858,6 +32753,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1352), [anon_sym_register] = ACTIONS(1352), [anon_sym_inline] = ACTIONS(1352), + [anon_sym___inline] = ACTIONS(1352), + [anon_sym___inline__] = ACTIONS(1352), + [anon_sym___forceinline] = ACTIONS(1352), [anon_sym_thread_local] = ACTIONS(1352), [anon_sym___thread] = ACTIONS(1352), [anon_sym_const] = ACTIONS(1352), @@ -31887,7 +32785,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1354), [anon_sym_PLUS_PLUS] = ACTIONS(1354), [anon_sym_sizeof] = ACTIONS(1352), + [anon_sym___alignof__] = ACTIONS(1352), + [anon_sym___alignof] = ACTIONS(1352), + [anon_sym__alignof] = ACTIONS(1352), + [anon_sym_alignof] = ACTIONS(1352), + [anon_sym__Alignof] = ACTIONS(1352), [anon_sym_offsetof] = ACTIONS(1352), + [anon_sym___builtin_va_arg] = ACTIONS(1352), [anon_sym__Generic] = ACTIONS(1352), [anon_sym_asm] = ACTIONS(1352), [anon_sym___asm__] = ACTIONS(1352), @@ -31908,7 +32812,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1352), [sym_comment] = ACTIONS(3), }, - [134] = { + [121] = { [sym_identifier] = ACTIONS(1356), [aux_sym_preproc_include_token1] = ACTIONS(1356), [aux_sym_preproc_def_token1] = ACTIONS(1356), @@ -31929,6 +32833,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1358), [anon_sym_AMP] = ACTIONS(1358), [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym___extension__] = ACTIONS(1356), [anon_sym_typedef] = ACTIONS(1356), [anon_sym_extern] = ACTIONS(1356), [anon_sym___attribute__] = ACTIONS(1356), @@ -31949,6 +32854,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1356), [anon_sym_register] = ACTIONS(1356), [anon_sym_inline] = ACTIONS(1356), + [anon_sym___inline] = ACTIONS(1356), + [anon_sym___inline__] = ACTIONS(1356), + [anon_sym___forceinline] = ACTIONS(1356), [anon_sym_thread_local] = ACTIONS(1356), [anon_sym___thread] = ACTIONS(1356), [anon_sym_const] = ACTIONS(1356), @@ -31964,6 +32872,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1356), [anon_sym_union] = ACTIONS(1356), [anon_sym_if] = ACTIONS(1356), + [anon_sym_else] = ACTIONS(1356), [anon_sym_switch] = ACTIONS(1356), [anon_sym_case] = ACTIONS(1356), [anon_sym_default] = ACTIONS(1356), @@ -31977,7 +32886,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1358), [anon_sym_PLUS_PLUS] = ACTIONS(1358), [anon_sym_sizeof] = ACTIONS(1356), + [anon_sym___alignof__] = ACTIONS(1356), + [anon_sym___alignof] = ACTIONS(1356), + [anon_sym__alignof] = ACTIONS(1356), + [anon_sym_alignof] = ACTIONS(1356), + [anon_sym__Alignof] = ACTIONS(1356), [anon_sym_offsetof] = ACTIONS(1356), + [anon_sym___builtin_va_arg] = ACTIONS(1356), [anon_sym__Generic] = ACTIONS(1356), [anon_sym_asm] = ACTIONS(1356), [anon_sym___asm__] = ACTIONS(1356), @@ -31998,7 +32913,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1356), [sym_comment] = ACTIONS(3), }, - [135] = { + [122] = { [sym_identifier] = ACTIONS(1360), [aux_sym_preproc_include_token1] = ACTIONS(1360), [aux_sym_preproc_def_token1] = ACTIONS(1360), @@ -32019,6 +32934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1362), [anon_sym_AMP] = ACTIONS(1362), [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym___extension__] = ACTIONS(1360), [anon_sym_typedef] = ACTIONS(1360), [anon_sym_extern] = ACTIONS(1360), [anon_sym___attribute__] = ACTIONS(1360), @@ -32039,6 +32955,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1360), [anon_sym_register] = ACTIONS(1360), [anon_sym_inline] = ACTIONS(1360), + [anon_sym___inline] = ACTIONS(1360), + [anon_sym___inline__] = ACTIONS(1360), + [anon_sym___forceinline] = ACTIONS(1360), [anon_sym_thread_local] = ACTIONS(1360), [anon_sym___thread] = ACTIONS(1360), [anon_sym_const] = ACTIONS(1360), @@ -32054,6 +32973,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1360), [anon_sym_union] = ACTIONS(1360), [anon_sym_if] = ACTIONS(1360), + [anon_sym_else] = ACTIONS(1360), [anon_sym_switch] = ACTIONS(1360), [anon_sym_case] = ACTIONS(1360), [anon_sym_default] = ACTIONS(1360), @@ -32067,7 +32987,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1362), [anon_sym_PLUS_PLUS] = ACTIONS(1362), [anon_sym_sizeof] = ACTIONS(1360), + [anon_sym___alignof__] = ACTIONS(1360), + [anon_sym___alignof] = ACTIONS(1360), + [anon_sym__alignof] = ACTIONS(1360), + [anon_sym_alignof] = ACTIONS(1360), + [anon_sym__Alignof] = ACTIONS(1360), [anon_sym_offsetof] = ACTIONS(1360), + [anon_sym___builtin_va_arg] = ACTIONS(1360), [anon_sym__Generic] = ACTIONS(1360), [anon_sym_asm] = ACTIONS(1360), [anon_sym___asm__] = ACTIONS(1360), @@ -32088,7 +33014,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1360), [sym_comment] = ACTIONS(3), }, - [136] = { + [123] = { [sym_identifier] = ACTIONS(1364), [aux_sym_preproc_include_token1] = ACTIONS(1364), [aux_sym_preproc_def_token1] = ACTIONS(1364), @@ -32109,6 +33035,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1366), [anon_sym_AMP] = ACTIONS(1366), [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym___extension__] = ACTIONS(1364), [anon_sym_typedef] = ACTIONS(1364), [anon_sym_extern] = ACTIONS(1364), [anon_sym___attribute__] = ACTIONS(1364), @@ -32129,6 +33056,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1364), [anon_sym_register] = ACTIONS(1364), [anon_sym_inline] = ACTIONS(1364), + [anon_sym___inline] = ACTIONS(1364), + [anon_sym___inline__] = ACTIONS(1364), + [anon_sym___forceinline] = ACTIONS(1364), [anon_sym_thread_local] = ACTIONS(1364), [anon_sym___thread] = ACTIONS(1364), [anon_sym_const] = ACTIONS(1364), @@ -32144,6 +33074,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1364), [anon_sym_union] = ACTIONS(1364), [anon_sym_if] = ACTIONS(1364), + [anon_sym_else] = ACTIONS(1364), [anon_sym_switch] = ACTIONS(1364), [anon_sym_case] = ACTIONS(1364), [anon_sym_default] = ACTIONS(1364), @@ -32157,7 +33088,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1366), [anon_sym_PLUS_PLUS] = ACTIONS(1366), [anon_sym_sizeof] = ACTIONS(1364), + [anon_sym___alignof__] = ACTIONS(1364), + [anon_sym___alignof] = ACTIONS(1364), + [anon_sym__alignof] = ACTIONS(1364), + [anon_sym_alignof] = ACTIONS(1364), + [anon_sym__Alignof] = ACTIONS(1364), [anon_sym_offsetof] = ACTIONS(1364), + [anon_sym___builtin_va_arg] = ACTIONS(1364), [anon_sym__Generic] = ACTIONS(1364), [anon_sym_asm] = ACTIONS(1364), [anon_sym___asm__] = ACTIONS(1364), @@ -32178,7 +33115,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1364), [sym_comment] = ACTIONS(3), }, - [137] = { + [124] = { [sym_identifier] = ACTIONS(1368), [aux_sym_preproc_include_token1] = ACTIONS(1368), [aux_sym_preproc_def_token1] = ACTIONS(1368), @@ -32199,6 +33136,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1370), [anon_sym_AMP] = ACTIONS(1370), [anon_sym_SEMI] = ACTIONS(1370), + [anon_sym___extension__] = ACTIONS(1368), [anon_sym_typedef] = ACTIONS(1368), [anon_sym_extern] = ACTIONS(1368), [anon_sym___attribute__] = ACTIONS(1368), @@ -32219,6 +33157,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1368), [anon_sym_register] = ACTIONS(1368), [anon_sym_inline] = ACTIONS(1368), + [anon_sym___inline] = ACTIONS(1368), + [anon_sym___inline__] = ACTIONS(1368), + [anon_sym___forceinline] = ACTIONS(1368), [anon_sym_thread_local] = ACTIONS(1368), [anon_sym___thread] = ACTIONS(1368), [anon_sym_const] = ACTIONS(1368), @@ -32234,6 +33175,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1368), [anon_sym_union] = ACTIONS(1368), [anon_sym_if] = ACTIONS(1368), + [anon_sym_else] = ACTIONS(1368), [anon_sym_switch] = ACTIONS(1368), [anon_sym_case] = ACTIONS(1368), [anon_sym_default] = ACTIONS(1368), @@ -32247,7 +33189,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1370), [anon_sym_PLUS_PLUS] = ACTIONS(1370), [anon_sym_sizeof] = ACTIONS(1368), + [anon_sym___alignof__] = ACTIONS(1368), + [anon_sym___alignof] = ACTIONS(1368), + [anon_sym__alignof] = ACTIONS(1368), + [anon_sym_alignof] = ACTIONS(1368), + [anon_sym__Alignof] = ACTIONS(1368), [anon_sym_offsetof] = ACTIONS(1368), + [anon_sym___builtin_va_arg] = ACTIONS(1368), [anon_sym__Generic] = ACTIONS(1368), [anon_sym_asm] = ACTIONS(1368), [anon_sym___asm__] = ACTIONS(1368), @@ -32268,7 +33216,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1368), [sym_comment] = ACTIONS(3), }, - [138] = { + [125] = { + [sym_identifier] = ACTIONS(1368), + [aux_sym_preproc_include_token1] = ACTIONS(1368), + [aux_sym_preproc_def_token1] = ACTIONS(1368), + [aux_sym_preproc_if_token1] = ACTIONS(1368), + [aux_sym_preproc_if_token2] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1368), + [aux_sym_preproc_else_token1] = ACTIONS(1368), + [aux_sym_preproc_elif_token1] = ACTIONS(1368), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1368), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1368), + [sym_preproc_directive] = ACTIONS(1368), + [anon_sym_LPAREN2] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1370), + [anon_sym___extension__] = ACTIONS(1368), + [anon_sym_typedef] = ACTIONS(1368), + [anon_sym_extern] = ACTIONS(1368), + [anon_sym___attribute__] = ACTIONS(1368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1370), + [anon_sym___declspec] = ACTIONS(1368), + [anon_sym___cdecl] = ACTIONS(1368), + [anon_sym___clrcall] = ACTIONS(1368), + [anon_sym___stdcall] = ACTIONS(1368), + [anon_sym___fastcall] = ACTIONS(1368), + [anon_sym___thiscall] = ACTIONS(1368), + [anon_sym___vectorcall] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_signed] = ACTIONS(1368), + [anon_sym_unsigned] = ACTIONS(1368), + [anon_sym_long] = ACTIONS(1368), + [anon_sym_short] = ACTIONS(1368), + [anon_sym_static] = ACTIONS(1368), + [anon_sym_auto] = ACTIONS(1368), + [anon_sym_register] = ACTIONS(1368), + [anon_sym_inline] = ACTIONS(1368), + [anon_sym___inline] = ACTIONS(1368), + [anon_sym___inline__] = ACTIONS(1368), + [anon_sym___forceinline] = ACTIONS(1368), + [anon_sym_thread_local] = ACTIONS(1368), + [anon_sym___thread] = ACTIONS(1368), + [anon_sym_const] = ACTIONS(1368), + [anon_sym_constexpr] = ACTIONS(1368), + [anon_sym_volatile] = ACTIONS(1368), + [anon_sym_restrict] = ACTIONS(1368), + [anon_sym___restrict__] = ACTIONS(1368), + [anon_sym__Atomic] = ACTIONS(1368), + [anon_sym__Noreturn] = ACTIONS(1368), + [anon_sym_noreturn] = ACTIONS(1368), + [sym_primitive_type] = ACTIONS(1368), + [anon_sym_enum] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1368), + [anon_sym_union] = ACTIONS(1368), + [anon_sym_if] = ACTIONS(1368), + [anon_sym_else] = ACTIONS(1368), + [anon_sym_switch] = ACTIONS(1368), + [anon_sym_case] = ACTIONS(1368), + [anon_sym_default] = ACTIONS(1368), + [anon_sym_while] = ACTIONS(1368), + [anon_sym_do] = ACTIONS(1368), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1368), + [anon_sym_break] = ACTIONS(1368), + [anon_sym_continue] = ACTIONS(1368), + [anon_sym_goto] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1370), + [anon_sym_sizeof] = ACTIONS(1368), + [anon_sym___alignof__] = ACTIONS(1368), + [anon_sym___alignof] = ACTIONS(1368), + [anon_sym__alignof] = ACTIONS(1368), + [anon_sym_alignof] = ACTIONS(1368), + [anon_sym__Alignof] = ACTIONS(1368), + [anon_sym_offsetof] = ACTIONS(1368), + [anon_sym___builtin_va_arg] = ACTIONS(1368), + [anon_sym__Generic] = ACTIONS(1368), + [anon_sym_asm] = ACTIONS(1368), + [anon_sym___asm__] = ACTIONS(1368), + [sym_number_literal] = ACTIONS(1370), + [anon_sym_L_SQUOTE] = ACTIONS(1370), + [anon_sym_u_SQUOTE] = ACTIONS(1370), + [anon_sym_U_SQUOTE] = ACTIONS(1370), + [anon_sym_u8_SQUOTE] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1370), + [anon_sym_L_DQUOTE] = ACTIONS(1370), + [anon_sym_u_DQUOTE] = ACTIONS(1370), + [anon_sym_U_DQUOTE] = ACTIONS(1370), + [anon_sym_u8_DQUOTE] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [sym_true] = ACTIONS(1368), + [sym_false] = ACTIONS(1368), + [anon_sym_NULL] = ACTIONS(1368), + [anon_sym_nullptr] = ACTIONS(1368), + [sym_comment] = ACTIONS(3), + }, + [126] = { [sym_identifier] = ACTIONS(1372), [aux_sym_preproc_include_token1] = ACTIONS(1372), [aux_sym_preproc_def_token1] = ACTIONS(1372), @@ -32289,6 +33338,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1374), [anon_sym_AMP] = ACTIONS(1374), [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym___extension__] = ACTIONS(1372), [anon_sym_typedef] = ACTIONS(1372), [anon_sym_extern] = ACTIONS(1372), [anon_sym___attribute__] = ACTIONS(1372), @@ -32309,6 +33359,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1372), [anon_sym_register] = ACTIONS(1372), [anon_sym_inline] = ACTIONS(1372), + [anon_sym___inline] = ACTIONS(1372), + [anon_sym___inline__] = ACTIONS(1372), + [anon_sym___forceinline] = ACTIONS(1372), [anon_sym_thread_local] = ACTIONS(1372), [anon_sym___thread] = ACTIONS(1372), [anon_sym_const] = ACTIONS(1372), @@ -32324,6 +33377,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1372), [anon_sym_union] = ACTIONS(1372), [anon_sym_if] = ACTIONS(1372), + [anon_sym_else] = ACTIONS(1372), [anon_sym_switch] = ACTIONS(1372), [anon_sym_case] = ACTIONS(1372), [anon_sym_default] = ACTIONS(1372), @@ -32337,7 +33391,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1374), [anon_sym_PLUS_PLUS] = ACTIONS(1374), [anon_sym_sizeof] = ACTIONS(1372), + [anon_sym___alignof__] = ACTIONS(1372), + [anon_sym___alignof] = ACTIONS(1372), + [anon_sym__alignof] = ACTIONS(1372), + [anon_sym_alignof] = ACTIONS(1372), + [anon_sym__Alignof] = ACTIONS(1372), [anon_sym_offsetof] = ACTIONS(1372), + [anon_sym___builtin_va_arg] = ACTIONS(1372), [anon_sym__Generic] = ACTIONS(1372), [anon_sym_asm] = ACTIONS(1372), [anon_sym___asm__] = ACTIONS(1372), @@ -32358,7 +33418,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1372), [sym_comment] = ACTIONS(3), }, - [139] = { + [127] = { [sym_identifier] = ACTIONS(1376), [aux_sym_preproc_include_token1] = ACTIONS(1376), [aux_sym_preproc_def_token1] = ACTIONS(1376), @@ -32379,6 +33439,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1378), [anon_sym_AMP] = ACTIONS(1378), [anon_sym_SEMI] = ACTIONS(1378), + [anon_sym___extension__] = ACTIONS(1376), [anon_sym_typedef] = ACTIONS(1376), [anon_sym_extern] = ACTIONS(1376), [anon_sym___attribute__] = ACTIONS(1376), @@ -32399,6 +33460,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1376), [anon_sym_register] = ACTIONS(1376), [anon_sym_inline] = ACTIONS(1376), + [anon_sym___inline] = ACTIONS(1376), + [anon_sym___inline__] = ACTIONS(1376), + [anon_sym___forceinline] = ACTIONS(1376), [anon_sym_thread_local] = ACTIONS(1376), [anon_sym___thread] = ACTIONS(1376), [anon_sym_const] = ACTIONS(1376), @@ -32414,6 +33478,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1376), [anon_sym_union] = ACTIONS(1376), [anon_sym_if] = ACTIONS(1376), + [anon_sym_else] = ACTIONS(1376), [anon_sym_switch] = ACTIONS(1376), [anon_sym_case] = ACTIONS(1376), [anon_sym_default] = ACTIONS(1376), @@ -32427,7 +33492,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1378), [anon_sym_PLUS_PLUS] = ACTIONS(1378), [anon_sym_sizeof] = ACTIONS(1376), + [anon_sym___alignof__] = ACTIONS(1376), + [anon_sym___alignof] = ACTIONS(1376), + [anon_sym__alignof] = ACTIONS(1376), + [anon_sym_alignof] = ACTIONS(1376), + [anon_sym__Alignof] = ACTIONS(1376), [anon_sym_offsetof] = ACTIONS(1376), + [anon_sym___builtin_va_arg] = ACTIONS(1376), [anon_sym__Generic] = ACTIONS(1376), [anon_sym_asm] = ACTIONS(1376), [anon_sym___asm__] = ACTIONS(1376), @@ -32448,7 +33519,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1376), [sym_comment] = ACTIONS(3), }, - [140] = { + [128] = { [sym_identifier] = ACTIONS(1380), [aux_sym_preproc_include_token1] = ACTIONS(1380), [aux_sym_preproc_def_token1] = ACTIONS(1380), @@ -32469,6 +33540,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1382), [anon_sym_AMP] = ACTIONS(1382), [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym___extension__] = ACTIONS(1380), [anon_sym_typedef] = ACTIONS(1380), [anon_sym_extern] = ACTIONS(1380), [anon_sym___attribute__] = ACTIONS(1380), @@ -32489,6 +33561,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1380), [anon_sym_register] = ACTIONS(1380), [anon_sym_inline] = ACTIONS(1380), + [anon_sym___inline] = ACTIONS(1380), + [anon_sym___inline__] = ACTIONS(1380), + [anon_sym___forceinline] = ACTIONS(1380), [anon_sym_thread_local] = ACTIONS(1380), [anon_sym___thread] = ACTIONS(1380), [anon_sym_const] = ACTIONS(1380), @@ -32504,6 +33579,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1380), [anon_sym_union] = ACTIONS(1380), [anon_sym_if] = ACTIONS(1380), + [anon_sym_else] = ACTIONS(1380), [anon_sym_switch] = ACTIONS(1380), [anon_sym_case] = ACTIONS(1380), [anon_sym_default] = ACTIONS(1380), @@ -32517,7 +33593,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1382), [anon_sym_PLUS_PLUS] = ACTIONS(1382), [anon_sym_sizeof] = ACTIONS(1380), + [anon_sym___alignof__] = ACTIONS(1380), + [anon_sym___alignof] = ACTIONS(1380), + [anon_sym__alignof] = ACTIONS(1380), + [anon_sym_alignof] = ACTIONS(1380), + [anon_sym__Alignof] = ACTIONS(1380), [anon_sym_offsetof] = ACTIONS(1380), + [anon_sym___builtin_va_arg] = ACTIONS(1380), [anon_sym__Generic] = ACTIONS(1380), [anon_sym_asm] = ACTIONS(1380), [anon_sym___asm__] = ACTIONS(1380), @@ -32538,7 +33620,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1380), [sym_comment] = ACTIONS(3), }, - [141] = { + [129] = { [sym_identifier] = ACTIONS(1384), [aux_sym_preproc_include_token1] = ACTIONS(1384), [aux_sym_preproc_def_token1] = ACTIONS(1384), @@ -32559,6 +33641,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1386), [anon_sym_AMP] = ACTIONS(1386), [anon_sym_SEMI] = ACTIONS(1386), + [anon_sym___extension__] = ACTIONS(1384), [anon_sym_typedef] = ACTIONS(1384), [anon_sym_extern] = ACTIONS(1384), [anon_sym___attribute__] = ACTIONS(1384), @@ -32579,6 +33662,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1384), [anon_sym_register] = ACTIONS(1384), [anon_sym_inline] = ACTIONS(1384), + [anon_sym___inline] = ACTIONS(1384), + [anon_sym___inline__] = ACTIONS(1384), + [anon_sym___forceinline] = ACTIONS(1384), [anon_sym_thread_local] = ACTIONS(1384), [anon_sym___thread] = ACTIONS(1384), [anon_sym_const] = ACTIONS(1384), @@ -32594,6 +33680,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1384), [anon_sym_union] = ACTIONS(1384), [anon_sym_if] = ACTIONS(1384), + [anon_sym_else] = ACTIONS(1384), [anon_sym_switch] = ACTIONS(1384), [anon_sym_case] = ACTIONS(1384), [anon_sym_default] = ACTIONS(1384), @@ -32607,7 +33694,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1386), [anon_sym_PLUS_PLUS] = ACTIONS(1386), [anon_sym_sizeof] = ACTIONS(1384), + [anon_sym___alignof__] = ACTIONS(1384), + [anon_sym___alignof] = ACTIONS(1384), + [anon_sym__alignof] = ACTIONS(1384), + [anon_sym_alignof] = ACTIONS(1384), + [anon_sym__Alignof] = ACTIONS(1384), [anon_sym_offsetof] = ACTIONS(1384), + [anon_sym___builtin_va_arg] = ACTIONS(1384), [anon_sym__Generic] = ACTIONS(1384), [anon_sym_asm] = ACTIONS(1384), [anon_sym___asm__] = ACTIONS(1384), @@ -32628,7 +33721,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1384), [sym_comment] = ACTIONS(3), }, - [142] = { + [130] = { [sym_identifier] = ACTIONS(1388), [aux_sym_preproc_include_token1] = ACTIONS(1388), [aux_sym_preproc_def_token1] = ACTIONS(1388), @@ -32649,6 +33742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1390), [anon_sym_AMP] = ACTIONS(1390), [anon_sym_SEMI] = ACTIONS(1390), + [anon_sym___extension__] = ACTIONS(1388), [anon_sym_typedef] = ACTIONS(1388), [anon_sym_extern] = ACTIONS(1388), [anon_sym___attribute__] = ACTIONS(1388), @@ -32669,6 +33763,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1388), [anon_sym_register] = ACTIONS(1388), [anon_sym_inline] = ACTIONS(1388), + [anon_sym___inline] = ACTIONS(1388), + [anon_sym___inline__] = ACTIONS(1388), + [anon_sym___forceinline] = ACTIONS(1388), [anon_sym_thread_local] = ACTIONS(1388), [anon_sym___thread] = ACTIONS(1388), [anon_sym_const] = ACTIONS(1388), @@ -32684,6 +33781,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1388), [anon_sym_union] = ACTIONS(1388), [anon_sym_if] = ACTIONS(1388), + [anon_sym_else] = ACTIONS(1388), [anon_sym_switch] = ACTIONS(1388), [anon_sym_case] = ACTIONS(1388), [anon_sym_default] = ACTIONS(1388), @@ -32697,7 +33795,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1390), [anon_sym_PLUS_PLUS] = ACTIONS(1390), [anon_sym_sizeof] = ACTIONS(1388), + [anon_sym___alignof__] = ACTIONS(1388), + [anon_sym___alignof] = ACTIONS(1388), + [anon_sym__alignof] = ACTIONS(1388), + [anon_sym_alignof] = ACTIONS(1388), + [anon_sym__Alignof] = ACTIONS(1388), [anon_sym_offsetof] = ACTIONS(1388), + [anon_sym___builtin_va_arg] = ACTIONS(1388), [anon_sym__Generic] = ACTIONS(1388), [anon_sym_asm] = ACTIONS(1388), [anon_sym___asm__] = ACTIONS(1388), @@ -32718,7 +33822,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1388), [sym_comment] = ACTIONS(3), }, - [143] = { + [131] = { [sym_identifier] = ACTIONS(1392), [aux_sym_preproc_include_token1] = ACTIONS(1392), [aux_sym_preproc_def_token1] = ACTIONS(1392), @@ -32739,6 +33843,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1394), [anon_sym_AMP] = ACTIONS(1394), [anon_sym_SEMI] = ACTIONS(1394), + [anon_sym___extension__] = ACTIONS(1392), [anon_sym_typedef] = ACTIONS(1392), [anon_sym_extern] = ACTIONS(1392), [anon_sym___attribute__] = ACTIONS(1392), @@ -32759,6 +33864,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1392), [anon_sym_register] = ACTIONS(1392), [anon_sym_inline] = ACTIONS(1392), + [anon_sym___inline] = ACTIONS(1392), + [anon_sym___inline__] = ACTIONS(1392), + [anon_sym___forceinline] = ACTIONS(1392), [anon_sym_thread_local] = ACTIONS(1392), [anon_sym___thread] = ACTIONS(1392), [anon_sym_const] = ACTIONS(1392), @@ -32774,6 +33882,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1392), [anon_sym_union] = ACTIONS(1392), [anon_sym_if] = ACTIONS(1392), + [anon_sym_else] = ACTIONS(1392), [anon_sym_switch] = ACTIONS(1392), [anon_sym_case] = ACTIONS(1392), [anon_sym_default] = ACTIONS(1392), @@ -32787,7 +33896,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1394), [anon_sym_PLUS_PLUS] = ACTIONS(1394), [anon_sym_sizeof] = ACTIONS(1392), + [anon_sym___alignof__] = ACTIONS(1392), + [anon_sym___alignof] = ACTIONS(1392), + [anon_sym__alignof] = ACTIONS(1392), + [anon_sym_alignof] = ACTIONS(1392), + [anon_sym__Alignof] = ACTIONS(1392), [anon_sym_offsetof] = ACTIONS(1392), + [anon_sym___builtin_va_arg] = ACTIONS(1392), [anon_sym__Generic] = ACTIONS(1392), [anon_sym_asm] = ACTIONS(1392), [anon_sym___asm__] = ACTIONS(1392), @@ -32808,1733 +33923,4642 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1392), [sym_comment] = ACTIONS(3), }, - [144] = { - [sym_else_clause] = STATE(160), - [sym_identifier] = ACTIONS(1172), - [aux_sym_preproc_include_token1] = ACTIONS(1172), - [aux_sym_preproc_def_token1] = ACTIONS(1172), - [aux_sym_preproc_if_token1] = ACTIONS(1172), - [aux_sym_preproc_if_token2] = ACTIONS(1172), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1172), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1172), - [aux_sym_preproc_else_token1] = ACTIONS(1172), - [aux_sym_preproc_elif_token1] = ACTIONS(1172), - [sym_preproc_directive] = ACTIONS(1172), - [anon_sym_LPAREN2] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1174), - [anon_sym_TILDE] = ACTIONS(1174), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_PLUS] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(1174), - [anon_sym_SEMI] = ACTIONS(1174), - [anon_sym_typedef] = ACTIONS(1172), - [anon_sym_extern] = ACTIONS(1172), - [anon_sym___attribute__] = ACTIONS(1172), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1174), - [anon_sym___declspec] = ACTIONS(1172), - [anon_sym___cdecl] = ACTIONS(1172), - [anon_sym___clrcall] = ACTIONS(1172), - [anon_sym___stdcall] = ACTIONS(1172), - [anon_sym___fastcall] = ACTIONS(1172), - [anon_sym___thiscall] = ACTIONS(1172), - [anon_sym___vectorcall] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1174), - [anon_sym_signed] = ACTIONS(1172), - [anon_sym_unsigned] = ACTIONS(1172), - [anon_sym_long] = ACTIONS(1172), - [anon_sym_short] = ACTIONS(1172), - [anon_sym_static] = ACTIONS(1172), - [anon_sym_auto] = ACTIONS(1172), - [anon_sym_register] = ACTIONS(1172), - [anon_sym_inline] = ACTIONS(1172), - [anon_sym_thread_local] = ACTIONS(1172), - [anon_sym___thread] = ACTIONS(1172), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_constexpr] = ACTIONS(1172), - [anon_sym_volatile] = ACTIONS(1172), - [anon_sym_restrict] = ACTIONS(1172), - [anon_sym___restrict__] = ACTIONS(1172), - [anon_sym__Atomic] = ACTIONS(1172), - [anon_sym__Noreturn] = ACTIONS(1172), - [anon_sym_noreturn] = ACTIONS(1172), - [sym_primitive_type] = ACTIONS(1172), - [anon_sym_enum] = ACTIONS(1172), - [anon_sym_struct] = ACTIONS(1172), - [anon_sym_union] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1172), + [132] = { + [sym_identifier] = ACTIONS(1396), + [aux_sym_preproc_include_token1] = ACTIONS(1396), + [aux_sym_preproc_def_token1] = ACTIONS(1396), + [aux_sym_preproc_if_token1] = ACTIONS(1396), + [aux_sym_preproc_if_token2] = ACTIONS(1396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(1396), + [aux_sym_preproc_elif_token1] = ACTIONS(1396), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1396), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1396), + [anon_sym_LPAREN2] = ACTIONS(1398), + [anon_sym_BANG] = ACTIONS(1398), + [anon_sym_TILDE] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_PLUS] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym___extension__] = ACTIONS(1396), + [anon_sym_typedef] = ACTIONS(1396), + [anon_sym_extern] = ACTIONS(1396), + [anon_sym___attribute__] = ACTIONS(1396), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1398), + [anon_sym___declspec] = ACTIONS(1396), + [anon_sym___cdecl] = ACTIONS(1396), + [anon_sym___clrcall] = ACTIONS(1396), + [anon_sym___stdcall] = ACTIONS(1396), + [anon_sym___fastcall] = ACTIONS(1396), + [anon_sym___thiscall] = ACTIONS(1396), + [anon_sym___vectorcall] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(1398), + [anon_sym_signed] = ACTIONS(1396), + [anon_sym_unsigned] = ACTIONS(1396), + [anon_sym_long] = ACTIONS(1396), + [anon_sym_short] = ACTIONS(1396), + [anon_sym_static] = ACTIONS(1396), + [anon_sym_auto] = ACTIONS(1396), + [anon_sym_register] = ACTIONS(1396), + [anon_sym_inline] = ACTIONS(1396), + [anon_sym___inline] = ACTIONS(1396), + [anon_sym___inline__] = ACTIONS(1396), + [anon_sym___forceinline] = ACTIONS(1396), + [anon_sym_thread_local] = ACTIONS(1396), + [anon_sym___thread] = ACTIONS(1396), + [anon_sym_const] = ACTIONS(1396), + [anon_sym_constexpr] = ACTIONS(1396), + [anon_sym_volatile] = ACTIONS(1396), + [anon_sym_restrict] = ACTIONS(1396), + [anon_sym___restrict__] = ACTIONS(1396), + [anon_sym__Atomic] = ACTIONS(1396), + [anon_sym__Noreturn] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [sym_primitive_type] = ACTIONS(1396), + [anon_sym_enum] = ACTIONS(1396), + [anon_sym_struct] = ACTIONS(1396), + [anon_sym_union] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1396), [anon_sym_else] = ACTIONS(1396), - [anon_sym_switch] = ACTIONS(1172), - [anon_sym_case] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(1172), - [anon_sym_while] = ACTIONS(1172), - [anon_sym_do] = ACTIONS(1172), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1172), - [anon_sym_break] = ACTIONS(1172), - [anon_sym_continue] = ACTIONS(1172), - [anon_sym_goto] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1174), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_sizeof] = ACTIONS(1172), - [anon_sym_offsetof] = ACTIONS(1172), - [anon_sym__Generic] = ACTIONS(1172), - [anon_sym_asm] = ACTIONS(1172), - [anon_sym___asm__] = ACTIONS(1172), - [sym_number_literal] = ACTIONS(1174), - [anon_sym_L_SQUOTE] = ACTIONS(1174), - [anon_sym_u_SQUOTE] = ACTIONS(1174), - [anon_sym_U_SQUOTE] = ACTIONS(1174), - [anon_sym_u8_SQUOTE] = ACTIONS(1174), - [anon_sym_SQUOTE] = ACTIONS(1174), - [anon_sym_L_DQUOTE] = ACTIONS(1174), - [anon_sym_u_DQUOTE] = ACTIONS(1174), - [anon_sym_U_DQUOTE] = ACTIONS(1174), - [anon_sym_u8_DQUOTE] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1174), - [sym_true] = ACTIONS(1172), - [sym_false] = ACTIONS(1172), - [anon_sym_NULL] = ACTIONS(1172), - [anon_sym_nullptr] = ACTIONS(1172), + [anon_sym_switch] = ACTIONS(1396), + [anon_sym_case] = ACTIONS(1396), + [anon_sym_default] = ACTIONS(1396), + [anon_sym_while] = ACTIONS(1396), + [anon_sym_do] = ACTIONS(1396), + [anon_sym_for] = ACTIONS(1396), + [anon_sym_return] = ACTIONS(1396), + [anon_sym_break] = ACTIONS(1396), + [anon_sym_continue] = ACTIONS(1396), + [anon_sym_goto] = ACTIONS(1396), + [anon_sym_DASH_DASH] = ACTIONS(1398), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_sizeof] = ACTIONS(1396), + [anon_sym___alignof__] = ACTIONS(1396), + [anon_sym___alignof] = ACTIONS(1396), + [anon_sym__alignof] = ACTIONS(1396), + [anon_sym_alignof] = ACTIONS(1396), + [anon_sym__Alignof] = ACTIONS(1396), + [anon_sym_offsetof] = ACTIONS(1396), + [anon_sym___builtin_va_arg] = ACTIONS(1396), + [anon_sym__Generic] = ACTIONS(1396), + [anon_sym_asm] = ACTIONS(1396), + [anon_sym___asm__] = ACTIONS(1396), + [sym_number_literal] = ACTIONS(1398), + [anon_sym_L_SQUOTE] = ACTIONS(1398), + [anon_sym_u_SQUOTE] = ACTIONS(1398), + [anon_sym_U_SQUOTE] = ACTIONS(1398), + [anon_sym_u8_SQUOTE] = ACTIONS(1398), + [anon_sym_SQUOTE] = ACTIONS(1398), + [anon_sym_L_DQUOTE] = ACTIONS(1398), + [anon_sym_u_DQUOTE] = ACTIONS(1398), + [anon_sym_U_DQUOTE] = ACTIONS(1398), + [anon_sym_u8_DQUOTE] = ACTIONS(1398), + [anon_sym_DQUOTE] = ACTIONS(1398), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [anon_sym_NULL] = ACTIONS(1396), + [anon_sym_nullptr] = ACTIONS(1396), + [sym_comment] = ACTIONS(3), + }, + [133] = { + [sym_identifier] = ACTIONS(1400), + [aux_sym_preproc_include_token1] = ACTIONS(1400), + [aux_sym_preproc_def_token1] = ACTIONS(1400), + [aux_sym_preproc_if_token1] = ACTIONS(1400), + [aux_sym_preproc_if_token2] = ACTIONS(1400), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1400), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1400), + [aux_sym_preproc_else_token1] = ACTIONS(1400), + [aux_sym_preproc_elif_token1] = ACTIONS(1400), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1400), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1400), + [sym_preproc_directive] = ACTIONS(1400), + [anon_sym_LPAREN2] = ACTIONS(1402), + [anon_sym_BANG] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1402), + [anon_sym_AMP] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym___extension__] = ACTIONS(1400), + [anon_sym_typedef] = ACTIONS(1400), + [anon_sym_extern] = ACTIONS(1400), + [anon_sym___attribute__] = ACTIONS(1400), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1402), + [anon_sym___declspec] = ACTIONS(1400), + [anon_sym___cdecl] = ACTIONS(1400), + [anon_sym___clrcall] = ACTIONS(1400), + [anon_sym___stdcall] = ACTIONS(1400), + [anon_sym___fastcall] = ACTIONS(1400), + [anon_sym___thiscall] = ACTIONS(1400), + [anon_sym___vectorcall] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_signed] = ACTIONS(1400), + [anon_sym_unsigned] = ACTIONS(1400), + [anon_sym_long] = ACTIONS(1400), + [anon_sym_short] = ACTIONS(1400), + [anon_sym_static] = ACTIONS(1400), + [anon_sym_auto] = ACTIONS(1400), + [anon_sym_register] = ACTIONS(1400), + [anon_sym_inline] = ACTIONS(1400), + [anon_sym___inline] = ACTIONS(1400), + [anon_sym___inline__] = ACTIONS(1400), + [anon_sym___forceinline] = ACTIONS(1400), + [anon_sym_thread_local] = ACTIONS(1400), + [anon_sym___thread] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_constexpr] = ACTIONS(1400), + [anon_sym_volatile] = ACTIONS(1400), + [anon_sym_restrict] = ACTIONS(1400), + [anon_sym___restrict__] = ACTIONS(1400), + [anon_sym__Atomic] = ACTIONS(1400), + [anon_sym__Noreturn] = ACTIONS(1400), + [anon_sym_noreturn] = ACTIONS(1400), + [sym_primitive_type] = ACTIONS(1400), + [anon_sym_enum] = ACTIONS(1400), + [anon_sym_struct] = ACTIONS(1400), + [anon_sym_union] = ACTIONS(1400), + [anon_sym_if] = ACTIONS(1400), + [anon_sym_else] = ACTIONS(1400), + [anon_sym_switch] = ACTIONS(1400), + [anon_sym_case] = ACTIONS(1400), + [anon_sym_default] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1400), + [anon_sym_do] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [anon_sym_goto] = ACTIONS(1400), + [anon_sym_DASH_DASH] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1402), + [anon_sym_sizeof] = ACTIONS(1400), + [anon_sym___alignof__] = ACTIONS(1400), + [anon_sym___alignof] = ACTIONS(1400), + [anon_sym__alignof] = ACTIONS(1400), + [anon_sym_alignof] = ACTIONS(1400), + [anon_sym__Alignof] = ACTIONS(1400), + [anon_sym_offsetof] = ACTIONS(1400), + [anon_sym___builtin_va_arg] = ACTIONS(1400), + [anon_sym__Generic] = ACTIONS(1400), + [anon_sym_asm] = ACTIONS(1400), + [anon_sym___asm__] = ACTIONS(1400), + [sym_number_literal] = ACTIONS(1402), + [anon_sym_L_SQUOTE] = ACTIONS(1402), + [anon_sym_u_SQUOTE] = ACTIONS(1402), + [anon_sym_U_SQUOTE] = ACTIONS(1402), + [anon_sym_u8_SQUOTE] = ACTIONS(1402), + [anon_sym_SQUOTE] = ACTIONS(1402), + [anon_sym_L_DQUOTE] = ACTIONS(1402), + [anon_sym_u_DQUOTE] = ACTIONS(1402), + [anon_sym_U_DQUOTE] = ACTIONS(1402), + [anon_sym_u8_DQUOTE] = ACTIONS(1402), + [anon_sym_DQUOTE] = ACTIONS(1402), + [sym_true] = ACTIONS(1400), + [sym_false] = ACTIONS(1400), + [anon_sym_NULL] = ACTIONS(1400), + [anon_sym_nullptr] = ACTIONS(1400), + [sym_comment] = ACTIONS(3), + }, + [134] = { + [sym_identifier] = ACTIONS(1404), + [aux_sym_preproc_include_token1] = ACTIONS(1404), + [aux_sym_preproc_def_token1] = ACTIONS(1404), + [aux_sym_preproc_if_token1] = ACTIONS(1404), + [aux_sym_preproc_if_token2] = ACTIONS(1404), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1404), + [aux_sym_preproc_else_token1] = ACTIONS(1404), + [aux_sym_preproc_elif_token1] = ACTIONS(1404), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1404), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1404), + [sym_preproc_directive] = ACTIONS(1404), + [anon_sym_LPAREN2] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1406), + [anon_sym_TILDE] = ACTIONS(1406), + [anon_sym_DASH] = ACTIONS(1404), + [anon_sym_PLUS] = ACTIONS(1404), + [anon_sym_STAR] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1406), + [anon_sym_SEMI] = ACTIONS(1406), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_typedef] = ACTIONS(1404), + [anon_sym_extern] = ACTIONS(1404), + [anon_sym___attribute__] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), + [anon_sym___declspec] = ACTIONS(1404), + [anon_sym___cdecl] = ACTIONS(1404), + [anon_sym___clrcall] = ACTIONS(1404), + [anon_sym___stdcall] = ACTIONS(1404), + [anon_sym___fastcall] = ACTIONS(1404), + [anon_sym___thiscall] = ACTIONS(1404), + [anon_sym___vectorcall] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_signed] = ACTIONS(1404), + [anon_sym_unsigned] = ACTIONS(1404), + [anon_sym_long] = ACTIONS(1404), + [anon_sym_short] = ACTIONS(1404), + [anon_sym_static] = ACTIONS(1404), + [anon_sym_auto] = ACTIONS(1404), + [anon_sym_register] = ACTIONS(1404), + [anon_sym_inline] = ACTIONS(1404), + [anon_sym___inline] = ACTIONS(1404), + [anon_sym___inline__] = ACTIONS(1404), + [anon_sym___forceinline] = ACTIONS(1404), + [anon_sym_thread_local] = ACTIONS(1404), + [anon_sym___thread] = ACTIONS(1404), + [anon_sym_const] = ACTIONS(1404), + [anon_sym_constexpr] = ACTIONS(1404), + [anon_sym_volatile] = ACTIONS(1404), + [anon_sym_restrict] = ACTIONS(1404), + [anon_sym___restrict__] = ACTIONS(1404), + [anon_sym__Atomic] = ACTIONS(1404), + [anon_sym__Noreturn] = ACTIONS(1404), + [anon_sym_noreturn] = ACTIONS(1404), + [sym_primitive_type] = ACTIONS(1404), + [anon_sym_enum] = ACTIONS(1404), + [anon_sym_struct] = ACTIONS(1404), + [anon_sym_union] = ACTIONS(1404), + [anon_sym_if] = ACTIONS(1404), + [anon_sym_else] = ACTIONS(1404), + [anon_sym_switch] = ACTIONS(1404), + [anon_sym_case] = ACTIONS(1404), + [anon_sym_default] = ACTIONS(1404), + [anon_sym_while] = ACTIONS(1404), + [anon_sym_do] = ACTIONS(1404), + [anon_sym_for] = ACTIONS(1404), + [anon_sym_return] = ACTIONS(1404), + [anon_sym_break] = ACTIONS(1404), + [anon_sym_continue] = ACTIONS(1404), + [anon_sym_goto] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1406), + [anon_sym_PLUS_PLUS] = ACTIONS(1406), + [anon_sym_sizeof] = ACTIONS(1404), + [anon_sym___alignof__] = ACTIONS(1404), + [anon_sym___alignof] = ACTIONS(1404), + [anon_sym__alignof] = ACTIONS(1404), + [anon_sym_alignof] = ACTIONS(1404), + [anon_sym__Alignof] = ACTIONS(1404), + [anon_sym_offsetof] = ACTIONS(1404), + [anon_sym___builtin_va_arg] = ACTIONS(1404), + [anon_sym__Generic] = ACTIONS(1404), + [anon_sym_asm] = ACTIONS(1404), + [anon_sym___asm__] = ACTIONS(1404), + [sym_number_literal] = ACTIONS(1406), + [anon_sym_L_SQUOTE] = ACTIONS(1406), + [anon_sym_u_SQUOTE] = ACTIONS(1406), + [anon_sym_U_SQUOTE] = ACTIONS(1406), + [anon_sym_u8_SQUOTE] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1406), + [anon_sym_L_DQUOTE] = ACTIONS(1406), + [anon_sym_u_DQUOTE] = ACTIONS(1406), + [anon_sym_U_DQUOTE] = ACTIONS(1406), + [anon_sym_u8_DQUOTE] = ACTIONS(1406), + [anon_sym_DQUOTE] = ACTIONS(1406), + [sym_true] = ACTIONS(1404), + [sym_false] = ACTIONS(1404), + [anon_sym_NULL] = ACTIONS(1404), + [anon_sym_nullptr] = ACTIONS(1404), + [sym_comment] = ACTIONS(3), + }, + [135] = { + [sym_identifier] = ACTIONS(1408), + [aux_sym_preproc_include_token1] = ACTIONS(1408), + [aux_sym_preproc_def_token1] = ACTIONS(1408), + [aux_sym_preproc_if_token1] = ACTIONS(1408), + [aux_sym_preproc_if_token2] = ACTIONS(1408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1408), + [aux_sym_preproc_else_token1] = ACTIONS(1408), + [aux_sym_preproc_elif_token1] = ACTIONS(1408), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1408), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1408), + [sym_preproc_directive] = ACTIONS(1408), + [anon_sym_LPAREN2] = ACTIONS(1410), + [anon_sym_BANG] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1410), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_STAR] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym___extension__] = ACTIONS(1408), + [anon_sym_typedef] = ACTIONS(1408), + [anon_sym_extern] = ACTIONS(1408), + [anon_sym___attribute__] = ACTIONS(1408), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1410), + [anon_sym___declspec] = ACTIONS(1408), + [anon_sym___cdecl] = ACTIONS(1408), + [anon_sym___clrcall] = ACTIONS(1408), + [anon_sym___stdcall] = ACTIONS(1408), + [anon_sym___fastcall] = ACTIONS(1408), + [anon_sym___thiscall] = ACTIONS(1408), + [anon_sym___vectorcall] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(1410), + [anon_sym_signed] = ACTIONS(1408), + [anon_sym_unsigned] = ACTIONS(1408), + [anon_sym_long] = ACTIONS(1408), + [anon_sym_short] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_auto] = ACTIONS(1408), + [anon_sym_register] = ACTIONS(1408), + [anon_sym_inline] = ACTIONS(1408), + [anon_sym___inline] = ACTIONS(1408), + [anon_sym___inline__] = ACTIONS(1408), + [anon_sym___forceinline] = ACTIONS(1408), + [anon_sym_thread_local] = ACTIONS(1408), + [anon_sym___thread] = ACTIONS(1408), + [anon_sym_const] = ACTIONS(1408), + [anon_sym_constexpr] = ACTIONS(1408), + [anon_sym_volatile] = ACTIONS(1408), + [anon_sym_restrict] = ACTIONS(1408), + [anon_sym___restrict__] = ACTIONS(1408), + [anon_sym__Atomic] = ACTIONS(1408), + [anon_sym__Noreturn] = ACTIONS(1408), + [anon_sym_noreturn] = ACTIONS(1408), + [sym_primitive_type] = ACTIONS(1408), + [anon_sym_enum] = ACTIONS(1408), + [anon_sym_struct] = ACTIONS(1408), + [anon_sym_union] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1408), + [anon_sym_else] = ACTIONS(1408), + [anon_sym_switch] = ACTIONS(1408), + [anon_sym_case] = ACTIONS(1408), + [anon_sym_default] = ACTIONS(1408), + [anon_sym_while] = ACTIONS(1408), + [anon_sym_do] = ACTIONS(1408), + [anon_sym_for] = ACTIONS(1408), + [anon_sym_return] = ACTIONS(1408), + [anon_sym_break] = ACTIONS(1408), + [anon_sym_continue] = ACTIONS(1408), + [anon_sym_goto] = ACTIONS(1408), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_sizeof] = ACTIONS(1408), + [anon_sym___alignof__] = ACTIONS(1408), + [anon_sym___alignof] = ACTIONS(1408), + [anon_sym__alignof] = ACTIONS(1408), + [anon_sym_alignof] = ACTIONS(1408), + [anon_sym__Alignof] = ACTIONS(1408), + [anon_sym_offsetof] = ACTIONS(1408), + [anon_sym___builtin_va_arg] = ACTIONS(1408), + [anon_sym__Generic] = ACTIONS(1408), + [anon_sym_asm] = ACTIONS(1408), + [anon_sym___asm__] = ACTIONS(1408), + [sym_number_literal] = ACTIONS(1410), + [anon_sym_L_SQUOTE] = ACTIONS(1410), + [anon_sym_u_SQUOTE] = ACTIONS(1410), + [anon_sym_U_SQUOTE] = ACTIONS(1410), + [anon_sym_u8_SQUOTE] = ACTIONS(1410), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_L_DQUOTE] = ACTIONS(1410), + [anon_sym_u_DQUOTE] = ACTIONS(1410), + [anon_sym_U_DQUOTE] = ACTIONS(1410), + [anon_sym_u8_DQUOTE] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1410), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [anon_sym_NULL] = ACTIONS(1408), + [anon_sym_nullptr] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + }, + [136] = { + [sym_identifier] = ACTIONS(1412), + [aux_sym_preproc_include_token1] = ACTIONS(1412), + [aux_sym_preproc_def_token1] = ACTIONS(1412), + [aux_sym_preproc_if_token1] = ACTIONS(1412), + [aux_sym_preproc_if_token2] = ACTIONS(1412), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1412), + [aux_sym_preproc_else_token1] = ACTIONS(1412), + [aux_sym_preproc_elif_token1] = ACTIONS(1412), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1412), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1412), + [sym_preproc_directive] = ACTIONS(1412), + [anon_sym_LPAREN2] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1414), + [anon_sym_TILDE] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_AMP] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1414), + [anon_sym___extension__] = ACTIONS(1412), + [anon_sym_typedef] = ACTIONS(1412), + [anon_sym_extern] = ACTIONS(1412), + [anon_sym___attribute__] = ACTIONS(1412), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1414), + [anon_sym___declspec] = ACTIONS(1412), + [anon_sym___cdecl] = ACTIONS(1412), + [anon_sym___clrcall] = ACTIONS(1412), + [anon_sym___stdcall] = ACTIONS(1412), + [anon_sym___fastcall] = ACTIONS(1412), + [anon_sym___thiscall] = ACTIONS(1412), + [anon_sym___vectorcall] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_signed] = ACTIONS(1412), + [anon_sym_unsigned] = ACTIONS(1412), + [anon_sym_long] = ACTIONS(1412), + [anon_sym_short] = ACTIONS(1412), + [anon_sym_static] = ACTIONS(1412), + [anon_sym_auto] = ACTIONS(1412), + [anon_sym_register] = ACTIONS(1412), + [anon_sym_inline] = ACTIONS(1412), + [anon_sym___inline] = ACTIONS(1412), + [anon_sym___inline__] = ACTIONS(1412), + [anon_sym___forceinline] = ACTIONS(1412), + [anon_sym_thread_local] = ACTIONS(1412), + [anon_sym___thread] = ACTIONS(1412), + [anon_sym_const] = ACTIONS(1412), + [anon_sym_constexpr] = ACTIONS(1412), + [anon_sym_volatile] = ACTIONS(1412), + [anon_sym_restrict] = ACTIONS(1412), + [anon_sym___restrict__] = ACTIONS(1412), + [anon_sym__Atomic] = ACTIONS(1412), + [anon_sym__Noreturn] = ACTIONS(1412), + [anon_sym_noreturn] = ACTIONS(1412), + [sym_primitive_type] = ACTIONS(1412), + [anon_sym_enum] = ACTIONS(1412), + [anon_sym_struct] = ACTIONS(1412), + [anon_sym_union] = ACTIONS(1412), + [anon_sym_if] = ACTIONS(1412), + [anon_sym_else] = ACTIONS(1412), + [anon_sym_switch] = ACTIONS(1412), + [anon_sym_case] = ACTIONS(1412), + [anon_sym_default] = ACTIONS(1412), + [anon_sym_while] = ACTIONS(1412), + [anon_sym_do] = ACTIONS(1412), + [anon_sym_for] = ACTIONS(1412), + [anon_sym_return] = ACTIONS(1412), + [anon_sym_break] = ACTIONS(1412), + [anon_sym_continue] = ACTIONS(1412), + [anon_sym_goto] = ACTIONS(1412), + [anon_sym_DASH_DASH] = ACTIONS(1414), + [anon_sym_PLUS_PLUS] = ACTIONS(1414), + [anon_sym_sizeof] = ACTIONS(1412), + [anon_sym___alignof__] = ACTIONS(1412), + [anon_sym___alignof] = ACTIONS(1412), + [anon_sym__alignof] = ACTIONS(1412), + [anon_sym_alignof] = ACTIONS(1412), + [anon_sym__Alignof] = ACTIONS(1412), + [anon_sym_offsetof] = ACTIONS(1412), + [anon_sym___builtin_va_arg] = ACTIONS(1412), + [anon_sym__Generic] = ACTIONS(1412), + [anon_sym_asm] = ACTIONS(1412), + [anon_sym___asm__] = ACTIONS(1412), + [sym_number_literal] = ACTIONS(1414), + [anon_sym_L_SQUOTE] = ACTIONS(1414), + [anon_sym_u_SQUOTE] = ACTIONS(1414), + [anon_sym_U_SQUOTE] = ACTIONS(1414), + [anon_sym_u8_SQUOTE] = ACTIONS(1414), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_L_DQUOTE] = ACTIONS(1414), + [anon_sym_u_DQUOTE] = ACTIONS(1414), + [anon_sym_U_DQUOTE] = ACTIONS(1414), + [anon_sym_u8_DQUOTE] = ACTIONS(1414), + [anon_sym_DQUOTE] = ACTIONS(1414), + [sym_true] = ACTIONS(1412), + [sym_false] = ACTIONS(1412), + [anon_sym_NULL] = ACTIONS(1412), + [anon_sym_nullptr] = ACTIONS(1412), + [sym_comment] = ACTIONS(3), + }, + [137] = { + [sym_identifier] = ACTIONS(1416), + [aux_sym_preproc_include_token1] = ACTIONS(1416), + [aux_sym_preproc_def_token1] = ACTIONS(1416), + [aux_sym_preproc_if_token1] = ACTIONS(1416), + [aux_sym_preproc_if_token2] = ACTIONS(1416), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1416), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1416), + [aux_sym_preproc_else_token1] = ACTIONS(1416), + [aux_sym_preproc_elif_token1] = ACTIONS(1416), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1416), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1416), + [sym_preproc_directive] = ACTIONS(1416), + [anon_sym_LPAREN2] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(1416), + [anon_sym_typedef] = ACTIONS(1416), + [anon_sym_extern] = ACTIONS(1416), + [anon_sym___attribute__] = ACTIONS(1416), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), + [anon_sym___declspec] = ACTIONS(1416), + [anon_sym___cdecl] = ACTIONS(1416), + [anon_sym___clrcall] = ACTIONS(1416), + [anon_sym___stdcall] = ACTIONS(1416), + [anon_sym___fastcall] = ACTIONS(1416), + [anon_sym___thiscall] = ACTIONS(1416), + [anon_sym___vectorcall] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_signed] = ACTIONS(1416), + [anon_sym_unsigned] = ACTIONS(1416), + [anon_sym_long] = ACTIONS(1416), + [anon_sym_short] = ACTIONS(1416), + [anon_sym_static] = ACTIONS(1416), + [anon_sym_auto] = ACTIONS(1416), + [anon_sym_register] = ACTIONS(1416), + [anon_sym_inline] = ACTIONS(1416), + [anon_sym___inline] = ACTIONS(1416), + [anon_sym___inline__] = ACTIONS(1416), + [anon_sym___forceinline] = ACTIONS(1416), + [anon_sym_thread_local] = ACTIONS(1416), + [anon_sym___thread] = ACTIONS(1416), + [anon_sym_const] = ACTIONS(1416), + [anon_sym_constexpr] = ACTIONS(1416), + [anon_sym_volatile] = ACTIONS(1416), + [anon_sym_restrict] = ACTIONS(1416), + [anon_sym___restrict__] = ACTIONS(1416), + [anon_sym__Atomic] = ACTIONS(1416), + [anon_sym__Noreturn] = ACTIONS(1416), + [anon_sym_noreturn] = ACTIONS(1416), + [sym_primitive_type] = ACTIONS(1416), + [anon_sym_enum] = ACTIONS(1416), + [anon_sym_struct] = ACTIONS(1416), + [anon_sym_union] = ACTIONS(1416), + [anon_sym_if] = ACTIONS(1416), + [anon_sym_else] = ACTIONS(1416), + [anon_sym_switch] = ACTIONS(1416), + [anon_sym_case] = ACTIONS(1416), + [anon_sym_default] = ACTIONS(1416), + [anon_sym_while] = ACTIONS(1416), + [anon_sym_do] = ACTIONS(1416), + [anon_sym_for] = ACTIONS(1416), + [anon_sym_return] = ACTIONS(1416), + [anon_sym_break] = ACTIONS(1416), + [anon_sym_continue] = ACTIONS(1416), + [anon_sym_goto] = ACTIONS(1416), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_sizeof] = ACTIONS(1416), + [anon_sym___alignof__] = ACTIONS(1416), + [anon_sym___alignof] = ACTIONS(1416), + [anon_sym__alignof] = ACTIONS(1416), + [anon_sym_alignof] = ACTIONS(1416), + [anon_sym__Alignof] = ACTIONS(1416), + [anon_sym_offsetof] = ACTIONS(1416), + [anon_sym___builtin_va_arg] = ACTIONS(1416), + [anon_sym__Generic] = ACTIONS(1416), + [anon_sym_asm] = ACTIONS(1416), + [anon_sym___asm__] = ACTIONS(1416), + [sym_number_literal] = ACTIONS(1418), + [anon_sym_L_SQUOTE] = ACTIONS(1418), + [anon_sym_u_SQUOTE] = ACTIONS(1418), + [anon_sym_U_SQUOTE] = ACTIONS(1418), + [anon_sym_u8_SQUOTE] = ACTIONS(1418), + [anon_sym_SQUOTE] = ACTIONS(1418), + [anon_sym_L_DQUOTE] = ACTIONS(1418), + [anon_sym_u_DQUOTE] = ACTIONS(1418), + [anon_sym_U_DQUOTE] = ACTIONS(1418), + [anon_sym_u8_DQUOTE] = ACTIONS(1418), + [anon_sym_DQUOTE] = ACTIONS(1418), + [sym_true] = ACTIONS(1416), + [sym_false] = ACTIONS(1416), + [anon_sym_NULL] = ACTIONS(1416), + [anon_sym_nullptr] = ACTIONS(1416), + [sym_comment] = ACTIONS(3), + }, + [138] = { + [sym_identifier] = ACTIONS(1420), + [aux_sym_preproc_include_token1] = ACTIONS(1420), + [aux_sym_preproc_def_token1] = ACTIONS(1420), + [aux_sym_preproc_if_token1] = ACTIONS(1420), + [aux_sym_preproc_if_token2] = ACTIONS(1420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1420), + [aux_sym_preproc_else_token1] = ACTIONS(1420), + [aux_sym_preproc_elif_token1] = ACTIONS(1420), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1420), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1420), + [sym_preproc_directive] = ACTIONS(1420), + [anon_sym_LPAREN2] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_DASH] = ACTIONS(1420), + [anon_sym_PLUS] = ACTIONS(1420), + [anon_sym_STAR] = ACTIONS(1422), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_SEMI] = ACTIONS(1422), + [anon_sym___extension__] = ACTIONS(1420), + [anon_sym_typedef] = ACTIONS(1420), + [anon_sym_extern] = ACTIONS(1420), + [anon_sym___attribute__] = ACTIONS(1420), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1422), + [anon_sym___declspec] = ACTIONS(1420), + [anon_sym___cdecl] = ACTIONS(1420), + [anon_sym___clrcall] = ACTIONS(1420), + [anon_sym___stdcall] = ACTIONS(1420), + [anon_sym___fastcall] = ACTIONS(1420), + [anon_sym___thiscall] = ACTIONS(1420), + [anon_sym___vectorcall] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1422), + [anon_sym_signed] = ACTIONS(1420), + [anon_sym_unsigned] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_static] = ACTIONS(1420), + [anon_sym_auto] = ACTIONS(1420), + [anon_sym_register] = ACTIONS(1420), + [anon_sym_inline] = ACTIONS(1420), + [anon_sym___inline] = ACTIONS(1420), + [anon_sym___inline__] = ACTIONS(1420), + [anon_sym___forceinline] = ACTIONS(1420), + [anon_sym_thread_local] = ACTIONS(1420), + [anon_sym___thread] = ACTIONS(1420), + [anon_sym_const] = ACTIONS(1420), + [anon_sym_constexpr] = ACTIONS(1420), + [anon_sym_volatile] = ACTIONS(1420), + [anon_sym_restrict] = ACTIONS(1420), + [anon_sym___restrict__] = ACTIONS(1420), + [anon_sym__Atomic] = ACTIONS(1420), + [anon_sym__Noreturn] = ACTIONS(1420), + [anon_sym_noreturn] = ACTIONS(1420), + [sym_primitive_type] = ACTIONS(1420), + [anon_sym_enum] = ACTIONS(1420), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_union] = ACTIONS(1420), + [anon_sym_if] = ACTIONS(1420), + [anon_sym_else] = ACTIONS(1420), + [anon_sym_switch] = ACTIONS(1420), + [anon_sym_case] = ACTIONS(1420), + [anon_sym_default] = ACTIONS(1420), + [anon_sym_while] = ACTIONS(1420), + [anon_sym_do] = ACTIONS(1420), + [anon_sym_for] = ACTIONS(1420), + [anon_sym_return] = ACTIONS(1420), + [anon_sym_break] = ACTIONS(1420), + [anon_sym_continue] = ACTIONS(1420), + [anon_sym_goto] = ACTIONS(1420), + [anon_sym_DASH_DASH] = ACTIONS(1422), + [anon_sym_PLUS_PLUS] = ACTIONS(1422), + [anon_sym_sizeof] = ACTIONS(1420), + [anon_sym___alignof__] = ACTIONS(1420), + [anon_sym___alignof] = ACTIONS(1420), + [anon_sym__alignof] = ACTIONS(1420), + [anon_sym_alignof] = ACTIONS(1420), + [anon_sym__Alignof] = ACTIONS(1420), + [anon_sym_offsetof] = ACTIONS(1420), + [anon_sym___builtin_va_arg] = ACTIONS(1420), + [anon_sym__Generic] = ACTIONS(1420), + [anon_sym_asm] = ACTIONS(1420), + [anon_sym___asm__] = ACTIONS(1420), + [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(1420), + [sym_false] = ACTIONS(1420), + [anon_sym_NULL] = ACTIONS(1420), + [anon_sym_nullptr] = ACTIONS(1420), + [sym_comment] = ACTIONS(3), + }, + [139] = { + [sym_identifier] = ACTIONS(1424), + [aux_sym_preproc_include_token1] = ACTIONS(1424), + [aux_sym_preproc_def_token1] = ACTIONS(1424), + [aux_sym_preproc_if_token1] = ACTIONS(1424), + [aux_sym_preproc_if_token2] = ACTIONS(1424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), + [aux_sym_preproc_else_token1] = ACTIONS(1424), + [aux_sym_preproc_elif_token1] = ACTIONS(1424), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1424), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1424), + [sym_preproc_directive] = ACTIONS(1424), + [anon_sym_LPAREN2] = ACTIONS(1426), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym___extension__] = ACTIONS(1424), + [anon_sym_typedef] = ACTIONS(1424), + [anon_sym_extern] = ACTIONS(1424), + [anon_sym___attribute__] = ACTIONS(1424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1426), + [anon_sym___declspec] = ACTIONS(1424), + [anon_sym___cdecl] = ACTIONS(1424), + [anon_sym___clrcall] = ACTIONS(1424), + [anon_sym___stdcall] = ACTIONS(1424), + [anon_sym___fastcall] = ACTIONS(1424), + [anon_sym___thiscall] = ACTIONS(1424), + [anon_sym___vectorcall] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_signed] = ACTIONS(1424), + [anon_sym_unsigned] = ACTIONS(1424), + [anon_sym_long] = ACTIONS(1424), + [anon_sym_short] = ACTIONS(1424), + [anon_sym_static] = ACTIONS(1424), + [anon_sym_auto] = ACTIONS(1424), + [anon_sym_register] = ACTIONS(1424), + [anon_sym_inline] = ACTIONS(1424), + [anon_sym___inline] = ACTIONS(1424), + [anon_sym___inline__] = ACTIONS(1424), + [anon_sym___forceinline] = ACTIONS(1424), + [anon_sym_thread_local] = ACTIONS(1424), + [anon_sym___thread] = ACTIONS(1424), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_constexpr] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_restrict] = ACTIONS(1424), + [anon_sym___restrict__] = ACTIONS(1424), + [anon_sym__Atomic] = ACTIONS(1424), + [anon_sym__Noreturn] = ACTIONS(1424), + [anon_sym_noreturn] = ACTIONS(1424), + [sym_primitive_type] = ACTIONS(1424), + [anon_sym_enum] = ACTIONS(1424), + [anon_sym_struct] = ACTIONS(1424), + [anon_sym_union] = ACTIONS(1424), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_else] = ACTIONS(1424), + [anon_sym_switch] = ACTIONS(1424), + [anon_sym_case] = ACTIONS(1424), + [anon_sym_default] = ACTIONS(1424), + [anon_sym_while] = ACTIONS(1424), + [anon_sym_do] = ACTIONS(1424), + [anon_sym_for] = ACTIONS(1424), + [anon_sym_return] = ACTIONS(1424), + [anon_sym_break] = ACTIONS(1424), + [anon_sym_continue] = ACTIONS(1424), + [anon_sym_goto] = ACTIONS(1424), + [anon_sym_DASH_DASH] = ACTIONS(1426), + [anon_sym_PLUS_PLUS] = ACTIONS(1426), + [anon_sym_sizeof] = ACTIONS(1424), + [anon_sym___alignof__] = ACTIONS(1424), + [anon_sym___alignof] = ACTIONS(1424), + [anon_sym__alignof] = ACTIONS(1424), + [anon_sym_alignof] = ACTIONS(1424), + [anon_sym__Alignof] = ACTIONS(1424), + [anon_sym_offsetof] = ACTIONS(1424), + [anon_sym___builtin_va_arg] = ACTIONS(1424), + [anon_sym__Generic] = ACTIONS(1424), + [anon_sym_asm] = ACTIONS(1424), + [anon_sym___asm__] = ACTIONS(1424), + [sym_number_literal] = ACTIONS(1426), + [anon_sym_L_SQUOTE] = ACTIONS(1426), + [anon_sym_u_SQUOTE] = ACTIONS(1426), + [anon_sym_U_SQUOTE] = ACTIONS(1426), + [anon_sym_u8_SQUOTE] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1426), + [anon_sym_L_DQUOTE] = ACTIONS(1426), + [anon_sym_u_DQUOTE] = ACTIONS(1426), + [anon_sym_U_DQUOTE] = ACTIONS(1426), + [anon_sym_u8_DQUOTE] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [sym_true] = ACTIONS(1424), + [sym_false] = ACTIONS(1424), + [anon_sym_NULL] = ACTIONS(1424), + [anon_sym_nullptr] = ACTIONS(1424), + [sym_comment] = ACTIONS(3), + }, + [140] = { + [sym_identifier] = ACTIONS(1428), + [aux_sym_preproc_include_token1] = ACTIONS(1428), + [aux_sym_preproc_def_token1] = ACTIONS(1428), + [aux_sym_preproc_if_token1] = ACTIONS(1428), + [aux_sym_preproc_if_token2] = ACTIONS(1428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1428), + [aux_sym_preproc_else_token1] = ACTIONS(1428), + [aux_sym_preproc_elif_token1] = ACTIONS(1428), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1428), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1428), + [sym_preproc_directive] = ACTIONS(1428), + [anon_sym_LPAREN2] = ACTIONS(1430), + [anon_sym_BANG] = ACTIONS(1430), + [anon_sym_TILDE] = ACTIONS(1430), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym___extension__] = ACTIONS(1428), + [anon_sym_typedef] = ACTIONS(1428), + [anon_sym_extern] = ACTIONS(1428), + [anon_sym___attribute__] = ACTIONS(1428), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1430), + [anon_sym___declspec] = ACTIONS(1428), + [anon_sym___cdecl] = ACTIONS(1428), + [anon_sym___clrcall] = ACTIONS(1428), + [anon_sym___stdcall] = ACTIONS(1428), + [anon_sym___fastcall] = ACTIONS(1428), + [anon_sym___thiscall] = ACTIONS(1428), + [anon_sym___vectorcall] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_signed] = ACTIONS(1428), + [anon_sym_unsigned] = ACTIONS(1428), + [anon_sym_long] = ACTIONS(1428), + [anon_sym_short] = ACTIONS(1428), + [anon_sym_static] = ACTIONS(1428), + [anon_sym_auto] = ACTIONS(1428), + [anon_sym_register] = ACTIONS(1428), + [anon_sym_inline] = ACTIONS(1428), + [anon_sym___inline] = ACTIONS(1428), + [anon_sym___inline__] = ACTIONS(1428), + [anon_sym___forceinline] = ACTIONS(1428), + [anon_sym_thread_local] = ACTIONS(1428), + [anon_sym___thread] = ACTIONS(1428), + [anon_sym_const] = ACTIONS(1428), + [anon_sym_constexpr] = ACTIONS(1428), + [anon_sym_volatile] = ACTIONS(1428), + [anon_sym_restrict] = ACTIONS(1428), + [anon_sym___restrict__] = ACTIONS(1428), + [anon_sym__Atomic] = ACTIONS(1428), + [anon_sym__Noreturn] = ACTIONS(1428), + [anon_sym_noreturn] = ACTIONS(1428), + [sym_primitive_type] = ACTIONS(1428), + [anon_sym_enum] = ACTIONS(1428), + [anon_sym_struct] = ACTIONS(1428), + [anon_sym_union] = ACTIONS(1428), + [anon_sym_if] = ACTIONS(1428), + [anon_sym_else] = ACTIONS(1428), + [anon_sym_switch] = ACTIONS(1428), + [anon_sym_case] = ACTIONS(1428), + [anon_sym_default] = ACTIONS(1428), + [anon_sym_while] = ACTIONS(1428), + [anon_sym_do] = ACTIONS(1428), + [anon_sym_for] = ACTIONS(1428), + [anon_sym_return] = ACTIONS(1428), + [anon_sym_break] = ACTIONS(1428), + [anon_sym_continue] = ACTIONS(1428), + [anon_sym_goto] = ACTIONS(1428), + [anon_sym_DASH_DASH] = ACTIONS(1430), + [anon_sym_PLUS_PLUS] = ACTIONS(1430), + [anon_sym_sizeof] = ACTIONS(1428), + [anon_sym___alignof__] = ACTIONS(1428), + [anon_sym___alignof] = ACTIONS(1428), + [anon_sym__alignof] = ACTIONS(1428), + [anon_sym_alignof] = ACTIONS(1428), + [anon_sym__Alignof] = ACTIONS(1428), + [anon_sym_offsetof] = ACTIONS(1428), + [anon_sym___builtin_va_arg] = ACTIONS(1428), + [anon_sym__Generic] = ACTIONS(1428), + [anon_sym_asm] = ACTIONS(1428), + [anon_sym___asm__] = ACTIONS(1428), + [sym_number_literal] = ACTIONS(1430), + [anon_sym_L_SQUOTE] = ACTIONS(1430), + [anon_sym_u_SQUOTE] = ACTIONS(1430), + [anon_sym_U_SQUOTE] = ACTIONS(1430), + [anon_sym_u8_SQUOTE] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(1430), + [anon_sym_L_DQUOTE] = ACTIONS(1430), + [anon_sym_u_DQUOTE] = ACTIONS(1430), + [anon_sym_U_DQUOTE] = ACTIONS(1430), + [anon_sym_u8_DQUOTE] = ACTIONS(1430), + [anon_sym_DQUOTE] = ACTIONS(1430), + [sym_true] = ACTIONS(1428), + [sym_false] = ACTIONS(1428), + [anon_sym_NULL] = ACTIONS(1428), + [anon_sym_nullptr] = ACTIONS(1428), + [sym_comment] = ACTIONS(3), + }, + [141] = { + [sym_identifier] = ACTIONS(1432), + [aux_sym_preproc_include_token1] = ACTIONS(1432), + [aux_sym_preproc_def_token1] = ACTIONS(1432), + [aux_sym_preproc_if_token1] = ACTIONS(1432), + [aux_sym_preproc_if_token2] = ACTIONS(1432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), + [aux_sym_preproc_else_token1] = ACTIONS(1432), + [aux_sym_preproc_elif_token1] = ACTIONS(1432), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1432), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1432), + [sym_preproc_directive] = ACTIONS(1432), + [anon_sym_LPAREN2] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym___extension__] = ACTIONS(1432), + [anon_sym_typedef] = ACTIONS(1432), + [anon_sym_extern] = ACTIONS(1432), + [anon_sym___attribute__] = ACTIONS(1432), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1434), + [anon_sym___declspec] = ACTIONS(1432), + [anon_sym___cdecl] = ACTIONS(1432), + [anon_sym___clrcall] = ACTIONS(1432), + [anon_sym___stdcall] = ACTIONS(1432), + [anon_sym___fastcall] = ACTIONS(1432), + [anon_sym___thiscall] = ACTIONS(1432), + [anon_sym___vectorcall] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_signed] = ACTIONS(1432), + [anon_sym_unsigned] = ACTIONS(1432), + [anon_sym_long] = ACTIONS(1432), + [anon_sym_short] = ACTIONS(1432), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_auto] = ACTIONS(1432), + [anon_sym_register] = ACTIONS(1432), + [anon_sym_inline] = ACTIONS(1432), + [anon_sym___inline] = ACTIONS(1432), + [anon_sym___inline__] = ACTIONS(1432), + [anon_sym___forceinline] = ACTIONS(1432), + [anon_sym_thread_local] = ACTIONS(1432), + [anon_sym___thread] = ACTIONS(1432), + [anon_sym_const] = ACTIONS(1432), + [anon_sym_constexpr] = ACTIONS(1432), + [anon_sym_volatile] = ACTIONS(1432), + [anon_sym_restrict] = ACTIONS(1432), + [anon_sym___restrict__] = ACTIONS(1432), + [anon_sym__Atomic] = ACTIONS(1432), + [anon_sym__Noreturn] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [sym_primitive_type] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [anon_sym_struct] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(1432), + [anon_sym_switch] = ACTIONS(1432), + [anon_sym_case] = ACTIONS(1432), + [anon_sym_default] = ACTIONS(1432), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_do] = ACTIONS(1432), + [anon_sym_for] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_break] = ACTIONS(1432), + [anon_sym_continue] = ACTIONS(1432), + [anon_sym_goto] = ACTIONS(1432), + [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_PLUS_PLUS] = ACTIONS(1434), + [anon_sym_sizeof] = ACTIONS(1432), + [anon_sym___alignof__] = ACTIONS(1432), + [anon_sym___alignof] = ACTIONS(1432), + [anon_sym__alignof] = ACTIONS(1432), + [anon_sym_alignof] = ACTIONS(1432), + [anon_sym__Alignof] = ACTIONS(1432), + [anon_sym_offsetof] = ACTIONS(1432), + [anon_sym___builtin_va_arg] = ACTIONS(1432), + [anon_sym__Generic] = ACTIONS(1432), + [anon_sym_asm] = ACTIONS(1432), + [anon_sym___asm__] = ACTIONS(1432), + [sym_number_literal] = ACTIONS(1434), + [anon_sym_L_SQUOTE] = ACTIONS(1434), + [anon_sym_u_SQUOTE] = ACTIONS(1434), + [anon_sym_U_SQUOTE] = ACTIONS(1434), + [anon_sym_u8_SQUOTE] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(1434), + [anon_sym_L_DQUOTE] = ACTIONS(1434), + [anon_sym_u_DQUOTE] = ACTIONS(1434), + [anon_sym_U_DQUOTE] = ACTIONS(1434), + [anon_sym_u8_DQUOTE] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(1434), + [sym_true] = ACTIONS(1432), + [sym_false] = ACTIONS(1432), + [anon_sym_NULL] = ACTIONS(1432), + [anon_sym_nullptr] = ACTIONS(1432), + [sym_comment] = ACTIONS(3), + }, + [142] = { + [sym_identifier] = ACTIONS(1436), + [aux_sym_preproc_include_token1] = ACTIONS(1436), + [aux_sym_preproc_def_token1] = ACTIONS(1436), + [aux_sym_preproc_if_token1] = ACTIONS(1436), + [aux_sym_preproc_if_token2] = ACTIONS(1436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1436), + [aux_sym_preproc_else_token1] = ACTIONS(1436), + [aux_sym_preproc_elif_token1] = ACTIONS(1436), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1436), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1436), + [sym_preproc_directive] = ACTIONS(1436), + [anon_sym_LPAREN2] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym___extension__] = ACTIONS(1436), + [anon_sym_typedef] = ACTIONS(1436), + [anon_sym_extern] = ACTIONS(1436), + [anon_sym___attribute__] = ACTIONS(1436), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1438), + [anon_sym___declspec] = ACTIONS(1436), + [anon_sym___cdecl] = ACTIONS(1436), + [anon_sym___clrcall] = ACTIONS(1436), + [anon_sym___stdcall] = ACTIONS(1436), + [anon_sym___fastcall] = ACTIONS(1436), + [anon_sym___thiscall] = ACTIONS(1436), + [anon_sym___vectorcall] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_signed] = ACTIONS(1436), + [anon_sym_unsigned] = ACTIONS(1436), + [anon_sym_long] = ACTIONS(1436), + [anon_sym_short] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_auto] = ACTIONS(1436), + [anon_sym_register] = ACTIONS(1436), + [anon_sym_inline] = ACTIONS(1436), + [anon_sym___inline] = ACTIONS(1436), + [anon_sym___inline__] = ACTIONS(1436), + [anon_sym___forceinline] = ACTIONS(1436), + [anon_sym_thread_local] = ACTIONS(1436), + [anon_sym___thread] = ACTIONS(1436), + [anon_sym_const] = ACTIONS(1436), + [anon_sym_constexpr] = ACTIONS(1436), + [anon_sym_volatile] = ACTIONS(1436), + [anon_sym_restrict] = ACTIONS(1436), + [anon_sym___restrict__] = ACTIONS(1436), + [anon_sym__Atomic] = ACTIONS(1436), + [anon_sym__Noreturn] = ACTIONS(1436), + [anon_sym_noreturn] = ACTIONS(1436), + [sym_primitive_type] = ACTIONS(1436), + [anon_sym_enum] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1436), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_else] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1436), + [anon_sym_case] = ACTIONS(1436), + [anon_sym_default] = ACTIONS(1436), + [anon_sym_while] = ACTIONS(1436), + [anon_sym_do] = ACTIONS(1436), + [anon_sym_for] = ACTIONS(1436), + [anon_sym_return] = ACTIONS(1436), + [anon_sym_break] = ACTIONS(1436), + [anon_sym_continue] = ACTIONS(1436), + [anon_sym_goto] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1438), + [anon_sym_PLUS_PLUS] = ACTIONS(1438), + [anon_sym_sizeof] = ACTIONS(1436), + [anon_sym___alignof__] = ACTIONS(1436), + [anon_sym___alignof] = ACTIONS(1436), + [anon_sym__alignof] = ACTIONS(1436), + [anon_sym_alignof] = ACTIONS(1436), + [anon_sym__Alignof] = ACTIONS(1436), + [anon_sym_offsetof] = ACTIONS(1436), + [anon_sym___builtin_va_arg] = ACTIONS(1436), + [anon_sym__Generic] = ACTIONS(1436), + [anon_sym_asm] = ACTIONS(1436), + [anon_sym___asm__] = ACTIONS(1436), + [sym_number_literal] = ACTIONS(1438), + [anon_sym_L_SQUOTE] = ACTIONS(1438), + [anon_sym_u_SQUOTE] = ACTIONS(1438), + [anon_sym_U_SQUOTE] = ACTIONS(1438), + [anon_sym_u8_SQUOTE] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_L_DQUOTE] = ACTIONS(1438), + [anon_sym_u_DQUOTE] = ACTIONS(1438), + [anon_sym_U_DQUOTE] = ACTIONS(1438), + [anon_sym_u8_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [sym_true] = ACTIONS(1436), + [sym_false] = ACTIONS(1436), + [anon_sym_NULL] = ACTIONS(1436), + [anon_sym_nullptr] = ACTIONS(1436), + [sym_comment] = ACTIONS(3), + }, + [143] = { + [sym_identifier] = ACTIONS(1440), + [aux_sym_preproc_include_token1] = ACTIONS(1440), + [aux_sym_preproc_def_token1] = ACTIONS(1440), + [aux_sym_preproc_if_token1] = ACTIONS(1440), + [aux_sym_preproc_if_token2] = ACTIONS(1440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1440), + [aux_sym_preproc_else_token1] = ACTIONS(1440), + [aux_sym_preproc_elif_token1] = ACTIONS(1440), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1440), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1440), + [sym_preproc_directive] = ACTIONS(1440), + [anon_sym_LPAREN2] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym___extension__] = ACTIONS(1440), + [anon_sym_typedef] = ACTIONS(1440), + [anon_sym_extern] = ACTIONS(1440), + [anon_sym___attribute__] = ACTIONS(1440), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1442), + [anon_sym___declspec] = ACTIONS(1440), + [anon_sym___cdecl] = ACTIONS(1440), + [anon_sym___clrcall] = ACTIONS(1440), + [anon_sym___stdcall] = ACTIONS(1440), + [anon_sym___fastcall] = ACTIONS(1440), + [anon_sym___thiscall] = ACTIONS(1440), + [anon_sym___vectorcall] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_signed] = ACTIONS(1440), + [anon_sym_unsigned] = ACTIONS(1440), + [anon_sym_long] = ACTIONS(1440), + [anon_sym_short] = ACTIONS(1440), + [anon_sym_static] = ACTIONS(1440), + [anon_sym_auto] = ACTIONS(1440), + [anon_sym_register] = ACTIONS(1440), + [anon_sym_inline] = ACTIONS(1440), + [anon_sym___inline] = ACTIONS(1440), + [anon_sym___inline__] = ACTIONS(1440), + [anon_sym___forceinline] = ACTIONS(1440), + [anon_sym_thread_local] = ACTIONS(1440), + [anon_sym___thread] = ACTIONS(1440), + [anon_sym_const] = ACTIONS(1440), + [anon_sym_constexpr] = ACTIONS(1440), + [anon_sym_volatile] = ACTIONS(1440), + [anon_sym_restrict] = ACTIONS(1440), + [anon_sym___restrict__] = ACTIONS(1440), + [anon_sym__Atomic] = ACTIONS(1440), + [anon_sym__Noreturn] = ACTIONS(1440), + [anon_sym_noreturn] = ACTIONS(1440), + [sym_primitive_type] = ACTIONS(1440), + [anon_sym_enum] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_union] = ACTIONS(1440), + [anon_sym_if] = ACTIONS(1440), + [anon_sym_else] = ACTIONS(1440), + [anon_sym_switch] = ACTIONS(1440), + [anon_sym_case] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1440), + [anon_sym_while] = ACTIONS(1440), + [anon_sym_do] = ACTIONS(1440), + [anon_sym_for] = ACTIONS(1440), + [anon_sym_return] = ACTIONS(1440), + [anon_sym_break] = ACTIONS(1440), + [anon_sym_continue] = ACTIONS(1440), + [anon_sym_goto] = ACTIONS(1440), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_sizeof] = ACTIONS(1440), + [anon_sym___alignof__] = ACTIONS(1440), + [anon_sym___alignof] = ACTIONS(1440), + [anon_sym__alignof] = ACTIONS(1440), + [anon_sym_alignof] = ACTIONS(1440), + [anon_sym__Alignof] = ACTIONS(1440), + [anon_sym_offsetof] = ACTIONS(1440), + [anon_sym___builtin_va_arg] = ACTIONS(1440), + [anon_sym__Generic] = ACTIONS(1440), + [anon_sym_asm] = ACTIONS(1440), + [anon_sym___asm__] = ACTIONS(1440), + [sym_number_literal] = ACTIONS(1442), + [anon_sym_L_SQUOTE] = ACTIONS(1442), + [anon_sym_u_SQUOTE] = ACTIONS(1442), + [anon_sym_U_SQUOTE] = ACTIONS(1442), + [anon_sym_u8_SQUOTE] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_L_DQUOTE] = ACTIONS(1442), + [anon_sym_u_DQUOTE] = ACTIONS(1442), + [anon_sym_U_DQUOTE] = ACTIONS(1442), + [anon_sym_u8_DQUOTE] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [sym_true] = ACTIONS(1440), + [sym_false] = ACTIONS(1440), + [anon_sym_NULL] = ACTIONS(1440), + [anon_sym_nullptr] = ACTIONS(1440), + [sym_comment] = ACTIONS(3), + }, + [144] = { + [sym_identifier] = ACTIONS(1444), + [aux_sym_preproc_include_token1] = ACTIONS(1444), + [aux_sym_preproc_def_token1] = ACTIONS(1444), + [aux_sym_preproc_if_token1] = ACTIONS(1444), + [aux_sym_preproc_if_token2] = ACTIONS(1444), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1444), + [aux_sym_preproc_else_token1] = ACTIONS(1444), + [aux_sym_preproc_elif_token1] = ACTIONS(1444), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1444), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1444), + [sym_preproc_directive] = ACTIONS(1444), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [anon_sym_TILDE] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym___extension__] = ACTIONS(1444), + [anon_sym_typedef] = ACTIONS(1444), + [anon_sym_extern] = ACTIONS(1444), + [anon_sym___attribute__] = ACTIONS(1444), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), + [anon_sym___declspec] = ACTIONS(1444), + [anon_sym___cdecl] = ACTIONS(1444), + [anon_sym___clrcall] = ACTIONS(1444), + [anon_sym___stdcall] = ACTIONS(1444), + [anon_sym___fastcall] = ACTIONS(1444), + [anon_sym___thiscall] = ACTIONS(1444), + [anon_sym___vectorcall] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_signed] = ACTIONS(1444), + [anon_sym_unsigned] = ACTIONS(1444), + [anon_sym_long] = ACTIONS(1444), + [anon_sym_short] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_auto] = ACTIONS(1444), + [anon_sym_register] = ACTIONS(1444), + [anon_sym_inline] = ACTIONS(1444), + [anon_sym___inline] = ACTIONS(1444), + [anon_sym___inline__] = ACTIONS(1444), + [anon_sym___forceinline] = ACTIONS(1444), + [anon_sym_thread_local] = ACTIONS(1444), + [anon_sym___thread] = ACTIONS(1444), + [anon_sym_const] = ACTIONS(1444), + [anon_sym_constexpr] = ACTIONS(1444), + [anon_sym_volatile] = ACTIONS(1444), + [anon_sym_restrict] = ACTIONS(1444), + [anon_sym___restrict__] = ACTIONS(1444), + [anon_sym__Atomic] = ACTIONS(1444), + [anon_sym__Noreturn] = ACTIONS(1444), + [anon_sym_noreturn] = ACTIONS(1444), + [sym_primitive_type] = ACTIONS(1444), + [anon_sym_enum] = ACTIONS(1444), + [anon_sym_struct] = ACTIONS(1444), + [anon_sym_union] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_else] = ACTIONS(1444), + [anon_sym_switch] = ACTIONS(1444), + [anon_sym_case] = ACTIONS(1444), + [anon_sym_default] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_do] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_goto] = ACTIONS(1444), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_sizeof] = ACTIONS(1444), + [anon_sym___alignof__] = ACTIONS(1444), + [anon_sym___alignof] = ACTIONS(1444), + [anon_sym__alignof] = ACTIONS(1444), + [anon_sym_alignof] = ACTIONS(1444), + [anon_sym__Alignof] = ACTIONS(1444), + [anon_sym_offsetof] = ACTIONS(1444), + [anon_sym___builtin_va_arg] = ACTIONS(1444), + [anon_sym__Generic] = ACTIONS(1444), + [anon_sym_asm] = ACTIONS(1444), + [anon_sym___asm__] = ACTIONS(1444), + [sym_number_literal] = ACTIONS(1446), + [anon_sym_L_SQUOTE] = ACTIONS(1446), + [anon_sym_u_SQUOTE] = ACTIONS(1446), + [anon_sym_U_SQUOTE] = ACTIONS(1446), + [anon_sym_u8_SQUOTE] = ACTIONS(1446), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_L_DQUOTE] = ACTIONS(1446), + [anon_sym_u_DQUOTE] = ACTIONS(1446), + [anon_sym_U_DQUOTE] = ACTIONS(1446), + [anon_sym_u8_DQUOTE] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1446), + [sym_true] = ACTIONS(1444), + [sym_false] = ACTIONS(1444), + [anon_sym_NULL] = ACTIONS(1444), + [anon_sym_nullptr] = ACTIONS(1444), [sym_comment] = ACTIONS(3), }, [145] = { - [sym_identifier] = ACTIONS(1398), - [aux_sym_preproc_include_token1] = ACTIONS(1398), - [aux_sym_preproc_def_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token2] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), - [aux_sym_preproc_else_token1] = ACTIONS(1398), - [aux_sym_preproc_elif_token1] = ACTIONS(1398), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1398), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1398), - [sym_preproc_directive] = ACTIONS(1398), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_typedef] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym___attribute__] = ACTIONS(1398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), - [anon_sym___declspec] = ACTIONS(1398), - [anon_sym___cdecl] = ACTIONS(1398), - [anon_sym___clrcall] = ACTIONS(1398), - [anon_sym___stdcall] = ACTIONS(1398), - [anon_sym___fastcall] = ACTIONS(1398), - [anon_sym___thiscall] = ACTIONS(1398), - [anon_sym___vectorcall] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_auto] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym_thread_local] = ACTIONS(1398), - [anon_sym___thread] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_constexpr] = ACTIONS(1398), - [anon_sym_volatile] = ACTIONS(1398), - [anon_sym_restrict] = ACTIONS(1398), - [anon_sym___restrict__] = ACTIONS(1398), - [anon_sym__Atomic] = ACTIONS(1398), - [anon_sym__Noreturn] = ACTIONS(1398), - [anon_sym_noreturn] = ACTIONS(1398), - [sym_primitive_type] = ACTIONS(1398), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_struct] = ACTIONS(1398), - [anon_sym_union] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_case] = ACTIONS(1398), - [anon_sym_default] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_goto] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_sizeof] = ACTIONS(1398), - [anon_sym_offsetof] = ACTIONS(1398), - [anon_sym__Generic] = ACTIONS(1398), - [anon_sym_asm] = ACTIONS(1398), - [anon_sym___asm__] = ACTIONS(1398), - [sym_number_literal] = ACTIONS(1400), - [anon_sym_L_SQUOTE] = ACTIONS(1400), - [anon_sym_u_SQUOTE] = ACTIONS(1400), - [anon_sym_U_SQUOTE] = ACTIONS(1400), - [anon_sym_u8_SQUOTE] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_L_DQUOTE] = ACTIONS(1400), - [anon_sym_u_DQUOTE] = ACTIONS(1400), - [anon_sym_U_DQUOTE] = ACTIONS(1400), - [anon_sym_u8_DQUOTE] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym_true] = ACTIONS(1398), - [sym_false] = ACTIONS(1398), - [anon_sym_NULL] = ACTIONS(1398), - [anon_sym_nullptr] = ACTIONS(1398), + [sym_identifier] = ACTIONS(1448), + [aux_sym_preproc_include_token1] = ACTIONS(1448), + [aux_sym_preproc_def_token1] = ACTIONS(1448), + [aux_sym_preproc_if_token1] = ACTIONS(1448), + [aux_sym_preproc_if_token2] = ACTIONS(1448), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1448), + [aux_sym_preproc_else_token1] = ACTIONS(1448), + [aux_sym_preproc_elif_token1] = ACTIONS(1448), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1448), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1448), + [sym_preproc_directive] = ACTIONS(1448), + [anon_sym_LPAREN2] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym___extension__] = ACTIONS(1448), + [anon_sym_typedef] = ACTIONS(1448), + [anon_sym_extern] = ACTIONS(1448), + [anon_sym___attribute__] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), + [anon_sym___declspec] = ACTIONS(1448), + [anon_sym___cdecl] = ACTIONS(1448), + [anon_sym___clrcall] = ACTIONS(1448), + [anon_sym___stdcall] = ACTIONS(1448), + [anon_sym___fastcall] = ACTIONS(1448), + [anon_sym___thiscall] = ACTIONS(1448), + [anon_sym___vectorcall] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_signed] = ACTIONS(1448), + [anon_sym_unsigned] = ACTIONS(1448), + [anon_sym_long] = ACTIONS(1448), + [anon_sym_short] = ACTIONS(1448), + [anon_sym_static] = ACTIONS(1448), + [anon_sym_auto] = ACTIONS(1448), + [anon_sym_register] = ACTIONS(1448), + [anon_sym_inline] = ACTIONS(1448), + [anon_sym___inline] = ACTIONS(1448), + [anon_sym___inline__] = ACTIONS(1448), + [anon_sym___forceinline] = ACTIONS(1448), + [anon_sym_thread_local] = ACTIONS(1448), + [anon_sym___thread] = ACTIONS(1448), + [anon_sym_const] = ACTIONS(1448), + [anon_sym_constexpr] = ACTIONS(1448), + [anon_sym_volatile] = ACTIONS(1448), + [anon_sym_restrict] = ACTIONS(1448), + [anon_sym___restrict__] = ACTIONS(1448), + [anon_sym__Atomic] = ACTIONS(1448), + [anon_sym__Noreturn] = ACTIONS(1448), + [anon_sym_noreturn] = ACTIONS(1448), + [sym_primitive_type] = ACTIONS(1448), + [anon_sym_enum] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1448), + [anon_sym_union] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_else] = ACTIONS(1448), + [anon_sym_switch] = ACTIONS(1448), + [anon_sym_case] = ACTIONS(1448), + [anon_sym_default] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_do] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_return] = ACTIONS(1448), + [anon_sym_break] = ACTIONS(1448), + [anon_sym_continue] = ACTIONS(1448), + [anon_sym_goto] = ACTIONS(1448), + [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_PLUS_PLUS] = ACTIONS(1450), + [anon_sym_sizeof] = ACTIONS(1448), + [anon_sym___alignof__] = ACTIONS(1448), + [anon_sym___alignof] = ACTIONS(1448), + [anon_sym__alignof] = ACTIONS(1448), + [anon_sym_alignof] = ACTIONS(1448), + [anon_sym__Alignof] = ACTIONS(1448), + [anon_sym_offsetof] = ACTIONS(1448), + [anon_sym___builtin_va_arg] = ACTIONS(1448), + [anon_sym__Generic] = ACTIONS(1448), + [anon_sym_asm] = ACTIONS(1448), + [anon_sym___asm__] = ACTIONS(1448), + [sym_number_literal] = ACTIONS(1450), + [anon_sym_L_SQUOTE] = ACTIONS(1450), + [anon_sym_u_SQUOTE] = ACTIONS(1450), + [anon_sym_U_SQUOTE] = ACTIONS(1450), + [anon_sym_u8_SQUOTE] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1450), + [anon_sym_L_DQUOTE] = ACTIONS(1450), + [anon_sym_u_DQUOTE] = ACTIONS(1450), + [anon_sym_U_DQUOTE] = ACTIONS(1450), + [anon_sym_u8_DQUOTE] = ACTIONS(1450), + [anon_sym_DQUOTE] = ACTIONS(1450), + [sym_true] = ACTIONS(1448), + [sym_false] = ACTIONS(1448), + [anon_sym_NULL] = ACTIONS(1448), + [anon_sym_nullptr] = ACTIONS(1448), [sym_comment] = ACTIONS(3), }, [146] = { - [sym_identifier] = ACTIONS(1402), - [aux_sym_preproc_include_token1] = ACTIONS(1402), - [aux_sym_preproc_def_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token2] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), - [aux_sym_preproc_else_token1] = ACTIONS(1402), - [aux_sym_preproc_elif_token1] = ACTIONS(1402), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1402), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1402), - [sym_preproc_directive] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym___attribute__] = ACTIONS(1402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), - [anon_sym___declspec] = ACTIONS(1402), - [anon_sym___cdecl] = ACTIONS(1402), - [anon_sym___clrcall] = ACTIONS(1402), - [anon_sym___stdcall] = ACTIONS(1402), - [anon_sym___fastcall] = ACTIONS(1402), - [anon_sym___thiscall] = ACTIONS(1402), - [anon_sym___vectorcall] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym_thread_local] = ACTIONS(1402), - [anon_sym___thread] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_constexpr] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_restrict] = ACTIONS(1402), - [anon_sym___restrict__] = ACTIONS(1402), - [anon_sym__Atomic] = ACTIONS(1402), - [anon_sym__Noreturn] = ACTIONS(1402), - [anon_sym_noreturn] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_case] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_goto] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1402), - [anon_sym_offsetof] = ACTIONS(1402), - [anon_sym__Generic] = ACTIONS(1402), - [anon_sym_asm] = ACTIONS(1402), - [anon_sym___asm__] = ACTIONS(1402), - [sym_number_literal] = ACTIONS(1404), - [anon_sym_L_SQUOTE] = ACTIONS(1404), - [anon_sym_u_SQUOTE] = ACTIONS(1404), - [anon_sym_U_SQUOTE] = ACTIONS(1404), - [anon_sym_u8_SQUOTE] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_L_DQUOTE] = ACTIONS(1404), - [anon_sym_u_DQUOTE] = ACTIONS(1404), - [anon_sym_U_DQUOTE] = ACTIONS(1404), - [anon_sym_u8_DQUOTE] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [sym_true] = ACTIONS(1402), - [sym_false] = ACTIONS(1402), - [anon_sym_NULL] = ACTIONS(1402), - [anon_sym_nullptr] = ACTIONS(1402), + [sym_identifier] = ACTIONS(1452), + [aux_sym_preproc_include_token1] = ACTIONS(1452), + [aux_sym_preproc_def_token1] = ACTIONS(1452), + [aux_sym_preproc_if_token1] = ACTIONS(1452), + [aux_sym_preproc_if_token2] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), + [aux_sym_preproc_else_token1] = ACTIONS(1452), + [aux_sym_preproc_elif_token1] = ACTIONS(1452), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1452), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1452), + [sym_preproc_directive] = ACTIONS(1452), + [anon_sym_LPAREN2] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_TILDE] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym___extension__] = ACTIONS(1452), + [anon_sym_typedef] = ACTIONS(1452), + [anon_sym_extern] = ACTIONS(1452), + [anon_sym___attribute__] = ACTIONS(1452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym___declspec] = ACTIONS(1452), + [anon_sym___cdecl] = ACTIONS(1452), + [anon_sym___clrcall] = ACTIONS(1452), + [anon_sym___stdcall] = ACTIONS(1452), + [anon_sym___fastcall] = ACTIONS(1452), + [anon_sym___thiscall] = ACTIONS(1452), + [anon_sym___vectorcall] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_signed] = ACTIONS(1452), + [anon_sym_unsigned] = ACTIONS(1452), + [anon_sym_long] = ACTIONS(1452), + [anon_sym_short] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1452), + [anon_sym_auto] = ACTIONS(1452), + [anon_sym_register] = ACTIONS(1452), + [anon_sym_inline] = ACTIONS(1452), + [anon_sym___inline] = ACTIONS(1452), + [anon_sym___inline__] = ACTIONS(1452), + [anon_sym___forceinline] = ACTIONS(1452), + [anon_sym_thread_local] = ACTIONS(1452), + [anon_sym___thread] = ACTIONS(1452), + [anon_sym_const] = ACTIONS(1452), + [anon_sym_constexpr] = ACTIONS(1452), + [anon_sym_volatile] = ACTIONS(1452), + [anon_sym_restrict] = ACTIONS(1452), + [anon_sym___restrict__] = ACTIONS(1452), + [anon_sym__Atomic] = ACTIONS(1452), + [anon_sym__Noreturn] = ACTIONS(1452), + [anon_sym_noreturn] = ACTIONS(1452), + [sym_primitive_type] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1452), + [anon_sym_union] = ACTIONS(1452), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_else] = ACTIONS(1452), + [anon_sym_switch] = ACTIONS(1452), + [anon_sym_case] = ACTIONS(1452), + [anon_sym_default] = ACTIONS(1452), + [anon_sym_while] = ACTIONS(1452), + [anon_sym_do] = ACTIONS(1452), + [anon_sym_for] = ACTIONS(1452), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_goto] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_sizeof] = ACTIONS(1452), + [anon_sym___alignof__] = ACTIONS(1452), + [anon_sym___alignof] = ACTIONS(1452), + [anon_sym__alignof] = ACTIONS(1452), + [anon_sym_alignof] = ACTIONS(1452), + [anon_sym__Alignof] = ACTIONS(1452), + [anon_sym_offsetof] = ACTIONS(1452), + [anon_sym___builtin_va_arg] = ACTIONS(1452), + [anon_sym__Generic] = ACTIONS(1452), + [anon_sym_asm] = ACTIONS(1452), + [anon_sym___asm__] = ACTIONS(1452), + [sym_number_literal] = ACTIONS(1454), + [anon_sym_L_SQUOTE] = ACTIONS(1454), + [anon_sym_u_SQUOTE] = ACTIONS(1454), + [anon_sym_U_SQUOTE] = ACTIONS(1454), + [anon_sym_u8_SQUOTE] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_L_DQUOTE] = ACTIONS(1454), + [anon_sym_u_DQUOTE] = ACTIONS(1454), + [anon_sym_U_DQUOTE] = ACTIONS(1454), + [anon_sym_u8_DQUOTE] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [sym_true] = ACTIONS(1452), + [sym_false] = ACTIONS(1452), + [anon_sym_NULL] = ACTIONS(1452), + [anon_sym_nullptr] = ACTIONS(1452), [sym_comment] = ACTIONS(3), }, [147] = { - [sym_identifier] = ACTIONS(1406), - [aux_sym_preproc_include_token1] = ACTIONS(1406), - [aux_sym_preproc_def_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token2] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), - [aux_sym_preproc_else_token1] = ACTIONS(1406), - [aux_sym_preproc_elif_token1] = ACTIONS(1406), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1406), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1406), - [sym_preproc_directive] = ACTIONS(1406), - [anon_sym_LPAREN2] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym_typedef] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym___attribute__] = ACTIONS(1406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), - [anon_sym___declspec] = ACTIONS(1406), - [anon_sym___cdecl] = ACTIONS(1406), - [anon_sym___clrcall] = ACTIONS(1406), - [anon_sym___stdcall] = ACTIONS(1406), - [anon_sym___fastcall] = ACTIONS(1406), - [anon_sym___thiscall] = ACTIONS(1406), - [anon_sym___vectorcall] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_auto] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym_thread_local] = ACTIONS(1406), - [anon_sym___thread] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_constexpr] = ACTIONS(1406), - [anon_sym_volatile] = ACTIONS(1406), - [anon_sym_restrict] = ACTIONS(1406), - [anon_sym___restrict__] = ACTIONS(1406), - [anon_sym__Atomic] = ACTIONS(1406), - [anon_sym__Noreturn] = ACTIONS(1406), - [anon_sym_noreturn] = ACTIONS(1406), - [sym_primitive_type] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_union] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_case] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_goto] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_sizeof] = ACTIONS(1406), - [anon_sym_offsetof] = ACTIONS(1406), - [anon_sym__Generic] = ACTIONS(1406), - [anon_sym_asm] = ACTIONS(1406), - [anon_sym___asm__] = ACTIONS(1406), - [sym_number_literal] = ACTIONS(1408), - [anon_sym_L_SQUOTE] = ACTIONS(1408), - [anon_sym_u_SQUOTE] = ACTIONS(1408), - [anon_sym_U_SQUOTE] = ACTIONS(1408), - [anon_sym_u8_SQUOTE] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_L_DQUOTE] = ACTIONS(1408), - [anon_sym_u_DQUOTE] = ACTIONS(1408), - [anon_sym_U_DQUOTE] = ACTIONS(1408), - [anon_sym_u8_DQUOTE] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [sym_true] = ACTIONS(1406), - [sym_false] = ACTIONS(1406), - [anon_sym_NULL] = ACTIONS(1406), - [anon_sym_nullptr] = ACTIONS(1406), + [sym_identifier] = ACTIONS(1456), + [aux_sym_preproc_include_token1] = ACTIONS(1456), + [aux_sym_preproc_def_token1] = ACTIONS(1456), + [aux_sym_preproc_if_token1] = ACTIONS(1456), + [aux_sym_preproc_if_token2] = ACTIONS(1456), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1456), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1456), + [aux_sym_preproc_else_token1] = ACTIONS(1456), + [aux_sym_preproc_elif_token1] = ACTIONS(1456), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1456), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1456), + [sym_preproc_directive] = ACTIONS(1456), + [anon_sym_LPAREN2] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_TILDE] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1456), + [anon_sym_PLUS] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym___extension__] = ACTIONS(1456), + [anon_sym_typedef] = ACTIONS(1456), + [anon_sym_extern] = ACTIONS(1456), + [anon_sym___attribute__] = ACTIONS(1456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1458), + [anon_sym___declspec] = ACTIONS(1456), + [anon_sym___cdecl] = ACTIONS(1456), + [anon_sym___clrcall] = ACTIONS(1456), + [anon_sym___stdcall] = ACTIONS(1456), + [anon_sym___fastcall] = ACTIONS(1456), + [anon_sym___thiscall] = ACTIONS(1456), + [anon_sym___vectorcall] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_signed] = ACTIONS(1456), + [anon_sym_unsigned] = ACTIONS(1456), + [anon_sym_long] = ACTIONS(1456), + [anon_sym_short] = ACTIONS(1456), + [anon_sym_static] = ACTIONS(1456), + [anon_sym_auto] = ACTIONS(1456), + [anon_sym_register] = ACTIONS(1456), + [anon_sym_inline] = ACTIONS(1456), + [anon_sym___inline] = ACTIONS(1456), + [anon_sym___inline__] = ACTIONS(1456), + [anon_sym___forceinline] = ACTIONS(1456), + [anon_sym_thread_local] = ACTIONS(1456), + [anon_sym___thread] = ACTIONS(1456), + [anon_sym_const] = ACTIONS(1456), + [anon_sym_constexpr] = ACTIONS(1456), + [anon_sym_volatile] = ACTIONS(1456), + [anon_sym_restrict] = ACTIONS(1456), + [anon_sym___restrict__] = ACTIONS(1456), + [anon_sym__Atomic] = ACTIONS(1456), + [anon_sym__Noreturn] = ACTIONS(1456), + [anon_sym_noreturn] = ACTIONS(1456), + [sym_primitive_type] = ACTIONS(1456), + [anon_sym_enum] = ACTIONS(1456), + [anon_sym_struct] = ACTIONS(1456), + [anon_sym_union] = ACTIONS(1456), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_else] = ACTIONS(1456), + [anon_sym_switch] = ACTIONS(1456), + [anon_sym_case] = ACTIONS(1456), + [anon_sym_default] = ACTIONS(1456), + [anon_sym_while] = ACTIONS(1456), + [anon_sym_do] = ACTIONS(1456), + [anon_sym_for] = ACTIONS(1456), + [anon_sym_return] = ACTIONS(1456), + [anon_sym_break] = ACTIONS(1456), + [anon_sym_continue] = ACTIONS(1456), + [anon_sym_goto] = ACTIONS(1456), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_sizeof] = ACTIONS(1456), + [anon_sym___alignof__] = ACTIONS(1456), + [anon_sym___alignof] = ACTIONS(1456), + [anon_sym__alignof] = ACTIONS(1456), + [anon_sym_alignof] = ACTIONS(1456), + [anon_sym__Alignof] = ACTIONS(1456), + [anon_sym_offsetof] = ACTIONS(1456), + [anon_sym___builtin_va_arg] = ACTIONS(1456), + [anon_sym__Generic] = ACTIONS(1456), + [anon_sym_asm] = ACTIONS(1456), + [anon_sym___asm__] = ACTIONS(1456), + [sym_number_literal] = ACTIONS(1458), + [anon_sym_L_SQUOTE] = ACTIONS(1458), + [anon_sym_u_SQUOTE] = ACTIONS(1458), + [anon_sym_U_SQUOTE] = ACTIONS(1458), + [anon_sym_u8_SQUOTE] = ACTIONS(1458), + [anon_sym_SQUOTE] = ACTIONS(1458), + [anon_sym_L_DQUOTE] = ACTIONS(1458), + [anon_sym_u_DQUOTE] = ACTIONS(1458), + [anon_sym_U_DQUOTE] = ACTIONS(1458), + [anon_sym_u8_DQUOTE] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [sym_true] = ACTIONS(1456), + [sym_false] = ACTIONS(1456), + [anon_sym_NULL] = ACTIONS(1456), + [anon_sym_nullptr] = ACTIONS(1456), [sym_comment] = ACTIONS(3), }, [148] = { - [sym_identifier] = ACTIONS(1410), - [aux_sym_preproc_include_token1] = ACTIONS(1410), - [aux_sym_preproc_def_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token2] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), - [aux_sym_preproc_else_token1] = ACTIONS(1410), - [aux_sym_preproc_elif_token1] = ACTIONS(1410), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1410), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1410), - [sym_preproc_directive] = ACTIONS(1410), - [anon_sym_LPAREN2] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym_typedef] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym___attribute__] = ACTIONS(1410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), - [anon_sym___declspec] = ACTIONS(1410), - [anon_sym___cdecl] = ACTIONS(1410), - [anon_sym___clrcall] = ACTIONS(1410), - [anon_sym___stdcall] = ACTIONS(1410), - [anon_sym___fastcall] = ACTIONS(1410), - [anon_sym___thiscall] = ACTIONS(1410), - [anon_sym___vectorcall] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_auto] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), - [anon_sym_thread_local] = ACTIONS(1410), - [anon_sym___thread] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_constexpr] = ACTIONS(1410), - [anon_sym_volatile] = ACTIONS(1410), - [anon_sym_restrict] = ACTIONS(1410), - [anon_sym___restrict__] = ACTIONS(1410), - [anon_sym__Atomic] = ACTIONS(1410), - [anon_sym__Noreturn] = ACTIONS(1410), - [anon_sym_noreturn] = ACTIONS(1410), - [sym_primitive_type] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_case] = ACTIONS(1410), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_goto] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_sizeof] = ACTIONS(1410), - [anon_sym_offsetof] = ACTIONS(1410), - [anon_sym__Generic] = ACTIONS(1410), - [anon_sym_asm] = ACTIONS(1410), - [anon_sym___asm__] = ACTIONS(1410), - [sym_number_literal] = ACTIONS(1412), - [anon_sym_L_SQUOTE] = ACTIONS(1412), - [anon_sym_u_SQUOTE] = ACTIONS(1412), - [anon_sym_U_SQUOTE] = ACTIONS(1412), - [anon_sym_u8_SQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_L_DQUOTE] = ACTIONS(1412), - [anon_sym_u_DQUOTE] = ACTIONS(1412), - [anon_sym_U_DQUOTE] = ACTIONS(1412), - [anon_sym_u8_DQUOTE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [sym_true] = ACTIONS(1410), - [sym_false] = ACTIONS(1410), - [anon_sym_NULL] = ACTIONS(1410), - [anon_sym_nullptr] = ACTIONS(1410), + [sym_identifier] = ACTIONS(1460), + [aux_sym_preproc_include_token1] = ACTIONS(1460), + [aux_sym_preproc_def_token1] = ACTIONS(1460), + [aux_sym_preproc_if_token1] = ACTIONS(1460), + [aux_sym_preproc_if_token2] = ACTIONS(1460), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1460), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1460), + [aux_sym_preproc_else_token1] = ACTIONS(1460), + [aux_sym_preproc_elif_token1] = ACTIONS(1460), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1460), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1460), + [sym_preproc_directive] = ACTIONS(1460), + [anon_sym_LPAREN2] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1460), + [anon_sym_STAR] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym___extension__] = ACTIONS(1460), + [anon_sym_typedef] = ACTIONS(1460), + [anon_sym_extern] = ACTIONS(1460), + [anon_sym___attribute__] = ACTIONS(1460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), + [anon_sym___declspec] = ACTIONS(1460), + [anon_sym___cdecl] = ACTIONS(1460), + [anon_sym___clrcall] = ACTIONS(1460), + [anon_sym___stdcall] = ACTIONS(1460), + [anon_sym___fastcall] = ACTIONS(1460), + [anon_sym___thiscall] = ACTIONS(1460), + [anon_sym___vectorcall] = ACTIONS(1460), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_signed] = ACTIONS(1460), + [anon_sym_unsigned] = ACTIONS(1460), + [anon_sym_long] = ACTIONS(1460), + [anon_sym_short] = ACTIONS(1460), + [anon_sym_static] = ACTIONS(1460), + [anon_sym_auto] = ACTIONS(1460), + [anon_sym_register] = ACTIONS(1460), + [anon_sym_inline] = ACTIONS(1460), + [anon_sym___inline] = ACTIONS(1460), + [anon_sym___inline__] = ACTIONS(1460), + [anon_sym___forceinline] = ACTIONS(1460), + [anon_sym_thread_local] = ACTIONS(1460), + [anon_sym___thread] = ACTIONS(1460), + [anon_sym_const] = ACTIONS(1460), + [anon_sym_constexpr] = ACTIONS(1460), + [anon_sym_volatile] = ACTIONS(1460), + [anon_sym_restrict] = ACTIONS(1460), + [anon_sym___restrict__] = ACTIONS(1460), + [anon_sym__Atomic] = ACTIONS(1460), + [anon_sym__Noreturn] = ACTIONS(1460), + [anon_sym_noreturn] = ACTIONS(1460), + [sym_primitive_type] = ACTIONS(1460), + [anon_sym_enum] = ACTIONS(1460), + [anon_sym_struct] = ACTIONS(1460), + [anon_sym_union] = ACTIONS(1460), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_else] = ACTIONS(1460), + [anon_sym_switch] = ACTIONS(1460), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(1460), + [anon_sym_do] = ACTIONS(1460), + [anon_sym_for] = ACTIONS(1460), + [anon_sym_return] = ACTIONS(1460), + [anon_sym_break] = ACTIONS(1460), + [anon_sym_continue] = ACTIONS(1460), + [anon_sym_goto] = ACTIONS(1460), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_sizeof] = ACTIONS(1460), + [anon_sym___alignof__] = ACTIONS(1460), + [anon_sym___alignof] = ACTIONS(1460), + [anon_sym__alignof] = ACTIONS(1460), + [anon_sym_alignof] = ACTIONS(1460), + [anon_sym__Alignof] = ACTIONS(1460), + [anon_sym_offsetof] = ACTIONS(1460), + [anon_sym___builtin_va_arg] = ACTIONS(1460), + [anon_sym__Generic] = ACTIONS(1460), + [anon_sym_asm] = ACTIONS(1460), + [anon_sym___asm__] = ACTIONS(1460), + [sym_number_literal] = ACTIONS(1462), + [anon_sym_L_SQUOTE] = ACTIONS(1462), + [anon_sym_u_SQUOTE] = ACTIONS(1462), + [anon_sym_U_SQUOTE] = ACTIONS(1462), + [anon_sym_u8_SQUOTE] = ACTIONS(1462), + [anon_sym_SQUOTE] = ACTIONS(1462), + [anon_sym_L_DQUOTE] = ACTIONS(1462), + [anon_sym_u_DQUOTE] = ACTIONS(1462), + [anon_sym_U_DQUOTE] = ACTIONS(1462), + [anon_sym_u8_DQUOTE] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1462), + [sym_true] = ACTIONS(1460), + [sym_false] = ACTIONS(1460), + [anon_sym_NULL] = ACTIONS(1460), + [anon_sym_nullptr] = ACTIONS(1460), [sym_comment] = ACTIONS(3), }, [149] = { - [sym_identifier] = ACTIONS(1414), - [aux_sym_preproc_include_token1] = ACTIONS(1414), - [aux_sym_preproc_def_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token2] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), - [aux_sym_preproc_else_token1] = ACTIONS(1414), - [aux_sym_preproc_elif_token1] = ACTIONS(1414), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1414), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1414), - [sym_preproc_directive] = ACTIONS(1414), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym_typedef] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym___attribute__] = ACTIONS(1414), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), - [anon_sym___declspec] = ACTIONS(1414), - [anon_sym___cdecl] = ACTIONS(1414), - [anon_sym___clrcall] = ACTIONS(1414), - [anon_sym___stdcall] = ACTIONS(1414), - [anon_sym___fastcall] = ACTIONS(1414), - [anon_sym___thiscall] = ACTIONS(1414), - [anon_sym___vectorcall] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_signed] = ACTIONS(1414), - [anon_sym_unsigned] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_short] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_auto] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_inline] = ACTIONS(1414), - [anon_sym_thread_local] = ACTIONS(1414), - [anon_sym___thread] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_constexpr] = ACTIONS(1414), - [anon_sym_volatile] = ACTIONS(1414), - [anon_sym_restrict] = ACTIONS(1414), - [anon_sym___restrict__] = ACTIONS(1414), - [anon_sym__Atomic] = ACTIONS(1414), - [anon_sym__Noreturn] = ACTIONS(1414), - [anon_sym_noreturn] = ACTIONS(1414), - [sym_primitive_type] = ACTIONS(1414), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_case] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_goto] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_sizeof] = ACTIONS(1414), - [anon_sym_offsetof] = ACTIONS(1414), - [anon_sym__Generic] = ACTIONS(1414), - [anon_sym_asm] = ACTIONS(1414), - [anon_sym___asm__] = ACTIONS(1414), - [sym_number_literal] = ACTIONS(1416), - [anon_sym_L_SQUOTE] = ACTIONS(1416), - [anon_sym_u_SQUOTE] = ACTIONS(1416), - [anon_sym_U_SQUOTE] = ACTIONS(1416), - [anon_sym_u8_SQUOTE] = ACTIONS(1416), - [anon_sym_SQUOTE] = ACTIONS(1416), - [anon_sym_L_DQUOTE] = ACTIONS(1416), - [anon_sym_u_DQUOTE] = ACTIONS(1416), - [anon_sym_U_DQUOTE] = ACTIONS(1416), - [anon_sym_u8_DQUOTE] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [sym_true] = ACTIONS(1414), - [sym_false] = ACTIONS(1414), - [anon_sym_NULL] = ACTIONS(1414), - [anon_sym_nullptr] = ACTIONS(1414), + [sym_identifier] = ACTIONS(1464), + [aux_sym_preproc_include_token1] = ACTIONS(1464), + [aux_sym_preproc_def_token1] = ACTIONS(1464), + [aux_sym_preproc_if_token1] = ACTIONS(1464), + [aux_sym_preproc_if_token2] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), + [aux_sym_preproc_else_token1] = ACTIONS(1464), + [aux_sym_preproc_elif_token1] = ACTIONS(1464), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1464), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1464), + [sym_preproc_directive] = ACTIONS(1464), + [anon_sym_LPAREN2] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym___extension__] = ACTIONS(1464), + [anon_sym_typedef] = ACTIONS(1464), + [anon_sym_extern] = ACTIONS(1464), + [anon_sym___attribute__] = ACTIONS(1464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), + [anon_sym___declspec] = ACTIONS(1464), + [anon_sym___cdecl] = ACTIONS(1464), + [anon_sym___clrcall] = ACTIONS(1464), + [anon_sym___stdcall] = ACTIONS(1464), + [anon_sym___fastcall] = ACTIONS(1464), + [anon_sym___thiscall] = ACTIONS(1464), + [anon_sym___vectorcall] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_signed] = ACTIONS(1464), + [anon_sym_unsigned] = ACTIONS(1464), + [anon_sym_long] = ACTIONS(1464), + [anon_sym_short] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_auto] = ACTIONS(1464), + [anon_sym_register] = ACTIONS(1464), + [anon_sym_inline] = ACTIONS(1464), + [anon_sym___inline] = ACTIONS(1464), + [anon_sym___inline__] = ACTIONS(1464), + [anon_sym___forceinline] = ACTIONS(1464), + [anon_sym_thread_local] = ACTIONS(1464), + [anon_sym___thread] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_constexpr] = ACTIONS(1464), + [anon_sym_volatile] = ACTIONS(1464), + [anon_sym_restrict] = ACTIONS(1464), + [anon_sym___restrict__] = ACTIONS(1464), + [anon_sym__Atomic] = ACTIONS(1464), + [anon_sym__Noreturn] = ACTIONS(1464), + [anon_sym_noreturn] = ACTIONS(1464), + [sym_primitive_type] = ACTIONS(1464), + [anon_sym_enum] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1464), + [anon_sym_union] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_case] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_continue] = ACTIONS(1464), + [anon_sym_goto] = ACTIONS(1464), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_sizeof] = ACTIONS(1464), + [anon_sym___alignof__] = ACTIONS(1464), + [anon_sym___alignof] = ACTIONS(1464), + [anon_sym__alignof] = ACTIONS(1464), + [anon_sym_alignof] = ACTIONS(1464), + [anon_sym__Alignof] = ACTIONS(1464), + [anon_sym_offsetof] = ACTIONS(1464), + [anon_sym___builtin_va_arg] = ACTIONS(1464), + [anon_sym__Generic] = ACTIONS(1464), + [anon_sym_asm] = ACTIONS(1464), + [anon_sym___asm__] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [anon_sym_L_SQUOTE] = ACTIONS(1466), + [anon_sym_u_SQUOTE] = ACTIONS(1466), + [anon_sym_U_SQUOTE] = ACTIONS(1466), + [anon_sym_u8_SQUOTE] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [anon_sym_L_DQUOTE] = ACTIONS(1466), + [anon_sym_u_DQUOTE] = ACTIONS(1466), + [anon_sym_U_DQUOTE] = ACTIONS(1466), + [anon_sym_u8_DQUOTE] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [anon_sym_NULL] = ACTIONS(1464), + [anon_sym_nullptr] = ACTIONS(1464), [sym_comment] = ACTIONS(3), }, [150] = { - [sym_identifier] = ACTIONS(1418), - [aux_sym_preproc_include_token1] = ACTIONS(1418), - [aux_sym_preproc_def_token1] = ACTIONS(1418), - [aux_sym_preproc_if_token1] = ACTIONS(1418), - [aux_sym_preproc_if_token2] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), - [aux_sym_preproc_else_token1] = ACTIONS(1418), - [aux_sym_preproc_elif_token1] = ACTIONS(1418), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1418), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1418), - [sym_preproc_directive] = ACTIONS(1418), - [anon_sym_LPAREN2] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_typedef] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym___attribute__] = ACTIONS(1418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), - [anon_sym___declspec] = ACTIONS(1418), - [anon_sym___cdecl] = ACTIONS(1418), - [anon_sym___clrcall] = ACTIONS(1418), - [anon_sym___stdcall] = ACTIONS(1418), - [anon_sym___fastcall] = ACTIONS(1418), - [anon_sym___thiscall] = ACTIONS(1418), - [anon_sym___vectorcall] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_signed] = ACTIONS(1418), - [anon_sym_unsigned] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_auto] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_inline] = ACTIONS(1418), - [anon_sym_thread_local] = ACTIONS(1418), - [anon_sym___thread] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_constexpr] = ACTIONS(1418), - [anon_sym_volatile] = ACTIONS(1418), - [anon_sym_restrict] = ACTIONS(1418), - [anon_sym___restrict__] = ACTIONS(1418), - [anon_sym__Atomic] = ACTIONS(1418), - [anon_sym__Noreturn] = ACTIONS(1418), - [anon_sym_noreturn] = ACTIONS(1418), - [sym_primitive_type] = ACTIONS(1418), - [anon_sym_enum] = ACTIONS(1418), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_union] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_case] = ACTIONS(1418), - [anon_sym_default] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_goto] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_sizeof] = ACTIONS(1418), - [anon_sym_offsetof] = ACTIONS(1418), - [anon_sym__Generic] = ACTIONS(1418), - [anon_sym_asm] = ACTIONS(1418), - [anon_sym___asm__] = ACTIONS(1418), - [sym_number_literal] = ACTIONS(1420), - [anon_sym_L_SQUOTE] = ACTIONS(1420), - [anon_sym_u_SQUOTE] = ACTIONS(1420), - [anon_sym_U_SQUOTE] = ACTIONS(1420), - [anon_sym_u8_SQUOTE] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_L_DQUOTE] = ACTIONS(1420), - [anon_sym_u_DQUOTE] = ACTIONS(1420), - [anon_sym_U_DQUOTE] = ACTIONS(1420), - [anon_sym_u8_DQUOTE] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1420), - [sym_true] = ACTIONS(1418), - [sym_false] = ACTIONS(1418), - [anon_sym_NULL] = ACTIONS(1418), - [anon_sym_nullptr] = ACTIONS(1418), + [sym_identifier] = ACTIONS(1468), + [aux_sym_preproc_include_token1] = ACTIONS(1468), + [aux_sym_preproc_def_token1] = ACTIONS(1468), + [aux_sym_preproc_if_token1] = ACTIONS(1468), + [aux_sym_preproc_if_token2] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), + [aux_sym_preproc_else_token1] = ACTIONS(1468), + [aux_sym_preproc_elif_token1] = ACTIONS(1468), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1468), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1468), + [sym_preproc_directive] = ACTIONS(1468), + [anon_sym_LPAREN2] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym___extension__] = ACTIONS(1468), + [anon_sym_typedef] = ACTIONS(1468), + [anon_sym_extern] = ACTIONS(1468), + [anon_sym___attribute__] = ACTIONS(1468), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), + [anon_sym___declspec] = ACTIONS(1468), + [anon_sym___cdecl] = ACTIONS(1468), + [anon_sym___clrcall] = ACTIONS(1468), + [anon_sym___stdcall] = ACTIONS(1468), + [anon_sym___fastcall] = ACTIONS(1468), + [anon_sym___thiscall] = ACTIONS(1468), + [anon_sym___vectorcall] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1468), + [anon_sym_unsigned] = ACTIONS(1468), + [anon_sym_long] = ACTIONS(1468), + [anon_sym_short] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1468), + [anon_sym_auto] = ACTIONS(1468), + [anon_sym_register] = ACTIONS(1468), + [anon_sym_inline] = ACTIONS(1468), + [anon_sym___inline] = ACTIONS(1468), + [anon_sym___inline__] = ACTIONS(1468), + [anon_sym___forceinline] = ACTIONS(1468), + [anon_sym_thread_local] = ACTIONS(1468), + [anon_sym___thread] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1468), + [anon_sym_constexpr] = ACTIONS(1468), + [anon_sym_volatile] = ACTIONS(1468), + [anon_sym_restrict] = ACTIONS(1468), + [anon_sym___restrict__] = ACTIONS(1468), + [anon_sym__Atomic] = ACTIONS(1468), + [anon_sym__Noreturn] = ACTIONS(1468), + [anon_sym_noreturn] = ACTIONS(1468), + [sym_primitive_type] = ACTIONS(1468), + [anon_sym_enum] = ACTIONS(1468), + [anon_sym_struct] = ACTIONS(1468), + [anon_sym_union] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_switch] = ACTIONS(1468), + [anon_sym_case] = ACTIONS(1468), + [anon_sym_default] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1468), + [anon_sym_do] = ACTIONS(1468), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(1468), + [anon_sym_break] = ACTIONS(1468), + [anon_sym_continue] = ACTIONS(1468), + [anon_sym_goto] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1468), + [anon_sym___alignof__] = ACTIONS(1468), + [anon_sym___alignof] = ACTIONS(1468), + [anon_sym__alignof] = ACTIONS(1468), + [anon_sym_alignof] = ACTIONS(1468), + [anon_sym__Alignof] = ACTIONS(1468), + [anon_sym_offsetof] = ACTIONS(1468), + [anon_sym___builtin_va_arg] = ACTIONS(1468), + [anon_sym__Generic] = ACTIONS(1468), + [anon_sym_asm] = ACTIONS(1468), + [anon_sym___asm__] = ACTIONS(1468), + [sym_number_literal] = ACTIONS(1470), + [anon_sym_L_SQUOTE] = ACTIONS(1470), + [anon_sym_u_SQUOTE] = ACTIONS(1470), + [anon_sym_U_SQUOTE] = ACTIONS(1470), + [anon_sym_u8_SQUOTE] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1470), + [anon_sym_L_DQUOTE] = ACTIONS(1470), + [anon_sym_u_DQUOTE] = ACTIONS(1470), + [anon_sym_U_DQUOTE] = ACTIONS(1470), + [anon_sym_u8_DQUOTE] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [sym_true] = ACTIONS(1468), + [sym_false] = ACTIONS(1468), + [anon_sym_NULL] = ACTIONS(1468), + [anon_sym_nullptr] = ACTIONS(1468), [sym_comment] = ACTIONS(3), }, [151] = { - [sym_identifier] = ACTIONS(1422), - [aux_sym_preproc_include_token1] = ACTIONS(1422), - [aux_sym_preproc_def_token1] = ACTIONS(1422), - [aux_sym_preproc_if_token1] = ACTIONS(1422), - [aux_sym_preproc_if_token2] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), - [aux_sym_preproc_else_token1] = ACTIONS(1422), - [aux_sym_preproc_elif_token1] = ACTIONS(1422), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1422), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1422), - [sym_preproc_directive] = ACTIONS(1422), - [anon_sym_LPAREN2] = ACTIONS(1424), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_TILDE] = ACTIONS(1424), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1424), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym_typedef] = ACTIONS(1422), - [anon_sym_extern] = ACTIONS(1422), - [anon_sym___attribute__] = ACTIONS(1422), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym___declspec] = ACTIONS(1422), - [anon_sym___cdecl] = ACTIONS(1422), - [anon_sym___clrcall] = ACTIONS(1422), - [anon_sym___stdcall] = ACTIONS(1422), - [anon_sym___fastcall] = ACTIONS(1422), - [anon_sym___thiscall] = ACTIONS(1422), - [anon_sym___vectorcall] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_signed] = ACTIONS(1422), - [anon_sym_unsigned] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_short] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_auto] = ACTIONS(1422), - [anon_sym_register] = ACTIONS(1422), - [anon_sym_inline] = ACTIONS(1422), - [anon_sym_thread_local] = ACTIONS(1422), - [anon_sym___thread] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_constexpr] = ACTIONS(1422), - [anon_sym_volatile] = ACTIONS(1422), - [anon_sym_restrict] = ACTIONS(1422), - [anon_sym___restrict__] = ACTIONS(1422), - [anon_sym__Atomic] = ACTIONS(1422), - [anon_sym__Noreturn] = ACTIONS(1422), - [anon_sym_noreturn] = ACTIONS(1422), - [sym_primitive_type] = ACTIONS(1422), - [anon_sym_enum] = ACTIONS(1422), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_union] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_case] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_do] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_goto] = ACTIONS(1422), - [anon_sym_DASH_DASH] = ACTIONS(1424), - [anon_sym_PLUS_PLUS] = ACTIONS(1424), - [anon_sym_sizeof] = ACTIONS(1422), - [anon_sym_offsetof] = ACTIONS(1422), - [anon_sym__Generic] = ACTIONS(1422), - [anon_sym_asm] = ACTIONS(1422), - [anon_sym___asm__] = ACTIONS(1422), - [sym_number_literal] = ACTIONS(1424), - [anon_sym_L_SQUOTE] = ACTIONS(1424), - [anon_sym_u_SQUOTE] = ACTIONS(1424), - [anon_sym_U_SQUOTE] = ACTIONS(1424), - [anon_sym_u8_SQUOTE] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_L_DQUOTE] = ACTIONS(1424), - [anon_sym_u_DQUOTE] = ACTIONS(1424), - [anon_sym_U_DQUOTE] = ACTIONS(1424), - [anon_sym_u8_DQUOTE] = ACTIONS(1424), - [anon_sym_DQUOTE] = ACTIONS(1424), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [anon_sym_NULL] = ACTIONS(1422), - [anon_sym_nullptr] = ACTIONS(1422), + [sym_identifier] = ACTIONS(1472), + [aux_sym_preproc_include_token1] = ACTIONS(1472), + [aux_sym_preproc_def_token1] = ACTIONS(1472), + [aux_sym_preproc_if_token1] = ACTIONS(1472), + [aux_sym_preproc_if_token2] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), + [aux_sym_preproc_else_token1] = ACTIONS(1472), + [aux_sym_preproc_elif_token1] = ACTIONS(1472), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1472), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1472), + [sym_preproc_directive] = ACTIONS(1472), + [anon_sym_LPAREN2] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym___extension__] = ACTIONS(1472), + [anon_sym_typedef] = ACTIONS(1472), + [anon_sym_extern] = ACTIONS(1472), + [anon_sym___attribute__] = ACTIONS(1472), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), + [anon_sym___declspec] = ACTIONS(1472), + [anon_sym___cdecl] = ACTIONS(1472), + [anon_sym___clrcall] = ACTIONS(1472), + [anon_sym___stdcall] = ACTIONS(1472), + [anon_sym___fastcall] = ACTIONS(1472), + [anon_sym___thiscall] = ACTIONS(1472), + [anon_sym___vectorcall] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_signed] = ACTIONS(1472), + [anon_sym_unsigned] = ACTIONS(1472), + [anon_sym_long] = ACTIONS(1472), + [anon_sym_short] = ACTIONS(1472), + [anon_sym_static] = ACTIONS(1472), + [anon_sym_auto] = ACTIONS(1472), + [anon_sym_register] = ACTIONS(1472), + [anon_sym_inline] = ACTIONS(1472), + [anon_sym___inline] = ACTIONS(1472), + [anon_sym___inline__] = ACTIONS(1472), + [anon_sym___forceinline] = ACTIONS(1472), + [anon_sym_thread_local] = ACTIONS(1472), + [anon_sym___thread] = ACTIONS(1472), + [anon_sym_const] = ACTIONS(1472), + [anon_sym_constexpr] = ACTIONS(1472), + [anon_sym_volatile] = ACTIONS(1472), + [anon_sym_restrict] = ACTIONS(1472), + [anon_sym___restrict__] = ACTIONS(1472), + [anon_sym__Atomic] = ACTIONS(1472), + [anon_sym__Noreturn] = ACTIONS(1472), + [anon_sym_noreturn] = ACTIONS(1472), + [sym_primitive_type] = ACTIONS(1472), + [anon_sym_enum] = ACTIONS(1472), + [anon_sym_struct] = ACTIONS(1472), + [anon_sym_union] = ACTIONS(1472), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_switch] = ACTIONS(1472), + [anon_sym_case] = ACTIONS(1472), + [anon_sym_default] = ACTIONS(1472), + [anon_sym_while] = ACTIONS(1472), + [anon_sym_do] = ACTIONS(1472), + [anon_sym_for] = ACTIONS(1472), + [anon_sym_return] = ACTIONS(1472), + [anon_sym_break] = ACTIONS(1472), + [anon_sym_continue] = ACTIONS(1472), + [anon_sym_goto] = ACTIONS(1472), + [anon_sym_DASH_DASH] = ACTIONS(1474), + [anon_sym_PLUS_PLUS] = ACTIONS(1474), + [anon_sym_sizeof] = ACTIONS(1472), + [anon_sym___alignof__] = ACTIONS(1472), + [anon_sym___alignof] = ACTIONS(1472), + [anon_sym__alignof] = ACTIONS(1472), + [anon_sym_alignof] = ACTIONS(1472), + [anon_sym__Alignof] = ACTIONS(1472), + [anon_sym_offsetof] = ACTIONS(1472), + [anon_sym___builtin_va_arg] = ACTIONS(1472), + [anon_sym__Generic] = ACTIONS(1472), + [anon_sym_asm] = ACTIONS(1472), + [anon_sym___asm__] = ACTIONS(1472), + [sym_number_literal] = ACTIONS(1474), + [anon_sym_L_SQUOTE] = ACTIONS(1474), + [anon_sym_u_SQUOTE] = ACTIONS(1474), + [anon_sym_U_SQUOTE] = ACTIONS(1474), + [anon_sym_u8_SQUOTE] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1474), + [anon_sym_L_DQUOTE] = ACTIONS(1474), + [anon_sym_u_DQUOTE] = ACTIONS(1474), + [anon_sym_U_DQUOTE] = ACTIONS(1474), + [anon_sym_u8_DQUOTE] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [sym_true] = ACTIONS(1472), + [sym_false] = ACTIONS(1472), + [anon_sym_NULL] = ACTIONS(1472), + [anon_sym_nullptr] = ACTIONS(1472), [sym_comment] = ACTIONS(3), }, [152] = { - [sym_identifier] = ACTIONS(1426), - [aux_sym_preproc_include_token1] = ACTIONS(1426), - [aux_sym_preproc_def_token1] = ACTIONS(1426), - [aux_sym_preproc_if_token1] = ACTIONS(1426), - [aux_sym_preproc_if_token2] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), - [aux_sym_preproc_else_token1] = ACTIONS(1426), - [aux_sym_preproc_elif_token1] = ACTIONS(1426), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1426), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1426), - [sym_preproc_directive] = ACTIONS(1426), - [anon_sym_LPAREN2] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym_typedef] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym___attribute__] = ACTIONS(1426), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), - [anon_sym___declspec] = ACTIONS(1426), - [anon_sym___cdecl] = ACTIONS(1426), - [anon_sym___clrcall] = ACTIONS(1426), - [anon_sym___stdcall] = ACTIONS(1426), - [anon_sym___fastcall] = ACTIONS(1426), - [anon_sym___thiscall] = ACTIONS(1426), - [anon_sym___vectorcall] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_signed] = ACTIONS(1426), - [anon_sym_unsigned] = ACTIONS(1426), - [anon_sym_long] = ACTIONS(1426), - [anon_sym_short] = ACTIONS(1426), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_auto] = ACTIONS(1426), - [anon_sym_register] = ACTIONS(1426), - [anon_sym_inline] = ACTIONS(1426), - [anon_sym_thread_local] = ACTIONS(1426), - [anon_sym___thread] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_constexpr] = ACTIONS(1426), - [anon_sym_volatile] = ACTIONS(1426), - [anon_sym_restrict] = ACTIONS(1426), - [anon_sym___restrict__] = ACTIONS(1426), - [anon_sym__Atomic] = ACTIONS(1426), - [anon_sym__Noreturn] = ACTIONS(1426), - [anon_sym_noreturn] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(1426), - [anon_sym_enum] = ACTIONS(1426), - [anon_sym_struct] = ACTIONS(1426), - [anon_sym_union] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_switch] = ACTIONS(1426), - [anon_sym_case] = ACTIONS(1426), - [anon_sym_default] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_do] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_goto] = ACTIONS(1426), - [anon_sym_DASH_DASH] = ACTIONS(1428), - [anon_sym_PLUS_PLUS] = ACTIONS(1428), - [anon_sym_sizeof] = ACTIONS(1426), - [anon_sym_offsetof] = ACTIONS(1426), - [anon_sym__Generic] = ACTIONS(1426), - [anon_sym_asm] = ACTIONS(1426), - [anon_sym___asm__] = ACTIONS(1426), - [sym_number_literal] = ACTIONS(1428), - [anon_sym_L_SQUOTE] = ACTIONS(1428), - [anon_sym_u_SQUOTE] = ACTIONS(1428), - [anon_sym_U_SQUOTE] = ACTIONS(1428), - [anon_sym_u8_SQUOTE] = ACTIONS(1428), - [anon_sym_SQUOTE] = ACTIONS(1428), - [anon_sym_L_DQUOTE] = ACTIONS(1428), - [anon_sym_u_DQUOTE] = ACTIONS(1428), - [anon_sym_U_DQUOTE] = ACTIONS(1428), - [anon_sym_u8_DQUOTE] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [sym_true] = ACTIONS(1426), - [sym_false] = ACTIONS(1426), - [anon_sym_NULL] = ACTIONS(1426), - [anon_sym_nullptr] = ACTIONS(1426), + [sym_identifier] = ACTIONS(1476), + [aux_sym_preproc_include_token1] = ACTIONS(1476), + [aux_sym_preproc_def_token1] = ACTIONS(1476), + [aux_sym_preproc_if_token1] = ACTIONS(1476), + [aux_sym_preproc_if_token2] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), + [aux_sym_preproc_else_token1] = ACTIONS(1476), + [aux_sym_preproc_elif_token1] = ACTIONS(1476), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1476), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1476), + [sym_preproc_directive] = ACTIONS(1476), + [anon_sym_LPAREN2] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym___extension__] = ACTIONS(1476), + [anon_sym_typedef] = ACTIONS(1476), + [anon_sym_extern] = ACTIONS(1476), + [anon_sym___attribute__] = ACTIONS(1476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), + [anon_sym___declspec] = ACTIONS(1476), + [anon_sym___cdecl] = ACTIONS(1476), + [anon_sym___clrcall] = ACTIONS(1476), + [anon_sym___stdcall] = ACTIONS(1476), + [anon_sym___fastcall] = ACTIONS(1476), + [anon_sym___thiscall] = ACTIONS(1476), + [anon_sym___vectorcall] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_signed] = ACTIONS(1476), + [anon_sym_unsigned] = ACTIONS(1476), + [anon_sym_long] = ACTIONS(1476), + [anon_sym_short] = ACTIONS(1476), + [anon_sym_static] = ACTIONS(1476), + [anon_sym_auto] = ACTIONS(1476), + [anon_sym_register] = ACTIONS(1476), + [anon_sym_inline] = ACTIONS(1476), + [anon_sym___inline] = ACTIONS(1476), + [anon_sym___inline__] = ACTIONS(1476), + [anon_sym___forceinline] = ACTIONS(1476), + [anon_sym_thread_local] = ACTIONS(1476), + [anon_sym___thread] = ACTIONS(1476), + [anon_sym_const] = ACTIONS(1476), + [anon_sym_constexpr] = ACTIONS(1476), + [anon_sym_volatile] = ACTIONS(1476), + [anon_sym_restrict] = ACTIONS(1476), + [anon_sym___restrict__] = ACTIONS(1476), + [anon_sym__Atomic] = ACTIONS(1476), + [anon_sym__Noreturn] = ACTIONS(1476), + [anon_sym_noreturn] = ACTIONS(1476), + [sym_primitive_type] = ACTIONS(1476), + [anon_sym_enum] = ACTIONS(1476), + [anon_sym_struct] = ACTIONS(1476), + [anon_sym_union] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_switch] = ACTIONS(1476), + [anon_sym_case] = ACTIONS(1476), + [anon_sym_default] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_do] = ACTIONS(1476), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_goto] = ACTIONS(1476), + [anon_sym_DASH_DASH] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_sizeof] = ACTIONS(1476), + [anon_sym___alignof__] = ACTIONS(1476), + [anon_sym___alignof] = ACTIONS(1476), + [anon_sym__alignof] = ACTIONS(1476), + [anon_sym_alignof] = ACTIONS(1476), + [anon_sym__Alignof] = ACTIONS(1476), + [anon_sym_offsetof] = ACTIONS(1476), + [anon_sym___builtin_va_arg] = ACTIONS(1476), + [anon_sym__Generic] = ACTIONS(1476), + [anon_sym_asm] = ACTIONS(1476), + [anon_sym___asm__] = ACTIONS(1476), + [sym_number_literal] = ACTIONS(1478), + [anon_sym_L_SQUOTE] = ACTIONS(1478), + [anon_sym_u_SQUOTE] = ACTIONS(1478), + [anon_sym_U_SQUOTE] = ACTIONS(1478), + [anon_sym_u8_SQUOTE] = ACTIONS(1478), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_L_DQUOTE] = ACTIONS(1478), + [anon_sym_u_DQUOTE] = ACTIONS(1478), + [anon_sym_U_DQUOTE] = ACTIONS(1478), + [anon_sym_u8_DQUOTE] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(1478), + [sym_true] = ACTIONS(1476), + [sym_false] = ACTIONS(1476), + [anon_sym_NULL] = ACTIONS(1476), + [anon_sym_nullptr] = ACTIONS(1476), [sym_comment] = ACTIONS(3), }, [153] = { - [sym_identifier] = ACTIONS(1430), - [aux_sym_preproc_include_token1] = ACTIONS(1430), - [aux_sym_preproc_def_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token2] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), - [aux_sym_preproc_else_token1] = ACTIONS(1430), - [aux_sym_preproc_elif_token1] = ACTIONS(1430), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1430), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1430), - [sym_preproc_directive] = ACTIONS(1430), - [anon_sym_LPAREN2] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym_typedef] = ACTIONS(1430), - [anon_sym_extern] = ACTIONS(1430), - [anon_sym___attribute__] = ACTIONS(1430), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), - [anon_sym___declspec] = ACTIONS(1430), - [anon_sym___cdecl] = ACTIONS(1430), - [anon_sym___clrcall] = ACTIONS(1430), - [anon_sym___stdcall] = ACTIONS(1430), - [anon_sym___fastcall] = ACTIONS(1430), - [anon_sym___thiscall] = ACTIONS(1430), - [anon_sym___vectorcall] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_signed] = ACTIONS(1430), - [anon_sym_unsigned] = ACTIONS(1430), - [anon_sym_long] = ACTIONS(1430), - [anon_sym_short] = ACTIONS(1430), - [anon_sym_static] = ACTIONS(1430), - [anon_sym_auto] = ACTIONS(1430), - [anon_sym_register] = ACTIONS(1430), - [anon_sym_inline] = ACTIONS(1430), - [anon_sym_thread_local] = ACTIONS(1430), - [anon_sym___thread] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_constexpr] = ACTIONS(1430), - [anon_sym_volatile] = ACTIONS(1430), - [anon_sym_restrict] = ACTIONS(1430), - [anon_sym___restrict__] = ACTIONS(1430), - [anon_sym__Atomic] = ACTIONS(1430), - [anon_sym__Noreturn] = ACTIONS(1430), - [anon_sym_noreturn] = ACTIONS(1430), - [sym_primitive_type] = ACTIONS(1430), - [anon_sym_enum] = ACTIONS(1430), - [anon_sym_struct] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_switch] = ACTIONS(1430), - [anon_sym_case] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_goto] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1432), - [anon_sym_sizeof] = ACTIONS(1430), - [anon_sym_offsetof] = ACTIONS(1430), - [anon_sym__Generic] = ACTIONS(1430), - [anon_sym_asm] = ACTIONS(1430), - [anon_sym___asm__] = ACTIONS(1430), - [sym_number_literal] = ACTIONS(1432), - [anon_sym_L_SQUOTE] = ACTIONS(1432), - [anon_sym_u_SQUOTE] = ACTIONS(1432), - [anon_sym_U_SQUOTE] = ACTIONS(1432), - [anon_sym_u8_SQUOTE] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1432), - [anon_sym_L_DQUOTE] = ACTIONS(1432), - [anon_sym_u_DQUOTE] = ACTIONS(1432), - [anon_sym_U_DQUOTE] = ACTIONS(1432), - [anon_sym_u8_DQUOTE] = ACTIONS(1432), - [anon_sym_DQUOTE] = ACTIONS(1432), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [anon_sym_NULL] = ACTIONS(1430), - [anon_sym_nullptr] = ACTIONS(1430), + [sym_identifier] = ACTIONS(1480), + [aux_sym_preproc_include_token1] = ACTIONS(1480), + [aux_sym_preproc_def_token1] = ACTIONS(1480), + [aux_sym_preproc_if_token1] = ACTIONS(1480), + [aux_sym_preproc_if_token2] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), + [aux_sym_preproc_else_token1] = ACTIONS(1480), + [aux_sym_preproc_elif_token1] = ACTIONS(1480), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1480), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1480), + [sym_preproc_directive] = ACTIONS(1480), + [anon_sym_LPAREN2] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym___extension__] = ACTIONS(1480), + [anon_sym_typedef] = ACTIONS(1480), + [anon_sym_extern] = ACTIONS(1480), + [anon_sym___attribute__] = ACTIONS(1480), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), + [anon_sym___declspec] = ACTIONS(1480), + [anon_sym___cdecl] = ACTIONS(1480), + [anon_sym___clrcall] = ACTIONS(1480), + [anon_sym___stdcall] = ACTIONS(1480), + [anon_sym___fastcall] = ACTIONS(1480), + [anon_sym___thiscall] = ACTIONS(1480), + [anon_sym___vectorcall] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_signed] = ACTIONS(1480), + [anon_sym_unsigned] = ACTIONS(1480), + [anon_sym_long] = ACTIONS(1480), + [anon_sym_short] = ACTIONS(1480), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_auto] = ACTIONS(1480), + [anon_sym_register] = ACTIONS(1480), + [anon_sym_inline] = ACTIONS(1480), + [anon_sym___inline] = ACTIONS(1480), + [anon_sym___inline__] = ACTIONS(1480), + [anon_sym___forceinline] = ACTIONS(1480), + [anon_sym_thread_local] = ACTIONS(1480), + [anon_sym___thread] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_constexpr] = ACTIONS(1480), + [anon_sym_volatile] = ACTIONS(1480), + [anon_sym_restrict] = ACTIONS(1480), + [anon_sym___restrict__] = ACTIONS(1480), + [anon_sym__Atomic] = ACTIONS(1480), + [anon_sym__Noreturn] = ACTIONS(1480), + [anon_sym_noreturn] = ACTIONS(1480), + [sym_primitive_type] = ACTIONS(1480), + [anon_sym_enum] = ACTIONS(1480), + [anon_sym_struct] = ACTIONS(1480), + [anon_sym_union] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_switch] = ACTIONS(1480), + [anon_sym_case] = ACTIONS(1480), + [anon_sym_default] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_do] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1480), + [anon_sym_goto] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1482), + [anon_sym_PLUS_PLUS] = ACTIONS(1482), + [anon_sym_sizeof] = ACTIONS(1480), + [anon_sym___alignof__] = ACTIONS(1480), + [anon_sym___alignof] = ACTIONS(1480), + [anon_sym__alignof] = ACTIONS(1480), + [anon_sym_alignof] = ACTIONS(1480), + [anon_sym__Alignof] = ACTIONS(1480), + [anon_sym_offsetof] = ACTIONS(1480), + [anon_sym___builtin_va_arg] = ACTIONS(1480), + [anon_sym__Generic] = ACTIONS(1480), + [anon_sym_asm] = ACTIONS(1480), + [anon_sym___asm__] = ACTIONS(1480), + [sym_number_literal] = ACTIONS(1482), + [anon_sym_L_SQUOTE] = ACTIONS(1482), + [anon_sym_u_SQUOTE] = ACTIONS(1482), + [anon_sym_U_SQUOTE] = ACTIONS(1482), + [anon_sym_u8_SQUOTE] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_L_DQUOTE] = ACTIONS(1482), + [anon_sym_u_DQUOTE] = ACTIONS(1482), + [anon_sym_U_DQUOTE] = ACTIONS(1482), + [anon_sym_u8_DQUOTE] = ACTIONS(1482), + [anon_sym_DQUOTE] = ACTIONS(1482), + [sym_true] = ACTIONS(1480), + [sym_false] = ACTIONS(1480), + [anon_sym_NULL] = ACTIONS(1480), + [anon_sym_nullptr] = ACTIONS(1480), [sym_comment] = ACTIONS(3), }, [154] = { - [sym_identifier] = ACTIONS(1434), - [aux_sym_preproc_include_token1] = ACTIONS(1434), - [aux_sym_preproc_def_token1] = ACTIONS(1434), - [aux_sym_preproc_if_token1] = ACTIONS(1434), - [aux_sym_preproc_if_token2] = ACTIONS(1434), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), - [aux_sym_preproc_else_token1] = ACTIONS(1434), - [aux_sym_preproc_elif_token1] = ACTIONS(1434), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1434), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1434), - [sym_preproc_directive] = ACTIONS(1434), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1436), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1434), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1436), - [anon_sym_typedef] = ACTIONS(1434), - [anon_sym_extern] = ACTIONS(1434), - [anon_sym___attribute__] = ACTIONS(1434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1436), - [anon_sym___declspec] = ACTIONS(1434), - [anon_sym___cdecl] = ACTIONS(1434), - [anon_sym___clrcall] = ACTIONS(1434), - [anon_sym___stdcall] = ACTIONS(1434), - [anon_sym___fastcall] = ACTIONS(1434), - [anon_sym___thiscall] = ACTIONS(1434), - [anon_sym___vectorcall] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1434), - [anon_sym_unsigned] = ACTIONS(1434), - [anon_sym_long] = ACTIONS(1434), - [anon_sym_short] = ACTIONS(1434), - [anon_sym_static] = ACTIONS(1434), - [anon_sym_auto] = ACTIONS(1434), - [anon_sym_register] = ACTIONS(1434), - [anon_sym_inline] = ACTIONS(1434), - [anon_sym_thread_local] = ACTIONS(1434), - [anon_sym___thread] = ACTIONS(1434), - [anon_sym_const] = ACTIONS(1434), - [anon_sym_constexpr] = ACTIONS(1434), - [anon_sym_volatile] = ACTIONS(1434), - [anon_sym_restrict] = ACTIONS(1434), - [anon_sym___restrict__] = ACTIONS(1434), - [anon_sym__Atomic] = ACTIONS(1434), - [anon_sym__Noreturn] = ACTIONS(1434), - [anon_sym_noreturn] = ACTIONS(1434), - [sym_primitive_type] = ACTIONS(1434), - [anon_sym_enum] = ACTIONS(1434), - [anon_sym_struct] = ACTIONS(1434), - [anon_sym_union] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_switch] = ACTIONS(1434), - [anon_sym_case] = ACTIONS(1434), - [anon_sym_default] = ACTIONS(1434), - [anon_sym_while] = ACTIONS(1434), - [anon_sym_do] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1434), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_goto] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1436), - [anon_sym_PLUS_PLUS] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1434), - [anon_sym_offsetof] = ACTIONS(1434), - [anon_sym__Generic] = ACTIONS(1434), - [anon_sym_asm] = ACTIONS(1434), - [anon_sym___asm__] = ACTIONS(1434), - [sym_number_literal] = ACTIONS(1436), - [anon_sym_L_SQUOTE] = ACTIONS(1436), - [anon_sym_u_SQUOTE] = ACTIONS(1436), - [anon_sym_U_SQUOTE] = ACTIONS(1436), - [anon_sym_u8_SQUOTE] = ACTIONS(1436), - [anon_sym_SQUOTE] = ACTIONS(1436), - [anon_sym_L_DQUOTE] = ACTIONS(1436), - [anon_sym_u_DQUOTE] = ACTIONS(1436), - [anon_sym_U_DQUOTE] = ACTIONS(1436), - [anon_sym_u8_DQUOTE] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1436), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [anon_sym_NULL] = ACTIONS(1434), - [anon_sym_nullptr] = ACTIONS(1434), + [sym__expression] = STATE(917), + [sym__expression_not_binary] = STATE(904), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(904), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(904), + [sym_call_expression] = STATE(904), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(904), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(904), + [sym_initializer_list] = STATE(914), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_identifier] = ACTIONS(1484), + [anon_sym_COMMA] = ACTIONS(1486), + [anon_sym_RPAREN] = ACTIONS(1486), + [anon_sym_LPAREN2] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1490), + [anon_sym_PLUS] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1494), + [anon_sym_SLASH] = ACTIONS(1496), + [anon_sym_PERCENT] = ACTIONS(1496), + [anon_sym_PIPE_PIPE] = ACTIONS(1486), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1496), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1494), + [anon_sym_EQ_EQ] = ACTIONS(1486), + [anon_sym_BANG_EQ] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1496), + [anon_sym_GT_EQ] = ACTIONS(1486), + [anon_sym_LT_EQ] = ACTIONS(1486), + [anon_sym_LT] = ACTIONS(1496), + [anon_sym_LT_LT] = ACTIONS(1496), + [anon_sym_GT_GT] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym___attribute__] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_RBRACE] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1486), + [anon_sym_EQ] = ACTIONS(1496), + [anon_sym_COLON] = ACTIONS(1486), + [anon_sym_QMARK] = ACTIONS(1486), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1500), + [anon_sym_PLUS_PLUS] = ACTIONS(1500), + [anon_sym_sizeof] = ACTIONS(1502), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [anon_sym_DOT] = ACTIONS(1496), + [anon_sym_DASH_GT] = ACTIONS(1486), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, [155] = { - [sym_identifier] = ACTIONS(1438), - [aux_sym_preproc_include_token1] = ACTIONS(1438), - [aux_sym_preproc_def_token1] = ACTIONS(1438), - [aux_sym_preproc_if_token1] = ACTIONS(1438), - [aux_sym_preproc_if_token2] = ACTIONS(1438), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), - [aux_sym_preproc_else_token1] = ACTIONS(1438), - [aux_sym_preproc_elif_token1] = ACTIONS(1438), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1438), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1438), - [sym_preproc_directive] = ACTIONS(1438), - [anon_sym_LPAREN2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1440), - [anon_sym_TILDE] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_typedef] = ACTIONS(1438), - [anon_sym_extern] = ACTIONS(1438), - [anon_sym___attribute__] = ACTIONS(1438), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1440), - [anon_sym___declspec] = ACTIONS(1438), - [anon_sym___cdecl] = ACTIONS(1438), - [anon_sym___clrcall] = ACTIONS(1438), - [anon_sym___stdcall] = ACTIONS(1438), - [anon_sym___fastcall] = ACTIONS(1438), - [anon_sym___thiscall] = ACTIONS(1438), - [anon_sym___vectorcall] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_signed] = ACTIONS(1438), - [anon_sym_unsigned] = ACTIONS(1438), - [anon_sym_long] = ACTIONS(1438), - [anon_sym_short] = ACTIONS(1438), - [anon_sym_static] = ACTIONS(1438), - [anon_sym_auto] = ACTIONS(1438), - [anon_sym_register] = ACTIONS(1438), - [anon_sym_inline] = ACTIONS(1438), - [anon_sym_thread_local] = ACTIONS(1438), - [anon_sym___thread] = ACTIONS(1438), - [anon_sym_const] = ACTIONS(1438), - [anon_sym_constexpr] = ACTIONS(1438), - [anon_sym_volatile] = ACTIONS(1438), - [anon_sym_restrict] = ACTIONS(1438), - [anon_sym___restrict__] = ACTIONS(1438), - [anon_sym__Atomic] = ACTIONS(1438), - [anon_sym__Noreturn] = ACTIONS(1438), - [anon_sym_noreturn] = ACTIONS(1438), - [sym_primitive_type] = ACTIONS(1438), - [anon_sym_enum] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1438), - [anon_sym_union] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1438), - [anon_sym_switch] = ACTIONS(1438), - [anon_sym_case] = ACTIONS(1438), - [anon_sym_default] = ACTIONS(1438), - [anon_sym_while] = ACTIONS(1438), - [anon_sym_do] = ACTIONS(1438), - [anon_sym_for] = ACTIONS(1438), - [anon_sym_return] = ACTIONS(1438), - [anon_sym_break] = ACTIONS(1438), - [anon_sym_continue] = ACTIONS(1438), - [anon_sym_goto] = ACTIONS(1438), - [anon_sym_DASH_DASH] = ACTIONS(1440), - [anon_sym_PLUS_PLUS] = ACTIONS(1440), - [anon_sym_sizeof] = ACTIONS(1438), - [anon_sym_offsetof] = ACTIONS(1438), - [anon_sym__Generic] = ACTIONS(1438), - [anon_sym_asm] = ACTIONS(1438), - [anon_sym___asm__] = ACTIONS(1438), - [sym_number_literal] = ACTIONS(1440), - [anon_sym_L_SQUOTE] = ACTIONS(1440), - [anon_sym_u_SQUOTE] = ACTIONS(1440), - [anon_sym_U_SQUOTE] = ACTIONS(1440), - [anon_sym_u8_SQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1440), - [anon_sym_L_DQUOTE] = ACTIONS(1440), - [anon_sym_u_DQUOTE] = ACTIONS(1440), - [anon_sym_U_DQUOTE] = ACTIONS(1440), - [anon_sym_u8_DQUOTE] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1440), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [anon_sym_NULL] = ACTIONS(1438), - [anon_sym_nullptr] = ACTIONS(1438), + [sym_else_clause] = STATE(197), + [sym_identifier] = ACTIONS(1234), + [aux_sym_preproc_include_token1] = ACTIONS(1234), + [aux_sym_preproc_def_token1] = ACTIONS(1234), + [aux_sym_preproc_if_token1] = ACTIONS(1234), + [aux_sym_preproc_if_token2] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), + [aux_sym_preproc_else_token1] = ACTIONS(1234), + [aux_sym_preproc_elif_token1] = ACTIONS(1234), + [sym_preproc_directive] = ACTIONS(1234), + [anon_sym_LPAREN2] = ACTIONS(1236), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(1236), + [anon_sym_SEMI] = ACTIONS(1236), + [anon_sym___extension__] = ACTIONS(1234), + [anon_sym_typedef] = ACTIONS(1234), + [anon_sym_extern] = ACTIONS(1234), + [anon_sym___attribute__] = ACTIONS(1234), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1236), + [anon_sym___declspec] = ACTIONS(1234), + [anon_sym___cdecl] = ACTIONS(1234), + [anon_sym___clrcall] = ACTIONS(1234), + [anon_sym___stdcall] = ACTIONS(1234), + [anon_sym___fastcall] = ACTIONS(1234), + [anon_sym___thiscall] = ACTIONS(1234), + [anon_sym___vectorcall] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(1236), + [anon_sym_signed] = ACTIONS(1234), + [anon_sym_unsigned] = ACTIONS(1234), + [anon_sym_long] = ACTIONS(1234), + [anon_sym_short] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_auto] = ACTIONS(1234), + [anon_sym_register] = ACTIONS(1234), + [anon_sym_inline] = ACTIONS(1234), + [anon_sym___inline] = ACTIONS(1234), + [anon_sym___inline__] = ACTIONS(1234), + [anon_sym___forceinline] = ACTIONS(1234), + [anon_sym_thread_local] = ACTIONS(1234), + [anon_sym___thread] = ACTIONS(1234), + [anon_sym_const] = ACTIONS(1234), + [anon_sym_constexpr] = ACTIONS(1234), + [anon_sym_volatile] = ACTIONS(1234), + [anon_sym_restrict] = ACTIONS(1234), + [anon_sym___restrict__] = ACTIONS(1234), + [anon_sym__Atomic] = ACTIONS(1234), + [anon_sym__Noreturn] = ACTIONS(1234), + [anon_sym_noreturn] = ACTIONS(1234), + [sym_primitive_type] = ACTIONS(1234), + [anon_sym_enum] = ACTIONS(1234), + [anon_sym_struct] = ACTIONS(1234), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_if] = ACTIONS(1234), + [anon_sym_else] = ACTIONS(1504), + [anon_sym_switch] = ACTIONS(1234), + [anon_sym_case] = ACTIONS(1234), + [anon_sym_default] = ACTIONS(1234), + [anon_sym_while] = ACTIONS(1234), + [anon_sym_do] = ACTIONS(1234), + [anon_sym_for] = ACTIONS(1234), + [anon_sym_return] = ACTIONS(1234), + [anon_sym_break] = ACTIONS(1234), + [anon_sym_continue] = ACTIONS(1234), + [anon_sym_goto] = ACTIONS(1234), + [anon_sym_DASH_DASH] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_sizeof] = ACTIONS(1234), + [anon_sym___alignof__] = ACTIONS(1234), + [anon_sym___alignof] = ACTIONS(1234), + [anon_sym__alignof] = ACTIONS(1234), + [anon_sym_alignof] = ACTIONS(1234), + [anon_sym__Alignof] = ACTIONS(1234), + [anon_sym_offsetof] = ACTIONS(1234), + [anon_sym___builtin_va_arg] = ACTIONS(1234), + [anon_sym__Generic] = ACTIONS(1234), + [anon_sym_asm] = ACTIONS(1234), + [anon_sym___asm__] = ACTIONS(1234), + [sym_number_literal] = ACTIONS(1236), + [anon_sym_L_SQUOTE] = ACTIONS(1236), + [anon_sym_u_SQUOTE] = ACTIONS(1236), + [anon_sym_U_SQUOTE] = ACTIONS(1236), + [anon_sym_u8_SQUOTE] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1236), + [anon_sym_L_DQUOTE] = ACTIONS(1236), + [anon_sym_u_DQUOTE] = ACTIONS(1236), + [anon_sym_U_DQUOTE] = ACTIONS(1236), + [anon_sym_u8_DQUOTE] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(1236), + [sym_true] = ACTIONS(1234), + [sym_false] = ACTIONS(1234), + [anon_sym_NULL] = ACTIONS(1234), + [anon_sym_nullptr] = ACTIONS(1234), [sym_comment] = ACTIONS(3), }, [156] = { - [sym_identifier] = ACTIONS(1352), - [aux_sym_preproc_include_token1] = ACTIONS(1352), - [aux_sym_preproc_def_token1] = ACTIONS(1352), - [aux_sym_preproc_if_token1] = ACTIONS(1352), - [aux_sym_preproc_if_token2] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), - [aux_sym_preproc_else_token1] = ACTIONS(1352), - [aux_sym_preproc_elif_token1] = ACTIONS(1352), - [sym_preproc_directive] = ACTIONS(1352), - [anon_sym_LPAREN2] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1354), - [anon_sym_TILDE] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(1352), - [anon_sym_extern] = ACTIONS(1352), - [anon_sym___attribute__] = ACTIONS(1352), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), - [anon_sym___declspec] = ACTIONS(1352), - [anon_sym___cdecl] = ACTIONS(1352), - [anon_sym___clrcall] = ACTIONS(1352), - [anon_sym___stdcall] = ACTIONS(1352), - [anon_sym___fastcall] = ACTIONS(1352), - [anon_sym___thiscall] = ACTIONS(1352), - [anon_sym___vectorcall] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_signed] = ACTIONS(1352), - [anon_sym_unsigned] = ACTIONS(1352), - [anon_sym_long] = ACTIONS(1352), - [anon_sym_short] = ACTIONS(1352), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_auto] = ACTIONS(1352), - [anon_sym_register] = ACTIONS(1352), - [anon_sym_inline] = ACTIONS(1352), - [anon_sym_thread_local] = ACTIONS(1352), - [anon_sym___thread] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1352), - [anon_sym_constexpr] = ACTIONS(1352), - [anon_sym_volatile] = ACTIONS(1352), - [anon_sym_restrict] = ACTIONS(1352), - [anon_sym___restrict__] = ACTIONS(1352), - [anon_sym__Atomic] = ACTIONS(1352), - [anon_sym__Noreturn] = ACTIONS(1352), - [anon_sym_noreturn] = ACTIONS(1352), - [sym_primitive_type] = ACTIONS(1352), - [anon_sym_enum] = ACTIONS(1352), - [anon_sym_struct] = ACTIONS(1352), - [anon_sym_union] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1352), - [anon_sym_else] = ACTIONS(1352), - [anon_sym_switch] = ACTIONS(1352), - [anon_sym_case] = ACTIONS(1352), - [anon_sym_default] = ACTIONS(1352), - [anon_sym_while] = ACTIONS(1352), - [anon_sym_do] = ACTIONS(1352), - [anon_sym_for] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1352), - [anon_sym_break] = ACTIONS(1352), - [anon_sym_continue] = ACTIONS(1352), - [anon_sym_goto] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_sizeof] = ACTIONS(1352), - [anon_sym_offsetof] = ACTIONS(1352), - [anon_sym__Generic] = ACTIONS(1352), - [anon_sym_asm] = ACTIONS(1352), - [anon_sym___asm__] = ACTIONS(1352), - [sym_number_literal] = ACTIONS(1354), - [anon_sym_L_SQUOTE] = ACTIONS(1354), - [anon_sym_u_SQUOTE] = ACTIONS(1354), - [anon_sym_U_SQUOTE] = ACTIONS(1354), - [anon_sym_u8_SQUOTE] = ACTIONS(1354), - [anon_sym_SQUOTE] = ACTIONS(1354), - [anon_sym_L_DQUOTE] = ACTIONS(1354), - [anon_sym_u_DQUOTE] = ACTIONS(1354), - [anon_sym_U_DQUOTE] = ACTIONS(1354), - [anon_sym_u8_DQUOTE] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym_true] = ACTIONS(1352), - [sym_false] = ACTIONS(1352), - [anon_sym_NULL] = ACTIONS(1352), - [anon_sym_nullptr] = ACTIONS(1352), + [sym_identifier] = ACTIONS(1506), + [aux_sym_preproc_include_token1] = ACTIONS(1506), + [aux_sym_preproc_def_token1] = ACTIONS(1506), + [aux_sym_preproc_if_token1] = ACTIONS(1506), + [aux_sym_preproc_if_token2] = ACTIONS(1506), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1506), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1506), + [aux_sym_preproc_else_token1] = ACTIONS(1506), + [aux_sym_preproc_elif_token1] = ACTIONS(1506), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1506), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1506), + [sym_preproc_directive] = ACTIONS(1506), + [anon_sym_LPAREN2] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_STAR] = ACTIONS(1508), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym___extension__] = ACTIONS(1506), + [anon_sym_typedef] = ACTIONS(1506), + [anon_sym_extern] = ACTIONS(1506), + [anon_sym___attribute__] = ACTIONS(1506), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1508), + [anon_sym___declspec] = ACTIONS(1506), + [anon_sym___cdecl] = ACTIONS(1506), + [anon_sym___clrcall] = ACTIONS(1506), + [anon_sym___stdcall] = ACTIONS(1506), + [anon_sym___fastcall] = ACTIONS(1506), + [anon_sym___thiscall] = ACTIONS(1506), + [anon_sym___vectorcall] = ACTIONS(1506), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_signed] = ACTIONS(1506), + [anon_sym_unsigned] = ACTIONS(1506), + [anon_sym_long] = ACTIONS(1506), + [anon_sym_short] = ACTIONS(1506), + [anon_sym_static] = ACTIONS(1506), + [anon_sym_auto] = ACTIONS(1506), + [anon_sym_register] = ACTIONS(1506), + [anon_sym_inline] = ACTIONS(1506), + [anon_sym___inline] = ACTIONS(1506), + [anon_sym___inline__] = ACTIONS(1506), + [anon_sym___forceinline] = ACTIONS(1506), + [anon_sym_thread_local] = ACTIONS(1506), + [anon_sym___thread] = ACTIONS(1506), + [anon_sym_const] = ACTIONS(1506), + [anon_sym_constexpr] = ACTIONS(1506), + [anon_sym_volatile] = ACTIONS(1506), + [anon_sym_restrict] = ACTIONS(1506), + [anon_sym___restrict__] = ACTIONS(1506), + [anon_sym__Atomic] = ACTIONS(1506), + [anon_sym__Noreturn] = ACTIONS(1506), + [anon_sym_noreturn] = ACTIONS(1506), + [sym_primitive_type] = ACTIONS(1506), + [anon_sym_enum] = ACTIONS(1506), + [anon_sym_struct] = ACTIONS(1506), + [anon_sym_union] = ACTIONS(1506), + [anon_sym_if] = ACTIONS(1506), + [anon_sym_switch] = ACTIONS(1506), + [anon_sym_case] = ACTIONS(1506), + [anon_sym_default] = ACTIONS(1506), + [anon_sym_while] = ACTIONS(1506), + [anon_sym_do] = ACTIONS(1506), + [anon_sym_for] = ACTIONS(1506), + [anon_sym_return] = ACTIONS(1506), + [anon_sym_break] = ACTIONS(1506), + [anon_sym_continue] = ACTIONS(1506), + [anon_sym_goto] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_sizeof] = ACTIONS(1506), + [anon_sym___alignof__] = ACTIONS(1506), + [anon_sym___alignof] = ACTIONS(1506), + [anon_sym__alignof] = ACTIONS(1506), + [anon_sym_alignof] = ACTIONS(1506), + [anon_sym__Alignof] = ACTIONS(1506), + [anon_sym_offsetof] = ACTIONS(1506), + [anon_sym___builtin_va_arg] = ACTIONS(1506), + [anon_sym__Generic] = ACTIONS(1506), + [anon_sym_asm] = ACTIONS(1506), + [anon_sym___asm__] = ACTIONS(1506), + [sym_number_literal] = ACTIONS(1508), + [anon_sym_L_SQUOTE] = ACTIONS(1508), + [anon_sym_u_SQUOTE] = ACTIONS(1508), + [anon_sym_U_SQUOTE] = ACTIONS(1508), + [anon_sym_u8_SQUOTE] = ACTIONS(1508), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_L_DQUOTE] = ACTIONS(1508), + [anon_sym_u_DQUOTE] = ACTIONS(1508), + [anon_sym_U_DQUOTE] = ACTIONS(1508), + [anon_sym_u8_DQUOTE] = ACTIONS(1508), + [anon_sym_DQUOTE] = ACTIONS(1508), + [sym_true] = ACTIONS(1506), + [sym_false] = ACTIONS(1506), + [anon_sym_NULL] = ACTIONS(1506), + [anon_sym_nullptr] = ACTIONS(1506), [sym_comment] = ACTIONS(3), }, [157] = { - [sym_identifier] = ACTIONS(1276), - [aux_sym_preproc_include_token1] = ACTIONS(1276), - [aux_sym_preproc_def_token1] = ACTIONS(1276), - [aux_sym_preproc_if_token1] = ACTIONS(1276), - [aux_sym_preproc_if_token2] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), - [aux_sym_preproc_else_token1] = ACTIONS(1276), - [aux_sym_preproc_elif_token1] = ACTIONS(1276), - [sym_preproc_directive] = ACTIONS(1276), - [anon_sym_LPAREN2] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1278), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym_typedef] = ACTIONS(1276), - [anon_sym_extern] = ACTIONS(1276), - [anon_sym___attribute__] = ACTIONS(1276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1278), - [anon_sym___declspec] = ACTIONS(1276), - [anon_sym___cdecl] = ACTIONS(1276), - [anon_sym___clrcall] = ACTIONS(1276), - [anon_sym___stdcall] = ACTIONS(1276), - [anon_sym___fastcall] = ACTIONS(1276), - [anon_sym___thiscall] = ACTIONS(1276), - [anon_sym___vectorcall] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_signed] = ACTIONS(1276), - [anon_sym_unsigned] = ACTIONS(1276), - [anon_sym_long] = ACTIONS(1276), - [anon_sym_short] = ACTIONS(1276), - [anon_sym_static] = ACTIONS(1276), - [anon_sym_auto] = ACTIONS(1276), - [anon_sym_register] = ACTIONS(1276), - [anon_sym_inline] = ACTIONS(1276), - [anon_sym_thread_local] = ACTIONS(1276), - [anon_sym___thread] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1276), - [anon_sym_constexpr] = ACTIONS(1276), - [anon_sym_volatile] = ACTIONS(1276), - [anon_sym_restrict] = ACTIONS(1276), - [anon_sym___restrict__] = ACTIONS(1276), - [anon_sym__Atomic] = ACTIONS(1276), - [anon_sym__Noreturn] = ACTIONS(1276), - [anon_sym_noreturn] = ACTIONS(1276), - [sym_primitive_type] = ACTIONS(1276), - [anon_sym_enum] = ACTIONS(1276), - [anon_sym_struct] = ACTIONS(1276), - [anon_sym_union] = ACTIONS(1276), - [anon_sym_if] = ACTIONS(1276), - [anon_sym_else] = ACTIONS(1276), - [anon_sym_switch] = ACTIONS(1276), - [anon_sym_case] = ACTIONS(1276), - [anon_sym_default] = ACTIONS(1276), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(1276), - [anon_sym_for] = ACTIONS(1276), - [anon_sym_return] = ACTIONS(1276), - [anon_sym_break] = ACTIONS(1276), - [anon_sym_continue] = ACTIONS(1276), - [anon_sym_goto] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1278), - [anon_sym_PLUS_PLUS] = ACTIONS(1278), - [anon_sym_sizeof] = ACTIONS(1276), - [anon_sym_offsetof] = ACTIONS(1276), - [anon_sym__Generic] = ACTIONS(1276), - [anon_sym_asm] = ACTIONS(1276), - [anon_sym___asm__] = ACTIONS(1276), - [sym_number_literal] = ACTIONS(1278), - [anon_sym_L_SQUOTE] = ACTIONS(1278), - [anon_sym_u_SQUOTE] = ACTIONS(1278), - [anon_sym_U_SQUOTE] = ACTIONS(1278), - [anon_sym_u8_SQUOTE] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1278), - [anon_sym_L_DQUOTE] = ACTIONS(1278), - [anon_sym_u_DQUOTE] = ACTIONS(1278), - [anon_sym_U_DQUOTE] = ACTIONS(1278), - [anon_sym_u8_DQUOTE] = ACTIONS(1278), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym_true] = ACTIONS(1276), - [sym_false] = ACTIONS(1276), - [anon_sym_NULL] = ACTIONS(1276), - [anon_sym_nullptr] = ACTIONS(1276), + [sym_identifier] = ACTIONS(1510), + [aux_sym_preproc_include_token1] = ACTIONS(1510), + [aux_sym_preproc_def_token1] = ACTIONS(1510), + [aux_sym_preproc_if_token1] = ACTIONS(1510), + [aux_sym_preproc_if_token2] = ACTIONS(1510), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1510), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1510), + [aux_sym_preproc_else_token1] = ACTIONS(1510), + [aux_sym_preproc_elif_token1] = ACTIONS(1510), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1510), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1510), + [sym_preproc_directive] = ACTIONS(1510), + [anon_sym_LPAREN2] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1512), + [anon_sym_TILDE] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1510), + [anon_sym_PLUS] = ACTIONS(1510), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_AMP] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym___extension__] = ACTIONS(1510), + [anon_sym_typedef] = ACTIONS(1510), + [anon_sym_extern] = ACTIONS(1510), + [anon_sym___attribute__] = ACTIONS(1510), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1512), + [anon_sym___declspec] = ACTIONS(1510), + [anon_sym___cdecl] = ACTIONS(1510), + [anon_sym___clrcall] = ACTIONS(1510), + [anon_sym___stdcall] = ACTIONS(1510), + [anon_sym___fastcall] = ACTIONS(1510), + [anon_sym___thiscall] = ACTIONS(1510), + [anon_sym___vectorcall] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_signed] = ACTIONS(1510), + [anon_sym_unsigned] = ACTIONS(1510), + [anon_sym_long] = ACTIONS(1510), + [anon_sym_short] = ACTIONS(1510), + [anon_sym_static] = ACTIONS(1510), + [anon_sym_auto] = ACTIONS(1510), + [anon_sym_register] = ACTIONS(1510), + [anon_sym_inline] = ACTIONS(1510), + [anon_sym___inline] = ACTIONS(1510), + [anon_sym___inline__] = ACTIONS(1510), + [anon_sym___forceinline] = ACTIONS(1510), + [anon_sym_thread_local] = ACTIONS(1510), + [anon_sym___thread] = ACTIONS(1510), + [anon_sym_const] = ACTIONS(1510), + [anon_sym_constexpr] = ACTIONS(1510), + [anon_sym_volatile] = ACTIONS(1510), + [anon_sym_restrict] = ACTIONS(1510), + [anon_sym___restrict__] = ACTIONS(1510), + [anon_sym__Atomic] = ACTIONS(1510), + [anon_sym__Noreturn] = ACTIONS(1510), + [anon_sym_noreturn] = ACTIONS(1510), + [sym_primitive_type] = ACTIONS(1510), + [anon_sym_enum] = ACTIONS(1510), + [anon_sym_struct] = ACTIONS(1510), + [anon_sym_union] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_switch] = ACTIONS(1510), + [anon_sym_case] = ACTIONS(1510), + [anon_sym_default] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_do] = ACTIONS(1510), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_goto] = ACTIONS(1510), + [anon_sym_DASH_DASH] = ACTIONS(1512), + [anon_sym_PLUS_PLUS] = ACTIONS(1512), + [anon_sym_sizeof] = ACTIONS(1510), + [anon_sym___alignof__] = ACTIONS(1510), + [anon_sym___alignof] = ACTIONS(1510), + [anon_sym__alignof] = ACTIONS(1510), + [anon_sym_alignof] = ACTIONS(1510), + [anon_sym__Alignof] = ACTIONS(1510), + [anon_sym_offsetof] = ACTIONS(1510), + [anon_sym___builtin_va_arg] = ACTIONS(1510), + [anon_sym__Generic] = ACTIONS(1510), + [anon_sym_asm] = ACTIONS(1510), + [anon_sym___asm__] = ACTIONS(1510), + [sym_number_literal] = ACTIONS(1512), + [anon_sym_L_SQUOTE] = ACTIONS(1512), + [anon_sym_u_SQUOTE] = ACTIONS(1512), + [anon_sym_U_SQUOTE] = ACTIONS(1512), + [anon_sym_u8_SQUOTE] = ACTIONS(1512), + [anon_sym_SQUOTE] = ACTIONS(1512), + [anon_sym_L_DQUOTE] = ACTIONS(1512), + [anon_sym_u_DQUOTE] = ACTIONS(1512), + [anon_sym_U_DQUOTE] = ACTIONS(1512), + [anon_sym_u8_DQUOTE] = ACTIONS(1512), + [anon_sym_DQUOTE] = ACTIONS(1512), + [sym_true] = ACTIONS(1510), + [sym_false] = ACTIONS(1510), + [anon_sym_NULL] = ACTIONS(1510), + [anon_sym_nullptr] = ACTIONS(1510), [sym_comment] = ACTIONS(3), }, [158] = { - [sym_identifier] = ACTIONS(1340), - [aux_sym_preproc_include_token1] = ACTIONS(1340), - [aux_sym_preproc_def_token1] = ACTIONS(1340), - [aux_sym_preproc_if_token1] = ACTIONS(1340), - [aux_sym_preproc_if_token2] = ACTIONS(1340), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), - [aux_sym_preproc_else_token1] = ACTIONS(1340), - [aux_sym_preproc_elif_token1] = ACTIONS(1340), - [sym_preproc_directive] = ACTIONS(1340), - [anon_sym_LPAREN2] = ACTIONS(1342), - [anon_sym_BANG] = ACTIONS(1342), - [anon_sym_TILDE] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_typedef] = ACTIONS(1340), - [anon_sym_extern] = ACTIONS(1340), - [anon_sym___attribute__] = ACTIONS(1340), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), - [anon_sym___declspec] = ACTIONS(1340), - [anon_sym___cdecl] = ACTIONS(1340), - [anon_sym___clrcall] = ACTIONS(1340), - [anon_sym___stdcall] = ACTIONS(1340), - [anon_sym___fastcall] = ACTIONS(1340), - [anon_sym___thiscall] = ACTIONS(1340), - [anon_sym___vectorcall] = ACTIONS(1340), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_signed] = ACTIONS(1340), - [anon_sym_unsigned] = ACTIONS(1340), - [anon_sym_long] = ACTIONS(1340), - [anon_sym_short] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1340), - [anon_sym_auto] = ACTIONS(1340), - [anon_sym_register] = ACTIONS(1340), - [anon_sym_inline] = ACTIONS(1340), - [anon_sym_thread_local] = ACTIONS(1340), - [anon_sym___thread] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_constexpr] = ACTIONS(1340), - [anon_sym_volatile] = ACTIONS(1340), - [anon_sym_restrict] = ACTIONS(1340), - [anon_sym___restrict__] = ACTIONS(1340), - [anon_sym__Atomic] = ACTIONS(1340), - [anon_sym__Noreturn] = ACTIONS(1340), - [anon_sym_noreturn] = ACTIONS(1340), - [sym_primitive_type] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_struct] = ACTIONS(1340), - [anon_sym_union] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_else] = ACTIONS(1340), - [anon_sym_switch] = ACTIONS(1340), - [anon_sym_case] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_goto] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_sizeof] = ACTIONS(1340), - [anon_sym_offsetof] = ACTIONS(1340), - [anon_sym__Generic] = ACTIONS(1340), - [anon_sym_asm] = ACTIONS(1340), - [anon_sym___asm__] = ACTIONS(1340), - [sym_number_literal] = ACTIONS(1342), - [anon_sym_L_SQUOTE] = ACTIONS(1342), - [anon_sym_u_SQUOTE] = ACTIONS(1342), - [anon_sym_U_SQUOTE] = ACTIONS(1342), - [anon_sym_u8_SQUOTE] = ACTIONS(1342), - [anon_sym_SQUOTE] = ACTIONS(1342), - [anon_sym_L_DQUOTE] = ACTIONS(1342), - [anon_sym_u_DQUOTE] = ACTIONS(1342), - [anon_sym_U_DQUOTE] = ACTIONS(1342), - [anon_sym_u8_DQUOTE] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym_true] = ACTIONS(1340), - [sym_false] = ACTIONS(1340), - [anon_sym_NULL] = ACTIONS(1340), - [anon_sym_nullptr] = ACTIONS(1340), + [sym_identifier] = ACTIONS(1514), + [aux_sym_preproc_include_token1] = ACTIONS(1514), + [aux_sym_preproc_def_token1] = ACTIONS(1514), + [aux_sym_preproc_if_token1] = ACTIONS(1514), + [aux_sym_preproc_if_token2] = ACTIONS(1514), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1514), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1514), + [aux_sym_preproc_else_token1] = ACTIONS(1514), + [aux_sym_preproc_elif_token1] = ACTIONS(1514), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1514), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1514), + [sym_preproc_directive] = ACTIONS(1514), + [anon_sym_LPAREN2] = ACTIONS(1516), + [anon_sym_BANG] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1516), + [anon_sym_AMP] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym___extension__] = ACTIONS(1514), + [anon_sym_typedef] = ACTIONS(1514), + [anon_sym_extern] = ACTIONS(1514), + [anon_sym___attribute__] = ACTIONS(1514), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1516), + [anon_sym___declspec] = ACTIONS(1514), + [anon_sym___cdecl] = ACTIONS(1514), + [anon_sym___clrcall] = ACTIONS(1514), + [anon_sym___stdcall] = ACTIONS(1514), + [anon_sym___fastcall] = ACTIONS(1514), + [anon_sym___thiscall] = ACTIONS(1514), + [anon_sym___vectorcall] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_signed] = ACTIONS(1514), + [anon_sym_unsigned] = ACTIONS(1514), + [anon_sym_long] = ACTIONS(1514), + [anon_sym_short] = ACTIONS(1514), + [anon_sym_static] = ACTIONS(1514), + [anon_sym_auto] = ACTIONS(1514), + [anon_sym_register] = ACTIONS(1514), + [anon_sym_inline] = ACTIONS(1514), + [anon_sym___inline] = ACTIONS(1514), + [anon_sym___inline__] = ACTIONS(1514), + [anon_sym___forceinline] = ACTIONS(1514), + [anon_sym_thread_local] = ACTIONS(1514), + [anon_sym___thread] = ACTIONS(1514), + [anon_sym_const] = ACTIONS(1514), + [anon_sym_constexpr] = ACTIONS(1514), + [anon_sym_volatile] = ACTIONS(1514), + [anon_sym_restrict] = ACTIONS(1514), + [anon_sym___restrict__] = ACTIONS(1514), + [anon_sym__Atomic] = ACTIONS(1514), + [anon_sym__Noreturn] = ACTIONS(1514), + [anon_sym_noreturn] = ACTIONS(1514), + [sym_primitive_type] = ACTIONS(1514), + [anon_sym_enum] = ACTIONS(1514), + [anon_sym_struct] = ACTIONS(1514), + [anon_sym_union] = ACTIONS(1514), + [anon_sym_if] = ACTIONS(1514), + [anon_sym_switch] = ACTIONS(1514), + [anon_sym_case] = ACTIONS(1514), + [anon_sym_default] = ACTIONS(1514), + [anon_sym_while] = ACTIONS(1514), + [anon_sym_do] = ACTIONS(1514), + [anon_sym_for] = ACTIONS(1514), + [anon_sym_return] = ACTIONS(1514), + [anon_sym_break] = ACTIONS(1514), + [anon_sym_continue] = ACTIONS(1514), + [anon_sym_goto] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_sizeof] = ACTIONS(1514), + [anon_sym___alignof__] = ACTIONS(1514), + [anon_sym___alignof] = ACTIONS(1514), + [anon_sym__alignof] = ACTIONS(1514), + [anon_sym_alignof] = ACTIONS(1514), + [anon_sym__Alignof] = ACTIONS(1514), + [anon_sym_offsetof] = ACTIONS(1514), + [anon_sym___builtin_va_arg] = ACTIONS(1514), + [anon_sym__Generic] = ACTIONS(1514), + [anon_sym_asm] = ACTIONS(1514), + [anon_sym___asm__] = ACTIONS(1514), + [sym_number_literal] = ACTIONS(1516), + [anon_sym_L_SQUOTE] = ACTIONS(1516), + [anon_sym_u_SQUOTE] = ACTIONS(1516), + [anon_sym_U_SQUOTE] = ACTIONS(1516), + [anon_sym_u8_SQUOTE] = ACTIONS(1516), + [anon_sym_SQUOTE] = ACTIONS(1516), + [anon_sym_L_DQUOTE] = ACTIONS(1516), + [anon_sym_u_DQUOTE] = ACTIONS(1516), + [anon_sym_U_DQUOTE] = ACTIONS(1516), + [anon_sym_u8_DQUOTE] = ACTIONS(1516), + [anon_sym_DQUOTE] = ACTIONS(1516), + [sym_true] = ACTIONS(1514), + [sym_false] = ACTIONS(1514), + [anon_sym_NULL] = ACTIONS(1514), + [anon_sym_nullptr] = ACTIONS(1514), [sym_comment] = ACTIONS(3), }, [159] = { - [sym_identifier] = ACTIONS(1204), - [aux_sym_preproc_include_token1] = ACTIONS(1204), - [aux_sym_preproc_def_token1] = ACTIONS(1204), - [aux_sym_preproc_if_token1] = ACTIONS(1204), - [aux_sym_preproc_if_token2] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1204), - [aux_sym_preproc_else_token1] = ACTIONS(1204), - [aux_sym_preproc_elif_token1] = ACTIONS(1204), - [sym_preproc_directive] = ACTIONS(1204), - [anon_sym_LPAREN2] = ACTIONS(1206), - [anon_sym_BANG] = ACTIONS(1206), - [anon_sym_TILDE] = ACTIONS(1206), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_STAR] = ACTIONS(1206), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_SEMI] = ACTIONS(1206), - [anon_sym_typedef] = ACTIONS(1204), - [anon_sym_extern] = ACTIONS(1204), - [anon_sym___attribute__] = ACTIONS(1204), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1206), - [anon_sym___declspec] = ACTIONS(1204), - [anon_sym___cdecl] = ACTIONS(1204), - [anon_sym___clrcall] = ACTIONS(1204), - [anon_sym___stdcall] = ACTIONS(1204), - [anon_sym___fastcall] = ACTIONS(1204), - [anon_sym___thiscall] = ACTIONS(1204), - [anon_sym___vectorcall] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_signed] = ACTIONS(1204), - [anon_sym_unsigned] = ACTIONS(1204), - [anon_sym_long] = ACTIONS(1204), - [anon_sym_short] = ACTIONS(1204), - [anon_sym_static] = ACTIONS(1204), - [anon_sym_auto] = ACTIONS(1204), - [anon_sym_register] = ACTIONS(1204), - [anon_sym_inline] = ACTIONS(1204), - [anon_sym_thread_local] = ACTIONS(1204), - [anon_sym___thread] = ACTIONS(1204), - [anon_sym_const] = ACTIONS(1204), - [anon_sym_constexpr] = ACTIONS(1204), - [anon_sym_volatile] = ACTIONS(1204), - [anon_sym_restrict] = ACTIONS(1204), - [anon_sym___restrict__] = ACTIONS(1204), - [anon_sym__Atomic] = ACTIONS(1204), - [anon_sym__Noreturn] = ACTIONS(1204), - [anon_sym_noreturn] = ACTIONS(1204), - [sym_primitive_type] = ACTIONS(1204), - [anon_sym_enum] = ACTIONS(1204), - [anon_sym_struct] = ACTIONS(1204), - [anon_sym_union] = ACTIONS(1204), - [anon_sym_if] = ACTIONS(1204), - [anon_sym_else] = ACTIONS(1204), - [anon_sym_switch] = ACTIONS(1204), - [anon_sym_case] = ACTIONS(1204), - [anon_sym_default] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1204), - [anon_sym_do] = ACTIONS(1204), - [anon_sym_for] = ACTIONS(1204), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_break] = ACTIONS(1204), - [anon_sym_continue] = ACTIONS(1204), - [anon_sym_goto] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_sizeof] = ACTIONS(1204), - [anon_sym_offsetof] = ACTIONS(1204), - [anon_sym__Generic] = ACTIONS(1204), - [anon_sym_asm] = ACTIONS(1204), - [anon_sym___asm__] = ACTIONS(1204), - [sym_number_literal] = ACTIONS(1206), - [anon_sym_L_SQUOTE] = ACTIONS(1206), - [anon_sym_u_SQUOTE] = ACTIONS(1206), - [anon_sym_U_SQUOTE] = ACTIONS(1206), - [anon_sym_u8_SQUOTE] = ACTIONS(1206), - [anon_sym_SQUOTE] = ACTIONS(1206), - [anon_sym_L_DQUOTE] = ACTIONS(1206), - [anon_sym_u_DQUOTE] = ACTIONS(1206), - [anon_sym_U_DQUOTE] = ACTIONS(1206), - [anon_sym_u8_DQUOTE] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(1206), - [sym_true] = ACTIONS(1204), - [sym_false] = ACTIONS(1204), - [anon_sym_NULL] = ACTIONS(1204), - [anon_sym_nullptr] = ACTIONS(1204), + [sym_identifier] = ACTIONS(1518), + [aux_sym_preproc_include_token1] = ACTIONS(1518), + [aux_sym_preproc_def_token1] = ACTIONS(1518), + [aux_sym_preproc_if_token1] = ACTIONS(1518), + [aux_sym_preproc_if_token2] = ACTIONS(1518), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1518), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1518), + [aux_sym_preproc_else_token1] = ACTIONS(1518), + [aux_sym_preproc_elif_token1] = ACTIONS(1518), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1518), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1518), + [sym_preproc_directive] = ACTIONS(1518), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_BANG] = ACTIONS(1520), + [anon_sym_TILDE] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_PLUS] = ACTIONS(1518), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_SEMI] = ACTIONS(1520), + [anon_sym___extension__] = ACTIONS(1518), + [anon_sym_typedef] = ACTIONS(1518), + [anon_sym_extern] = ACTIONS(1518), + [anon_sym___attribute__] = ACTIONS(1518), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1520), + [anon_sym___declspec] = ACTIONS(1518), + [anon_sym___cdecl] = ACTIONS(1518), + [anon_sym___clrcall] = ACTIONS(1518), + [anon_sym___stdcall] = ACTIONS(1518), + [anon_sym___fastcall] = ACTIONS(1518), + [anon_sym___thiscall] = ACTIONS(1518), + [anon_sym___vectorcall] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_signed] = ACTIONS(1518), + [anon_sym_unsigned] = ACTIONS(1518), + [anon_sym_long] = ACTIONS(1518), + [anon_sym_short] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_auto] = ACTIONS(1518), + [anon_sym_register] = ACTIONS(1518), + [anon_sym_inline] = ACTIONS(1518), + [anon_sym___inline] = ACTIONS(1518), + [anon_sym___inline__] = ACTIONS(1518), + [anon_sym___forceinline] = ACTIONS(1518), + [anon_sym_thread_local] = ACTIONS(1518), + [anon_sym___thread] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1518), + [anon_sym_constexpr] = ACTIONS(1518), + [anon_sym_volatile] = ACTIONS(1518), + [anon_sym_restrict] = ACTIONS(1518), + [anon_sym___restrict__] = ACTIONS(1518), + [anon_sym__Atomic] = ACTIONS(1518), + [anon_sym__Noreturn] = ACTIONS(1518), + [anon_sym_noreturn] = ACTIONS(1518), + [sym_primitive_type] = ACTIONS(1518), + [anon_sym_enum] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1518), + [anon_sym_union] = ACTIONS(1518), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1518), + [anon_sym_case] = ACTIONS(1518), + [anon_sym_default] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(1518), + [anon_sym_do] = ACTIONS(1518), + [anon_sym_for] = ACTIONS(1518), + [anon_sym_return] = ACTIONS(1518), + [anon_sym_break] = ACTIONS(1518), + [anon_sym_continue] = ACTIONS(1518), + [anon_sym_goto] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1520), + [anon_sym_PLUS_PLUS] = ACTIONS(1520), + [anon_sym_sizeof] = ACTIONS(1518), + [anon_sym___alignof__] = ACTIONS(1518), + [anon_sym___alignof] = ACTIONS(1518), + [anon_sym__alignof] = ACTIONS(1518), + [anon_sym_alignof] = ACTIONS(1518), + [anon_sym__Alignof] = ACTIONS(1518), + [anon_sym_offsetof] = ACTIONS(1518), + [anon_sym___builtin_va_arg] = ACTIONS(1518), + [anon_sym__Generic] = ACTIONS(1518), + [anon_sym_asm] = ACTIONS(1518), + [anon_sym___asm__] = ACTIONS(1518), + [sym_number_literal] = ACTIONS(1520), + [anon_sym_L_SQUOTE] = ACTIONS(1520), + [anon_sym_u_SQUOTE] = ACTIONS(1520), + [anon_sym_U_SQUOTE] = ACTIONS(1520), + [anon_sym_u8_SQUOTE] = ACTIONS(1520), + [anon_sym_SQUOTE] = ACTIONS(1520), + [anon_sym_L_DQUOTE] = ACTIONS(1520), + [anon_sym_u_DQUOTE] = ACTIONS(1520), + [anon_sym_U_DQUOTE] = ACTIONS(1520), + [anon_sym_u8_DQUOTE] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1520), + [sym_true] = ACTIONS(1518), + [sym_false] = ACTIONS(1518), + [anon_sym_NULL] = ACTIONS(1518), + [anon_sym_nullptr] = ACTIONS(1518), [sym_comment] = ACTIONS(3), }, [160] = { - [sym_identifier] = ACTIONS(1348), - [aux_sym_preproc_include_token1] = ACTIONS(1348), - [aux_sym_preproc_def_token1] = ACTIONS(1348), - [aux_sym_preproc_if_token1] = ACTIONS(1348), - [aux_sym_preproc_if_token2] = ACTIONS(1348), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1348), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1348), - [aux_sym_preproc_else_token1] = ACTIONS(1348), - [aux_sym_preproc_elif_token1] = ACTIONS(1348), - [sym_preproc_directive] = ACTIONS(1348), - [anon_sym_LPAREN2] = ACTIONS(1350), - [anon_sym_BANG] = ACTIONS(1350), - [anon_sym_TILDE] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1348), - [anon_sym_PLUS] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym_typedef] = ACTIONS(1348), - [anon_sym_extern] = ACTIONS(1348), - [anon_sym___attribute__] = ACTIONS(1348), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), - [anon_sym___declspec] = ACTIONS(1348), - [anon_sym___cdecl] = ACTIONS(1348), - [anon_sym___clrcall] = ACTIONS(1348), - [anon_sym___stdcall] = ACTIONS(1348), - [anon_sym___fastcall] = ACTIONS(1348), - [anon_sym___thiscall] = ACTIONS(1348), - [anon_sym___vectorcall] = ACTIONS(1348), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_signed] = ACTIONS(1348), - [anon_sym_unsigned] = ACTIONS(1348), - [anon_sym_long] = ACTIONS(1348), - [anon_sym_short] = ACTIONS(1348), - [anon_sym_static] = ACTIONS(1348), - [anon_sym_auto] = ACTIONS(1348), - [anon_sym_register] = ACTIONS(1348), - [anon_sym_inline] = ACTIONS(1348), - [anon_sym_thread_local] = ACTIONS(1348), - [anon_sym___thread] = ACTIONS(1348), - [anon_sym_const] = ACTIONS(1348), - [anon_sym_constexpr] = ACTIONS(1348), - [anon_sym_volatile] = ACTIONS(1348), - [anon_sym_restrict] = ACTIONS(1348), - [anon_sym___restrict__] = ACTIONS(1348), - [anon_sym__Atomic] = ACTIONS(1348), - [anon_sym__Noreturn] = ACTIONS(1348), - [anon_sym_noreturn] = ACTIONS(1348), - [sym_primitive_type] = ACTIONS(1348), - [anon_sym_enum] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1348), - [anon_sym_union] = ACTIONS(1348), - [anon_sym_if] = ACTIONS(1348), - [anon_sym_else] = ACTIONS(1348), - [anon_sym_switch] = ACTIONS(1348), - [anon_sym_case] = ACTIONS(1348), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_while] = ACTIONS(1348), - [anon_sym_do] = ACTIONS(1348), - [anon_sym_for] = ACTIONS(1348), - [anon_sym_return] = ACTIONS(1348), - [anon_sym_break] = ACTIONS(1348), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1348), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_sizeof] = ACTIONS(1348), - [anon_sym_offsetof] = ACTIONS(1348), - [anon_sym__Generic] = ACTIONS(1348), - [anon_sym_asm] = ACTIONS(1348), - [anon_sym___asm__] = ACTIONS(1348), - [sym_number_literal] = ACTIONS(1350), - [anon_sym_L_SQUOTE] = ACTIONS(1350), - [anon_sym_u_SQUOTE] = ACTIONS(1350), - [anon_sym_U_SQUOTE] = ACTIONS(1350), - [anon_sym_u8_SQUOTE] = ACTIONS(1350), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_L_DQUOTE] = ACTIONS(1350), - [anon_sym_u_DQUOTE] = ACTIONS(1350), - [anon_sym_U_DQUOTE] = ACTIONS(1350), - [anon_sym_u8_DQUOTE] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym_true] = ACTIONS(1348), - [sym_false] = ACTIONS(1348), - [anon_sym_NULL] = ACTIONS(1348), - [anon_sym_nullptr] = ACTIONS(1348), + [sym_identifier] = ACTIONS(1522), + [aux_sym_preproc_include_token1] = ACTIONS(1522), + [aux_sym_preproc_def_token1] = ACTIONS(1522), + [aux_sym_preproc_if_token1] = ACTIONS(1522), + [aux_sym_preproc_if_token2] = ACTIONS(1522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1522), + [aux_sym_preproc_else_token1] = ACTIONS(1522), + [aux_sym_preproc_elif_token1] = ACTIONS(1522), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1522), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1522), + [sym_preproc_directive] = ACTIONS(1522), + [anon_sym_LPAREN2] = ACTIONS(1524), + [anon_sym_BANG] = ACTIONS(1524), + [anon_sym_TILDE] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1522), + [anon_sym_PLUS] = ACTIONS(1522), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(1522), + [anon_sym_typedef] = ACTIONS(1522), + [anon_sym_extern] = ACTIONS(1522), + [anon_sym___attribute__] = ACTIONS(1522), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1524), + [anon_sym___declspec] = ACTIONS(1522), + [anon_sym___cdecl] = ACTIONS(1522), + [anon_sym___clrcall] = ACTIONS(1522), + [anon_sym___stdcall] = ACTIONS(1522), + [anon_sym___fastcall] = ACTIONS(1522), + [anon_sym___thiscall] = ACTIONS(1522), + [anon_sym___vectorcall] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_signed] = ACTIONS(1522), + [anon_sym_unsigned] = ACTIONS(1522), + [anon_sym_long] = ACTIONS(1522), + [anon_sym_short] = ACTIONS(1522), + [anon_sym_static] = ACTIONS(1522), + [anon_sym_auto] = ACTIONS(1522), + [anon_sym_register] = ACTIONS(1522), + [anon_sym_inline] = ACTIONS(1522), + [anon_sym___inline] = ACTIONS(1522), + [anon_sym___inline__] = ACTIONS(1522), + [anon_sym___forceinline] = ACTIONS(1522), + [anon_sym_thread_local] = ACTIONS(1522), + [anon_sym___thread] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1522), + [anon_sym_constexpr] = ACTIONS(1522), + [anon_sym_volatile] = ACTIONS(1522), + [anon_sym_restrict] = ACTIONS(1522), + [anon_sym___restrict__] = ACTIONS(1522), + [anon_sym__Atomic] = ACTIONS(1522), + [anon_sym__Noreturn] = ACTIONS(1522), + [anon_sym_noreturn] = ACTIONS(1522), + [sym_primitive_type] = ACTIONS(1522), + [anon_sym_enum] = ACTIONS(1522), + [anon_sym_struct] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_if] = ACTIONS(1522), + [anon_sym_switch] = ACTIONS(1522), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_while] = ACTIONS(1522), + [anon_sym_do] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1522), + [anon_sym_return] = ACTIONS(1522), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_goto] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1524), + [anon_sym_PLUS_PLUS] = ACTIONS(1524), + [anon_sym_sizeof] = ACTIONS(1522), + [anon_sym___alignof__] = ACTIONS(1522), + [anon_sym___alignof] = ACTIONS(1522), + [anon_sym__alignof] = ACTIONS(1522), + [anon_sym_alignof] = ACTIONS(1522), + [anon_sym__Alignof] = ACTIONS(1522), + [anon_sym_offsetof] = ACTIONS(1522), + [anon_sym___builtin_va_arg] = ACTIONS(1522), + [anon_sym__Generic] = ACTIONS(1522), + [anon_sym_asm] = ACTIONS(1522), + [anon_sym___asm__] = ACTIONS(1522), + [sym_number_literal] = ACTIONS(1524), + [anon_sym_L_SQUOTE] = ACTIONS(1524), + [anon_sym_u_SQUOTE] = ACTIONS(1524), + [anon_sym_U_SQUOTE] = ACTIONS(1524), + [anon_sym_u8_SQUOTE] = ACTIONS(1524), + [anon_sym_SQUOTE] = ACTIONS(1524), + [anon_sym_L_DQUOTE] = ACTIONS(1524), + [anon_sym_u_DQUOTE] = ACTIONS(1524), + [anon_sym_U_DQUOTE] = ACTIONS(1524), + [anon_sym_u8_DQUOTE] = ACTIONS(1524), + [anon_sym_DQUOTE] = ACTIONS(1524), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [anon_sym_NULL] = ACTIONS(1522), + [anon_sym_nullptr] = ACTIONS(1522), [sym_comment] = ACTIONS(3), }, [161] = { - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_identifier] = ACTIONS(1320), - [aux_sym_preproc_include_token1] = ACTIONS(1320), - [aux_sym_preproc_def_token1] = ACTIONS(1320), - [anon_sym_COMMA] = ACTIONS(1322), - [anon_sym_RPAREN] = ACTIONS(1322), - [aux_sym_preproc_if_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), - [sym_preproc_directive] = ACTIONS(1320), - [anon_sym_LPAREN2] = ACTIONS(1322), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_TILDE] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_typedef] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym___attribute__] = ACTIONS(1320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), - [anon_sym___declspec] = ACTIONS(1320), - [anon_sym___cdecl] = ACTIONS(1320), - [anon_sym___clrcall] = ACTIONS(1320), - [anon_sym___stdcall] = ACTIONS(1320), - [anon_sym___fastcall] = ACTIONS(1320), - [anon_sym___thiscall] = ACTIONS(1320), - [anon_sym___vectorcall] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_signed] = ACTIONS(1320), - [anon_sym_unsigned] = ACTIONS(1320), - [anon_sym_long] = ACTIONS(1320), - [anon_sym_short] = ACTIONS(1320), - [anon_sym_static] = ACTIONS(1320), - [anon_sym_auto] = ACTIONS(1320), - [anon_sym_register] = ACTIONS(1320), - [anon_sym_inline] = ACTIONS(1320), - [anon_sym_thread_local] = ACTIONS(1320), - [anon_sym___thread] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_constexpr] = ACTIONS(1320), - [anon_sym_volatile] = ACTIONS(1320), - [anon_sym_restrict] = ACTIONS(1320), - [anon_sym___restrict__] = ACTIONS(1320), - [anon_sym__Atomic] = ACTIONS(1320), - [anon_sym__Noreturn] = ACTIONS(1320), - [anon_sym_noreturn] = ACTIONS(1320), - [sym_primitive_type] = ACTIONS(1320), - [anon_sym_enum] = ACTIONS(1320), - [anon_sym_struct] = ACTIONS(1320), - [anon_sym_union] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_else] = ACTIONS(1320), - [anon_sym_switch] = ACTIONS(1320), - [anon_sym_case] = ACTIONS(1320), - [anon_sym_default] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_do] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_goto] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1322), - [anon_sym_PLUS_PLUS] = ACTIONS(1322), - [anon_sym_sizeof] = ACTIONS(1320), - [anon_sym_offsetof] = ACTIONS(1320), - [anon_sym__Generic] = ACTIONS(1320), - [anon_sym_asm] = ACTIONS(1320), - [anon_sym___asm__] = ACTIONS(1320), - [sym_number_literal] = ACTIONS(1322), - [anon_sym_L_SQUOTE] = ACTIONS(1322), - [anon_sym_u_SQUOTE] = ACTIONS(1322), - [anon_sym_U_SQUOTE] = ACTIONS(1322), - [anon_sym_u8_SQUOTE] = ACTIONS(1322), - [anon_sym_SQUOTE] = ACTIONS(1322), - [anon_sym_L_DQUOTE] = ACTIONS(1322), - [anon_sym_u_DQUOTE] = ACTIONS(1322), - [anon_sym_U_DQUOTE] = ACTIONS(1322), - [anon_sym_u8_DQUOTE] = ACTIONS(1322), - [anon_sym_DQUOTE] = ACTIONS(1322), - [sym_true] = ACTIONS(1320), - [sym_false] = ACTIONS(1320), - [anon_sym_NULL] = ACTIONS(1320), - [anon_sym_nullptr] = ACTIONS(1320), + [sym_identifier] = ACTIONS(1526), + [aux_sym_preproc_include_token1] = ACTIONS(1526), + [aux_sym_preproc_def_token1] = ACTIONS(1526), + [aux_sym_preproc_if_token1] = ACTIONS(1526), + [aux_sym_preproc_if_token2] = ACTIONS(1526), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1526), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1526), + [aux_sym_preproc_else_token1] = ACTIONS(1526), + [aux_sym_preproc_elif_token1] = ACTIONS(1526), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1526), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1526), + [sym_preproc_directive] = ACTIONS(1526), + [anon_sym_LPAREN2] = ACTIONS(1528), + [anon_sym_BANG] = ACTIONS(1528), + [anon_sym_TILDE] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_PLUS] = ACTIONS(1526), + [anon_sym_STAR] = ACTIONS(1528), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_typedef] = ACTIONS(1526), + [anon_sym_extern] = ACTIONS(1526), + [anon_sym___attribute__] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym___declspec] = ACTIONS(1526), + [anon_sym___cdecl] = ACTIONS(1526), + [anon_sym___clrcall] = ACTIONS(1526), + [anon_sym___stdcall] = ACTIONS(1526), + [anon_sym___fastcall] = ACTIONS(1526), + [anon_sym___thiscall] = ACTIONS(1526), + [anon_sym___vectorcall] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_signed] = ACTIONS(1526), + [anon_sym_unsigned] = ACTIONS(1526), + [anon_sym_long] = ACTIONS(1526), + [anon_sym_short] = ACTIONS(1526), + [anon_sym_static] = ACTIONS(1526), + [anon_sym_auto] = ACTIONS(1526), + [anon_sym_register] = ACTIONS(1526), + [anon_sym_inline] = ACTIONS(1526), + [anon_sym___inline] = ACTIONS(1526), + [anon_sym___inline__] = ACTIONS(1526), + [anon_sym___forceinline] = ACTIONS(1526), + [anon_sym_thread_local] = ACTIONS(1526), + [anon_sym___thread] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1526), + [anon_sym_constexpr] = ACTIONS(1526), + [anon_sym_volatile] = ACTIONS(1526), + [anon_sym_restrict] = ACTIONS(1526), + [anon_sym___restrict__] = ACTIONS(1526), + [anon_sym__Atomic] = ACTIONS(1526), + [anon_sym__Noreturn] = ACTIONS(1526), + [anon_sym_noreturn] = ACTIONS(1526), + [sym_primitive_type] = ACTIONS(1526), + [anon_sym_enum] = ACTIONS(1526), + [anon_sym_struct] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_switch] = ACTIONS(1526), + [anon_sym_case] = ACTIONS(1526), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1526), + [anon_sym_for] = ACTIONS(1526), + [anon_sym_return] = ACTIONS(1526), + [anon_sym_break] = ACTIONS(1526), + [anon_sym_continue] = ACTIONS(1526), + [anon_sym_goto] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1528), + [anon_sym_PLUS_PLUS] = ACTIONS(1528), + [anon_sym_sizeof] = ACTIONS(1526), + [anon_sym___alignof__] = ACTIONS(1526), + [anon_sym___alignof] = ACTIONS(1526), + [anon_sym__alignof] = ACTIONS(1526), + [anon_sym_alignof] = ACTIONS(1526), + [anon_sym__Alignof] = ACTIONS(1526), + [anon_sym_offsetof] = ACTIONS(1526), + [anon_sym___builtin_va_arg] = ACTIONS(1526), + [anon_sym__Generic] = ACTIONS(1526), + [anon_sym_asm] = ACTIONS(1526), + [anon_sym___asm__] = ACTIONS(1526), + [sym_number_literal] = ACTIONS(1528), + [anon_sym_L_SQUOTE] = ACTIONS(1528), + [anon_sym_u_SQUOTE] = ACTIONS(1528), + [anon_sym_U_SQUOTE] = ACTIONS(1528), + [anon_sym_u8_SQUOTE] = ACTIONS(1528), + [anon_sym_SQUOTE] = ACTIONS(1528), + [anon_sym_L_DQUOTE] = ACTIONS(1528), + [anon_sym_u_DQUOTE] = ACTIONS(1528), + [anon_sym_U_DQUOTE] = ACTIONS(1528), + [anon_sym_u8_DQUOTE] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1528), + [sym_true] = ACTIONS(1526), + [sym_false] = ACTIONS(1526), + [anon_sym_NULL] = ACTIONS(1526), + [anon_sym_nullptr] = ACTIONS(1526), [sym_comment] = ACTIONS(3), }, [162] = { - [sym_identifier] = ACTIONS(1204), - [aux_sym_preproc_include_token1] = ACTIONS(1204), - [aux_sym_preproc_def_token1] = ACTIONS(1204), - [aux_sym_preproc_if_token1] = ACTIONS(1204), - [aux_sym_preproc_if_token2] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1204), - [aux_sym_preproc_else_token1] = ACTIONS(1204), - [aux_sym_preproc_elif_token1] = ACTIONS(1204), - [sym_preproc_directive] = ACTIONS(1204), - [anon_sym_LPAREN2] = ACTIONS(1206), - [anon_sym_BANG] = ACTIONS(1206), - [anon_sym_TILDE] = ACTIONS(1206), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_STAR] = ACTIONS(1206), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_SEMI] = ACTIONS(1206), - [anon_sym_typedef] = ACTIONS(1204), - [anon_sym_extern] = ACTIONS(1204), - [anon_sym___attribute__] = ACTIONS(1204), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1206), - [anon_sym___declspec] = ACTIONS(1204), - [anon_sym___cdecl] = ACTIONS(1204), - [anon_sym___clrcall] = ACTIONS(1204), - [anon_sym___stdcall] = ACTIONS(1204), - [anon_sym___fastcall] = ACTIONS(1204), - [anon_sym___thiscall] = ACTIONS(1204), - [anon_sym___vectorcall] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_signed] = ACTIONS(1204), - [anon_sym_unsigned] = ACTIONS(1204), - [anon_sym_long] = ACTIONS(1204), - [anon_sym_short] = ACTIONS(1204), - [anon_sym_static] = ACTIONS(1204), - [anon_sym_auto] = ACTIONS(1204), - [anon_sym_register] = ACTIONS(1204), - [anon_sym_inline] = ACTIONS(1204), - [anon_sym_thread_local] = ACTIONS(1204), - [anon_sym___thread] = ACTIONS(1204), - [anon_sym_const] = ACTIONS(1204), - [anon_sym_constexpr] = ACTIONS(1204), - [anon_sym_volatile] = ACTIONS(1204), - [anon_sym_restrict] = ACTIONS(1204), - [anon_sym___restrict__] = ACTIONS(1204), - [anon_sym__Atomic] = ACTIONS(1204), - [anon_sym__Noreturn] = ACTIONS(1204), - [anon_sym_noreturn] = ACTIONS(1204), - [sym_primitive_type] = ACTIONS(1204), - [anon_sym_enum] = ACTIONS(1204), - [anon_sym_struct] = ACTIONS(1204), - [anon_sym_union] = ACTIONS(1204), - [anon_sym_if] = ACTIONS(1204), - [anon_sym_else] = ACTIONS(1204), - [anon_sym_switch] = ACTIONS(1204), - [anon_sym_case] = ACTIONS(1204), - [anon_sym_default] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1204), - [anon_sym_do] = ACTIONS(1204), - [anon_sym_for] = ACTIONS(1204), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_break] = ACTIONS(1204), - [anon_sym_continue] = ACTIONS(1204), - [anon_sym_goto] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_sizeof] = ACTIONS(1204), - [anon_sym_offsetof] = ACTIONS(1204), - [anon_sym__Generic] = ACTIONS(1204), - [anon_sym_asm] = ACTIONS(1204), - [anon_sym___asm__] = ACTIONS(1204), - [sym_number_literal] = ACTIONS(1206), - [anon_sym_L_SQUOTE] = ACTIONS(1206), - [anon_sym_u_SQUOTE] = ACTIONS(1206), - [anon_sym_U_SQUOTE] = ACTIONS(1206), - [anon_sym_u8_SQUOTE] = ACTIONS(1206), - [anon_sym_SQUOTE] = ACTIONS(1206), - [anon_sym_L_DQUOTE] = ACTIONS(1206), - [anon_sym_u_DQUOTE] = ACTIONS(1206), - [anon_sym_U_DQUOTE] = ACTIONS(1206), - [anon_sym_u8_DQUOTE] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(1206), - [sym_true] = ACTIONS(1204), - [sym_false] = ACTIONS(1204), - [anon_sym_NULL] = ACTIONS(1204), - [anon_sym_nullptr] = ACTIONS(1204), + [sym_identifier] = ACTIONS(1530), + [aux_sym_preproc_include_token1] = ACTIONS(1530), + [aux_sym_preproc_def_token1] = ACTIONS(1530), + [aux_sym_preproc_if_token1] = ACTIONS(1530), + [aux_sym_preproc_if_token2] = ACTIONS(1530), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1530), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1530), + [aux_sym_preproc_else_token1] = ACTIONS(1530), + [aux_sym_preproc_elif_token1] = ACTIONS(1530), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1530), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1530), + [sym_preproc_directive] = ACTIONS(1530), + [anon_sym_LPAREN2] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(1532), + [anon_sym_TILDE] = ACTIONS(1532), + [anon_sym_DASH] = ACTIONS(1530), + [anon_sym_PLUS] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1532), + [anon_sym_AMP] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym___extension__] = ACTIONS(1530), + [anon_sym_typedef] = ACTIONS(1530), + [anon_sym_extern] = ACTIONS(1530), + [anon_sym___attribute__] = ACTIONS(1530), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1532), + [anon_sym___declspec] = ACTIONS(1530), + [anon_sym___cdecl] = ACTIONS(1530), + [anon_sym___clrcall] = ACTIONS(1530), + [anon_sym___stdcall] = ACTIONS(1530), + [anon_sym___fastcall] = ACTIONS(1530), + [anon_sym___thiscall] = ACTIONS(1530), + [anon_sym___vectorcall] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_signed] = ACTIONS(1530), + [anon_sym_unsigned] = ACTIONS(1530), + [anon_sym_long] = ACTIONS(1530), + [anon_sym_short] = ACTIONS(1530), + [anon_sym_static] = ACTIONS(1530), + [anon_sym_auto] = ACTIONS(1530), + [anon_sym_register] = ACTIONS(1530), + [anon_sym_inline] = ACTIONS(1530), + [anon_sym___inline] = ACTIONS(1530), + [anon_sym___inline__] = ACTIONS(1530), + [anon_sym___forceinline] = ACTIONS(1530), + [anon_sym_thread_local] = ACTIONS(1530), + [anon_sym___thread] = ACTIONS(1530), + [anon_sym_const] = ACTIONS(1530), + [anon_sym_constexpr] = ACTIONS(1530), + [anon_sym_volatile] = ACTIONS(1530), + [anon_sym_restrict] = ACTIONS(1530), + [anon_sym___restrict__] = ACTIONS(1530), + [anon_sym__Atomic] = ACTIONS(1530), + [anon_sym__Noreturn] = ACTIONS(1530), + [anon_sym_noreturn] = ACTIONS(1530), + [sym_primitive_type] = ACTIONS(1530), + [anon_sym_enum] = ACTIONS(1530), + [anon_sym_struct] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), + [anon_sym_if] = ACTIONS(1530), + [anon_sym_switch] = ACTIONS(1530), + [anon_sym_case] = ACTIONS(1530), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_while] = ACTIONS(1530), + [anon_sym_do] = ACTIONS(1530), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1530), + [anon_sym_continue] = ACTIONS(1530), + [anon_sym_goto] = ACTIONS(1530), + [anon_sym_DASH_DASH] = ACTIONS(1532), + [anon_sym_PLUS_PLUS] = ACTIONS(1532), + [anon_sym_sizeof] = ACTIONS(1530), + [anon_sym___alignof__] = ACTIONS(1530), + [anon_sym___alignof] = ACTIONS(1530), + [anon_sym__alignof] = ACTIONS(1530), + [anon_sym_alignof] = ACTIONS(1530), + [anon_sym__Alignof] = ACTIONS(1530), + [anon_sym_offsetof] = ACTIONS(1530), + [anon_sym___builtin_va_arg] = ACTIONS(1530), + [anon_sym__Generic] = ACTIONS(1530), + [anon_sym_asm] = ACTIONS(1530), + [anon_sym___asm__] = ACTIONS(1530), + [sym_number_literal] = ACTIONS(1532), + [anon_sym_L_SQUOTE] = ACTIONS(1532), + [anon_sym_u_SQUOTE] = ACTIONS(1532), + [anon_sym_U_SQUOTE] = ACTIONS(1532), + [anon_sym_u8_SQUOTE] = ACTIONS(1532), + [anon_sym_SQUOTE] = ACTIONS(1532), + [anon_sym_L_DQUOTE] = ACTIONS(1532), + [anon_sym_u_DQUOTE] = ACTIONS(1532), + [anon_sym_U_DQUOTE] = ACTIONS(1532), + [anon_sym_u8_DQUOTE] = ACTIONS(1532), + [anon_sym_DQUOTE] = ACTIONS(1532), + [sym_true] = ACTIONS(1530), + [sym_false] = ACTIONS(1530), + [anon_sym_NULL] = ACTIONS(1530), + [anon_sym_nullptr] = ACTIONS(1530), [sym_comment] = ACTIONS(3), }, [163] = { - [sym_identifier] = ACTIONS(1248), - [aux_sym_preproc_include_token1] = ACTIONS(1248), - [aux_sym_preproc_def_token1] = ACTIONS(1248), - [aux_sym_preproc_if_token1] = ACTIONS(1248), - [aux_sym_preproc_if_token2] = ACTIONS(1248), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1248), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1248), - [aux_sym_preproc_else_token1] = ACTIONS(1248), - [aux_sym_preproc_elif_token1] = ACTIONS(1248), - [sym_preproc_directive] = ACTIONS(1248), - [anon_sym_LPAREN2] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1250), - [anon_sym_TILDE] = ACTIONS(1250), - [anon_sym_DASH] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1248), - [anon_sym_STAR] = ACTIONS(1250), - [anon_sym_AMP] = ACTIONS(1250), - [anon_sym_SEMI] = ACTIONS(1250), - [anon_sym_typedef] = ACTIONS(1248), - [anon_sym_extern] = ACTIONS(1248), - [anon_sym___attribute__] = ACTIONS(1248), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1250), - [anon_sym___declspec] = ACTIONS(1248), + [sym_identifier] = ACTIONS(1534), + [aux_sym_preproc_include_token1] = ACTIONS(1534), + [aux_sym_preproc_def_token1] = ACTIONS(1534), + [aux_sym_preproc_if_token1] = ACTIONS(1534), + [aux_sym_preproc_if_token2] = ACTIONS(1534), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1534), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1534), + [aux_sym_preproc_else_token1] = ACTIONS(1534), + [aux_sym_preproc_elif_token1] = ACTIONS(1534), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1534), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1534), + [sym_preproc_directive] = ACTIONS(1534), + [anon_sym_LPAREN2] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1536), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_DASH] = ACTIONS(1534), + [anon_sym_PLUS] = ACTIONS(1534), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_AMP] = ACTIONS(1536), + [anon_sym_SEMI] = ACTIONS(1536), + [anon_sym___extension__] = ACTIONS(1534), + [anon_sym_typedef] = ACTIONS(1534), + [anon_sym_extern] = ACTIONS(1534), + [anon_sym___attribute__] = ACTIONS(1534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), + [anon_sym___declspec] = ACTIONS(1534), + [anon_sym___cdecl] = ACTIONS(1534), + [anon_sym___clrcall] = ACTIONS(1534), + [anon_sym___stdcall] = ACTIONS(1534), + [anon_sym___fastcall] = ACTIONS(1534), + [anon_sym___thiscall] = ACTIONS(1534), + [anon_sym___vectorcall] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_signed] = ACTIONS(1534), + [anon_sym_unsigned] = ACTIONS(1534), + [anon_sym_long] = ACTIONS(1534), + [anon_sym_short] = ACTIONS(1534), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_auto] = ACTIONS(1534), + [anon_sym_register] = ACTIONS(1534), + [anon_sym_inline] = ACTIONS(1534), + [anon_sym___inline] = ACTIONS(1534), + [anon_sym___inline__] = ACTIONS(1534), + [anon_sym___forceinline] = ACTIONS(1534), + [anon_sym_thread_local] = ACTIONS(1534), + [anon_sym___thread] = ACTIONS(1534), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_constexpr] = ACTIONS(1534), + [anon_sym_volatile] = ACTIONS(1534), + [anon_sym_restrict] = ACTIONS(1534), + [anon_sym___restrict__] = ACTIONS(1534), + [anon_sym__Atomic] = ACTIONS(1534), + [anon_sym__Noreturn] = ACTIONS(1534), + [anon_sym_noreturn] = ACTIONS(1534), + [sym_primitive_type] = ACTIONS(1534), + [anon_sym_enum] = ACTIONS(1534), + [anon_sym_struct] = ACTIONS(1534), + [anon_sym_union] = ACTIONS(1534), + [anon_sym_if] = ACTIONS(1534), + [anon_sym_switch] = ACTIONS(1534), + [anon_sym_case] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1534), + [anon_sym_while] = ACTIONS(1534), + [anon_sym_do] = ACTIONS(1534), + [anon_sym_for] = ACTIONS(1534), + [anon_sym_return] = ACTIONS(1534), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1534), + [anon_sym_goto] = ACTIONS(1534), + [anon_sym_DASH_DASH] = ACTIONS(1536), + [anon_sym_PLUS_PLUS] = ACTIONS(1536), + [anon_sym_sizeof] = ACTIONS(1534), + [anon_sym___alignof__] = ACTIONS(1534), + [anon_sym___alignof] = ACTIONS(1534), + [anon_sym__alignof] = ACTIONS(1534), + [anon_sym_alignof] = ACTIONS(1534), + [anon_sym__Alignof] = ACTIONS(1534), + [anon_sym_offsetof] = ACTIONS(1534), + [anon_sym___builtin_va_arg] = ACTIONS(1534), + [anon_sym__Generic] = ACTIONS(1534), + [anon_sym_asm] = ACTIONS(1534), + [anon_sym___asm__] = ACTIONS(1534), + [sym_number_literal] = ACTIONS(1536), + [anon_sym_L_SQUOTE] = ACTIONS(1536), + [anon_sym_u_SQUOTE] = ACTIONS(1536), + [anon_sym_U_SQUOTE] = ACTIONS(1536), + [anon_sym_u8_SQUOTE] = ACTIONS(1536), + [anon_sym_SQUOTE] = ACTIONS(1536), + [anon_sym_L_DQUOTE] = ACTIONS(1536), + [anon_sym_u_DQUOTE] = ACTIONS(1536), + [anon_sym_U_DQUOTE] = ACTIONS(1536), + [anon_sym_u8_DQUOTE] = ACTIONS(1536), + [anon_sym_DQUOTE] = ACTIONS(1536), + [sym_true] = ACTIONS(1534), + [sym_false] = ACTIONS(1534), + [anon_sym_NULL] = ACTIONS(1534), + [anon_sym_nullptr] = ACTIONS(1534), + [sym_comment] = ACTIONS(3), + }, + [164] = { + [sym_identifier] = ACTIONS(1538), + [aux_sym_preproc_include_token1] = ACTIONS(1538), + [aux_sym_preproc_def_token1] = ACTIONS(1538), + [aux_sym_preproc_if_token1] = ACTIONS(1538), + [aux_sym_preproc_if_token2] = ACTIONS(1538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1538), + [aux_sym_preproc_else_token1] = ACTIONS(1538), + [aux_sym_preproc_elif_token1] = ACTIONS(1538), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1538), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1538), + [sym_preproc_directive] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(1540), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_AMP] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym___extension__] = ACTIONS(1538), + [anon_sym_typedef] = ACTIONS(1538), + [anon_sym_extern] = ACTIONS(1538), + [anon_sym___attribute__] = ACTIONS(1538), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1540), + [anon_sym___declspec] = ACTIONS(1538), + [anon_sym___cdecl] = ACTIONS(1538), + [anon_sym___clrcall] = ACTIONS(1538), + [anon_sym___stdcall] = ACTIONS(1538), + [anon_sym___fastcall] = ACTIONS(1538), + [anon_sym___thiscall] = ACTIONS(1538), + [anon_sym___vectorcall] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_signed] = ACTIONS(1538), + [anon_sym_unsigned] = ACTIONS(1538), + [anon_sym_long] = ACTIONS(1538), + [anon_sym_short] = ACTIONS(1538), + [anon_sym_static] = ACTIONS(1538), + [anon_sym_auto] = ACTIONS(1538), + [anon_sym_register] = ACTIONS(1538), + [anon_sym_inline] = ACTIONS(1538), + [anon_sym___inline] = ACTIONS(1538), + [anon_sym___inline__] = ACTIONS(1538), + [anon_sym___forceinline] = ACTIONS(1538), + [anon_sym_thread_local] = ACTIONS(1538), + [anon_sym___thread] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(1538), + [anon_sym_constexpr] = ACTIONS(1538), + [anon_sym_volatile] = ACTIONS(1538), + [anon_sym_restrict] = ACTIONS(1538), + [anon_sym___restrict__] = ACTIONS(1538), + [anon_sym__Atomic] = ACTIONS(1538), + [anon_sym__Noreturn] = ACTIONS(1538), + [anon_sym_noreturn] = ACTIONS(1538), + [sym_primitive_type] = ACTIONS(1538), + [anon_sym_enum] = ACTIONS(1538), + [anon_sym_struct] = ACTIONS(1538), + [anon_sym_union] = ACTIONS(1538), + [anon_sym_if] = ACTIONS(1538), + [anon_sym_switch] = ACTIONS(1538), + [anon_sym_case] = ACTIONS(1538), + [anon_sym_default] = ACTIONS(1538), + [anon_sym_while] = ACTIONS(1538), + [anon_sym_do] = ACTIONS(1538), + [anon_sym_for] = ACTIONS(1538), + [anon_sym_return] = ACTIONS(1538), + [anon_sym_break] = ACTIONS(1538), + [anon_sym_continue] = ACTIONS(1538), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_DASH_DASH] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1540), + [anon_sym_sizeof] = ACTIONS(1538), + [anon_sym___alignof__] = ACTIONS(1538), + [anon_sym___alignof] = ACTIONS(1538), + [anon_sym__alignof] = ACTIONS(1538), + [anon_sym_alignof] = ACTIONS(1538), + [anon_sym__Alignof] = ACTIONS(1538), + [anon_sym_offsetof] = ACTIONS(1538), + [anon_sym___builtin_va_arg] = ACTIONS(1538), + [anon_sym__Generic] = ACTIONS(1538), + [anon_sym_asm] = ACTIONS(1538), + [anon_sym___asm__] = ACTIONS(1538), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_L_SQUOTE] = ACTIONS(1540), + [anon_sym_u_SQUOTE] = ACTIONS(1540), + [anon_sym_U_SQUOTE] = ACTIONS(1540), + [anon_sym_u8_SQUOTE] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(1540), + [anon_sym_L_DQUOTE] = ACTIONS(1540), + [anon_sym_u_DQUOTE] = ACTIONS(1540), + [anon_sym_U_DQUOTE] = ACTIONS(1540), + [anon_sym_u8_DQUOTE] = ACTIONS(1540), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_true] = ACTIONS(1538), + [sym_false] = ACTIONS(1538), + [anon_sym_NULL] = ACTIONS(1538), + [anon_sym_nullptr] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + }, + [165] = { + [sym_identifier] = ACTIONS(1542), + [aux_sym_preproc_include_token1] = ACTIONS(1542), + [aux_sym_preproc_def_token1] = ACTIONS(1542), + [aux_sym_preproc_if_token1] = ACTIONS(1542), + [aux_sym_preproc_if_token2] = ACTIONS(1542), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1542), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1542), + [aux_sym_preproc_else_token1] = ACTIONS(1542), + [aux_sym_preproc_elif_token1] = ACTIONS(1542), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1542), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1542), + [sym_preproc_directive] = ACTIONS(1542), + [anon_sym_LPAREN2] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1544), + [anon_sym_TILDE] = ACTIONS(1544), + [anon_sym_DASH] = ACTIONS(1542), + [anon_sym_PLUS] = ACTIONS(1542), + [anon_sym_STAR] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(1544), + [anon_sym_SEMI] = ACTIONS(1544), + [anon_sym___extension__] = ACTIONS(1542), + [anon_sym_typedef] = ACTIONS(1542), + [anon_sym_extern] = ACTIONS(1542), + [anon_sym___attribute__] = ACTIONS(1542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1544), + [anon_sym___declspec] = ACTIONS(1542), + [anon_sym___cdecl] = ACTIONS(1542), + [anon_sym___clrcall] = ACTIONS(1542), + [anon_sym___stdcall] = ACTIONS(1542), + [anon_sym___fastcall] = ACTIONS(1542), + [anon_sym___thiscall] = ACTIONS(1542), + [anon_sym___vectorcall] = ACTIONS(1542), + [anon_sym_LBRACE] = ACTIONS(1544), + [anon_sym_signed] = ACTIONS(1542), + [anon_sym_unsigned] = ACTIONS(1542), + [anon_sym_long] = ACTIONS(1542), + [anon_sym_short] = ACTIONS(1542), + [anon_sym_static] = ACTIONS(1542), + [anon_sym_auto] = ACTIONS(1542), + [anon_sym_register] = ACTIONS(1542), + [anon_sym_inline] = ACTIONS(1542), + [anon_sym___inline] = ACTIONS(1542), + [anon_sym___inline__] = ACTIONS(1542), + [anon_sym___forceinline] = ACTIONS(1542), + [anon_sym_thread_local] = ACTIONS(1542), + [anon_sym___thread] = ACTIONS(1542), + [anon_sym_const] = ACTIONS(1542), + [anon_sym_constexpr] = ACTIONS(1542), + [anon_sym_volatile] = ACTIONS(1542), + [anon_sym_restrict] = ACTIONS(1542), + [anon_sym___restrict__] = ACTIONS(1542), + [anon_sym__Atomic] = ACTIONS(1542), + [anon_sym__Noreturn] = ACTIONS(1542), + [anon_sym_noreturn] = ACTIONS(1542), + [sym_primitive_type] = ACTIONS(1542), + [anon_sym_enum] = ACTIONS(1542), + [anon_sym_struct] = ACTIONS(1542), + [anon_sym_union] = ACTIONS(1542), + [anon_sym_if] = ACTIONS(1542), + [anon_sym_switch] = ACTIONS(1542), + [anon_sym_case] = ACTIONS(1542), + [anon_sym_default] = ACTIONS(1542), + [anon_sym_while] = ACTIONS(1542), + [anon_sym_do] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1542), + [anon_sym_return] = ACTIONS(1542), + [anon_sym_break] = ACTIONS(1542), + [anon_sym_continue] = ACTIONS(1542), + [anon_sym_goto] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_PLUS_PLUS] = ACTIONS(1544), + [anon_sym_sizeof] = ACTIONS(1542), + [anon_sym___alignof__] = ACTIONS(1542), + [anon_sym___alignof] = ACTIONS(1542), + [anon_sym__alignof] = ACTIONS(1542), + [anon_sym_alignof] = ACTIONS(1542), + [anon_sym__Alignof] = ACTIONS(1542), + [anon_sym_offsetof] = ACTIONS(1542), + [anon_sym___builtin_va_arg] = ACTIONS(1542), + [anon_sym__Generic] = ACTIONS(1542), + [anon_sym_asm] = ACTIONS(1542), + [anon_sym___asm__] = ACTIONS(1542), + [sym_number_literal] = ACTIONS(1544), + [anon_sym_L_SQUOTE] = ACTIONS(1544), + [anon_sym_u_SQUOTE] = ACTIONS(1544), + [anon_sym_U_SQUOTE] = ACTIONS(1544), + [anon_sym_u8_SQUOTE] = ACTIONS(1544), + [anon_sym_SQUOTE] = ACTIONS(1544), + [anon_sym_L_DQUOTE] = ACTIONS(1544), + [anon_sym_u_DQUOTE] = ACTIONS(1544), + [anon_sym_U_DQUOTE] = ACTIONS(1544), + [anon_sym_u8_DQUOTE] = ACTIONS(1544), + [anon_sym_DQUOTE] = ACTIONS(1544), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [anon_sym_NULL] = ACTIONS(1542), + [anon_sym_nullptr] = ACTIONS(1542), + [sym_comment] = ACTIONS(3), + }, + [166] = { + [sym_identifier] = ACTIONS(1546), + [aux_sym_preproc_include_token1] = ACTIONS(1546), + [aux_sym_preproc_def_token1] = ACTIONS(1546), + [aux_sym_preproc_if_token1] = ACTIONS(1546), + [aux_sym_preproc_if_token2] = ACTIONS(1546), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1546), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1546), + [aux_sym_preproc_else_token1] = ACTIONS(1546), + [aux_sym_preproc_elif_token1] = ACTIONS(1546), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1546), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1546), + [sym_preproc_directive] = ACTIONS(1546), + [anon_sym_LPAREN2] = ACTIONS(1548), + [anon_sym_BANG] = ACTIONS(1548), + [anon_sym_TILDE] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(1548), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_SEMI] = ACTIONS(1548), + [anon_sym___extension__] = ACTIONS(1546), + [anon_sym_typedef] = ACTIONS(1546), + [anon_sym_extern] = ACTIONS(1546), + [anon_sym___attribute__] = ACTIONS(1546), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym___declspec] = ACTIONS(1546), + [anon_sym___cdecl] = ACTIONS(1546), + [anon_sym___clrcall] = ACTIONS(1546), + [anon_sym___stdcall] = ACTIONS(1546), + [anon_sym___fastcall] = ACTIONS(1546), + [anon_sym___thiscall] = ACTIONS(1546), + [anon_sym___vectorcall] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_signed] = ACTIONS(1546), + [anon_sym_unsigned] = ACTIONS(1546), + [anon_sym_long] = ACTIONS(1546), + [anon_sym_short] = ACTIONS(1546), + [anon_sym_static] = ACTIONS(1546), + [anon_sym_auto] = ACTIONS(1546), + [anon_sym_register] = ACTIONS(1546), + [anon_sym_inline] = ACTIONS(1546), + [anon_sym___inline] = ACTIONS(1546), + [anon_sym___inline__] = ACTIONS(1546), + [anon_sym___forceinline] = ACTIONS(1546), + [anon_sym_thread_local] = ACTIONS(1546), + [anon_sym___thread] = ACTIONS(1546), + [anon_sym_const] = ACTIONS(1546), + [anon_sym_constexpr] = ACTIONS(1546), + [anon_sym_volatile] = ACTIONS(1546), + [anon_sym_restrict] = ACTIONS(1546), + [anon_sym___restrict__] = ACTIONS(1546), + [anon_sym__Atomic] = ACTIONS(1546), + [anon_sym__Noreturn] = ACTIONS(1546), + [anon_sym_noreturn] = ACTIONS(1546), + [sym_primitive_type] = ACTIONS(1546), + [anon_sym_enum] = ACTIONS(1546), + [anon_sym_struct] = ACTIONS(1546), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_if] = ACTIONS(1546), + [anon_sym_switch] = ACTIONS(1546), + [anon_sym_case] = ACTIONS(1546), + [anon_sym_default] = ACTIONS(1546), + [anon_sym_while] = ACTIONS(1546), + [anon_sym_do] = ACTIONS(1546), + [anon_sym_for] = ACTIONS(1546), + [anon_sym_return] = ACTIONS(1546), + [anon_sym_break] = ACTIONS(1546), + [anon_sym_continue] = ACTIONS(1546), + [anon_sym_goto] = ACTIONS(1546), + [anon_sym_DASH_DASH] = ACTIONS(1548), + [anon_sym_PLUS_PLUS] = ACTIONS(1548), + [anon_sym_sizeof] = ACTIONS(1546), + [anon_sym___alignof__] = ACTIONS(1546), + [anon_sym___alignof] = ACTIONS(1546), + [anon_sym__alignof] = ACTIONS(1546), + [anon_sym_alignof] = ACTIONS(1546), + [anon_sym__Alignof] = ACTIONS(1546), + [anon_sym_offsetof] = ACTIONS(1546), + [anon_sym___builtin_va_arg] = ACTIONS(1546), + [anon_sym__Generic] = ACTIONS(1546), + [anon_sym_asm] = ACTIONS(1546), + [anon_sym___asm__] = ACTIONS(1546), + [sym_number_literal] = ACTIONS(1548), + [anon_sym_L_SQUOTE] = ACTIONS(1548), + [anon_sym_u_SQUOTE] = ACTIONS(1548), + [anon_sym_U_SQUOTE] = ACTIONS(1548), + [anon_sym_u8_SQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1548), + [anon_sym_L_DQUOTE] = ACTIONS(1548), + [anon_sym_u_DQUOTE] = ACTIONS(1548), + [anon_sym_U_DQUOTE] = ACTIONS(1548), + [anon_sym_u8_DQUOTE] = ACTIONS(1548), + [anon_sym_DQUOTE] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [anon_sym_NULL] = ACTIONS(1546), + [anon_sym_nullptr] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + }, + [167] = { + [sym_identifier] = ACTIONS(1550), + [aux_sym_preproc_include_token1] = ACTIONS(1550), + [aux_sym_preproc_def_token1] = ACTIONS(1550), + [aux_sym_preproc_if_token1] = ACTIONS(1550), + [aux_sym_preproc_if_token2] = ACTIONS(1550), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1550), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1550), + [aux_sym_preproc_else_token1] = ACTIONS(1550), + [aux_sym_preproc_elif_token1] = ACTIONS(1550), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1550), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1550), + [sym_preproc_directive] = ACTIONS(1550), + [anon_sym_LPAREN2] = ACTIONS(1552), + [anon_sym_BANG] = ACTIONS(1552), + [anon_sym_TILDE] = ACTIONS(1552), + [anon_sym_DASH] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1550), + [anon_sym_STAR] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(1552), + [anon_sym_SEMI] = ACTIONS(1552), + [anon_sym___extension__] = ACTIONS(1550), + [anon_sym_typedef] = ACTIONS(1550), + [anon_sym_extern] = ACTIONS(1550), + [anon_sym___attribute__] = ACTIONS(1550), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1552), + [anon_sym___declspec] = ACTIONS(1550), + [anon_sym___cdecl] = ACTIONS(1550), + [anon_sym___clrcall] = ACTIONS(1550), + [anon_sym___stdcall] = ACTIONS(1550), + [anon_sym___fastcall] = ACTIONS(1550), + [anon_sym___thiscall] = ACTIONS(1550), + [anon_sym___vectorcall] = ACTIONS(1550), + [anon_sym_LBRACE] = ACTIONS(1552), + [anon_sym_signed] = ACTIONS(1550), + [anon_sym_unsigned] = ACTIONS(1550), + [anon_sym_long] = ACTIONS(1550), + [anon_sym_short] = ACTIONS(1550), + [anon_sym_static] = ACTIONS(1550), + [anon_sym_auto] = ACTIONS(1550), + [anon_sym_register] = ACTIONS(1550), + [anon_sym_inline] = ACTIONS(1550), + [anon_sym___inline] = ACTIONS(1550), + [anon_sym___inline__] = ACTIONS(1550), + [anon_sym___forceinline] = ACTIONS(1550), + [anon_sym_thread_local] = ACTIONS(1550), + [anon_sym___thread] = ACTIONS(1550), + [anon_sym_const] = ACTIONS(1550), + [anon_sym_constexpr] = ACTIONS(1550), + [anon_sym_volatile] = ACTIONS(1550), + [anon_sym_restrict] = ACTIONS(1550), + [anon_sym___restrict__] = ACTIONS(1550), + [anon_sym__Atomic] = ACTIONS(1550), + [anon_sym__Noreturn] = ACTIONS(1550), + [anon_sym_noreturn] = ACTIONS(1550), + [sym_primitive_type] = ACTIONS(1550), + [anon_sym_enum] = ACTIONS(1550), + [anon_sym_struct] = ACTIONS(1550), + [anon_sym_union] = ACTIONS(1550), + [anon_sym_if] = ACTIONS(1550), + [anon_sym_switch] = ACTIONS(1550), + [anon_sym_case] = ACTIONS(1550), + [anon_sym_default] = ACTIONS(1550), + [anon_sym_while] = ACTIONS(1550), + [anon_sym_do] = ACTIONS(1550), + [anon_sym_for] = ACTIONS(1550), + [anon_sym_return] = ACTIONS(1550), + [anon_sym_break] = ACTIONS(1550), + [anon_sym_continue] = ACTIONS(1550), + [anon_sym_goto] = ACTIONS(1550), + [anon_sym_DASH_DASH] = ACTIONS(1552), + [anon_sym_PLUS_PLUS] = ACTIONS(1552), + [anon_sym_sizeof] = ACTIONS(1550), + [anon_sym___alignof__] = ACTIONS(1550), + [anon_sym___alignof] = ACTIONS(1550), + [anon_sym__alignof] = ACTIONS(1550), + [anon_sym_alignof] = ACTIONS(1550), + [anon_sym__Alignof] = ACTIONS(1550), + [anon_sym_offsetof] = ACTIONS(1550), + [anon_sym___builtin_va_arg] = ACTIONS(1550), + [anon_sym__Generic] = ACTIONS(1550), + [anon_sym_asm] = ACTIONS(1550), + [anon_sym___asm__] = ACTIONS(1550), + [sym_number_literal] = ACTIONS(1552), + [anon_sym_L_SQUOTE] = ACTIONS(1552), + [anon_sym_u_SQUOTE] = ACTIONS(1552), + [anon_sym_U_SQUOTE] = ACTIONS(1552), + [anon_sym_u8_SQUOTE] = ACTIONS(1552), + [anon_sym_SQUOTE] = ACTIONS(1552), + [anon_sym_L_DQUOTE] = ACTIONS(1552), + [anon_sym_u_DQUOTE] = ACTIONS(1552), + [anon_sym_U_DQUOTE] = ACTIONS(1552), + [anon_sym_u8_DQUOTE] = ACTIONS(1552), + [anon_sym_DQUOTE] = ACTIONS(1552), + [sym_true] = ACTIONS(1550), + [sym_false] = ACTIONS(1550), + [anon_sym_NULL] = ACTIONS(1550), + [anon_sym_nullptr] = ACTIONS(1550), + [sym_comment] = ACTIONS(3), + }, + [168] = { + [sym_identifier] = ACTIONS(1554), + [aux_sym_preproc_include_token1] = ACTIONS(1554), + [aux_sym_preproc_def_token1] = ACTIONS(1554), + [aux_sym_preproc_if_token1] = ACTIONS(1554), + [aux_sym_preproc_if_token2] = ACTIONS(1554), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1554), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1554), + [aux_sym_preproc_else_token1] = ACTIONS(1554), + [aux_sym_preproc_elif_token1] = ACTIONS(1554), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1554), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1554), + [sym_preproc_directive] = ACTIONS(1554), + [anon_sym_LPAREN2] = ACTIONS(1556), + [anon_sym_BANG] = ACTIONS(1556), + [anon_sym_TILDE] = ACTIONS(1556), + [anon_sym_DASH] = ACTIONS(1554), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1556), + [anon_sym___extension__] = ACTIONS(1554), + [anon_sym_typedef] = ACTIONS(1554), + [anon_sym_extern] = ACTIONS(1554), + [anon_sym___attribute__] = ACTIONS(1554), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), + [anon_sym___declspec] = ACTIONS(1554), + [anon_sym___cdecl] = ACTIONS(1554), + [anon_sym___clrcall] = ACTIONS(1554), + [anon_sym___stdcall] = ACTIONS(1554), + [anon_sym___fastcall] = ACTIONS(1554), + [anon_sym___thiscall] = ACTIONS(1554), + [anon_sym___vectorcall] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_signed] = ACTIONS(1554), + [anon_sym_unsigned] = ACTIONS(1554), + [anon_sym_long] = ACTIONS(1554), + [anon_sym_short] = ACTIONS(1554), + [anon_sym_static] = ACTIONS(1554), + [anon_sym_auto] = ACTIONS(1554), + [anon_sym_register] = ACTIONS(1554), + [anon_sym_inline] = ACTIONS(1554), + [anon_sym___inline] = ACTIONS(1554), + [anon_sym___inline__] = ACTIONS(1554), + [anon_sym___forceinline] = ACTIONS(1554), + [anon_sym_thread_local] = ACTIONS(1554), + [anon_sym___thread] = ACTIONS(1554), + [anon_sym_const] = ACTIONS(1554), + [anon_sym_constexpr] = ACTIONS(1554), + [anon_sym_volatile] = ACTIONS(1554), + [anon_sym_restrict] = ACTIONS(1554), + [anon_sym___restrict__] = ACTIONS(1554), + [anon_sym__Atomic] = ACTIONS(1554), + [anon_sym__Noreturn] = ACTIONS(1554), + [anon_sym_noreturn] = ACTIONS(1554), + [sym_primitive_type] = ACTIONS(1554), + [anon_sym_enum] = ACTIONS(1554), + [anon_sym_struct] = ACTIONS(1554), + [anon_sym_union] = ACTIONS(1554), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_switch] = ACTIONS(1554), + [anon_sym_case] = ACTIONS(1554), + [anon_sym_default] = ACTIONS(1554), + [anon_sym_while] = ACTIONS(1554), + [anon_sym_do] = ACTIONS(1554), + [anon_sym_for] = ACTIONS(1554), + [anon_sym_return] = ACTIONS(1554), + [anon_sym_break] = ACTIONS(1554), + [anon_sym_continue] = ACTIONS(1554), + [anon_sym_goto] = ACTIONS(1554), + [anon_sym_DASH_DASH] = ACTIONS(1556), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_sizeof] = ACTIONS(1554), + [anon_sym___alignof__] = ACTIONS(1554), + [anon_sym___alignof] = ACTIONS(1554), + [anon_sym__alignof] = ACTIONS(1554), + [anon_sym_alignof] = ACTIONS(1554), + [anon_sym__Alignof] = ACTIONS(1554), + [anon_sym_offsetof] = ACTIONS(1554), + [anon_sym___builtin_va_arg] = ACTIONS(1554), + [anon_sym__Generic] = ACTIONS(1554), + [anon_sym_asm] = ACTIONS(1554), + [anon_sym___asm__] = ACTIONS(1554), + [sym_number_literal] = ACTIONS(1556), + [anon_sym_L_SQUOTE] = ACTIONS(1556), + [anon_sym_u_SQUOTE] = ACTIONS(1556), + [anon_sym_U_SQUOTE] = ACTIONS(1556), + [anon_sym_u8_SQUOTE] = ACTIONS(1556), + [anon_sym_SQUOTE] = ACTIONS(1556), + [anon_sym_L_DQUOTE] = ACTIONS(1556), + [anon_sym_u_DQUOTE] = ACTIONS(1556), + [anon_sym_U_DQUOTE] = ACTIONS(1556), + [anon_sym_u8_DQUOTE] = ACTIONS(1556), + [anon_sym_DQUOTE] = ACTIONS(1556), + [sym_true] = ACTIONS(1554), + [sym_false] = ACTIONS(1554), + [anon_sym_NULL] = ACTIONS(1554), + [anon_sym_nullptr] = ACTIONS(1554), + [sym_comment] = ACTIONS(3), + }, + [169] = { + [sym_identifier] = ACTIONS(1558), + [aux_sym_preproc_include_token1] = ACTIONS(1558), + [aux_sym_preproc_def_token1] = ACTIONS(1558), + [aux_sym_preproc_if_token1] = ACTIONS(1558), + [aux_sym_preproc_if_token2] = ACTIONS(1558), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1558), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1558), + [aux_sym_preproc_else_token1] = ACTIONS(1558), + [aux_sym_preproc_elif_token1] = ACTIONS(1558), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1558), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1558), + [sym_preproc_directive] = ACTIONS(1558), + [anon_sym_LPAREN2] = ACTIONS(1560), + [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_DASH] = ACTIONS(1558), + [anon_sym_PLUS] = ACTIONS(1558), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_AMP] = ACTIONS(1560), + [anon_sym_SEMI] = ACTIONS(1560), + [anon_sym___extension__] = ACTIONS(1558), + [anon_sym_typedef] = ACTIONS(1558), + [anon_sym_extern] = ACTIONS(1558), + [anon_sym___attribute__] = ACTIONS(1558), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1560), + [anon_sym___declspec] = ACTIONS(1558), + [anon_sym___cdecl] = ACTIONS(1558), + [anon_sym___clrcall] = ACTIONS(1558), + [anon_sym___stdcall] = ACTIONS(1558), + [anon_sym___fastcall] = ACTIONS(1558), + [anon_sym___thiscall] = ACTIONS(1558), + [anon_sym___vectorcall] = ACTIONS(1558), + [anon_sym_LBRACE] = ACTIONS(1560), + [anon_sym_signed] = ACTIONS(1558), + [anon_sym_unsigned] = ACTIONS(1558), + [anon_sym_long] = ACTIONS(1558), + [anon_sym_short] = ACTIONS(1558), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_auto] = ACTIONS(1558), + [anon_sym_register] = ACTIONS(1558), + [anon_sym_inline] = ACTIONS(1558), + [anon_sym___inline] = ACTIONS(1558), + [anon_sym___inline__] = ACTIONS(1558), + [anon_sym___forceinline] = ACTIONS(1558), + [anon_sym_thread_local] = ACTIONS(1558), + [anon_sym___thread] = ACTIONS(1558), + [anon_sym_const] = ACTIONS(1558), + [anon_sym_constexpr] = ACTIONS(1558), + [anon_sym_volatile] = ACTIONS(1558), + [anon_sym_restrict] = ACTIONS(1558), + [anon_sym___restrict__] = ACTIONS(1558), + [anon_sym__Atomic] = ACTIONS(1558), + [anon_sym__Noreturn] = ACTIONS(1558), + [anon_sym_noreturn] = ACTIONS(1558), + [sym_primitive_type] = ACTIONS(1558), + [anon_sym_enum] = ACTIONS(1558), + [anon_sym_struct] = ACTIONS(1558), + [anon_sym_union] = ACTIONS(1558), + [anon_sym_if] = ACTIONS(1558), + [anon_sym_switch] = ACTIONS(1558), + [anon_sym_case] = ACTIONS(1558), + [anon_sym_default] = ACTIONS(1558), + [anon_sym_while] = ACTIONS(1558), + [anon_sym_do] = ACTIONS(1558), + [anon_sym_for] = ACTIONS(1558), + [anon_sym_return] = ACTIONS(1558), + [anon_sym_break] = ACTIONS(1558), + [anon_sym_continue] = ACTIONS(1558), + [anon_sym_goto] = ACTIONS(1558), + [anon_sym_DASH_DASH] = ACTIONS(1560), + [anon_sym_PLUS_PLUS] = ACTIONS(1560), + [anon_sym_sizeof] = ACTIONS(1558), + [anon_sym___alignof__] = ACTIONS(1558), + [anon_sym___alignof] = ACTIONS(1558), + [anon_sym__alignof] = ACTIONS(1558), + [anon_sym_alignof] = ACTIONS(1558), + [anon_sym__Alignof] = ACTIONS(1558), + [anon_sym_offsetof] = ACTIONS(1558), + [anon_sym___builtin_va_arg] = ACTIONS(1558), + [anon_sym__Generic] = ACTIONS(1558), + [anon_sym_asm] = ACTIONS(1558), + [anon_sym___asm__] = ACTIONS(1558), + [sym_number_literal] = ACTIONS(1560), + [anon_sym_L_SQUOTE] = ACTIONS(1560), + [anon_sym_u_SQUOTE] = ACTIONS(1560), + [anon_sym_U_SQUOTE] = ACTIONS(1560), + [anon_sym_u8_SQUOTE] = ACTIONS(1560), + [anon_sym_SQUOTE] = ACTIONS(1560), + [anon_sym_L_DQUOTE] = ACTIONS(1560), + [anon_sym_u_DQUOTE] = ACTIONS(1560), + [anon_sym_U_DQUOTE] = ACTIONS(1560), + [anon_sym_u8_DQUOTE] = ACTIONS(1560), + [anon_sym_DQUOTE] = ACTIONS(1560), + [sym_true] = ACTIONS(1558), + [sym_false] = ACTIONS(1558), + [anon_sym_NULL] = ACTIONS(1558), + [anon_sym_nullptr] = ACTIONS(1558), + [sym_comment] = ACTIONS(3), + }, + [170] = { + [sym_identifier] = ACTIONS(1562), + [aux_sym_preproc_include_token1] = ACTIONS(1562), + [aux_sym_preproc_def_token1] = ACTIONS(1562), + [aux_sym_preproc_if_token1] = ACTIONS(1562), + [aux_sym_preproc_if_token2] = ACTIONS(1562), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1562), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1562), + [aux_sym_preproc_else_token1] = ACTIONS(1562), + [aux_sym_preproc_elif_token1] = ACTIONS(1562), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1562), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1562), + [sym_preproc_directive] = ACTIONS(1562), + [anon_sym_LPAREN2] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1564), + [anon_sym_TILDE] = ACTIONS(1564), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1564), + [anon_sym_AMP] = ACTIONS(1564), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym___extension__] = ACTIONS(1562), + [anon_sym_typedef] = ACTIONS(1562), + [anon_sym_extern] = ACTIONS(1562), + [anon_sym___attribute__] = ACTIONS(1562), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym___declspec] = ACTIONS(1562), + [anon_sym___cdecl] = ACTIONS(1562), + [anon_sym___clrcall] = ACTIONS(1562), + [anon_sym___stdcall] = ACTIONS(1562), + [anon_sym___fastcall] = ACTIONS(1562), + [anon_sym___thiscall] = ACTIONS(1562), + [anon_sym___vectorcall] = ACTIONS(1562), + [anon_sym_LBRACE] = ACTIONS(1564), + [anon_sym_signed] = ACTIONS(1562), + [anon_sym_unsigned] = ACTIONS(1562), + [anon_sym_long] = ACTIONS(1562), + [anon_sym_short] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1562), + [anon_sym_auto] = ACTIONS(1562), + [anon_sym_register] = ACTIONS(1562), + [anon_sym_inline] = ACTIONS(1562), + [anon_sym___inline] = ACTIONS(1562), + [anon_sym___inline__] = ACTIONS(1562), + [anon_sym___forceinline] = ACTIONS(1562), + [anon_sym_thread_local] = ACTIONS(1562), + [anon_sym___thread] = ACTIONS(1562), + [anon_sym_const] = ACTIONS(1562), + [anon_sym_constexpr] = ACTIONS(1562), + [anon_sym_volatile] = ACTIONS(1562), + [anon_sym_restrict] = ACTIONS(1562), + [anon_sym___restrict__] = ACTIONS(1562), + [anon_sym__Atomic] = ACTIONS(1562), + [anon_sym__Noreturn] = ACTIONS(1562), + [anon_sym_noreturn] = ACTIONS(1562), + [sym_primitive_type] = ACTIONS(1562), + [anon_sym_enum] = ACTIONS(1562), + [anon_sym_struct] = ACTIONS(1562), + [anon_sym_union] = ACTIONS(1562), + [anon_sym_if] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1562), + [anon_sym_case] = ACTIONS(1562), + [anon_sym_default] = ACTIONS(1562), + [anon_sym_while] = ACTIONS(1562), + [anon_sym_do] = ACTIONS(1562), + [anon_sym_for] = ACTIONS(1562), + [anon_sym_return] = ACTIONS(1562), + [anon_sym_break] = ACTIONS(1562), + [anon_sym_continue] = ACTIONS(1562), + [anon_sym_goto] = ACTIONS(1562), + [anon_sym_DASH_DASH] = ACTIONS(1564), + [anon_sym_PLUS_PLUS] = ACTIONS(1564), + [anon_sym_sizeof] = ACTIONS(1562), + [anon_sym___alignof__] = ACTIONS(1562), + [anon_sym___alignof] = ACTIONS(1562), + [anon_sym__alignof] = ACTIONS(1562), + [anon_sym_alignof] = ACTIONS(1562), + [anon_sym__Alignof] = ACTIONS(1562), + [anon_sym_offsetof] = ACTIONS(1562), + [anon_sym___builtin_va_arg] = ACTIONS(1562), + [anon_sym__Generic] = ACTIONS(1562), + [anon_sym_asm] = ACTIONS(1562), + [anon_sym___asm__] = ACTIONS(1562), + [sym_number_literal] = ACTIONS(1564), + [anon_sym_L_SQUOTE] = ACTIONS(1564), + [anon_sym_u_SQUOTE] = ACTIONS(1564), + [anon_sym_U_SQUOTE] = ACTIONS(1564), + [anon_sym_u8_SQUOTE] = ACTIONS(1564), + [anon_sym_SQUOTE] = ACTIONS(1564), + [anon_sym_L_DQUOTE] = ACTIONS(1564), + [anon_sym_u_DQUOTE] = ACTIONS(1564), + [anon_sym_U_DQUOTE] = ACTIONS(1564), + [anon_sym_u8_DQUOTE] = ACTIONS(1564), + [anon_sym_DQUOTE] = ACTIONS(1564), + [sym_true] = ACTIONS(1562), + [sym_false] = ACTIONS(1562), + [anon_sym_NULL] = ACTIONS(1562), + [anon_sym_nullptr] = ACTIONS(1562), + [sym_comment] = ACTIONS(3), + }, + [171] = { + [sym_identifier] = ACTIONS(1566), + [aux_sym_preproc_include_token1] = ACTIONS(1566), + [aux_sym_preproc_def_token1] = ACTIONS(1566), + [aux_sym_preproc_if_token1] = ACTIONS(1566), + [aux_sym_preproc_if_token2] = ACTIONS(1566), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1566), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1566), + [aux_sym_preproc_else_token1] = ACTIONS(1566), + [aux_sym_preproc_elif_token1] = ACTIONS(1566), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1566), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1566), + [sym_preproc_directive] = ACTIONS(1566), + [anon_sym_LPAREN2] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1568), + [anon_sym_TILDE] = ACTIONS(1568), + [anon_sym_DASH] = ACTIONS(1566), + [anon_sym_PLUS] = ACTIONS(1566), + [anon_sym_STAR] = ACTIONS(1568), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_SEMI] = ACTIONS(1568), + [anon_sym___extension__] = ACTIONS(1566), + [anon_sym_typedef] = ACTIONS(1566), + [anon_sym_extern] = ACTIONS(1566), + [anon_sym___attribute__] = ACTIONS(1566), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), + [anon_sym___declspec] = ACTIONS(1566), + [anon_sym___cdecl] = ACTIONS(1566), + [anon_sym___clrcall] = ACTIONS(1566), + [anon_sym___stdcall] = ACTIONS(1566), + [anon_sym___fastcall] = ACTIONS(1566), + [anon_sym___thiscall] = ACTIONS(1566), + [anon_sym___vectorcall] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_signed] = ACTIONS(1566), + [anon_sym_unsigned] = ACTIONS(1566), + [anon_sym_long] = ACTIONS(1566), + [anon_sym_short] = ACTIONS(1566), + [anon_sym_static] = ACTIONS(1566), + [anon_sym_auto] = ACTIONS(1566), + [anon_sym_register] = ACTIONS(1566), + [anon_sym_inline] = ACTIONS(1566), + [anon_sym___inline] = ACTIONS(1566), + [anon_sym___inline__] = ACTIONS(1566), + [anon_sym___forceinline] = ACTIONS(1566), + [anon_sym_thread_local] = ACTIONS(1566), + [anon_sym___thread] = ACTIONS(1566), + [anon_sym_const] = ACTIONS(1566), + [anon_sym_constexpr] = ACTIONS(1566), + [anon_sym_volatile] = ACTIONS(1566), + [anon_sym_restrict] = ACTIONS(1566), + [anon_sym___restrict__] = ACTIONS(1566), + [anon_sym__Atomic] = ACTIONS(1566), + [anon_sym__Noreturn] = ACTIONS(1566), + [anon_sym_noreturn] = ACTIONS(1566), + [sym_primitive_type] = ACTIONS(1566), + [anon_sym_enum] = ACTIONS(1566), + [anon_sym_struct] = ACTIONS(1566), + [anon_sym_union] = ACTIONS(1566), + [anon_sym_if] = ACTIONS(1566), + [anon_sym_switch] = ACTIONS(1566), + [anon_sym_case] = ACTIONS(1566), + [anon_sym_default] = ACTIONS(1566), + [anon_sym_while] = ACTIONS(1566), + [anon_sym_do] = ACTIONS(1566), + [anon_sym_for] = ACTIONS(1566), + [anon_sym_return] = ACTIONS(1566), + [anon_sym_break] = ACTIONS(1566), + [anon_sym_continue] = ACTIONS(1566), + [anon_sym_goto] = ACTIONS(1566), + [anon_sym_DASH_DASH] = ACTIONS(1568), + [anon_sym_PLUS_PLUS] = ACTIONS(1568), + [anon_sym_sizeof] = ACTIONS(1566), + [anon_sym___alignof__] = ACTIONS(1566), + [anon_sym___alignof] = ACTIONS(1566), + [anon_sym__alignof] = ACTIONS(1566), + [anon_sym_alignof] = ACTIONS(1566), + [anon_sym__Alignof] = ACTIONS(1566), + [anon_sym_offsetof] = ACTIONS(1566), + [anon_sym___builtin_va_arg] = ACTIONS(1566), + [anon_sym__Generic] = ACTIONS(1566), + [anon_sym_asm] = ACTIONS(1566), + [anon_sym___asm__] = ACTIONS(1566), + [sym_number_literal] = ACTIONS(1568), + [anon_sym_L_SQUOTE] = ACTIONS(1568), + [anon_sym_u_SQUOTE] = ACTIONS(1568), + [anon_sym_U_SQUOTE] = ACTIONS(1568), + [anon_sym_u8_SQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1568), + [anon_sym_L_DQUOTE] = ACTIONS(1568), + [anon_sym_u_DQUOTE] = ACTIONS(1568), + [anon_sym_U_DQUOTE] = ACTIONS(1568), + [anon_sym_u8_DQUOTE] = ACTIONS(1568), + [anon_sym_DQUOTE] = ACTIONS(1568), + [sym_true] = ACTIONS(1566), + [sym_false] = ACTIONS(1566), + [anon_sym_NULL] = ACTIONS(1566), + [anon_sym_nullptr] = ACTIONS(1566), + [sym_comment] = ACTIONS(3), + }, + [172] = { + [sym_identifier] = ACTIONS(1444), + [aux_sym_preproc_include_token1] = ACTIONS(1444), + [aux_sym_preproc_def_token1] = ACTIONS(1444), + [aux_sym_preproc_if_token1] = ACTIONS(1444), + [aux_sym_preproc_if_token2] = ACTIONS(1444), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1444), + [aux_sym_preproc_else_token1] = ACTIONS(1444), + [aux_sym_preproc_elif_token1] = ACTIONS(1444), + [sym_preproc_directive] = ACTIONS(1444), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [anon_sym_TILDE] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym___extension__] = ACTIONS(1444), + [anon_sym_typedef] = ACTIONS(1444), + [anon_sym_extern] = ACTIONS(1444), + [anon_sym___attribute__] = ACTIONS(1444), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), + [anon_sym___declspec] = ACTIONS(1444), + [anon_sym___cdecl] = ACTIONS(1444), + [anon_sym___clrcall] = ACTIONS(1444), + [anon_sym___stdcall] = ACTIONS(1444), + [anon_sym___fastcall] = ACTIONS(1444), + [anon_sym___thiscall] = ACTIONS(1444), + [anon_sym___vectorcall] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_signed] = ACTIONS(1444), + [anon_sym_unsigned] = ACTIONS(1444), + [anon_sym_long] = ACTIONS(1444), + [anon_sym_short] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_auto] = ACTIONS(1444), + [anon_sym_register] = ACTIONS(1444), + [anon_sym_inline] = ACTIONS(1444), + [anon_sym___inline] = ACTIONS(1444), + [anon_sym___inline__] = ACTIONS(1444), + [anon_sym___forceinline] = ACTIONS(1444), + [anon_sym_thread_local] = ACTIONS(1444), + [anon_sym___thread] = ACTIONS(1444), + [anon_sym_const] = ACTIONS(1444), + [anon_sym_constexpr] = ACTIONS(1444), + [anon_sym_volatile] = ACTIONS(1444), + [anon_sym_restrict] = ACTIONS(1444), + [anon_sym___restrict__] = ACTIONS(1444), + [anon_sym__Atomic] = ACTIONS(1444), + [anon_sym__Noreturn] = ACTIONS(1444), + [anon_sym_noreturn] = ACTIONS(1444), + [sym_primitive_type] = ACTIONS(1444), + [anon_sym_enum] = ACTIONS(1444), + [anon_sym_struct] = ACTIONS(1444), + [anon_sym_union] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_else] = ACTIONS(1444), + [anon_sym_switch] = ACTIONS(1444), + [anon_sym_case] = ACTIONS(1444), + [anon_sym_default] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_do] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_goto] = ACTIONS(1444), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_sizeof] = ACTIONS(1444), + [anon_sym___alignof__] = ACTIONS(1444), + [anon_sym___alignof] = ACTIONS(1444), + [anon_sym__alignof] = ACTIONS(1444), + [anon_sym_alignof] = ACTIONS(1444), + [anon_sym__Alignof] = ACTIONS(1444), + [anon_sym_offsetof] = ACTIONS(1444), + [anon_sym___builtin_va_arg] = ACTIONS(1444), + [anon_sym__Generic] = ACTIONS(1444), + [anon_sym_asm] = ACTIONS(1444), + [anon_sym___asm__] = ACTIONS(1444), + [sym_number_literal] = ACTIONS(1446), + [anon_sym_L_SQUOTE] = ACTIONS(1446), + [anon_sym_u_SQUOTE] = ACTIONS(1446), + [anon_sym_U_SQUOTE] = ACTIONS(1446), + [anon_sym_u8_SQUOTE] = ACTIONS(1446), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_L_DQUOTE] = ACTIONS(1446), + [anon_sym_u_DQUOTE] = ACTIONS(1446), + [anon_sym_U_DQUOTE] = ACTIONS(1446), + [anon_sym_u8_DQUOTE] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1446), + [sym_true] = ACTIONS(1444), + [sym_false] = ACTIONS(1444), + [anon_sym_NULL] = ACTIONS(1444), + [anon_sym_nullptr] = ACTIONS(1444), + [sym_comment] = ACTIONS(3), + }, + [173] = { + [sym_identifier] = ACTIONS(1428), + [aux_sym_preproc_include_token1] = ACTIONS(1428), + [aux_sym_preproc_def_token1] = ACTIONS(1428), + [aux_sym_preproc_if_token1] = ACTIONS(1428), + [aux_sym_preproc_if_token2] = ACTIONS(1428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1428), + [aux_sym_preproc_else_token1] = ACTIONS(1428), + [aux_sym_preproc_elif_token1] = ACTIONS(1428), + [sym_preproc_directive] = ACTIONS(1428), + [anon_sym_LPAREN2] = ACTIONS(1430), + [anon_sym_BANG] = ACTIONS(1430), + [anon_sym_TILDE] = ACTIONS(1430), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym___extension__] = ACTIONS(1428), + [anon_sym_typedef] = ACTIONS(1428), + [anon_sym_extern] = ACTIONS(1428), + [anon_sym___attribute__] = ACTIONS(1428), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1430), + [anon_sym___declspec] = ACTIONS(1428), + [anon_sym___cdecl] = ACTIONS(1428), + [anon_sym___clrcall] = ACTIONS(1428), + [anon_sym___stdcall] = ACTIONS(1428), + [anon_sym___fastcall] = ACTIONS(1428), + [anon_sym___thiscall] = ACTIONS(1428), + [anon_sym___vectorcall] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_signed] = ACTIONS(1428), + [anon_sym_unsigned] = ACTIONS(1428), + [anon_sym_long] = ACTIONS(1428), + [anon_sym_short] = ACTIONS(1428), + [anon_sym_static] = ACTIONS(1428), + [anon_sym_auto] = ACTIONS(1428), + [anon_sym_register] = ACTIONS(1428), + [anon_sym_inline] = ACTIONS(1428), + [anon_sym___inline] = ACTIONS(1428), + [anon_sym___inline__] = ACTIONS(1428), + [anon_sym___forceinline] = ACTIONS(1428), + [anon_sym_thread_local] = ACTIONS(1428), + [anon_sym___thread] = ACTIONS(1428), + [anon_sym_const] = ACTIONS(1428), + [anon_sym_constexpr] = ACTIONS(1428), + [anon_sym_volatile] = ACTIONS(1428), + [anon_sym_restrict] = ACTIONS(1428), + [anon_sym___restrict__] = ACTIONS(1428), + [anon_sym__Atomic] = ACTIONS(1428), + [anon_sym__Noreturn] = ACTIONS(1428), + [anon_sym_noreturn] = ACTIONS(1428), + [sym_primitive_type] = ACTIONS(1428), + [anon_sym_enum] = ACTIONS(1428), + [anon_sym_struct] = ACTIONS(1428), + [anon_sym_union] = ACTIONS(1428), + [anon_sym_if] = ACTIONS(1428), + [anon_sym_else] = ACTIONS(1428), + [anon_sym_switch] = ACTIONS(1428), + [anon_sym_case] = ACTIONS(1428), + [anon_sym_default] = ACTIONS(1428), + [anon_sym_while] = ACTIONS(1428), + [anon_sym_do] = ACTIONS(1428), + [anon_sym_for] = ACTIONS(1428), + [anon_sym_return] = ACTIONS(1428), + [anon_sym_break] = ACTIONS(1428), + [anon_sym_continue] = ACTIONS(1428), + [anon_sym_goto] = ACTIONS(1428), + [anon_sym_DASH_DASH] = ACTIONS(1430), + [anon_sym_PLUS_PLUS] = ACTIONS(1430), + [anon_sym_sizeof] = ACTIONS(1428), + [anon_sym___alignof__] = ACTIONS(1428), + [anon_sym___alignof] = ACTIONS(1428), + [anon_sym__alignof] = ACTIONS(1428), + [anon_sym_alignof] = ACTIONS(1428), + [anon_sym__Alignof] = ACTIONS(1428), + [anon_sym_offsetof] = ACTIONS(1428), + [anon_sym___builtin_va_arg] = ACTIONS(1428), + [anon_sym__Generic] = ACTIONS(1428), + [anon_sym_asm] = ACTIONS(1428), + [anon_sym___asm__] = ACTIONS(1428), + [sym_number_literal] = ACTIONS(1430), + [anon_sym_L_SQUOTE] = ACTIONS(1430), + [anon_sym_u_SQUOTE] = ACTIONS(1430), + [anon_sym_U_SQUOTE] = ACTIONS(1430), + [anon_sym_u8_SQUOTE] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(1430), + [anon_sym_L_DQUOTE] = ACTIONS(1430), + [anon_sym_u_DQUOTE] = ACTIONS(1430), + [anon_sym_U_DQUOTE] = ACTIONS(1430), + [anon_sym_u8_DQUOTE] = ACTIONS(1430), + [anon_sym_DQUOTE] = ACTIONS(1430), + [sym_true] = ACTIONS(1428), + [sym_false] = ACTIONS(1428), + [anon_sym_NULL] = ACTIONS(1428), + [anon_sym_nullptr] = ACTIONS(1428), + [sym_comment] = ACTIONS(3), + }, + [174] = { + [sym_identifier] = ACTIONS(1380), + [aux_sym_preproc_include_token1] = ACTIONS(1380), + [aux_sym_preproc_def_token1] = ACTIONS(1380), + [aux_sym_preproc_if_token1] = ACTIONS(1380), + [aux_sym_preproc_if_token2] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), + [aux_sym_preproc_else_token1] = ACTIONS(1380), + [aux_sym_preproc_elif_token1] = ACTIONS(1380), + [sym_preproc_directive] = ACTIONS(1380), + [anon_sym_LPAREN2] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_STAR] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym___extension__] = ACTIONS(1380), + [anon_sym_typedef] = ACTIONS(1380), + [anon_sym_extern] = ACTIONS(1380), + [anon_sym___attribute__] = ACTIONS(1380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym___declspec] = ACTIONS(1380), + [anon_sym___cdecl] = ACTIONS(1380), + [anon_sym___clrcall] = ACTIONS(1380), + [anon_sym___stdcall] = ACTIONS(1380), + [anon_sym___fastcall] = ACTIONS(1380), + [anon_sym___thiscall] = ACTIONS(1380), + [anon_sym___vectorcall] = ACTIONS(1380), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_signed] = ACTIONS(1380), + [anon_sym_unsigned] = ACTIONS(1380), + [anon_sym_long] = ACTIONS(1380), + [anon_sym_short] = ACTIONS(1380), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_auto] = ACTIONS(1380), + [anon_sym_register] = ACTIONS(1380), + [anon_sym_inline] = ACTIONS(1380), + [anon_sym___inline] = ACTIONS(1380), + [anon_sym___inline__] = ACTIONS(1380), + [anon_sym___forceinline] = ACTIONS(1380), + [anon_sym_thread_local] = ACTIONS(1380), + [anon_sym___thread] = ACTIONS(1380), + [anon_sym_const] = ACTIONS(1380), + [anon_sym_constexpr] = ACTIONS(1380), + [anon_sym_volatile] = ACTIONS(1380), + [anon_sym_restrict] = ACTIONS(1380), + [anon_sym___restrict__] = ACTIONS(1380), + [anon_sym__Atomic] = ACTIONS(1380), + [anon_sym__Noreturn] = ACTIONS(1380), + [anon_sym_noreturn] = ACTIONS(1380), + [sym_primitive_type] = ACTIONS(1380), + [anon_sym_enum] = ACTIONS(1380), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_union] = ACTIONS(1380), + [anon_sym_if] = ACTIONS(1380), + [anon_sym_else] = ACTIONS(1380), + [anon_sym_switch] = ACTIONS(1380), + [anon_sym_case] = ACTIONS(1380), + [anon_sym_default] = ACTIONS(1380), + [anon_sym_while] = ACTIONS(1380), + [anon_sym_do] = ACTIONS(1380), + [anon_sym_for] = ACTIONS(1380), + [anon_sym_return] = ACTIONS(1380), + [anon_sym_break] = ACTIONS(1380), + [anon_sym_continue] = ACTIONS(1380), + [anon_sym_goto] = ACTIONS(1380), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1380), + [anon_sym___alignof__] = ACTIONS(1380), + [anon_sym___alignof] = ACTIONS(1380), + [anon_sym__alignof] = ACTIONS(1380), + [anon_sym_alignof] = ACTIONS(1380), + [anon_sym__Alignof] = ACTIONS(1380), + [anon_sym_offsetof] = ACTIONS(1380), + [anon_sym___builtin_va_arg] = ACTIONS(1380), + [anon_sym__Generic] = ACTIONS(1380), + [anon_sym_asm] = ACTIONS(1380), + [anon_sym___asm__] = ACTIONS(1380), + [sym_number_literal] = ACTIONS(1382), + [anon_sym_L_SQUOTE] = ACTIONS(1382), + [anon_sym_u_SQUOTE] = ACTIONS(1382), + [anon_sym_U_SQUOTE] = ACTIONS(1382), + [anon_sym_u8_SQUOTE] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [anon_sym_L_DQUOTE] = ACTIONS(1382), + [anon_sym_u_DQUOTE] = ACTIONS(1382), + [anon_sym_U_DQUOTE] = ACTIONS(1382), + [anon_sym_u8_DQUOTE] = ACTIONS(1382), + [anon_sym_DQUOTE] = ACTIONS(1382), + [sym_true] = ACTIONS(1380), + [sym_false] = ACTIONS(1380), + [anon_sym_NULL] = ACTIONS(1380), + [anon_sym_nullptr] = ACTIONS(1380), + [sym_comment] = ACTIONS(3), + }, + [175] = { + [sym_identifier] = ACTIONS(1360), + [aux_sym_preproc_include_token1] = ACTIONS(1360), + [aux_sym_preproc_def_token1] = ACTIONS(1360), + [aux_sym_preproc_if_token1] = ACTIONS(1360), + [aux_sym_preproc_if_token2] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), + [aux_sym_preproc_else_token1] = ACTIONS(1360), + [aux_sym_preproc_elif_token1] = ACTIONS(1360), + [sym_preproc_directive] = ACTIONS(1360), + [anon_sym_LPAREN2] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [anon_sym_TILDE] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym___extension__] = ACTIONS(1360), + [anon_sym_typedef] = ACTIONS(1360), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym___attribute__] = ACTIONS(1360), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), + [anon_sym___declspec] = ACTIONS(1360), + [anon_sym___cdecl] = ACTIONS(1360), + [anon_sym___clrcall] = ACTIONS(1360), + [anon_sym___stdcall] = ACTIONS(1360), + [anon_sym___fastcall] = ACTIONS(1360), + [anon_sym___thiscall] = ACTIONS(1360), + [anon_sym___vectorcall] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_signed] = ACTIONS(1360), + [anon_sym_unsigned] = ACTIONS(1360), + [anon_sym_long] = ACTIONS(1360), + [anon_sym_short] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_auto] = ACTIONS(1360), + [anon_sym_register] = ACTIONS(1360), + [anon_sym_inline] = ACTIONS(1360), + [anon_sym___inline] = ACTIONS(1360), + [anon_sym___inline__] = ACTIONS(1360), + [anon_sym___forceinline] = ACTIONS(1360), + [anon_sym_thread_local] = ACTIONS(1360), + [anon_sym___thread] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_constexpr] = ACTIONS(1360), + [anon_sym_volatile] = ACTIONS(1360), + [anon_sym_restrict] = ACTIONS(1360), + [anon_sym___restrict__] = ACTIONS(1360), + [anon_sym__Atomic] = ACTIONS(1360), + [anon_sym__Noreturn] = ACTIONS(1360), + [anon_sym_noreturn] = ACTIONS(1360), + [sym_primitive_type] = ACTIONS(1360), + [anon_sym_enum] = ACTIONS(1360), + [anon_sym_struct] = ACTIONS(1360), + [anon_sym_union] = ACTIONS(1360), + [anon_sym_if] = ACTIONS(1360), + [anon_sym_else] = ACTIONS(1360), + [anon_sym_switch] = ACTIONS(1360), + [anon_sym_case] = ACTIONS(1360), + [anon_sym_default] = ACTIONS(1360), + [anon_sym_while] = ACTIONS(1360), + [anon_sym_do] = ACTIONS(1360), + [anon_sym_for] = ACTIONS(1360), + [anon_sym_return] = ACTIONS(1360), + [anon_sym_break] = ACTIONS(1360), + [anon_sym_continue] = ACTIONS(1360), + [anon_sym_goto] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1362), + [anon_sym_PLUS_PLUS] = ACTIONS(1362), + [anon_sym_sizeof] = ACTIONS(1360), + [anon_sym___alignof__] = ACTIONS(1360), + [anon_sym___alignof] = ACTIONS(1360), + [anon_sym__alignof] = ACTIONS(1360), + [anon_sym_alignof] = ACTIONS(1360), + [anon_sym__Alignof] = ACTIONS(1360), + [anon_sym_offsetof] = ACTIONS(1360), + [anon_sym___builtin_va_arg] = ACTIONS(1360), + [anon_sym__Generic] = ACTIONS(1360), + [anon_sym_asm] = ACTIONS(1360), + [anon_sym___asm__] = ACTIONS(1360), + [sym_number_literal] = ACTIONS(1362), + [anon_sym_L_SQUOTE] = ACTIONS(1362), + [anon_sym_u_SQUOTE] = ACTIONS(1362), + [anon_sym_U_SQUOTE] = ACTIONS(1362), + [anon_sym_u8_SQUOTE] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_L_DQUOTE] = ACTIONS(1362), + [anon_sym_u_DQUOTE] = ACTIONS(1362), + [anon_sym_U_DQUOTE] = ACTIONS(1362), + [anon_sym_u8_DQUOTE] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym_true] = ACTIONS(1360), + [sym_false] = ACTIONS(1360), + [anon_sym_NULL] = ACTIONS(1360), + [anon_sym_nullptr] = ACTIONS(1360), + [sym_comment] = ACTIONS(3), + }, + [176] = { + [sym_identifier] = ACTIONS(1356), + [aux_sym_preproc_include_token1] = ACTIONS(1356), + [aux_sym_preproc_def_token1] = ACTIONS(1356), + [aux_sym_preproc_if_token1] = ACTIONS(1356), + [aux_sym_preproc_if_token2] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), + [aux_sym_preproc_else_token1] = ACTIONS(1356), + [aux_sym_preproc_elif_token1] = ACTIONS(1356), + [sym_preproc_directive] = ACTIONS(1356), + [anon_sym_LPAREN2] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym___extension__] = ACTIONS(1356), + [anon_sym_typedef] = ACTIONS(1356), + [anon_sym_extern] = ACTIONS(1356), + [anon_sym___attribute__] = ACTIONS(1356), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1358), + [anon_sym___declspec] = ACTIONS(1356), + [anon_sym___cdecl] = ACTIONS(1356), + [anon_sym___clrcall] = ACTIONS(1356), + [anon_sym___stdcall] = ACTIONS(1356), + [anon_sym___fastcall] = ACTIONS(1356), + [anon_sym___thiscall] = ACTIONS(1356), + [anon_sym___vectorcall] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_signed] = ACTIONS(1356), + [anon_sym_unsigned] = ACTIONS(1356), + [anon_sym_long] = ACTIONS(1356), + [anon_sym_short] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1356), + [anon_sym_auto] = ACTIONS(1356), + [anon_sym_register] = ACTIONS(1356), + [anon_sym_inline] = ACTIONS(1356), + [anon_sym___inline] = ACTIONS(1356), + [anon_sym___inline__] = ACTIONS(1356), + [anon_sym___forceinline] = ACTIONS(1356), + [anon_sym_thread_local] = ACTIONS(1356), + [anon_sym___thread] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1356), + [anon_sym_constexpr] = ACTIONS(1356), + [anon_sym_volatile] = ACTIONS(1356), + [anon_sym_restrict] = ACTIONS(1356), + [anon_sym___restrict__] = ACTIONS(1356), + [anon_sym__Atomic] = ACTIONS(1356), + [anon_sym__Noreturn] = ACTIONS(1356), + [anon_sym_noreturn] = ACTIONS(1356), + [sym_primitive_type] = ACTIONS(1356), + [anon_sym_enum] = ACTIONS(1356), + [anon_sym_struct] = ACTIONS(1356), + [anon_sym_union] = ACTIONS(1356), + [anon_sym_if] = ACTIONS(1356), + [anon_sym_else] = ACTIONS(1356), + [anon_sym_switch] = ACTIONS(1356), + [anon_sym_case] = ACTIONS(1356), + [anon_sym_default] = ACTIONS(1356), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_do] = ACTIONS(1356), + [anon_sym_for] = ACTIONS(1356), + [anon_sym_return] = ACTIONS(1356), + [anon_sym_break] = ACTIONS(1356), + [anon_sym_continue] = ACTIONS(1356), + [anon_sym_goto] = ACTIONS(1356), + [anon_sym_DASH_DASH] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1358), + [anon_sym_sizeof] = ACTIONS(1356), + [anon_sym___alignof__] = ACTIONS(1356), + [anon_sym___alignof] = ACTIONS(1356), + [anon_sym__alignof] = ACTIONS(1356), + [anon_sym_alignof] = ACTIONS(1356), + [anon_sym__Alignof] = ACTIONS(1356), + [anon_sym_offsetof] = ACTIONS(1356), + [anon_sym___builtin_va_arg] = ACTIONS(1356), + [anon_sym__Generic] = ACTIONS(1356), + [anon_sym_asm] = ACTIONS(1356), + [anon_sym___asm__] = ACTIONS(1356), + [sym_number_literal] = ACTIONS(1358), + [anon_sym_L_SQUOTE] = ACTIONS(1358), + [anon_sym_u_SQUOTE] = ACTIONS(1358), + [anon_sym_U_SQUOTE] = ACTIONS(1358), + [anon_sym_u8_SQUOTE] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), + [anon_sym_L_DQUOTE] = ACTIONS(1358), + [anon_sym_u_DQUOTE] = ACTIONS(1358), + [anon_sym_U_DQUOTE] = ACTIONS(1358), + [anon_sym_u8_DQUOTE] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [sym_true] = ACTIONS(1356), + [sym_false] = ACTIONS(1356), + [anon_sym_NULL] = ACTIONS(1356), + [anon_sym_nullptr] = ACTIONS(1356), + [sym_comment] = ACTIONS(3), + }, + [177] = { + [sym_identifier] = ACTIONS(1372), + [aux_sym_preproc_include_token1] = ACTIONS(1372), + [aux_sym_preproc_def_token1] = ACTIONS(1372), + [aux_sym_preproc_if_token1] = ACTIONS(1372), + [aux_sym_preproc_if_token2] = ACTIONS(1372), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), + [aux_sym_preproc_else_token1] = ACTIONS(1372), + [aux_sym_preproc_elif_token1] = ACTIONS(1372), + [sym_preproc_directive] = ACTIONS(1372), + [anon_sym_LPAREN2] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_TILDE] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_STAR] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym___extension__] = ACTIONS(1372), + [anon_sym_typedef] = ACTIONS(1372), + [anon_sym_extern] = ACTIONS(1372), + [anon_sym___attribute__] = ACTIONS(1372), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), + [anon_sym___declspec] = ACTIONS(1372), + [anon_sym___cdecl] = ACTIONS(1372), + [anon_sym___clrcall] = ACTIONS(1372), + [anon_sym___stdcall] = ACTIONS(1372), + [anon_sym___fastcall] = ACTIONS(1372), + [anon_sym___thiscall] = ACTIONS(1372), + [anon_sym___vectorcall] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_signed] = ACTIONS(1372), + [anon_sym_unsigned] = ACTIONS(1372), + [anon_sym_long] = ACTIONS(1372), + [anon_sym_short] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_auto] = ACTIONS(1372), + [anon_sym_register] = ACTIONS(1372), + [anon_sym_inline] = ACTIONS(1372), + [anon_sym___inline] = ACTIONS(1372), + [anon_sym___inline__] = ACTIONS(1372), + [anon_sym___forceinline] = ACTIONS(1372), + [anon_sym_thread_local] = ACTIONS(1372), + [anon_sym___thread] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1372), + [anon_sym_constexpr] = ACTIONS(1372), + [anon_sym_volatile] = ACTIONS(1372), + [anon_sym_restrict] = ACTIONS(1372), + [anon_sym___restrict__] = ACTIONS(1372), + [anon_sym__Atomic] = ACTIONS(1372), + [anon_sym__Noreturn] = ACTIONS(1372), + [anon_sym_noreturn] = ACTIONS(1372), + [sym_primitive_type] = ACTIONS(1372), + [anon_sym_enum] = ACTIONS(1372), + [anon_sym_struct] = ACTIONS(1372), + [anon_sym_union] = ACTIONS(1372), + [anon_sym_if] = ACTIONS(1372), + [anon_sym_else] = ACTIONS(1372), + [anon_sym_switch] = ACTIONS(1372), + [anon_sym_case] = ACTIONS(1372), + [anon_sym_default] = ACTIONS(1372), + [anon_sym_while] = ACTIONS(1372), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_for] = ACTIONS(1372), + [anon_sym_return] = ACTIONS(1372), + [anon_sym_break] = ACTIONS(1372), + [anon_sym_continue] = ACTIONS(1372), + [anon_sym_goto] = ACTIONS(1372), + [anon_sym_DASH_DASH] = ACTIONS(1374), + [anon_sym_PLUS_PLUS] = ACTIONS(1374), + [anon_sym_sizeof] = ACTIONS(1372), + [anon_sym___alignof__] = ACTIONS(1372), + [anon_sym___alignof] = ACTIONS(1372), + [anon_sym__alignof] = ACTIONS(1372), + [anon_sym_alignof] = ACTIONS(1372), + [anon_sym__Alignof] = ACTIONS(1372), + [anon_sym_offsetof] = ACTIONS(1372), + [anon_sym___builtin_va_arg] = ACTIONS(1372), + [anon_sym__Generic] = ACTIONS(1372), + [anon_sym_asm] = ACTIONS(1372), + [anon_sym___asm__] = ACTIONS(1372), + [sym_number_literal] = ACTIONS(1374), + [anon_sym_L_SQUOTE] = ACTIONS(1374), + [anon_sym_u_SQUOTE] = ACTIONS(1374), + [anon_sym_U_SQUOTE] = ACTIONS(1374), + [anon_sym_u8_SQUOTE] = ACTIONS(1374), + [anon_sym_SQUOTE] = ACTIONS(1374), + [anon_sym_L_DQUOTE] = ACTIONS(1374), + [anon_sym_u_DQUOTE] = ACTIONS(1374), + [anon_sym_U_DQUOTE] = ACTIONS(1374), + [anon_sym_u8_DQUOTE] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_true] = ACTIONS(1372), + [sym_false] = ACTIONS(1372), + [anon_sym_NULL] = ACTIONS(1372), + [anon_sym_nullptr] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [178] = { + [sym_identifier] = ACTIONS(1248), + [aux_sym_preproc_include_token1] = ACTIONS(1248), + [aux_sym_preproc_def_token1] = ACTIONS(1248), + [aux_sym_preproc_if_token1] = ACTIONS(1248), + [aux_sym_preproc_if_token2] = ACTIONS(1248), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1248), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1248), + [aux_sym_preproc_else_token1] = ACTIONS(1248), + [aux_sym_preproc_elif_token1] = ACTIONS(1248), + [sym_preproc_directive] = ACTIONS(1248), + [anon_sym_LPAREN2] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1250), + [anon_sym_TILDE] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_PLUS] = ACTIONS(1248), + [anon_sym_STAR] = ACTIONS(1250), + [anon_sym_AMP] = ACTIONS(1250), + [anon_sym_SEMI] = ACTIONS(1250), + [anon_sym___extension__] = ACTIONS(1248), + [anon_sym_typedef] = ACTIONS(1248), + [anon_sym_extern] = ACTIONS(1248), + [anon_sym___attribute__] = ACTIONS(1248), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1250), + [anon_sym___declspec] = ACTIONS(1248), [anon_sym___cdecl] = ACTIONS(1248), [anon_sym___clrcall] = ACTIONS(1248), [anon_sym___stdcall] = ACTIONS(1248), @@ -34550,6 +38574,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1248), [anon_sym_register] = ACTIONS(1248), [anon_sym_inline] = ACTIONS(1248), + [anon_sym___inline] = ACTIONS(1248), + [anon_sym___inline__] = ACTIONS(1248), + [anon_sym___forceinline] = ACTIONS(1248), [anon_sym_thread_local] = ACTIONS(1248), [anon_sym___thread] = ACTIONS(1248), [anon_sym_const] = ACTIONS(1248), @@ -34579,7 +38606,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1250), [anon_sym_PLUS_PLUS] = ACTIONS(1250), [anon_sym_sizeof] = ACTIONS(1248), + [anon_sym___alignof__] = ACTIONS(1248), + [anon_sym___alignof] = ACTIONS(1248), + [anon_sym__alignof] = ACTIONS(1248), + [anon_sym_alignof] = ACTIONS(1248), + [anon_sym__Alignof] = ACTIONS(1248), [anon_sym_offsetof] = ACTIONS(1248), + [anon_sym___builtin_va_arg] = ACTIONS(1248), [anon_sym__Generic] = ACTIONS(1248), [anon_sym_asm] = ACTIONS(1248), [anon_sym___asm__] = ACTIONS(1248), @@ -34600,1075 +38633,502 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1248), [sym_comment] = ACTIONS(3), }, - [164] = { - [sym_identifier] = ACTIONS(1200), - [aux_sym_preproc_include_token1] = ACTIONS(1200), - [aux_sym_preproc_def_token1] = ACTIONS(1200), - [aux_sym_preproc_if_token1] = ACTIONS(1200), - [aux_sym_preproc_if_token2] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1200), - [aux_sym_preproc_else_token1] = ACTIONS(1200), - [aux_sym_preproc_elif_token1] = ACTIONS(1200), - [sym_preproc_directive] = ACTIONS(1200), - [anon_sym_LPAREN2] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1202), - [anon_sym_TILDE] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(1200), - [anon_sym_STAR] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1202), - [anon_sym_typedef] = ACTIONS(1200), - [anon_sym_extern] = ACTIONS(1200), - [anon_sym___attribute__] = ACTIONS(1200), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1202), - [anon_sym___declspec] = ACTIONS(1200), - [anon_sym___cdecl] = ACTIONS(1200), - [anon_sym___clrcall] = ACTIONS(1200), - [anon_sym___stdcall] = ACTIONS(1200), - [anon_sym___fastcall] = ACTIONS(1200), - [anon_sym___thiscall] = ACTIONS(1200), - [anon_sym___vectorcall] = ACTIONS(1200), - [anon_sym_LBRACE] = ACTIONS(1202), - [anon_sym_signed] = ACTIONS(1200), - [anon_sym_unsigned] = ACTIONS(1200), - [anon_sym_long] = ACTIONS(1200), - [anon_sym_short] = ACTIONS(1200), - [anon_sym_static] = ACTIONS(1200), - [anon_sym_auto] = ACTIONS(1200), - [anon_sym_register] = ACTIONS(1200), - [anon_sym_inline] = ACTIONS(1200), - [anon_sym_thread_local] = ACTIONS(1200), - [anon_sym___thread] = ACTIONS(1200), - [anon_sym_const] = ACTIONS(1200), - [anon_sym_constexpr] = ACTIONS(1200), - [anon_sym_volatile] = ACTIONS(1200), - [anon_sym_restrict] = ACTIONS(1200), - [anon_sym___restrict__] = ACTIONS(1200), - [anon_sym__Atomic] = ACTIONS(1200), - [anon_sym__Noreturn] = ACTIONS(1200), - [anon_sym_noreturn] = ACTIONS(1200), - [sym_primitive_type] = ACTIONS(1200), - [anon_sym_enum] = ACTIONS(1200), - [anon_sym_struct] = ACTIONS(1200), - [anon_sym_union] = ACTIONS(1200), - [anon_sym_if] = ACTIONS(1200), - [anon_sym_else] = ACTIONS(1200), - [anon_sym_switch] = ACTIONS(1200), - [anon_sym_case] = ACTIONS(1200), - [anon_sym_default] = ACTIONS(1200), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_do] = ACTIONS(1200), - [anon_sym_for] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1200), - [anon_sym_continue] = ACTIONS(1200), - [anon_sym_goto] = ACTIONS(1200), - [anon_sym_DASH_DASH] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1202), - [anon_sym_sizeof] = ACTIONS(1200), - [anon_sym_offsetof] = ACTIONS(1200), - [anon_sym__Generic] = ACTIONS(1200), - [anon_sym_asm] = ACTIONS(1200), - [anon_sym___asm__] = ACTIONS(1200), - [sym_number_literal] = ACTIONS(1202), - [anon_sym_L_SQUOTE] = ACTIONS(1202), - [anon_sym_u_SQUOTE] = ACTIONS(1202), - [anon_sym_U_SQUOTE] = ACTIONS(1202), - [anon_sym_u8_SQUOTE] = ACTIONS(1202), - [anon_sym_SQUOTE] = ACTIONS(1202), - [anon_sym_L_DQUOTE] = ACTIONS(1202), - [anon_sym_u_DQUOTE] = ACTIONS(1202), - [anon_sym_U_DQUOTE] = ACTIONS(1202), - [anon_sym_u8_DQUOTE] = ACTIONS(1202), - [anon_sym_DQUOTE] = ACTIONS(1202), - [sym_true] = ACTIONS(1200), - [sym_false] = ACTIONS(1200), - [anon_sym_NULL] = ACTIONS(1200), - [anon_sym_nullptr] = ACTIONS(1200), - [sym_comment] = ACTIONS(3), - }, - [165] = { - [sym_identifier] = ACTIONS(1212), - [aux_sym_preproc_include_token1] = ACTIONS(1212), - [aux_sym_preproc_def_token1] = ACTIONS(1212), - [aux_sym_preproc_if_token1] = ACTIONS(1212), - [aux_sym_preproc_if_token2] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1212), - [aux_sym_preproc_else_token1] = ACTIONS(1212), - [aux_sym_preproc_elif_token1] = ACTIONS(1212), - [sym_preproc_directive] = ACTIONS(1212), - [anon_sym_LPAREN2] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_DASH] = ACTIONS(1212), - [anon_sym_PLUS] = ACTIONS(1212), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_typedef] = ACTIONS(1212), - [anon_sym_extern] = ACTIONS(1212), - [anon_sym___attribute__] = ACTIONS(1212), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), - [anon_sym___declspec] = ACTIONS(1212), - [anon_sym___cdecl] = ACTIONS(1212), - [anon_sym___clrcall] = ACTIONS(1212), - [anon_sym___stdcall] = ACTIONS(1212), - [anon_sym___fastcall] = ACTIONS(1212), - [anon_sym___thiscall] = ACTIONS(1212), - [anon_sym___vectorcall] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_signed] = ACTIONS(1212), - [anon_sym_unsigned] = ACTIONS(1212), - [anon_sym_long] = ACTIONS(1212), - [anon_sym_short] = ACTIONS(1212), - [anon_sym_static] = ACTIONS(1212), - [anon_sym_auto] = ACTIONS(1212), - [anon_sym_register] = ACTIONS(1212), - [anon_sym_inline] = ACTIONS(1212), - [anon_sym_thread_local] = ACTIONS(1212), - [anon_sym___thread] = ACTIONS(1212), - [anon_sym_const] = ACTIONS(1212), - [anon_sym_constexpr] = ACTIONS(1212), - [anon_sym_volatile] = ACTIONS(1212), - [anon_sym_restrict] = ACTIONS(1212), - [anon_sym___restrict__] = ACTIONS(1212), - [anon_sym__Atomic] = ACTIONS(1212), - [anon_sym__Noreturn] = ACTIONS(1212), - [anon_sym_noreturn] = ACTIONS(1212), - [sym_primitive_type] = ACTIONS(1212), - [anon_sym_enum] = ACTIONS(1212), - [anon_sym_struct] = ACTIONS(1212), - [anon_sym_union] = ACTIONS(1212), - [anon_sym_if] = ACTIONS(1212), - [anon_sym_else] = ACTIONS(1212), - [anon_sym_switch] = ACTIONS(1212), - [anon_sym_case] = ACTIONS(1212), - [anon_sym_default] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(1212), - [anon_sym_do] = ACTIONS(1212), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_return] = ACTIONS(1212), - [anon_sym_break] = ACTIONS(1212), - [anon_sym_continue] = ACTIONS(1212), - [anon_sym_goto] = ACTIONS(1212), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_sizeof] = ACTIONS(1212), - [anon_sym_offsetof] = ACTIONS(1212), - [anon_sym__Generic] = ACTIONS(1212), - [anon_sym_asm] = ACTIONS(1212), - [anon_sym___asm__] = ACTIONS(1212), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_L_SQUOTE] = ACTIONS(1214), - [anon_sym_u_SQUOTE] = ACTIONS(1214), - [anon_sym_U_SQUOTE] = ACTIONS(1214), - [anon_sym_u8_SQUOTE] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [anon_sym_L_DQUOTE] = ACTIONS(1214), - [anon_sym_u_DQUOTE] = ACTIONS(1214), - [anon_sym_U_DQUOTE] = ACTIONS(1214), - [anon_sym_u8_DQUOTE] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_true] = ACTIONS(1212), - [sym_false] = ACTIONS(1212), - [anon_sym_NULL] = ACTIONS(1212), - [anon_sym_nullptr] = ACTIONS(1212), + [179] = { + [sym_identifier] = ACTIONS(1368), + [aux_sym_preproc_include_token1] = ACTIONS(1368), + [aux_sym_preproc_def_token1] = ACTIONS(1368), + [aux_sym_preproc_if_token1] = ACTIONS(1368), + [aux_sym_preproc_if_token2] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1368), + [aux_sym_preproc_else_token1] = ACTIONS(1368), + [aux_sym_preproc_elif_token1] = ACTIONS(1368), + [sym_preproc_directive] = ACTIONS(1368), + [anon_sym_LPAREN2] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1370), + [anon_sym___extension__] = ACTIONS(1368), + [anon_sym_typedef] = ACTIONS(1368), + [anon_sym_extern] = ACTIONS(1368), + [anon_sym___attribute__] = ACTIONS(1368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1370), + [anon_sym___declspec] = ACTIONS(1368), + [anon_sym___cdecl] = ACTIONS(1368), + [anon_sym___clrcall] = ACTIONS(1368), + [anon_sym___stdcall] = ACTIONS(1368), + [anon_sym___fastcall] = ACTIONS(1368), + [anon_sym___thiscall] = ACTIONS(1368), + [anon_sym___vectorcall] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_signed] = ACTIONS(1368), + [anon_sym_unsigned] = ACTIONS(1368), + [anon_sym_long] = ACTIONS(1368), + [anon_sym_short] = ACTIONS(1368), + [anon_sym_static] = ACTIONS(1368), + [anon_sym_auto] = ACTIONS(1368), + [anon_sym_register] = ACTIONS(1368), + [anon_sym_inline] = ACTIONS(1368), + [anon_sym___inline] = ACTIONS(1368), + [anon_sym___inline__] = ACTIONS(1368), + [anon_sym___forceinline] = ACTIONS(1368), + [anon_sym_thread_local] = ACTIONS(1368), + [anon_sym___thread] = ACTIONS(1368), + [anon_sym_const] = ACTIONS(1368), + [anon_sym_constexpr] = ACTIONS(1368), + [anon_sym_volatile] = ACTIONS(1368), + [anon_sym_restrict] = ACTIONS(1368), + [anon_sym___restrict__] = ACTIONS(1368), + [anon_sym__Atomic] = ACTIONS(1368), + [anon_sym__Noreturn] = ACTIONS(1368), + [anon_sym_noreturn] = ACTIONS(1368), + [sym_primitive_type] = ACTIONS(1368), + [anon_sym_enum] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1368), + [anon_sym_union] = ACTIONS(1368), + [anon_sym_if] = ACTIONS(1368), + [anon_sym_else] = ACTIONS(1368), + [anon_sym_switch] = ACTIONS(1368), + [anon_sym_case] = ACTIONS(1368), + [anon_sym_default] = ACTIONS(1368), + [anon_sym_while] = ACTIONS(1368), + [anon_sym_do] = ACTIONS(1368), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1368), + [anon_sym_break] = ACTIONS(1368), + [anon_sym_continue] = ACTIONS(1368), + [anon_sym_goto] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1370), + [anon_sym_sizeof] = ACTIONS(1368), + [anon_sym___alignof__] = ACTIONS(1368), + [anon_sym___alignof] = ACTIONS(1368), + [anon_sym__alignof] = ACTIONS(1368), + [anon_sym_alignof] = ACTIONS(1368), + [anon_sym__Alignof] = ACTIONS(1368), + [anon_sym_offsetof] = ACTIONS(1368), + [anon_sym___builtin_va_arg] = ACTIONS(1368), + [anon_sym__Generic] = ACTIONS(1368), + [anon_sym_asm] = ACTIONS(1368), + [anon_sym___asm__] = ACTIONS(1368), + [sym_number_literal] = ACTIONS(1370), + [anon_sym_L_SQUOTE] = ACTIONS(1370), + [anon_sym_u_SQUOTE] = ACTIONS(1370), + [anon_sym_U_SQUOTE] = ACTIONS(1370), + [anon_sym_u8_SQUOTE] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1370), + [anon_sym_L_DQUOTE] = ACTIONS(1370), + [anon_sym_u_DQUOTE] = ACTIONS(1370), + [anon_sym_U_DQUOTE] = ACTIONS(1370), + [anon_sym_u8_DQUOTE] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [sym_true] = ACTIONS(1368), + [sym_false] = ACTIONS(1368), + [anon_sym_NULL] = ACTIONS(1368), + [anon_sym_nullptr] = ACTIONS(1368), [sym_comment] = ACTIONS(3), }, - [166] = { - [sym_identifier] = ACTIONS(1320), - [aux_sym_preproc_include_token1] = ACTIONS(1320), - [aux_sym_preproc_def_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token2] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), - [aux_sym_preproc_else_token1] = ACTIONS(1320), - [aux_sym_preproc_elif_token1] = ACTIONS(1320), - [sym_preproc_directive] = ACTIONS(1320), - [anon_sym_LPAREN2] = ACTIONS(1322), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_TILDE] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_typedef] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym___attribute__] = ACTIONS(1320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), - [anon_sym___declspec] = ACTIONS(1320), - [anon_sym___cdecl] = ACTIONS(1320), - [anon_sym___clrcall] = ACTIONS(1320), - [anon_sym___stdcall] = ACTIONS(1320), - [anon_sym___fastcall] = ACTIONS(1320), - [anon_sym___thiscall] = ACTIONS(1320), - [anon_sym___vectorcall] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_signed] = ACTIONS(1320), - [anon_sym_unsigned] = ACTIONS(1320), - [anon_sym_long] = ACTIONS(1320), - [anon_sym_short] = ACTIONS(1320), - [anon_sym_static] = ACTIONS(1320), - [anon_sym_auto] = ACTIONS(1320), - [anon_sym_register] = ACTIONS(1320), - [anon_sym_inline] = ACTIONS(1320), - [anon_sym_thread_local] = ACTIONS(1320), - [anon_sym___thread] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_constexpr] = ACTIONS(1320), - [anon_sym_volatile] = ACTIONS(1320), - [anon_sym_restrict] = ACTIONS(1320), - [anon_sym___restrict__] = ACTIONS(1320), - [anon_sym__Atomic] = ACTIONS(1320), - [anon_sym__Noreturn] = ACTIONS(1320), - [anon_sym_noreturn] = ACTIONS(1320), - [sym_primitive_type] = ACTIONS(1320), - [anon_sym_enum] = ACTIONS(1320), - [anon_sym_struct] = ACTIONS(1320), - [anon_sym_union] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_else] = ACTIONS(1320), - [anon_sym_switch] = ACTIONS(1320), - [anon_sym_case] = ACTIONS(1320), - [anon_sym_default] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_do] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_goto] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1322), - [anon_sym_PLUS_PLUS] = ACTIONS(1322), - [anon_sym_sizeof] = ACTIONS(1320), - [anon_sym_offsetof] = ACTIONS(1320), - [anon_sym__Generic] = ACTIONS(1320), - [anon_sym_asm] = ACTIONS(1320), - [anon_sym___asm__] = ACTIONS(1320), - [sym_number_literal] = ACTIONS(1322), - [anon_sym_L_SQUOTE] = ACTIONS(1322), - [anon_sym_u_SQUOTE] = ACTIONS(1322), - [anon_sym_U_SQUOTE] = ACTIONS(1322), - [anon_sym_u8_SQUOTE] = ACTIONS(1322), - [anon_sym_SQUOTE] = ACTIONS(1322), - [anon_sym_L_DQUOTE] = ACTIONS(1322), - [anon_sym_u_DQUOTE] = ACTIONS(1322), - [anon_sym_U_DQUOTE] = ACTIONS(1322), - [anon_sym_u8_DQUOTE] = ACTIONS(1322), - [anon_sym_DQUOTE] = ACTIONS(1322), - [sym_true] = ACTIONS(1320), - [sym_false] = ACTIONS(1320), - [anon_sym_NULL] = ACTIONS(1320), - [anon_sym_nullptr] = ACTIONS(1320), - [sym_comment] = ACTIONS(3), - }, - [167] = { - [sym_identifier] = ACTIONS(1208), - [aux_sym_preproc_include_token1] = ACTIONS(1208), - [aux_sym_preproc_def_token1] = ACTIONS(1208), - [aux_sym_preproc_if_token1] = ACTIONS(1208), - [aux_sym_preproc_if_token2] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1208), - [aux_sym_preproc_else_token1] = ACTIONS(1208), - [aux_sym_preproc_elif_token1] = ACTIONS(1208), - [sym_preproc_directive] = ACTIONS(1208), - [anon_sym_LPAREN2] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1210), - [anon_sym_AMP] = ACTIONS(1210), - [anon_sym_SEMI] = ACTIONS(1210), - [anon_sym_typedef] = ACTIONS(1208), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym___attribute__] = ACTIONS(1208), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(1208), - [anon_sym___cdecl] = ACTIONS(1208), - [anon_sym___clrcall] = ACTIONS(1208), - [anon_sym___stdcall] = ACTIONS(1208), - [anon_sym___fastcall] = ACTIONS(1208), - [anon_sym___thiscall] = ACTIONS(1208), - [anon_sym___vectorcall] = ACTIONS(1208), - [anon_sym_LBRACE] = ACTIONS(1210), - [anon_sym_signed] = ACTIONS(1208), - [anon_sym_unsigned] = ACTIONS(1208), - [anon_sym_long] = ACTIONS(1208), - [anon_sym_short] = ACTIONS(1208), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_auto] = ACTIONS(1208), - [anon_sym_register] = ACTIONS(1208), - [anon_sym_inline] = ACTIONS(1208), - [anon_sym_thread_local] = ACTIONS(1208), - [anon_sym___thread] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_constexpr] = ACTIONS(1208), - [anon_sym_volatile] = ACTIONS(1208), - [anon_sym_restrict] = ACTIONS(1208), - [anon_sym___restrict__] = ACTIONS(1208), - [anon_sym__Atomic] = ACTIONS(1208), - [anon_sym__Noreturn] = ACTIONS(1208), - [anon_sym_noreturn] = ACTIONS(1208), - [sym_primitive_type] = ACTIONS(1208), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_struct] = ACTIONS(1208), - [anon_sym_union] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_else] = ACTIONS(1208), - [anon_sym_switch] = ACTIONS(1208), - [anon_sym_case] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_do] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_goto] = ACTIONS(1208), - [anon_sym_DASH_DASH] = ACTIONS(1210), - [anon_sym_PLUS_PLUS] = ACTIONS(1210), - [anon_sym_sizeof] = ACTIONS(1208), - [anon_sym_offsetof] = ACTIONS(1208), - [anon_sym__Generic] = ACTIONS(1208), - [anon_sym_asm] = ACTIONS(1208), - [anon_sym___asm__] = ACTIONS(1208), - [sym_number_literal] = ACTIONS(1210), - [anon_sym_L_SQUOTE] = ACTIONS(1210), - [anon_sym_u_SQUOTE] = ACTIONS(1210), - [anon_sym_U_SQUOTE] = ACTIONS(1210), - [anon_sym_u8_SQUOTE] = ACTIONS(1210), - [anon_sym_SQUOTE] = ACTIONS(1210), - [anon_sym_L_DQUOTE] = ACTIONS(1210), - [anon_sym_u_DQUOTE] = ACTIONS(1210), - [anon_sym_U_DQUOTE] = ACTIONS(1210), - [anon_sym_u8_DQUOTE] = ACTIONS(1210), - [anon_sym_DQUOTE] = ACTIONS(1210), - [sym_true] = ACTIONS(1208), - [sym_false] = ACTIONS(1208), - [anon_sym_NULL] = ACTIONS(1208), - [anon_sym_nullptr] = ACTIONS(1208), - [sym_comment] = ACTIONS(3), - }, - [168] = { - [sym_identifier] = ACTIONS(1216), - [aux_sym_preproc_include_token1] = ACTIONS(1216), - [aux_sym_preproc_def_token1] = ACTIONS(1216), - [aux_sym_preproc_if_token1] = ACTIONS(1216), - [aux_sym_preproc_if_token2] = ACTIONS(1216), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1216), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1216), - [aux_sym_preproc_else_token1] = ACTIONS(1216), - [aux_sym_preproc_elif_token1] = ACTIONS(1216), - [sym_preproc_directive] = ACTIONS(1216), - [anon_sym_LPAREN2] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1218), - [anon_sym_TILDE] = ACTIONS(1218), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_STAR] = ACTIONS(1218), - [anon_sym_AMP] = ACTIONS(1218), - [anon_sym_SEMI] = ACTIONS(1218), - [anon_sym_typedef] = ACTIONS(1216), - [anon_sym_extern] = ACTIONS(1216), - [anon_sym___attribute__] = ACTIONS(1216), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1218), - [anon_sym___declspec] = ACTIONS(1216), - [anon_sym___cdecl] = ACTIONS(1216), - [anon_sym___clrcall] = ACTIONS(1216), - [anon_sym___stdcall] = ACTIONS(1216), - [anon_sym___fastcall] = ACTIONS(1216), - [anon_sym___thiscall] = ACTIONS(1216), - [anon_sym___vectorcall] = ACTIONS(1216), - [anon_sym_LBRACE] = ACTIONS(1218), - [anon_sym_signed] = ACTIONS(1216), - [anon_sym_unsigned] = ACTIONS(1216), - [anon_sym_long] = ACTIONS(1216), - [anon_sym_short] = ACTIONS(1216), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_auto] = ACTIONS(1216), - [anon_sym_register] = ACTIONS(1216), - [anon_sym_inline] = ACTIONS(1216), - [anon_sym_thread_local] = ACTIONS(1216), - [anon_sym___thread] = ACTIONS(1216), - [anon_sym_const] = ACTIONS(1216), - [anon_sym_constexpr] = ACTIONS(1216), - [anon_sym_volatile] = ACTIONS(1216), - [anon_sym_restrict] = ACTIONS(1216), - [anon_sym___restrict__] = ACTIONS(1216), - [anon_sym__Atomic] = ACTIONS(1216), - [anon_sym__Noreturn] = ACTIONS(1216), - [anon_sym_noreturn] = ACTIONS(1216), - [sym_primitive_type] = ACTIONS(1216), - [anon_sym_enum] = ACTIONS(1216), - [anon_sym_struct] = ACTIONS(1216), - [anon_sym_union] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_else] = ACTIONS(1216), - [anon_sym_switch] = ACTIONS(1216), - [anon_sym_case] = ACTIONS(1216), - [anon_sym_default] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_do] = ACTIONS(1216), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_goto] = ACTIONS(1216), - [anon_sym_DASH_DASH] = ACTIONS(1218), - [anon_sym_PLUS_PLUS] = ACTIONS(1218), - [anon_sym_sizeof] = ACTIONS(1216), - [anon_sym_offsetof] = ACTIONS(1216), - [anon_sym__Generic] = ACTIONS(1216), - [anon_sym_asm] = ACTIONS(1216), - [anon_sym___asm__] = ACTIONS(1216), - [sym_number_literal] = ACTIONS(1218), - [anon_sym_L_SQUOTE] = ACTIONS(1218), - [anon_sym_u_SQUOTE] = ACTIONS(1218), - [anon_sym_U_SQUOTE] = ACTIONS(1218), - [anon_sym_u8_SQUOTE] = ACTIONS(1218), - [anon_sym_SQUOTE] = ACTIONS(1218), - [anon_sym_L_DQUOTE] = ACTIONS(1218), - [anon_sym_u_DQUOTE] = ACTIONS(1218), - [anon_sym_U_DQUOTE] = ACTIONS(1218), - [anon_sym_u8_DQUOTE] = ACTIONS(1218), - [anon_sym_DQUOTE] = ACTIONS(1218), - [sym_true] = ACTIONS(1216), - [sym_false] = ACTIONS(1216), - [anon_sym_NULL] = ACTIONS(1216), - [anon_sym_nullptr] = ACTIONS(1216), - [sym_comment] = ACTIONS(3), - }, - [169] = { - [sym_identifier] = ACTIONS(1208), - [aux_sym_preproc_include_token1] = ACTIONS(1208), - [aux_sym_preproc_def_token1] = ACTIONS(1208), - [aux_sym_preproc_if_token1] = ACTIONS(1208), - [aux_sym_preproc_if_token2] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1208), - [aux_sym_preproc_else_token1] = ACTIONS(1208), - [aux_sym_preproc_elif_token1] = ACTIONS(1208), - [sym_preproc_directive] = ACTIONS(1208), - [anon_sym_LPAREN2] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1210), - [anon_sym_AMP] = ACTIONS(1210), - [anon_sym_SEMI] = ACTIONS(1210), - [anon_sym_typedef] = ACTIONS(1208), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym___attribute__] = ACTIONS(1208), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(1208), - [anon_sym___cdecl] = ACTIONS(1208), - [anon_sym___clrcall] = ACTIONS(1208), - [anon_sym___stdcall] = ACTIONS(1208), - [anon_sym___fastcall] = ACTIONS(1208), - [anon_sym___thiscall] = ACTIONS(1208), - [anon_sym___vectorcall] = ACTIONS(1208), - [anon_sym_LBRACE] = ACTIONS(1210), - [anon_sym_signed] = ACTIONS(1208), - [anon_sym_unsigned] = ACTIONS(1208), - [anon_sym_long] = ACTIONS(1208), - [anon_sym_short] = ACTIONS(1208), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_auto] = ACTIONS(1208), - [anon_sym_register] = ACTIONS(1208), - [anon_sym_inline] = ACTIONS(1208), - [anon_sym_thread_local] = ACTIONS(1208), - [anon_sym___thread] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_constexpr] = ACTIONS(1208), - [anon_sym_volatile] = ACTIONS(1208), - [anon_sym_restrict] = ACTIONS(1208), - [anon_sym___restrict__] = ACTIONS(1208), - [anon_sym__Atomic] = ACTIONS(1208), - [anon_sym__Noreturn] = ACTIONS(1208), - [anon_sym_noreturn] = ACTIONS(1208), - [sym_primitive_type] = ACTIONS(1208), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_struct] = ACTIONS(1208), - [anon_sym_union] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_else] = ACTIONS(1208), - [anon_sym_switch] = ACTIONS(1208), - [anon_sym_case] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_do] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_goto] = ACTIONS(1208), - [anon_sym_DASH_DASH] = ACTIONS(1210), - [anon_sym_PLUS_PLUS] = ACTIONS(1210), - [anon_sym_sizeof] = ACTIONS(1208), - [anon_sym_offsetof] = ACTIONS(1208), - [anon_sym__Generic] = ACTIONS(1208), - [anon_sym_asm] = ACTIONS(1208), - [anon_sym___asm__] = ACTIONS(1208), - [sym_number_literal] = ACTIONS(1210), - [anon_sym_L_SQUOTE] = ACTIONS(1210), - [anon_sym_u_SQUOTE] = ACTIONS(1210), - [anon_sym_U_SQUOTE] = ACTIONS(1210), - [anon_sym_u8_SQUOTE] = ACTIONS(1210), - [anon_sym_SQUOTE] = ACTIONS(1210), - [anon_sym_L_DQUOTE] = ACTIONS(1210), - [anon_sym_u_DQUOTE] = ACTIONS(1210), - [anon_sym_U_DQUOTE] = ACTIONS(1210), - [anon_sym_u8_DQUOTE] = ACTIONS(1210), - [anon_sym_DQUOTE] = ACTIONS(1210), - [sym_true] = ACTIONS(1208), - [sym_false] = ACTIONS(1208), - [anon_sym_NULL] = ACTIONS(1208), - [anon_sym_nullptr] = ACTIONS(1208), - [sym_comment] = ACTIONS(3), - }, - [170] = { - [sym_identifier] = ACTIONS(1220), - [aux_sym_preproc_include_token1] = ACTIONS(1220), - [aux_sym_preproc_def_token1] = ACTIONS(1220), - [aux_sym_preproc_if_token1] = ACTIONS(1220), - [aux_sym_preproc_if_token2] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1220), - [aux_sym_preproc_else_token1] = ACTIONS(1220), - [aux_sym_preproc_elif_token1] = ACTIONS(1220), - [sym_preproc_directive] = ACTIONS(1220), - [anon_sym_LPAREN2] = ACTIONS(1222), - [anon_sym_BANG] = ACTIONS(1222), - [anon_sym_TILDE] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_typedef] = ACTIONS(1220), - [anon_sym_extern] = ACTIONS(1220), - [anon_sym___attribute__] = ACTIONS(1220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), - [anon_sym___declspec] = ACTIONS(1220), - [anon_sym___cdecl] = ACTIONS(1220), - [anon_sym___clrcall] = ACTIONS(1220), - [anon_sym___stdcall] = ACTIONS(1220), - [anon_sym___fastcall] = ACTIONS(1220), - [anon_sym___thiscall] = ACTIONS(1220), - [anon_sym___vectorcall] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_signed] = ACTIONS(1220), - [anon_sym_unsigned] = ACTIONS(1220), - [anon_sym_long] = ACTIONS(1220), - [anon_sym_short] = ACTIONS(1220), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_auto] = ACTIONS(1220), - [anon_sym_register] = ACTIONS(1220), - [anon_sym_inline] = ACTIONS(1220), - [anon_sym_thread_local] = ACTIONS(1220), - [anon_sym___thread] = ACTIONS(1220), - [anon_sym_const] = ACTIONS(1220), - [anon_sym_constexpr] = ACTIONS(1220), - [anon_sym_volatile] = ACTIONS(1220), - [anon_sym_restrict] = ACTIONS(1220), - [anon_sym___restrict__] = ACTIONS(1220), - [anon_sym__Atomic] = ACTIONS(1220), - [anon_sym__Noreturn] = ACTIONS(1220), - [anon_sym_noreturn] = ACTIONS(1220), - [sym_primitive_type] = ACTIONS(1220), - [anon_sym_enum] = ACTIONS(1220), - [anon_sym_struct] = ACTIONS(1220), - [anon_sym_union] = ACTIONS(1220), - [anon_sym_if] = ACTIONS(1220), - [anon_sym_else] = ACTIONS(1220), - [anon_sym_switch] = ACTIONS(1220), - [anon_sym_case] = ACTIONS(1220), - [anon_sym_default] = ACTIONS(1220), - [anon_sym_while] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1220), - [anon_sym_for] = ACTIONS(1220), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_break] = ACTIONS(1220), - [anon_sym_continue] = ACTIONS(1220), - [anon_sym_goto] = ACTIONS(1220), - [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_PLUS_PLUS] = ACTIONS(1222), - [anon_sym_sizeof] = ACTIONS(1220), - [anon_sym_offsetof] = ACTIONS(1220), - [anon_sym__Generic] = ACTIONS(1220), - [anon_sym_asm] = ACTIONS(1220), - [anon_sym___asm__] = ACTIONS(1220), - [sym_number_literal] = ACTIONS(1222), - [anon_sym_L_SQUOTE] = ACTIONS(1222), - [anon_sym_u_SQUOTE] = ACTIONS(1222), - [anon_sym_U_SQUOTE] = ACTIONS(1222), - [anon_sym_u8_SQUOTE] = ACTIONS(1222), - [anon_sym_SQUOTE] = ACTIONS(1222), - [anon_sym_L_DQUOTE] = ACTIONS(1222), - [anon_sym_u_DQUOTE] = ACTIONS(1222), - [anon_sym_U_DQUOTE] = ACTIONS(1222), - [anon_sym_u8_DQUOTE] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym_true] = ACTIONS(1220), - [sym_false] = ACTIONS(1220), - [anon_sym_NULL] = ACTIONS(1220), - [anon_sym_nullptr] = ACTIONS(1220), - [sym_comment] = ACTIONS(3), - }, - [171] = { - [sym_identifier] = ACTIONS(1236), - [aux_sym_preproc_include_token1] = ACTIONS(1236), - [aux_sym_preproc_def_token1] = ACTIONS(1236), - [aux_sym_preproc_if_token1] = ACTIONS(1236), - [aux_sym_preproc_if_token2] = ACTIONS(1236), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1236), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1236), - [aux_sym_preproc_else_token1] = ACTIONS(1236), - [aux_sym_preproc_elif_token1] = ACTIONS(1236), - [sym_preproc_directive] = ACTIONS(1236), - [anon_sym_LPAREN2] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(1238), - [anon_sym_TILDE] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1236), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1238), - [anon_sym_typedef] = ACTIONS(1236), - [anon_sym_extern] = ACTIONS(1236), - [anon_sym___attribute__] = ACTIONS(1236), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1238), - [anon_sym___declspec] = ACTIONS(1236), - [anon_sym___cdecl] = ACTIONS(1236), - [anon_sym___clrcall] = ACTIONS(1236), - [anon_sym___stdcall] = ACTIONS(1236), - [anon_sym___fastcall] = ACTIONS(1236), - [anon_sym___thiscall] = ACTIONS(1236), - [anon_sym___vectorcall] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_signed] = ACTIONS(1236), - [anon_sym_unsigned] = ACTIONS(1236), - [anon_sym_long] = ACTIONS(1236), - [anon_sym_short] = ACTIONS(1236), - [anon_sym_static] = ACTIONS(1236), - [anon_sym_auto] = ACTIONS(1236), - [anon_sym_register] = ACTIONS(1236), - [anon_sym_inline] = ACTIONS(1236), - [anon_sym_thread_local] = ACTIONS(1236), - [anon_sym___thread] = ACTIONS(1236), - [anon_sym_const] = ACTIONS(1236), - [anon_sym_constexpr] = ACTIONS(1236), - [anon_sym_volatile] = ACTIONS(1236), - [anon_sym_restrict] = ACTIONS(1236), - [anon_sym___restrict__] = ACTIONS(1236), - [anon_sym__Atomic] = ACTIONS(1236), - [anon_sym__Noreturn] = ACTIONS(1236), - [anon_sym_noreturn] = ACTIONS(1236), - [sym_primitive_type] = ACTIONS(1236), - [anon_sym_enum] = ACTIONS(1236), - [anon_sym_struct] = ACTIONS(1236), - [anon_sym_union] = ACTIONS(1236), - [anon_sym_if] = ACTIONS(1236), - [anon_sym_else] = ACTIONS(1236), - [anon_sym_switch] = ACTIONS(1236), - [anon_sym_case] = ACTIONS(1236), - [anon_sym_default] = ACTIONS(1236), - [anon_sym_while] = ACTIONS(1236), - [anon_sym_do] = ACTIONS(1236), - [anon_sym_for] = ACTIONS(1236), - [anon_sym_return] = ACTIONS(1236), - [anon_sym_break] = ACTIONS(1236), - [anon_sym_continue] = ACTIONS(1236), - [anon_sym_goto] = ACTIONS(1236), - [anon_sym_DASH_DASH] = ACTIONS(1238), - [anon_sym_PLUS_PLUS] = ACTIONS(1238), - [anon_sym_sizeof] = ACTIONS(1236), - [anon_sym_offsetof] = ACTIONS(1236), - [anon_sym__Generic] = ACTIONS(1236), - [anon_sym_asm] = ACTIONS(1236), - [anon_sym___asm__] = ACTIONS(1236), - [sym_number_literal] = ACTIONS(1238), - [anon_sym_L_SQUOTE] = ACTIONS(1238), - [anon_sym_u_SQUOTE] = ACTIONS(1238), - [anon_sym_U_SQUOTE] = ACTIONS(1238), - [anon_sym_u8_SQUOTE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1238), - [anon_sym_L_DQUOTE] = ACTIONS(1238), - [anon_sym_u_DQUOTE] = ACTIONS(1238), - [anon_sym_U_DQUOTE] = ACTIONS(1238), - [anon_sym_u8_DQUOTE] = ACTIONS(1238), - [anon_sym_DQUOTE] = ACTIONS(1238), - [sym_true] = ACTIONS(1236), - [sym_false] = ACTIONS(1236), - [anon_sym_NULL] = ACTIONS(1236), - [anon_sym_nullptr] = ACTIONS(1236), + [180] = { + [sym_identifier] = ACTIONS(1256), + [aux_sym_preproc_include_token1] = ACTIONS(1256), + [aux_sym_preproc_def_token1] = ACTIONS(1256), + [aux_sym_preproc_if_token1] = ACTIONS(1256), + [aux_sym_preproc_if_token2] = ACTIONS(1256), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1256), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1256), + [aux_sym_preproc_else_token1] = ACTIONS(1256), + [aux_sym_preproc_elif_token1] = ACTIONS(1256), + [sym_preproc_directive] = ACTIONS(1256), + [anon_sym_LPAREN2] = ACTIONS(1258), + [anon_sym_BANG] = ACTIONS(1258), + [anon_sym_TILDE] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_STAR] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1258), + [anon_sym___extension__] = ACTIONS(1256), + [anon_sym_typedef] = ACTIONS(1256), + [anon_sym_extern] = ACTIONS(1256), + [anon_sym___attribute__] = ACTIONS(1256), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1258), + [anon_sym___declspec] = ACTIONS(1256), + [anon_sym___cdecl] = ACTIONS(1256), + [anon_sym___clrcall] = ACTIONS(1256), + [anon_sym___stdcall] = ACTIONS(1256), + [anon_sym___fastcall] = ACTIONS(1256), + [anon_sym___thiscall] = ACTIONS(1256), + [anon_sym___vectorcall] = ACTIONS(1256), + [anon_sym_LBRACE] = ACTIONS(1258), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_long] = ACTIONS(1256), + [anon_sym_short] = ACTIONS(1256), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_auto] = ACTIONS(1256), + [anon_sym_register] = ACTIONS(1256), + [anon_sym_inline] = ACTIONS(1256), + [anon_sym___inline] = ACTIONS(1256), + [anon_sym___inline__] = ACTIONS(1256), + [anon_sym___forceinline] = ACTIONS(1256), + [anon_sym_thread_local] = ACTIONS(1256), + [anon_sym___thread] = ACTIONS(1256), + [anon_sym_const] = ACTIONS(1256), + [anon_sym_constexpr] = ACTIONS(1256), + [anon_sym_volatile] = ACTIONS(1256), + [anon_sym_restrict] = ACTIONS(1256), + [anon_sym___restrict__] = ACTIONS(1256), + [anon_sym__Atomic] = ACTIONS(1256), + [anon_sym__Noreturn] = ACTIONS(1256), + [anon_sym_noreturn] = ACTIONS(1256), + [sym_primitive_type] = ACTIONS(1256), + [anon_sym_enum] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1256), + [anon_sym_union] = ACTIONS(1256), + [anon_sym_if] = ACTIONS(1256), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_switch] = ACTIONS(1256), + [anon_sym_case] = ACTIONS(1256), + [anon_sym_default] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1256), + [anon_sym_do] = ACTIONS(1256), + [anon_sym_for] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1256), + [anon_sym_break] = ACTIONS(1256), + [anon_sym_continue] = ACTIONS(1256), + [anon_sym_goto] = ACTIONS(1256), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_sizeof] = ACTIONS(1256), + [anon_sym___alignof__] = ACTIONS(1256), + [anon_sym___alignof] = ACTIONS(1256), + [anon_sym__alignof] = ACTIONS(1256), + [anon_sym_alignof] = ACTIONS(1256), + [anon_sym__Alignof] = ACTIONS(1256), + [anon_sym_offsetof] = ACTIONS(1256), + [anon_sym___builtin_va_arg] = ACTIONS(1256), + [anon_sym__Generic] = ACTIONS(1256), + [anon_sym_asm] = ACTIONS(1256), + [anon_sym___asm__] = ACTIONS(1256), + [sym_number_literal] = ACTIONS(1258), + [anon_sym_L_SQUOTE] = ACTIONS(1258), + [anon_sym_u_SQUOTE] = ACTIONS(1258), + [anon_sym_U_SQUOTE] = ACTIONS(1258), + [anon_sym_u8_SQUOTE] = ACTIONS(1258), + [anon_sym_SQUOTE] = ACTIONS(1258), + [anon_sym_L_DQUOTE] = ACTIONS(1258), + [anon_sym_u_DQUOTE] = ACTIONS(1258), + [anon_sym_U_DQUOTE] = ACTIONS(1258), + [anon_sym_u8_DQUOTE] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(1258), + [sym_true] = ACTIONS(1256), + [sym_false] = ACTIONS(1256), + [anon_sym_NULL] = ACTIONS(1256), + [anon_sym_nullptr] = ACTIONS(1256), [sym_comment] = ACTIONS(3), }, - [172] = { - [sym_identifier] = ACTIONS(1224), - [aux_sym_preproc_include_token1] = ACTIONS(1224), - [aux_sym_preproc_def_token1] = ACTIONS(1224), - [aux_sym_preproc_if_token1] = ACTIONS(1224), - [aux_sym_preproc_if_token2] = ACTIONS(1224), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1224), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1224), - [aux_sym_preproc_else_token1] = ACTIONS(1224), - [aux_sym_preproc_elif_token1] = ACTIONS(1224), - [sym_preproc_directive] = ACTIONS(1224), - [anon_sym_LPAREN2] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(1226), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_DASH] = ACTIONS(1224), - [anon_sym_PLUS] = ACTIONS(1224), - [anon_sym_STAR] = ACTIONS(1226), - [anon_sym_AMP] = ACTIONS(1226), - [anon_sym_SEMI] = ACTIONS(1226), - [anon_sym_typedef] = ACTIONS(1224), - [anon_sym_extern] = ACTIONS(1224), - [anon_sym___attribute__] = ACTIONS(1224), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1226), - [anon_sym___declspec] = ACTIONS(1224), - [anon_sym___cdecl] = ACTIONS(1224), - [anon_sym___clrcall] = ACTIONS(1224), - [anon_sym___stdcall] = ACTIONS(1224), - [anon_sym___fastcall] = ACTIONS(1224), - [anon_sym___thiscall] = ACTIONS(1224), - [anon_sym___vectorcall] = ACTIONS(1224), - [anon_sym_LBRACE] = ACTIONS(1226), - [anon_sym_signed] = ACTIONS(1224), - [anon_sym_unsigned] = ACTIONS(1224), - [anon_sym_long] = ACTIONS(1224), - [anon_sym_short] = ACTIONS(1224), - [anon_sym_static] = ACTIONS(1224), - [anon_sym_auto] = ACTIONS(1224), - [anon_sym_register] = ACTIONS(1224), - [anon_sym_inline] = ACTIONS(1224), - [anon_sym_thread_local] = ACTIONS(1224), - [anon_sym___thread] = ACTIONS(1224), - [anon_sym_const] = ACTIONS(1224), - [anon_sym_constexpr] = ACTIONS(1224), - [anon_sym_volatile] = ACTIONS(1224), - [anon_sym_restrict] = ACTIONS(1224), - [anon_sym___restrict__] = ACTIONS(1224), - [anon_sym__Atomic] = ACTIONS(1224), - [anon_sym__Noreturn] = ACTIONS(1224), - [anon_sym_noreturn] = ACTIONS(1224), - [sym_primitive_type] = ACTIONS(1224), - [anon_sym_enum] = ACTIONS(1224), - [anon_sym_struct] = ACTIONS(1224), - [anon_sym_union] = ACTIONS(1224), - [anon_sym_if] = ACTIONS(1224), - [anon_sym_else] = ACTIONS(1224), - [anon_sym_switch] = ACTIONS(1224), - [anon_sym_case] = ACTIONS(1224), - [anon_sym_default] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1224), - [anon_sym_do] = ACTIONS(1224), - [anon_sym_for] = ACTIONS(1224), - [anon_sym_return] = ACTIONS(1224), - [anon_sym_break] = ACTIONS(1224), - [anon_sym_continue] = ACTIONS(1224), - [anon_sym_goto] = ACTIONS(1224), - [anon_sym_DASH_DASH] = ACTIONS(1226), - [anon_sym_PLUS_PLUS] = ACTIONS(1226), - [anon_sym_sizeof] = ACTIONS(1224), - [anon_sym_offsetof] = ACTIONS(1224), - [anon_sym__Generic] = ACTIONS(1224), - [anon_sym_asm] = ACTIONS(1224), - [anon_sym___asm__] = ACTIONS(1224), - [sym_number_literal] = ACTIONS(1226), - [anon_sym_L_SQUOTE] = ACTIONS(1226), - [anon_sym_u_SQUOTE] = ACTIONS(1226), - [anon_sym_U_SQUOTE] = ACTIONS(1226), - [anon_sym_u8_SQUOTE] = ACTIONS(1226), - [anon_sym_SQUOTE] = ACTIONS(1226), - [anon_sym_L_DQUOTE] = ACTIONS(1226), - [anon_sym_u_DQUOTE] = ACTIONS(1226), - [anon_sym_U_DQUOTE] = ACTIONS(1226), - [anon_sym_u8_DQUOTE] = ACTIONS(1226), - [anon_sym_DQUOTE] = ACTIONS(1226), - [sym_true] = ACTIONS(1224), - [sym_false] = ACTIONS(1224), - [anon_sym_NULL] = ACTIONS(1224), - [anon_sym_nullptr] = ACTIONS(1224), + [181] = { + [sym_identifier] = ACTIONS(1368), + [aux_sym_preproc_include_token1] = ACTIONS(1368), + [aux_sym_preproc_def_token1] = ACTIONS(1368), + [aux_sym_preproc_if_token1] = ACTIONS(1368), + [aux_sym_preproc_if_token2] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1368), + [aux_sym_preproc_else_token1] = ACTIONS(1368), + [aux_sym_preproc_elif_token1] = ACTIONS(1368), + [sym_preproc_directive] = ACTIONS(1368), + [anon_sym_LPAREN2] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1370), + [anon_sym___extension__] = ACTIONS(1368), + [anon_sym_typedef] = ACTIONS(1368), + [anon_sym_extern] = ACTIONS(1368), + [anon_sym___attribute__] = ACTIONS(1368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1370), + [anon_sym___declspec] = ACTIONS(1368), + [anon_sym___cdecl] = ACTIONS(1368), + [anon_sym___clrcall] = ACTIONS(1368), + [anon_sym___stdcall] = ACTIONS(1368), + [anon_sym___fastcall] = ACTIONS(1368), + [anon_sym___thiscall] = ACTIONS(1368), + [anon_sym___vectorcall] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_signed] = ACTIONS(1368), + [anon_sym_unsigned] = ACTIONS(1368), + [anon_sym_long] = ACTIONS(1368), + [anon_sym_short] = ACTIONS(1368), + [anon_sym_static] = ACTIONS(1368), + [anon_sym_auto] = ACTIONS(1368), + [anon_sym_register] = ACTIONS(1368), + [anon_sym_inline] = ACTIONS(1368), + [anon_sym___inline] = ACTIONS(1368), + [anon_sym___inline__] = ACTIONS(1368), + [anon_sym___forceinline] = ACTIONS(1368), + [anon_sym_thread_local] = ACTIONS(1368), + [anon_sym___thread] = ACTIONS(1368), + [anon_sym_const] = ACTIONS(1368), + [anon_sym_constexpr] = ACTIONS(1368), + [anon_sym_volatile] = ACTIONS(1368), + [anon_sym_restrict] = ACTIONS(1368), + [anon_sym___restrict__] = ACTIONS(1368), + [anon_sym__Atomic] = ACTIONS(1368), + [anon_sym__Noreturn] = ACTIONS(1368), + [anon_sym_noreturn] = ACTIONS(1368), + [sym_primitive_type] = ACTIONS(1368), + [anon_sym_enum] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1368), + [anon_sym_union] = ACTIONS(1368), + [anon_sym_if] = ACTIONS(1368), + [anon_sym_else] = ACTIONS(1368), + [anon_sym_switch] = ACTIONS(1368), + [anon_sym_case] = ACTIONS(1368), + [anon_sym_default] = ACTIONS(1368), + [anon_sym_while] = ACTIONS(1368), + [anon_sym_do] = ACTIONS(1368), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1368), + [anon_sym_break] = ACTIONS(1368), + [anon_sym_continue] = ACTIONS(1368), + [anon_sym_goto] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1370), + [anon_sym_sizeof] = ACTIONS(1368), + [anon_sym___alignof__] = ACTIONS(1368), + [anon_sym___alignof] = ACTIONS(1368), + [anon_sym__alignof] = ACTIONS(1368), + [anon_sym_alignof] = ACTIONS(1368), + [anon_sym__Alignof] = ACTIONS(1368), + [anon_sym_offsetof] = ACTIONS(1368), + [anon_sym___builtin_va_arg] = ACTIONS(1368), + [anon_sym__Generic] = ACTIONS(1368), + [anon_sym_asm] = ACTIONS(1368), + [anon_sym___asm__] = ACTIONS(1368), + [sym_number_literal] = ACTIONS(1370), + [anon_sym_L_SQUOTE] = ACTIONS(1370), + [anon_sym_u_SQUOTE] = ACTIONS(1370), + [anon_sym_U_SQUOTE] = ACTIONS(1370), + [anon_sym_u8_SQUOTE] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1370), + [anon_sym_L_DQUOTE] = ACTIONS(1370), + [anon_sym_u_DQUOTE] = ACTIONS(1370), + [anon_sym_U_DQUOTE] = ACTIONS(1370), + [anon_sym_u8_DQUOTE] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [sym_true] = ACTIONS(1368), + [sym_false] = ACTIONS(1368), + [anon_sym_NULL] = ACTIONS(1368), + [anon_sym_nullptr] = ACTIONS(1368), [sym_comment] = ACTIONS(3), }, - [173] = { - [sym_identifier] = ACTIONS(1228), - [aux_sym_preproc_include_token1] = ACTIONS(1228), - [aux_sym_preproc_def_token1] = ACTIONS(1228), - [aux_sym_preproc_if_token1] = ACTIONS(1228), - [aux_sym_preproc_if_token2] = ACTIONS(1228), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1228), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1228), - [aux_sym_preproc_else_token1] = ACTIONS(1228), - [aux_sym_preproc_elif_token1] = ACTIONS(1228), - [sym_preproc_directive] = ACTIONS(1228), - [anon_sym_LPAREN2] = ACTIONS(1230), - [anon_sym_BANG] = ACTIONS(1230), - [anon_sym_TILDE] = ACTIONS(1230), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1230), - [anon_sym_AMP] = ACTIONS(1230), - [anon_sym_SEMI] = ACTIONS(1230), - [anon_sym_typedef] = ACTIONS(1228), - [anon_sym_extern] = ACTIONS(1228), - [anon_sym___attribute__] = ACTIONS(1228), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1230), - [anon_sym___declspec] = ACTIONS(1228), - [anon_sym___cdecl] = ACTIONS(1228), - [anon_sym___clrcall] = ACTIONS(1228), - [anon_sym___stdcall] = ACTIONS(1228), - [anon_sym___fastcall] = ACTIONS(1228), - [anon_sym___thiscall] = ACTIONS(1228), - [anon_sym___vectorcall] = ACTIONS(1228), - [anon_sym_LBRACE] = ACTIONS(1230), - [anon_sym_signed] = ACTIONS(1228), - [anon_sym_unsigned] = ACTIONS(1228), - [anon_sym_long] = ACTIONS(1228), - [anon_sym_short] = ACTIONS(1228), - [anon_sym_static] = ACTIONS(1228), - [anon_sym_auto] = ACTIONS(1228), - [anon_sym_register] = ACTIONS(1228), - [anon_sym_inline] = ACTIONS(1228), - [anon_sym_thread_local] = ACTIONS(1228), - [anon_sym___thread] = ACTIONS(1228), - [anon_sym_const] = ACTIONS(1228), - [anon_sym_constexpr] = ACTIONS(1228), - [anon_sym_volatile] = ACTIONS(1228), - [anon_sym_restrict] = ACTIONS(1228), - [anon_sym___restrict__] = ACTIONS(1228), - [anon_sym__Atomic] = ACTIONS(1228), - [anon_sym__Noreturn] = ACTIONS(1228), - [anon_sym_noreturn] = ACTIONS(1228), - [sym_primitive_type] = ACTIONS(1228), - [anon_sym_enum] = ACTIONS(1228), - [anon_sym_struct] = ACTIONS(1228), - [anon_sym_union] = ACTIONS(1228), - [anon_sym_if] = ACTIONS(1228), - [anon_sym_else] = ACTIONS(1228), - [anon_sym_switch] = ACTIONS(1228), - [anon_sym_case] = ACTIONS(1228), - [anon_sym_default] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(1228), - [anon_sym_for] = ACTIONS(1228), - [anon_sym_return] = ACTIONS(1228), - [anon_sym_break] = ACTIONS(1228), - [anon_sym_continue] = ACTIONS(1228), - [anon_sym_goto] = ACTIONS(1228), - [anon_sym_DASH_DASH] = ACTIONS(1230), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_sizeof] = ACTIONS(1228), - [anon_sym_offsetof] = ACTIONS(1228), - [anon_sym__Generic] = ACTIONS(1228), - [anon_sym_asm] = ACTIONS(1228), - [anon_sym___asm__] = ACTIONS(1228), - [sym_number_literal] = ACTIONS(1230), - [anon_sym_L_SQUOTE] = ACTIONS(1230), - [anon_sym_u_SQUOTE] = ACTIONS(1230), - [anon_sym_U_SQUOTE] = ACTIONS(1230), - [anon_sym_u8_SQUOTE] = ACTIONS(1230), - [anon_sym_SQUOTE] = ACTIONS(1230), - [anon_sym_L_DQUOTE] = ACTIONS(1230), - [anon_sym_u_DQUOTE] = ACTIONS(1230), - [anon_sym_U_DQUOTE] = ACTIONS(1230), - [anon_sym_u8_DQUOTE] = ACTIONS(1230), - [anon_sym_DQUOTE] = ACTIONS(1230), - [sym_true] = ACTIONS(1228), - [sym_false] = ACTIONS(1228), - [anon_sym_NULL] = ACTIONS(1228), - [anon_sym_nullptr] = ACTIONS(1228), + [182] = { + [sym_identifier] = ACTIONS(1364), + [aux_sym_preproc_include_token1] = ACTIONS(1364), + [aux_sym_preproc_def_token1] = ACTIONS(1364), + [aux_sym_preproc_if_token1] = ACTIONS(1364), + [aux_sym_preproc_if_token2] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), + [aux_sym_preproc_else_token1] = ACTIONS(1364), + [aux_sym_preproc_elif_token1] = ACTIONS(1364), + [sym_preproc_directive] = ACTIONS(1364), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1366), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1364), + [anon_sym_STAR] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym___extension__] = ACTIONS(1364), + [anon_sym_typedef] = ACTIONS(1364), + [anon_sym_extern] = ACTIONS(1364), + [anon_sym___attribute__] = ACTIONS(1364), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1366), + [anon_sym___declspec] = ACTIONS(1364), + [anon_sym___cdecl] = ACTIONS(1364), + [anon_sym___clrcall] = ACTIONS(1364), + [anon_sym___stdcall] = ACTIONS(1364), + [anon_sym___fastcall] = ACTIONS(1364), + [anon_sym___thiscall] = ACTIONS(1364), + [anon_sym___vectorcall] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_signed] = ACTIONS(1364), + [anon_sym_unsigned] = ACTIONS(1364), + [anon_sym_long] = ACTIONS(1364), + [anon_sym_short] = ACTIONS(1364), + [anon_sym_static] = ACTIONS(1364), + [anon_sym_auto] = ACTIONS(1364), + [anon_sym_register] = ACTIONS(1364), + [anon_sym_inline] = ACTIONS(1364), + [anon_sym___inline] = ACTIONS(1364), + [anon_sym___inline__] = ACTIONS(1364), + [anon_sym___forceinline] = ACTIONS(1364), + [anon_sym_thread_local] = ACTIONS(1364), + [anon_sym___thread] = ACTIONS(1364), + [anon_sym_const] = ACTIONS(1364), + [anon_sym_constexpr] = ACTIONS(1364), + [anon_sym_volatile] = ACTIONS(1364), + [anon_sym_restrict] = ACTIONS(1364), + [anon_sym___restrict__] = ACTIONS(1364), + [anon_sym__Atomic] = ACTIONS(1364), + [anon_sym__Noreturn] = ACTIONS(1364), + [anon_sym_noreturn] = ACTIONS(1364), + [sym_primitive_type] = ACTIONS(1364), + [anon_sym_enum] = ACTIONS(1364), + [anon_sym_struct] = ACTIONS(1364), + [anon_sym_union] = ACTIONS(1364), + [anon_sym_if] = ACTIONS(1364), + [anon_sym_else] = ACTIONS(1364), + [anon_sym_switch] = ACTIONS(1364), + [anon_sym_case] = ACTIONS(1364), + [anon_sym_default] = ACTIONS(1364), + [anon_sym_while] = ACTIONS(1364), + [anon_sym_do] = ACTIONS(1364), + [anon_sym_for] = ACTIONS(1364), + [anon_sym_return] = ACTIONS(1364), + [anon_sym_break] = ACTIONS(1364), + [anon_sym_continue] = ACTIONS(1364), + [anon_sym_goto] = ACTIONS(1364), + [anon_sym_DASH_DASH] = ACTIONS(1366), + [anon_sym_PLUS_PLUS] = ACTIONS(1366), + [anon_sym_sizeof] = ACTIONS(1364), + [anon_sym___alignof__] = ACTIONS(1364), + [anon_sym___alignof] = ACTIONS(1364), + [anon_sym__alignof] = ACTIONS(1364), + [anon_sym_alignof] = ACTIONS(1364), + [anon_sym__Alignof] = ACTIONS(1364), + [anon_sym_offsetof] = ACTIONS(1364), + [anon_sym___builtin_va_arg] = ACTIONS(1364), + [anon_sym__Generic] = ACTIONS(1364), + [anon_sym_asm] = ACTIONS(1364), + [anon_sym___asm__] = ACTIONS(1364), + [sym_number_literal] = ACTIONS(1366), + [anon_sym_L_SQUOTE] = ACTIONS(1366), + [anon_sym_u_SQUOTE] = ACTIONS(1366), + [anon_sym_U_SQUOTE] = ACTIONS(1366), + [anon_sym_u8_SQUOTE] = ACTIONS(1366), + [anon_sym_SQUOTE] = ACTIONS(1366), + [anon_sym_L_DQUOTE] = ACTIONS(1366), + [anon_sym_u_DQUOTE] = ACTIONS(1366), + [anon_sym_U_DQUOTE] = ACTIONS(1366), + [anon_sym_u8_DQUOTE] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [sym_true] = ACTIONS(1364), + [sym_false] = ACTIONS(1364), + [anon_sym_NULL] = ACTIONS(1364), + [anon_sym_nullptr] = ACTIONS(1364), [sym_comment] = ACTIONS(3), }, - [174] = { - [sym_identifier] = ACTIONS(1232), - [aux_sym_preproc_include_token1] = ACTIONS(1232), - [aux_sym_preproc_def_token1] = ACTIONS(1232), - [aux_sym_preproc_if_token1] = ACTIONS(1232), - [aux_sym_preproc_if_token2] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1232), - [aux_sym_preproc_else_token1] = ACTIONS(1232), - [aux_sym_preproc_elif_token1] = ACTIONS(1232), - [sym_preproc_directive] = ACTIONS(1232), - [anon_sym_LPAREN2] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1234), - [anon_sym_TILDE] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_PLUS] = ACTIONS(1232), - [anon_sym_STAR] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1232), - [anon_sym_extern] = ACTIONS(1232), - [anon_sym___attribute__] = ACTIONS(1232), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1234), - [anon_sym___declspec] = ACTIONS(1232), - [anon_sym___cdecl] = ACTIONS(1232), - [anon_sym___clrcall] = ACTIONS(1232), - [anon_sym___stdcall] = ACTIONS(1232), - [anon_sym___fastcall] = ACTIONS(1232), - [anon_sym___thiscall] = ACTIONS(1232), - [anon_sym___vectorcall] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_signed] = ACTIONS(1232), - [anon_sym_unsigned] = ACTIONS(1232), - [anon_sym_long] = ACTIONS(1232), - [anon_sym_short] = ACTIONS(1232), - [anon_sym_static] = ACTIONS(1232), - [anon_sym_auto] = ACTIONS(1232), - [anon_sym_register] = ACTIONS(1232), - [anon_sym_inline] = ACTIONS(1232), - [anon_sym_thread_local] = ACTIONS(1232), - [anon_sym___thread] = ACTIONS(1232), - [anon_sym_const] = ACTIONS(1232), - [anon_sym_constexpr] = ACTIONS(1232), - [anon_sym_volatile] = ACTIONS(1232), - [anon_sym_restrict] = ACTIONS(1232), - [anon_sym___restrict__] = ACTIONS(1232), - [anon_sym__Atomic] = ACTIONS(1232), - [anon_sym__Noreturn] = ACTIONS(1232), - [anon_sym_noreturn] = ACTIONS(1232), - [sym_primitive_type] = ACTIONS(1232), - [anon_sym_enum] = ACTIONS(1232), - [anon_sym_struct] = ACTIONS(1232), - [anon_sym_union] = ACTIONS(1232), - [anon_sym_if] = ACTIONS(1232), - [anon_sym_else] = ACTIONS(1232), - [anon_sym_switch] = ACTIONS(1232), - [anon_sym_case] = ACTIONS(1232), - [anon_sym_default] = ACTIONS(1232), - [anon_sym_while] = ACTIONS(1232), - [anon_sym_do] = ACTIONS(1232), - [anon_sym_for] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1232), - [anon_sym_break] = ACTIONS(1232), - [anon_sym_continue] = ACTIONS(1232), - [anon_sym_goto] = ACTIONS(1232), - [anon_sym_DASH_DASH] = ACTIONS(1234), - [anon_sym_PLUS_PLUS] = ACTIONS(1234), - [anon_sym_sizeof] = ACTIONS(1232), - [anon_sym_offsetof] = ACTIONS(1232), - [anon_sym__Generic] = ACTIONS(1232), - [anon_sym_asm] = ACTIONS(1232), - [anon_sym___asm__] = ACTIONS(1232), - [sym_number_literal] = ACTIONS(1234), - [anon_sym_L_SQUOTE] = ACTIONS(1234), - [anon_sym_u_SQUOTE] = ACTIONS(1234), - [anon_sym_U_SQUOTE] = ACTIONS(1234), - [anon_sym_u8_SQUOTE] = ACTIONS(1234), - [anon_sym_SQUOTE] = ACTIONS(1234), - [anon_sym_L_DQUOTE] = ACTIONS(1234), - [anon_sym_u_DQUOTE] = ACTIONS(1234), - [anon_sym_U_DQUOTE] = ACTIONS(1234), - [anon_sym_u8_DQUOTE] = ACTIONS(1234), - [anon_sym_DQUOTE] = ACTIONS(1234), - [sym_true] = ACTIONS(1232), - [sym_false] = ACTIONS(1232), - [anon_sym_NULL] = ACTIONS(1232), - [anon_sym_nullptr] = ACTIONS(1232), + [183] = { + [sym_identifier] = ACTIONS(1308), + [aux_sym_preproc_include_token1] = ACTIONS(1308), + [aux_sym_preproc_def_token1] = ACTIONS(1308), + [aux_sym_preproc_if_token1] = ACTIONS(1308), + [aux_sym_preproc_if_token2] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), + [aux_sym_preproc_else_token1] = ACTIONS(1308), + [aux_sym_preproc_elif_token1] = ACTIONS(1308), + [sym_preproc_directive] = ACTIONS(1308), + [anon_sym_LPAREN2] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym___extension__] = ACTIONS(1308), + [anon_sym_typedef] = ACTIONS(1308), + [anon_sym_extern] = ACTIONS(1308), + [anon_sym___attribute__] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), + [anon_sym___declspec] = ACTIONS(1308), + [anon_sym___cdecl] = ACTIONS(1308), + [anon_sym___clrcall] = ACTIONS(1308), + [anon_sym___stdcall] = ACTIONS(1308), + [anon_sym___fastcall] = ACTIONS(1308), + [anon_sym___thiscall] = ACTIONS(1308), + [anon_sym___vectorcall] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_signed] = ACTIONS(1308), + [anon_sym_unsigned] = ACTIONS(1308), + [anon_sym_long] = ACTIONS(1308), + [anon_sym_short] = ACTIONS(1308), + [anon_sym_static] = ACTIONS(1308), + [anon_sym_auto] = ACTIONS(1308), + [anon_sym_register] = ACTIONS(1308), + [anon_sym_inline] = ACTIONS(1308), + [anon_sym___inline] = ACTIONS(1308), + [anon_sym___inline__] = ACTIONS(1308), + [anon_sym___forceinline] = ACTIONS(1308), + [anon_sym_thread_local] = ACTIONS(1308), + [anon_sym___thread] = ACTIONS(1308), + [anon_sym_const] = ACTIONS(1308), + [anon_sym_constexpr] = ACTIONS(1308), + [anon_sym_volatile] = ACTIONS(1308), + [anon_sym_restrict] = ACTIONS(1308), + [anon_sym___restrict__] = ACTIONS(1308), + [anon_sym__Atomic] = ACTIONS(1308), + [anon_sym__Noreturn] = ACTIONS(1308), + [anon_sym_noreturn] = ACTIONS(1308), + [sym_primitive_type] = ACTIONS(1308), + [anon_sym_enum] = ACTIONS(1308), + [anon_sym_struct] = ACTIONS(1308), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_if] = ACTIONS(1308), + [anon_sym_else] = ACTIONS(1308), + [anon_sym_switch] = ACTIONS(1308), + [anon_sym_case] = ACTIONS(1308), + [anon_sym_default] = ACTIONS(1308), + [anon_sym_while] = ACTIONS(1308), + [anon_sym_do] = ACTIONS(1308), + [anon_sym_for] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1308), + [anon_sym_break] = ACTIONS(1308), + [anon_sym_continue] = ACTIONS(1308), + [anon_sym_goto] = ACTIONS(1308), + [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_sizeof] = ACTIONS(1308), + [anon_sym___alignof__] = ACTIONS(1308), + [anon_sym___alignof] = ACTIONS(1308), + [anon_sym__alignof] = ACTIONS(1308), + [anon_sym_alignof] = ACTIONS(1308), + [anon_sym__Alignof] = ACTIONS(1308), + [anon_sym_offsetof] = ACTIONS(1308), + [anon_sym___builtin_va_arg] = ACTIONS(1308), + [anon_sym__Generic] = ACTIONS(1308), + [anon_sym_asm] = ACTIONS(1308), + [anon_sym___asm__] = ACTIONS(1308), + [sym_number_literal] = ACTIONS(1310), + [anon_sym_L_SQUOTE] = ACTIONS(1310), + [anon_sym_u_SQUOTE] = ACTIONS(1310), + [anon_sym_U_SQUOTE] = ACTIONS(1310), + [anon_sym_u8_SQUOTE] = ACTIONS(1310), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_L_DQUOTE] = ACTIONS(1310), + [anon_sym_u_DQUOTE] = ACTIONS(1310), + [anon_sym_U_DQUOTE] = ACTIONS(1310), + [anon_sym_u8_DQUOTE] = ACTIONS(1310), + [anon_sym_DQUOTE] = ACTIONS(1310), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [anon_sym_NULL] = ACTIONS(1308), + [anon_sym_nullptr] = ACTIONS(1308), [sym_comment] = ACTIONS(3), }, - [175] = { - [sym_identifier] = ACTIONS(1324), - [aux_sym_preproc_include_token1] = ACTIONS(1324), - [aux_sym_preproc_def_token1] = ACTIONS(1324), - [aux_sym_preproc_if_token1] = ACTIONS(1324), - [aux_sym_preproc_if_token2] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), - [aux_sym_preproc_else_token1] = ACTIONS(1324), - [aux_sym_preproc_elif_token1] = ACTIONS(1324), - [sym_preproc_directive] = ACTIONS(1324), - [anon_sym_LPAREN2] = ACTIONS(1326), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1324), - [anon_sym_extern] = ACTIONS(1324), - [anon_sym___attribute__] = ACTIONS(1324), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), - [anon_sym___declspec] = ACTIONS(1324), - [anon_sym___cdecl] = ACTIONS(1324), - [anon_sym___clrcall] = ACTIONS(1324), - [anon_sym___stdcall] = ACTIONS(1324), - [anon_sym___fastcall] = ACTIONS(1324), - [anon_sym___thiscall] = ACTIONS(1324), - [anon_sym___vectorcall] = ACTIONS(1324), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_signed] = ACTIONS(1324), - [anon_sym_unsigned] = ACTIONS(1324), - [anon_sym_long] = ACTIONS(1324), - [anon_sym_short] = ACTIONS(1324), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_auto] = ACTIONS(1324), - [anon_sym_register] = ACTIONS(1324), - [anon_sym_inline] = ACTIONS(1324), - [anon_sym_thread_local] = ACTIONS(1324), - [anon_sym___thread] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1324), - [anon_sym_constexpr] = ACTIONS(1324), - [anon_sym_volatile] = ACTIONS(1324), - [anon_sym_restrict] = ACTIONS(1324), - [anon_sym___restrict__] = ACTIONS(1324), - [anon_sym__Atomic] = ACTIONS(1324), - [anon_sym__Noreturn] = ACTIONS(1324), - [anon_sym_noreturn] = ACTIONS(1324), - [sym_primitive_type] = ACTIONS(1324), - [anon_sym_enum] = ACTIONS(1324), - [anon_sym_struct] = ACTIONS(1324), - [anon_sym_union] = ACTIONS(1324), - [anon_sym_if] = ACTIONS(1324), - [anon_sym_else] = ACTIONS(1324), - [anon_sym_switch] = ACTIONS(1324), - [anon_sym_case] = ACTIONS(1324), - [anon_sym_default] = ACTIONS(1324), - [anon_sym_while] = ACTIONS(1324), - [anon_sym_do] = ACTIONS(1324), - [anon_sym_for] = ACTIONS(1324), - [anon_sym_return] = ACTIONS(1324), - [anon_sym_break] = ACTIONS(1324), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1324), - [anon_sym_DASH_DASH] = ACTIONS(1326), - [anon_sym_PLUS_PLUS] = ACTIONS(1326), - [anon_sym_sizeof] = ACTIONS(1324), - [anon_sym_offsetof] = ACTIONS(1324), - [anon_sym__Generic] = ACTIONS(1324), - [anon_sym_asm] = ACTIONS(1324), - [anon_sym___asm__] = ACTIONS(1324), - [sym_number_literal] = ACTIONS(1326), - [anon_sym_L_SQUOTE] = ACTIONS(1326), - [anon_sym_u_SQUOTE] = ACTIONS(1326), - [anon_sym_U_SQUOTE] = ACTIONS(1326), - [anon_sym_u8_SQUOTE] = ACTIONS(1326), - [anon_sym_SQUOTE] = ACTIONS(1326), - [anon_sym_L_DQUOTE] = ACTIONS(1326), - [anon_sym_u_DQUOTE] = ACTIONS(1326), - [anon_sym_U_DQUOTE] = ACTIONS(1326), - [anon_sym_u8_DQUOTE] = ACTIONS(1326), - [anon_sym_DQUOTE] = ACTIONS(1326), - [sym_true] = ACTIONS(1324), - [sym_false] = ACTIONS(1324), - [anon_sym_NULL] = ACTIONS(1324), - [anon_sym_nullptr] = ACTIONS(1324), - [sym_comment] = ACTIONS(3), - }, - [176] = { + [184] = { [sym_identifier] = ACTIONS(1240), [aux_sym_preproc_include_token1] = ACTIONS(1240), [aux_sym_preproc_def_token1] = ACTIONS(1240), @@ -35687,6 +39147,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1242), [anon_sym_AMP] = ACTIONS(1242), [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym___extension__] = ACTIONS(1240), [anon_sym_typedef] = ACTIONS(1240), [anon_sym_extern] = ACTIONS(1240), [anon_sym___attribute__] = ACTIONS(1240), @@ -35707,6 +39168,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1240), [anon_sym_register] = ACTIONS(1240), [anon_sym_inline] = ACTIONS(1240), + [anon_sym___inline] = ACTIONS(1240), + [anon_sym___inline__] = ACTIONS(1240), + [anon_sym___forceinline] = ACTIONS(1240), [anon_sym_thread_local] = ACTIONS(1240), [anon_sym___thread] = ACTIONS(1240), [anon_sym_const] = ACTIONS(1240), @@ -35736,7 +39200,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1242), [anon_sym_PLUS_PLUS] = ACTIONS(1242), [anon_sym_sizeof] = ACTIONS(1240), + [anon_sym___alignof__] = ACTIONS(1240), + [anon_sym___alignof] = ACTIONS(1240), + [anon_sym__alignof] = ACTIONS(1240), + [anon_sym_alignof] = ACTIONS(1240), + [anon_sym__Alignof] = ACTIONS(1240), [anon_sym_offsetof] = ACTIONS(1240), + [anon_sym___builtin_va_arg] = ACTIONS(1240), [anon_sym__Generic] = ACTIONS(1240), [anon_sym_asm] = ACTIONS(1240), [anon_sym___asm__] = ACTIONS(1240), @@ -35757,4347 +39227,4273 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1240), [sym_comment] = ACTIONS(3), }, - [177] = { - [sym_identifier] = ACTIONS(1252), - [aux_sym_preproc_include_token1] = ACTIONS(1252), - [aux_sym_preproc_def_token1] = ACTIONS(1252), - [aux_sym_preproc_if_token1] = ACTIONS(1252), - [aux_sym_preproc_if_token2] = ACTIONS(1252), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1252), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1252), - [aux_sym_preproc_else_token1] = ACTIONS(1252), - [aux_sym_preproc_elif_token1] = ACTIONS(1252), - [sym_preproc_directive] = ACTIONS(1252), - [anon_sym_LPAREN2] = ACTIONS(1254), - [anon_sym_BANG] = ACTIONS(1254), - [anon_sym_TILDE] = ACTIONS(1254), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1254), - [anon_sym_typedef] = ACTIONS(1252), - [anon_sym_extern] = ACTIONS(1252), - [anon_sym___attribute__] = ACTIONS(1252), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1254), - [anon_sym___declspec] = ACTIONS(1252), - [anon_sym___cdecl] = ACTIONS(1252), - [anon_sym___clrcall] = ACTIONS(1252), - [anon_sym___stdcall] = ACTIONS(1252), - [anon_sym___fastcall] = ACTIONS(1252), - [anon_sym___thiscall] = ACTIONS(1252), - [anon_sym___vectorcall] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_signed] = ACTIONS(1252), - [anon_sym_unsigned] = ACTIONS(1252), - [anon_sym_long] = ACTIONS(1252), - [anon_sym_short] = ACTIONS(1252), - [anon_sym_static] = ACTIONS(1252), - [anon_sym_auto] = ACTIONS(1252), - [anon_sym_register] = ACTIONS(1252), - [anon_sym_inline] = ACTIONS(1252), - [anon_sym_thread_local] = ACTIONS(1252), - [anon_sym___thread] = ACTIONS(1252), - [anon_sym_const] = ACTIONS(1252), - [anon_sym_constexpr] = ACTIONS(1252), - [anon_sym_volatile] = ACTIONS(1252), - [anon_sym_restrict] = ACTIONS(1252), - [anon_sym___restrict__] = ACTIONS(1252), - [anon_sym__Atomic] = ACTIONS(1252), - [anon_sym__Noreturn] = ACTIONS(1252), - [anon_sym_noreturn] = ACTIONS(1252), - [sym_primitive_type] = ACTIONS(1252), - [anon_sym_enum] = ACTIONS(1252), - [anon_sym_struct] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_else] = ACTIONS(1252), - [anon_sym_switch] = ACTIONS(1252), - [anon_sym_case] = ACTIONS(1252), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_break] = ACTIONS(1252), - [anon_sym_continue] = ACTIONS(1252), - [anon_sym_goto] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1254), - [anon_sym_PLUS_PLUS] = ACTIONS(1254), - [anon_sym_sizeof] = ACTIONS(1252), - [anon_sym_offsetof] = ACTIONS(1252), - [anon_sym__Generic] = ACTIONS(1252), - [anon_sym_asm] = ACTIONS(1252), - [anon_sym___asm__] = ACTIONS(1252), - [sym_number_literal] = ACTIONS(1254), - [anon_sym_L_SQUOTE] = ACTIONS(1254), - [anon_sym_u_SQUOTE] = ACTIONS(1254), - [anon_sym_U_SQUOTE] = ACTIONS(1254), - [anon_sym_u8_SQUOTE] = ACTIONS(1254), - [anon_sym_SQUOTE] = ACTIONS(1254), - [anon_sym_L_DQUOTE] = ACTIONS(1254), - [anon_sym_u_DQUOTE] = ACTIONS(1254), - [anon_sym_U_DQUOTE] = ACTIONS(1254), - [anon_sym_u8_DQUOTE] = ACTIONS(1254), - [anon_sym_DQUOTE] = ACTIONS(1254), - [sym_true] = ACTIONS(1252), - [sym_false] = ACTIONS(1252), - [anon_sym_NULL] = ACTIONS(1252), - [anon_sym_nullptr] = ACTIONS(1252), - [sym_comment] = ACTIONS(3), - }, - [178] = { - [sym_identifier] = ACTIONS(1316), - [aux_sym_preproc_include_token1] = ACTIONS(1316), - [aux_sym_preproc_def_token1] = ACTIONS(1316), - [aux_sym_preproc_if_token1] = ACTIONS(1316), - [aux_sym_preproc_if_token2] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), - [aux_sym_preproc_else_token1] = ACTIONS(1316), - [aux_sym_preproc_elif_token1] = ACTIONS(1316), - [sym_preproc_directive] = ACTIONS(1316), - [anon_sym_LPAREN2] = ACTIONS(1318), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_TILDE] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym_typedef] = ACTIONS(1316), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym___attribute__] = ACTIONS(1316), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), - [anon_sym___declspec] = ACTIONS(1316), - [anon_sym___cdecl] = ACTIONS(1316), - [anon_sym___clrcall] = ACTIONS(1316), - [anon_sym___stdcall] = ACTIONS(1316), - [anon_sym___fastcall] = ACTIONS(1316), - [anon_sym___thiscall] = ACTIONS(1316), - [anon_sym___vectorcall] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_signed] = ACTIONS(1316), - [anon_sym_unsigned] = ACTIONS(1316), - [anon_sym_long] = ACTIONS(1316), - [anon_sym_short] = ACTIONS(1316), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_auto] = ACTIONS(1316), - [anon_sym_register] = ACTIONS(1316), - [anon_sym_inline] = ACTIONS(1316), - [anon_sym_thread_local] = ACTIONS(1316), - [anon_sym___thread] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [anon_sym_constexpr] = ACTIONS(1316), - [anon_sym_volatile] = ACTIONS(1316), - [anon_sym_restrict] = ACTIONS(1316), - [anon_sym___restrict__] = ACTIONS(1316), - [anon_sym__Atomic] = ACTIONS(1316), - [anon_sym__Noreturn] = ACTIONS(1316), - [anon_sym_noreturn] = ACTIONS(1316), - [sym_primitive_type] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1316), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_union] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_else] = ACTIONS(1316), - [anon_sym_switch] = ACTIONS(1316), - [anon_sym_case] = ACTIONS(1316), - [anon_sym_default] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_goto] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1318), - [anon_sym_sizeof] = ACTIONS(1316), - [anon_sym_offsetof] = ACTIONS(1316), - [anon_sym__Generic] = ACTIONS(1316), - [anon_sym_asm] = ACTIONS(1316), - [anon_sym___asm__] = ACTIONS(1316), - [sym_number_literal] = ACTIONS(1318), - [anon_sym_L_SQUOTE] = ACTIONS(1318), - [anon_sym_u_SQUOTE] = ACTIONS(1318), - [anon_sym_U_SQUOTE] = ACTIONS(1318), - [anon_sym_u8_SQUOTE] = ACTIONS(1318), - [anon_sym_SQUOTE] = ACTIONS(1318), - [anon_sym_L_DQUOTE] = ACTIONS(1318), - [anon_sym_u_DQUOTE] = ACTIONS(1318), - [anon_sym_U_DQUOTE] = ACTIONS(1318), - [anon_sym_u8_DQUOTE] = ACTIONS(1318), - [anon_sym_DQUOTE] = ACTIONS(1318), - [sym_true] = ACTIONS(1316), - [sym_false] = ACTIONS(1316), - [anon_sym_NULL] = ACTIONS(1316), - [anon_sym_nullptr] = ACTIONS(1316), + [185] = { + [sym_identifier] = ACTIONS(1284), + [aux_sym_preproc_include_token1] = ACTIONS(1284), + [aux_sym_preproc_def_token1] = ACTIONS(1284), + [aux_sym_preproc_if_token1] = ACTIONS(1284), + [aux_sym_preproc_if_token2] = ACTIONS(1284), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1284), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1284), + [aux_sym_preproc_else_token1] = ACTIONS(1284), + [aux_sym_preproc_elif_token1] = ACTIONS(1284), + [sym_preproc_directive] = ACTIONS(1284), + [anon_sym_LPAREN2] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1286), + [anon_sym_TILDE] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_STAR] = ACTIONS(1286), + [anon_sym_AMP] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [anon_sym___extension__] = ACTIONS(1284), + [anon_sym_typedef] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym___attribute__] = ACTIONS(1284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1286), + [anon_sym___declspec] = ACTIONS(1284), + [anon_sym___cdecl] = ACTIONS(1284), + [anon_sym___clrcall] = ACTIONS(1284), + [anon_sym___stdcall] = ACTIONS(1284), + [anon_sym___fastcall] = ACTIONS(1284), + [anon_sym___thiscall] = ACTIONS(1284), + [anon_sym___vectorcall] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_signed] = ACTIONS(1284), + [anon_sym_unsigned] = ACTIONS(1284), + [anon_sym_long] = ACTIONS(1284), + [anon_sym_short] = ACTIONS(1284), + [anon_sym_static] = ACTIONS(1284), + [anon_sym_auto] = ACTIONS(1284), + [anon_sym_register] = ACTIONS(1284), + [anon_sym_inline] = ACTIONS(1284), + [anon_sym___inline] = ACTIONS(1284), + [anon_sym___inline__] = ACTIONS(1284), + [anon_sym___forceinline] = ACTIONS(1284), + [anon_sym_thread_local] = ACTIONS(1284), + [anon_sym___thread] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_constexpr] = ACTIONS(1284), + [anon_sym_volatile] = ACTIONS(1284), + [anon_sym_restrict] = ACTIONS(1284), + [anon_sym___restrict__] = ACTIONS(1284), + [anon_sym__Atomic] = ACTIONS(1284), + [anon_sym__Noreturn] = ACTIONS(1284), + [anon_sym_noreturn] = ACTIONS(1284), + [sym_primitive_type] = ACTIONS(1284), + [anon_sym_enum] = ACTIONS(1284), + [anon_sym_struct] = ACTIONS(1284), + [anon_sym_union] = ACTIONS(1284), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_else] = ACTIONS(1284), + [anon_sym_switch] = ACTIONS(1284), + [anon_sym_case] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(1284), + [anon_sym_while] = ACTIONS(1284), + [anon_sym_do] = ACTIONS(1284), + [anon_sym_for] = ACTIONS(1284), + [anon_sym_return] = ACTIONS(1284), + [anon_sym_break] = ACTIONS(1284), + [anon_sym_continue] = ACTIONS(1284), + [anon_sym_goto] = ACTIONS(1284), + [anon_sym_DASH_DASH] = ACTIONS(1286), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [anon_sym_sizeof] = ACTIONS(1284), + [anon_sym___alignof__] = ACTIONS(1284), + [anon_sym___alignof] = ACTIONS(1284), + [anon_sym__alignof] = ACTIONS(1284), + [anon_sym_alignof] = ACTIONS(1284), + [anon_sym__Alignof] = ACTIONS(1284), + [anon_sym_offsetof] = ACTIONS(1284), + [anon_sym___builtin_va_arg] = ACTIONS(1284), + [anon_sym__Generic] = ACTIONS(1284), + [anon_sym_asm] = ACTIONS(1284), + [anon_sym___asm__] = ACTIONS(1284), + [sym_number_literal] = ACTIONS(1286), + [anon_sym_L_SQUOTE] = ACTIONS(1286), + [anon_sym_u_SQUOTE] = ACTIONS(1286), + [anon_sym_U_SQUOTE] = ACTIONS(1286), + [anon_sym_u8_SQUOTE] = ACTIONS(1286), + [anon_sym_SQUOTE] = ACTIONS(1286), + [anon_sym_L_DQUOTE] = ACTIONS(1286), + [anon_sym_u_DQUOTE] = ACTIONS(1286), + [anon_sym_U_DQUOTE] = ACTIONS(1286), + [anon_sym_u8_DQUOTE] = ACTIONS(1286), + [anon_sym_DQUOTE] = ACTIONS(1286), + [sym_true] = ACTIONS(1284), + [sym_false] = ACTIONS(1284), + [anon_sym_NULL] = ACTIONS(1284), + [anon_sym_nullptr] = ACTIONS(1284), [sym_comment] = ACTIONS(3), }, - [179] = { - [sym_identifier] = ACTIONS(1336), - [aux_sym_preproc_include_token1] = ACTIONS(1336), - [aux_sym_preproc_def_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token2] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [aux_sym_preproc_else_token1] = ACTIONS(1336), - [aux_sym_preproc_elif_token1] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(1336), - [anon_sym_LPAREN2] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym___attribute__] = ACTIONS(1336), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), - [anon_sym___declspec] = ACTIONS(1336), - [anon_sym___cdecl] = ACTIONS(1336), - [anon_sym___clrcall] = ACTIONS(1336), - [anon_sym___stdcall] = ACTIONS(1336), - [anon_sym___fastcall] = ACTIONS(1336), - [anon_sym___thiscall] = ACTIONS(1336), - [anon_sym___vectorcall] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_auto] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_inline] = ACTIONS(1336), - [anon_sym_thread_local] = ACTIONS(1336), - [anon_sym___thread] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_constexpr] = ACTIONS(1336), - [anon_sym_volatile] = ACTIONS(1336), - [anon_sym_restrict] = ACTIONS(1336), - [anon_sym___restrict__] = ACTIONS(1336), - [anon_sym__Atomic] = ACTIONS(1336), - [anon_sym__Noreturn] = ACTIONS(1336), - [anon_sym_noreturn] = ACTIONS(1336), - [sym_primitive_type] = ACTIONS(1336), - [anon_sym_enum] = ACTIONS(1336), - [anon_sym_struct] = ACTIONS(1336), - [anon_sym_union] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_else] = ACTIONS(1336), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1336), - [anon_sym_default] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_do] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_goto] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_sizeof] = ACTIONS(1336), - [anon_sym_offsetof] = ACTIONS(1336), - [anon_sym__Generic] = ACTIONS(1336), - [anon_sym_asm] = ACTIONS(1336), - [anon_sym___asm__] = ACTIONS(1336), - [sym_number_literal] = ACTIONS(1338), - [anon_sym_L_SQUOTE] = ACTIONS(1338), - [anon_sym_u_SQUOTE] = ACTIONS(1338), - [anon_sym_U_SQUOTE] = ACTIONS(1338), - [anon_sym_u8_SQUOTE] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1338), - [anon_sym_L_DQUOTE] = ACTIONS(1338), - [anon_sym_u_DQUOTE] = ACTIONS(1338), - [anon_sym_U_DQUOTE] = ACTIONS(1338), - [anon_sym_u8_DQUOTE] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym_true] = ACTIONS(1336), - [sym_false] = ACTIONS(1336), - [anon_sym_NULL] = ACTIONS(1336), - [anon_sym_nullptr] = ACTIONS(1336), + [186] = { + [sym_identifier] = ACTIONS(1288), + [aux_sym_preproc_include_token1] = ACTIONS(1288), + [aux_sym_preproc_def_token1] = ACTIONS(1288), + [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), + [sym_preproc_directive] = ACTIONS(1288), + [anon_sym_LPAREN2] = ACTIONS(1290), + [anon_sym_BANG] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_STAR] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(1290), + [anon_sym_SEMI] = ACTIONS(1290), + [anon_sym___extension__] = ACTIONS(1288), + [anon_sym_typedef] = ACTIONS(1288), + [anon_sym_extern] = ACTIONS(1288), + [anon_sym___attribute__] = ACTIONS(1288), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), + [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(1290), + [anon_sym_signed] = ACTIONS(1288), + [anon_sym_unsigned] = ACTIONS(1288), + [anon_sym_long] = ACTIONS(1288), + [anon_sym_short] = ACTIONS(1288), + [anon_sym_static] = ACTIONS(1288), + [anon_sym_auto] = ACTIONS(1288), + [anon_sym_register] = ACTIONS(1288), + [anon_sym_inline] = ACTIONS(1288), + [anon_sym___inline] = ACTIONS(1288), + [anon_sym___inline__] = ACTIONS(1288), + [anon_sym___forceinline] = ACTIONS(1288), + [anon_sym_thread_local] = ACTIONS(1288), + [anon_sym___thread] = ACTIONS(1288), + [anon_sym_const] = ACTIONS(1288), + [anon_sym_constexpr] = ACTIONS(1288), + [anon_sym_volatile] = ACTIONS(1288), + [anon_sym_restrict] = ACTIONS(1288), + [anon_sym___restrict__] = ACTIONS(1288), + [anon_sym__Atomic] = ACTIONS(1288), + [anon_sym__Noreturn] = ACTIONS(1288), + [anon_sym_noreturn] = 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(1290), + [anon_sym_PLUS_PLUS] = ACTIONS(1290), + [anon_sym_sizeof] = ACTIONS(1288), + [anon_sym___alignof__] = ACTIONS(1288), + [anon_sym___alignof] = ACTIONS(1288), + [anon_sym__alignof] = ACTIONS(1288), + [anon_sym_alignof] = ACTIONS(1288), + [anon_sym__Alignof] = ACTIONS(1288), + [anon_sym_offsetof] = ACTIONS(1288), + [anon_sym___builtin_va_arg] = ACTIONS(1288), + [anon_sym__Generic] = ACTIONS(1288), + [anon_sym_asm] = ACTIONS(1288), + [anon_sym___asm__] = ACTIONS(1288), + [sym_number_literal] = ACTIONS(1290), + [anon_sym_L_SQUOTE] = ACTIONS(1290), + [anon_sym_u_SQUOTE] = ACTIONS(1290), + [anon_sym_U_SQUOTE] = ACTIONS(1290), + [anon_sym_u8_SQUOTE] = ACTIONS(1290), + [anon_sym_SQUOTE] = ACTIONS(1290), + [anon_sym_L_DQUOTE] = ACTIONS(1290), + [anon_sym_u_DQUOTE] = ACTIONS(1290), + [anon_sym_U_DQUOTE] = ACTIONS(1290), + [anon_sym_u8_DQUOTE] = ACTIONS(1290), + [anon_sym_DQUOTE] = ACTIONS(1290), + [sym_true] = ACTIONS(1288), + [sym_false] = ACTIONS(1288), + [anon_sym_NULL] = ACTIONS(1288), + [anon_sym_nullptr] = ACTIONS(1288), [sym_comment] = ACTIONS(3), }, - [180] = { - [sym_identifier] = ACTIONS(1244), - [aux_sym_preproc_include_token1] = ACTIONS(1244), - [aux_sym_preproc_def_token1] = ACTIONS(1244), - [aux_sym_preproc_if_token1] = ACTIONS(1244), - [aux_sym_preproc_if_token2] = ACTIONS(1244), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1244), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1244), - [aux_sym_preproc_else_token1] = ACTIONS(1244), - [aux_sym_preproc_elif_token1] = ACTIONS(1244), - [sym_preproc_directive] = ACTIONS(1244), - [anon_sym_LPAREN2] = ACTIONS(1246), - [anon_sym_BANG] = ACTIONS(1246), - [anon_sym_TILDE] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1246), - [anon_sym_SEMI] = ACTIONS(1246), - [anon_sym_typedef] = ACTIONS(1244), - [anon_sym_extern] = ACTIONS(1244), - [anon_sym___attribute__] = ACTIONS(1244), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1246), - [anon_sym___declspec] = ACTIONS(1244), - [anon_sym___cdecl] = ACTIONS(1244), - [anon_sym___clrcall] = ACTIONS(1244), - [anon_sym___stdcall] = ACTIONS(1244), - [anon_sym___fastcall] = ACTIONS(1244), - [anon_sym___thiscall] = ACTIONS(1244), - [anon_sym___vectorcall] = ACTIONS(1244), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_signed] = ACTIONS(1244), - [anon_sym_unsigned] = ACTIONS(1244), - [anon_sym_long] = ACTIONS(1244), - [anon_sym_short] = ACTIONS(1244), - [anon_sym_static] = ACTIONS(1244), - [anon_sym_auto] = ACTIONS(1244), - [anon_sym_register] = ACTIONS(1244), - [anon_sym_inline] = ACTIONS(1244), - [anon_sym_thread_local] = ACTIONS(1244), - [anon_sym___thread] = ACTIONS(1244), - [anon_sym_const] = ACTIONS(1244), - [anon_sym_constexpr] = ACTIONS(1244), - [anon_sym_volatile] = ACTIONS(1244), - [anon_sym_restrict] = ACTIONS(1244), - [anon_sym___restrict__] = ACTIONS(1244), - [anon_sym__Atomic] = ACTIONS(1244), - [anon_sym__Noreturn] = ACTIONS(1244), - [anon_sym_noreturn] = ACTIONS(1244), - [sym_primitive_type] = ACTIONS(1244), - [anon_sym_enum] = ACTIONS(1244), - [anon_sym_struct] = ACTIONS(1244), - [anon_sym_union] = ACTIONS(1244), - [anon_sym_if] = ACTIONS(1244), - [anon_sym_else] = ACTIONS(1244), - [anon_sym_switch] = ACTIONS(1244), - [anon_sym_case] = ACTIONS(1244), - [anon_sym_default] = ACTIONS(1244), - [anon_sym_while] = ACTIONS(1244), - [anon_sym_do] = ACTIONS(1244), - [anon_sym_for] = ACTIONS(1244), - [anon_sym_return] = ACTIONS(1244), - [anon_sym_break] = ACTIONS(1244), - [anon_sym_continue] = ACTIONS(1244), - [anon_sym_goto] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1246), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_sizeof] = ACTIONS(1244), - [anon_sym_offsetof] = ACTIONS(1244), - [anon_sym__Generic] = ACTIONS(1244), - [anon_sym_asm] = ACTIONS(1244), - [anon_sym___asm__] = ACTIONS(1244), - [sym_number_literal] = ACTIONS(1246), - [anon_sym_L_SQUOTE] = ACTIONS(1246), - [anon_sym_u_SQUOTE] = ACTIONS(1246), - [anon_sym_U_SQUOTE] = ACTIONS(1246), - [anon_sym_u8_SQUOTE] = ACTIONS(1246), - [anon_sym_SQUOTE] = ACTIONS(1246), - [anon_sym_L_DQUOTE] = ACTIONS(1246), - [anon_sym_u_DQUOTE] = ACTIONS(1246), - [anon_sym_U_DQUOTE] = ACTIONS(1246), - [anon_sym_u8_DQUOTE] = ACTIONS(1246), - [anon_sym_DQUOTE] = ACTIONS(1246), - [sym_true] = ACTIONS(1244), - [sym_false] = ACTIONS(1244), - [anon_sym_NULL] = ACTIONS(1244), - [anon_sym_nullptr] = ACTIONS(1244), + [187] = { + [sym_identifier] = ACTIONS(1292), + [aux_sym_preproc_include_token1] = ACTIONS(1292), + [aux_sym_preproc_def_token1] = ACTIONS(1292), + [aux_sym_preproc_if_token1] = ACTIONS(1292), + [aux_sym_preproc_if_token2] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), + [aux_sym_preproc_else_token1] = ACTIONS(1292), + [aux_sym_preproc_elif_token1] = ACTIONS(1292), + [sym_preproc_directive] = ACTIONS(1292), + [anon_sym_LPAREN2] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_TILDE] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym___extension__] = ACTIONS(1292), + [anon_sym_typedef] = ACTIONS(1292), + [anon_sym_extern] = ACTIONS(1292), + [anon_sym___attribute__] = ACTIONS(1292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), + [anon_sym___declspec] = ACTIONS(1292), + [anon_sym___cdecl] = ACTIONS(1292), + [anon_sym___clrcall] = ACTIONS(1292), + [anon_sym___stdcall] = ACTIONS(1292), + [anon_sym___fastcall] = ACTIONS(1292), + [anon_sym___thiscall] = ACTIONS(1292), + [anon_sym___vectorcall] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_signed] = ACTIONS(1292), + [anon_sym_unsigned] = ACTIONS(1292), + [anon_sym_long] = ACTIONS(1292), + [anon_sym_short] = ACTIONS(1292), + [anon_sym_static] = ACTIONS(1292), + [anon_sym_auto] = ACTIONS(1292), + [anon_sym_register] = ACTIONS(1292), + [anon_sym_inline] = ACTIONS(1292), + [anon_sym___inline] = ACTIONS(1292), + [anon_sym___inline__] = ACTIONS(1292), + [anon_sym___forceinline] = ACTIONS(1292), + [anon_sym_thread_local] = ACTIONS(1292), + [anon_sym___thread] = ACTIONS(1292), + [anon_sym_const] = ACTIONS(1292), + [anon_sym_constexpr] = ACTIONS(1292), + [anon_sym_volatile] = ACTIONS(1292), + [anon_sym_restrict] = ACTIONS(1292), + [anon_sym___restrict__] = ACTIONS(1292), + [anon_sym__Atomic] = ACTIONS(1292), + [anon_sym__Noreturn] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [sym_primitive_type] = ACTIONS(1292), + [anon_sym_enum] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_union] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_switch] = ACTIONS(1292), + [anon_sym_case] = ACTIONS(1292), + [anon_sym_default] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_do] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_goto] = ACTIONS(1292), + [anon_sym_DASH_DASH] = ACTIONS(1294), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_sizeof] = ACTIONS(1292), + [anon_sym___alignof__] = ACTIONS(1292), + [anon_sym___alignof] = ACTIONS(1292), + [anon_sym__alignof] = ACTIONS(1292), + [anon_sym_alignof] = ACTIONS(1292), + [anon_sym__Alignof] = ACTIONS(1292), + [anon_sym_offsetof] = ACTIONS(1292), + [anon_sym___builtin_va_arg] = ACTIONS(1292), + [anon_sym__Generic] = ACTIONS(1292), + [anon_sym_asm] = ACTIONS(1292), + [anon_sym___asm__] = ACTIONS(1292), + [sym_number_literal] = ACTIONS(1294), + [anon_sym_L_SQUOTE] = ACTIONS(1294), + [anon_sym_u_SQUOTE] = ACTIONS(1294), + [anon_sym_U_SQUOTE] = ACTIONS(1294), + [anon_sym_u8_SQUOTE] = ACTIONS(1294), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_L_DQUOTE] = ACTIONS(1294), + [anon_sym_u_DQUOTE] = ACTIONS(1294), + [anon_sym_U_DQUOTE] = ACTIONS(1294), + [anon_sym_u8_DQUOTE] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [sym_true] = ACTIONS(1292), + [sym_false] = ACTIONS(1292), + [anon_sym_NULL] = ACTIONS(1292), + [anon_sym_nullptr] = ACTIONS(1292), [sym_comment] = ACTIONS(3), }, - [181] = { - [sym_identifier] = ACTIONS(1328), - [aux_sym_preproc_include_token1] = ACTIONS(1328), - [aux_sym_preproc_def_token1] = ACTIONS(1328), - [aux_sym_preproc_if_token1] = ACTIONS(1328), - [aux_sym_preproc_if_token2] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), - [aux_sym_preproc_else_token1] = ACTIONS(1328), - [aux_sym_preproc_elif_token1] = ACTIONS(1328), - [sym_preproc_directive] = ACTIONS(1328), - [anon_sym_LPAREN2] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(1330), - [anon_sym_TILDE] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1328), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_SEMI] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1328), - [anon_sym_extern] = ACTIONS(1328), - [anon_sym___attribute__] = ACTIONS(1328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), - [anon_sym___declspec] = ACTIONS(1328), - [anon_sym___cdecl] = ACTIONS(1328), - [anon_sym___clrcall] = ACTIONS(1328), - [anon_sym___stdcall] = ACTIONS(1328), - [anon_sym___fastcall] = ACTIONS(1328), - [anon_sym___thiscall] = ACTIONS(1328), - [anon_sym___vectorcall] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_signed] = ACTIONS(1328), - [anon_sym_unsigned] = ACTIONS(1328), - [anon_sym_long] = ACTIONS(1328), - [anon_sym_short] = ACTIONS(1328), - [anon_sym_static] = ACTIONS(1328), - [anon_sym_auto] = ACTIONS(1328), - [anon_sym_register] = ACTIONS(1328), - [anon_sym_inline] = ACTIONS(1328), - [anon_sym_thread_local] = ACTIONS(1328), - [anon_sym___thread] = ACTIONS(1328), - [anon_sym_const] = ACTIONS(1328), - [anon_sym_constexpr] = ACTIONS(1328), - [anon_sym_volatile] = ACTIONS(1328), - [anon_sym_restrict] = ACTIONS(1328), - [anon_sym___restrict__] = ACTIONS(1328), - [anon_sym__Atomic] = ACTIONS(1328), - [anon_sym__Noreturn] = ACTIONS(1328), - [anon_sym_noreturn] = ACTIONS(1328), - [sym_primitive_type] = ACTIONS(1328), - [anon_sym_enum] = ACTIONS(1328), - [anon_sym_struct] = ACTIONS(1328), - [anon_sym_union] = ACTIONS(1328), - [anon_sym_if] = ACTIONS(1328), - [anon_sym_else] = ACTIONS(1328), - [anon_sym_switch] = ACTIONS(1328), - [anon_sym_case] = ACTIONS(1328), - [anon_sym_default] = ACTIONS(1328), - [anon_sym_while] = ACTIONS(1328), - [anon_sym_do] = ACTIONS(1328), - [anon_sym_for] = ACTIONS(1328), - [anon_sym_return] = ACTIONS(1328), - [anon_sym_break] = ACTIONS(1328), - [anon_sym_continue] = ACTIONS(1328), - [anon_sym_goto] = ACTIONS(1328), - [anon_sym_DASH_DASH] = ACTIONS(1330), - [anon_sym_PLUS_PLUS] = ACTIONS(1330), - [anon_sym_sizeof] = ACTIONS(1328), - [anon_sym_offsetof] = ACTIONS(1328), - [anon_sym__Generic] = ACTIONS(1328), - [anon_sym_asm] = ACTIONS(1328), - [anon_sym___asm__] = ACTIONS(1328), - [sym_number_literal] = ACTIONS(1330), - [anon_sym_L_SQUOTE] = ACTIONS(1330), - [anon_sym_u_SQUOTE] = ACTIONS(1330), - [anon_sym_U_SQUOTE] = ACTIONS(1330), - [anon_sym_u8_SQUOTE] = ACTIONS(1330), - [anon_sym_SQUOTE] = ACTIONS(1330), - [anon_sym_L_DQUOTE] = ACTIONS(1330), - [anon_sym_u_DQUOTE] = ACTIONS(1330), - [anon_sym_U_DQUOTE] = ACTIONS(1330), - [anon_sym_u8_DQUOTE] = ACTIONS(1330), - [anon_sym_DQUOTE] = ACTIONS(1330), - [sym_true] = ACTIONS(1328), - [sym_false] = ACTIONS(1328), - [anon_sym_NULL] = ACTIONS(1328), - [anon_sym_nullptr] = ACTIONS(1328), + [188] = { + [sym_identifier] = ACTIONS(1296), + [aux_sym_preproc_include_token1] = ACTIONS(1296), + [aux_sym_preproc_def_token1] = ACTIONS(1296), + [aux_sym_preproc_if_token1] = ACTIONS(1296), + [aux_sym_preproc_if_token2] = ACTIONS(1296), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1296), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), + [aux_sym_preproc_else_token1] = ACTIONS(1296), + [aux_sym_preproc_elif_token1] = ACTIONS(1296), + [sym_preproc_directive] = ACTIONS(1296), + [anon_sym_LPAREN2] = ACTIONS(1298), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(1296), + [anon_sym_typedef] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1296), + [anon_sym___attribute__] = ACTIONS(1296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), + [anon_sym___declspec] = ACTIONS(1296), + [anon_sym___cdecl] = ACTIONS(1296), + [anon_sym___clrcall] = ACTIONS(1296), + [anon_sym___stdcall] = ACTIONS(1296), + [anon_sym___fastcall] = ACTIONS(1296), + [anon_sym___thiscall] = ACTIONS(1296), + [anon_sym___vectorcall] = ACTIONS(1296), + [anon_sym_LBRACE] = ACTIONS(1298), + [anon_sym_signed] = ACTIONS(1296), + [anon_sym_unsigned] = ACTIONS(1296), + [anon_sym_long] = ACTIONS(1296), + [anon_sym_short] = ACTIONS(1296), + [anon_sym_static] = ACTIONS(1296), + [anon_sym_auto] = ACTIONS(1296), + [anon_sym_register] = ACTIONS(1296), + [anon_sym_inline] = ACTIONS(1296), + [anon_sym___inline] = ACTIONS(1296), + [anon_sym___inline__] = ACTIONS(1296), + [anon_sym___forceinline] = ACTIONS(1296), + [anon_sym_thread_local] = ACTIONS(1296), + [anon_sym___thread] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_constexpr] = ACTIONS(1296), + [anon_sym_volatile] = ACTIONS(1296), + [anon_sym_restrict] = ACTIONS(1296), + [anon_sym___restrict__] = ACTIONS(1296), + [anon_sym__Atomic] = ACTIONS(1296), + [anon_sym__Noreturn] = ACTIONS(1296), + [anon_sym_noreturn] = ACTIONS(1296), + [sym_primitive_type] = ACTIONS(1296), + [anon_sym_enum] = ACTIONS(1296), + [anon_sym_struct] = ACTIONS(1296), + [anon_sym_union] = ACTIONS(1296), + [anon_sym_if] = ACTIONS(1296), + [anon_sym_else] = ACTIONS(1296), + [anon_sym_switch] = ACTIONS(1296), + [anon_sym_case] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(1296), + [anon_sym_while] = ACTIONS(1296), + [anon_sym_do] = ACTIONS(1296), + [anon_sym_for] = ACTIONS(1296), + [anon_sym_return] = ACTIONS(1296), + [anon_sym_break] = ACTIONS(1296), + [anon_sym_continue] = ACTIONS(1296), + [anon_sym_goto] = ACTIONS(1296), + [anon_sym_DASH_DASH] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_sizeof] = ACTIONS(1296), + [anon_sym___alignof__] = ACTIONS(1296), + [anon_sym___alignof] = ACTIONS(1296), + [anon_sym__alignof] = ACTIONS(1296), + [anon_sym_alignof] = ACTIONS(1296), + [anon_sym__Alignof] = ACTIONS(1296), + [anon_sym_offsetof] = ACTIONS(1296), + [anon_sym___builtin_va_arg] = ACTIONS(1296), + [anon_sym__Generic] = ACTIONS(1296), + [anon_sym_asm] = ACTIONS(1296), + [anon_sym___asm__] = ACTIONS(1296), + [sym_number_literal] = ACTIONS(1298), + [anon_sym_L_SQUOTE] = ACTIONS(1298), + [anon_sym_u_SQUOTE] = ACTIONS(1298), + [anon_sym_U_SQUOTE] = ACTIONS(1298), + [anon_sym_u8_SQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1298), + [anon_sym_L_DQUOTE] = ACTIONS(1298), + [anon_sym_u_DQUOTE] = ACTIONS(1298), + [anon_sym_U_DQUOTE] = ACTIONS(1298), + [anon_sym_u8_DQUOTE] = ACTIONS(1298), + [anon_sym_DQUOTE] = ACTIONS(1298), + [sym_true] = ACTIONS(1296), + [sym_false] = ACTIONS(1296), + [anon_sym_NULL] = ACTIONS(1296), + [anon_sym_nullptr] = ACTIONS(1296), [sym_comment] = ACTIONS(3), }, - [182] = { - [ts_builtin_sym_end] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1316), - [aux_sym_preproc_include_token1] = ACTIONS(1316), - [aux_sym_preproc_def_token1] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1318), - [anon_sym_RPAREN] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), - [sym_preproc_directive] = ACTIONS(1316), - [anon_sym_LPAREN2] = ACTIONS(1318), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_TILDE] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym_typedef] = ACTIONS(1316), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym___attribute__] = ACTIONS(1316), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), - [anon_sym___declspec] = ACTIONS(1316), - [anon_sym___cdecl] = ACTIONS(1316), - [anon_sym___clrcall] = ACTIONS(1316), - [anon_sym___stdcall] = ACTIONS(1316), - [anon_sym___fastcall] = ACTIONS(1316), - [anon_sym___thiscall] = ACTIONS(1316), - [anon_sym___vectorcall] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_signed] = ACTIONS(1316), - [anon_sym_unsigned] = ACTIONS(1316), - [anon_sym_long] = ACTIONS(1316), - [anon_sym_short] = ACTIONS(1316), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_auto] = ACTIONS(1316), - [anon_sym_register] = ACTIONS(1316), - [anon_sym_inline] = ACTIONS(1316), - [anon_sym_thread_local] = ACTIONS(1316), - [anon_sym___thread] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [anon_sym_constexpr] = ACTIONS(1316), - [anon_sym_volatile] = ACTIONS(1316), - [anon_sym_restrict] = ACTIONS(1316), - [anon_sym___restrict__] = ACTIONS(1316), - [anon_sym__Atomic] = ACTIONS(1316), - [anon_sym__Noreturn] = ACTIONS(1316), - [anon_sym_noreturn] = ACTIONS(1316), - [sym_primitive_type] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1316), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_union] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_else] = ACTIONS(1316), - [anon_sym_switch] = ACTIONS(1316), - [anon_sym_case] = ACTIONS(1316), - [anon_sym_default] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_goto] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1318), - [anon_sym_sizeof] = ACTIONS(1316), - [anon_sym_offsetof] = ACTIONS(1316), - [anon_sym__Generic] = ACTIONS(1316), - [anon_sym_asm] = ACTIONS(1316), - [anon_sym___asm__] = ACTIONS(1316), - [sym_number_literal] = ACTIONS(1318), - [anon_sym_L_SQUOTE] = ACTIONS(1318), - [anon_sym_u_SQUOTE] = ACTIONS(1318), - [anon_sym_U_SQUOTE] = ACTIONS(1318), - [anon_sym_u8_SQUOTE] = ACTIONS(1318), - [anon_sym_SQUOTE] = ACTIONS(1318), - [anon_sym_L_DQUOTE] = ACTIONS(1318), - [anon_sym_u_DQUOTE] = ACTIONS(1318), - [anon_sym_U_DQUOTE] = ACTIONS(1318), - [anon_sym_u8_DQUOTE] = ACTIONS(1318), - [anon_sym_DQUOTE] = ACTIONS(1318), - [sym_true] = ACTIONS(1316), - [sym_false] = ACTIONS(1316), - [anon_sym_NULL] = ACTIONS(1316), - [anon_sym_nullptr] = ACTIONS(1316), + [189] = { + [sym_identifier] = ACTIONS(1300), + [aux_sym_preproc_include_token1] = ACTIONS(1300), + [aux_sym_preproc_def_token1] = ACTIONS(1300), + [aux_sym_preproc_if_token1] = ACTIONS(1300), + [aux_sym_preproc_if_token2] = ACTIONS(1300), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), + [aux_sym_preproc_else_token1] = ACTIONS(1300), + [aux_sym_preproc_elif_token1] = ACTIONS(1300), + [sym_preproc_directive] = ACTIONS(1300), + [anon_sym_LPAREN2] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1302), + [anon_sym_TILDE] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym___extension__] = ACTIONS(1300), + [anon_sym_typedef] = ACTIONS(1300), + [anon_sym_extern] = ACTIONS(1300), + [anon_sym___attribute__] = ACTIONS(1300), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), + [anon_sym___declspec] = ACTIONS(1300), + [anon_sym___cdecl] = ACTIONS(1300), + [anon_sym___clrcall] = ACTIONS(1300), + [anon_sym___stdcall] = ACTIONS(1300), + [anon_sym___fastcall] = ACTIONS(1300), + [anon_sym___thiscall] = ACTIONS(1300), + [anon_sym___vectorcall] = ACTIONS(1300), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_signed] = ACTIONS(1300), + [anon_sym_unsigned] = ACTIONS(1300), + [anon_sym_long] = ACTIONS(1300), + [anon_sym_short] = ACTIONS(1300), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_auto] = ACTIONS(1300), + [anon_sym_register] = ACTIONS(1300), + [anon_sym_inline] = ACTIONS(1300), + [anon_sym___inline] = ACTIONS(1300), + [anon_sym___inline__] = ACTIONS(1300), + [anon_sym___forceinline] = ACTIONS(1300), + [anon_sym_thread_local] = ACTIONS(1300), + [anon_sym___thread] = ACTIONS(1300), + [anon_sym_const] = ACTIONS(1300), + [anon_sym_constexpr] = ACTIONS(1300), + [anon_sym_volatile] = ACTIONS(1300), + [anon_sym_restrict] = ACTIONS(1300), + [anon_sym___restrict__] = ACTIONS(1300), + [anon_sym__Atomic] = ACTIONS(1300), + [anon_sym__Noreturn] = ACTIONS(1300), + [anon_sym_noreturn] = ACTIONS(1300), + [sym_primitive_type] = ACTIONS(1300), + [anon_sym_enum] = ACTIONS(1300), + [anon_sym_struct] = ACTIONS(1300), + [anon_sym_union] = ACTIONS(1300), + [anon_sym_if] = ACTIONS(1300), + [anon_sym_else] = ACTIONS(1300), + [anon_sym_switch] = ACTIONS(1300), + [anon_sym_case] = ACTIONS(1300), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_while] = ACTIONS(1300), + [anon_sym_do] = ACTIONS(1300), + [anon_sym_for] = ACTIONS(1300), + [anon_sym_return] = ACTIONS(1300), + [anon_sym_break] = ACTIONS(1300), + [anon_sym_continue] = ACTIONS(1300), + [anon_sym_goto] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_sizeof] = ACTIONS(1300), + [anon_sym___alignof__] = ACTIONS(1300), + [anon_sym___alignof] = ACTIONS(1300), + [anon_sym__alignof] = ACTIONS(1300), + [anon_sym_alignof] = ACTIONS(1300), + [anon_sym__Alignof] = ACTIONS(1300), + [anon_sym_offsetof] = ACTIONS(1300), + [anon_sym___builtin_va_arg] = ACTIONS(1300), + [anon_sym__Generic] = ACTIONS(1300), + [anon_sym_asm] = ACTIONS(1300), + [anon_sym___asm__] = ACTIONS(1300), + [sym_number_literal] = ACTIONS(1302), + [anon_sym_L_SQUOTE] = ACTIONS(1302), + [anon_sym_u_SQUOTE] = ACTIONS(1302), + [anon_sym_U_SQUOTE] = ACTIONS(1302), + [anon_sym_u8_SQUOTE] = ACTIONS(1302), + [anon_sym_SQUOTE] = ACTIONS(1302), + [anon_sym_L_DQUOTE] = ACTIONS(1302), + [anon_sym_u_DQUOTE] = ACTIONS(1302), + [anon_sym_U_DQUOTE] = ACTIONS(1302), + [anon_sym_u8_DQUOTE] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1302), + [sym_true] = ACTIONS(1300), + [sym_false] = ACTIONS(1300), + [anon_sym_NULL] = ACTIONS(1300), + [anon_sym_nullptr] = ACTIONS(1300), [sym_comment] = ACTIONS(3), }, - [183] = { - [sym_identifier] = ACTIONS(1256), - [aux_sym_preproc_include_token1] = ACTIONS(1256), - [aux_sym_preproc_def_token1] = ACTIONS(1256), - [aux_sym_preproc_if_token1] = ACTIONS(1256), - [aux_sym_preproc_if_token2] = ACTIONS(1256), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1256), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1256), - [aux_sym_preproc_else_token1] = ACTIONS(1256), - [aux_sym_preproc_elif_token1] = ACTIONS(1256), - [sym_preproc_directive] = ACTIONS(1256), - [anon_sym_LPAREN2] = ACTIONS(1258), - [anon_sym_BANG] = ACTIONS(1258), - [anon_sym_TILDE] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym_typedef] = ACTIONS(1256), - [anon_sym_extern] = ACTIONS(1256), - [anon_sym___attribute__] = ACTIONS(1256), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1258), - [anon_sym___declspec] = ACTIONS(1256), - [anon_sym___cdecl] = ACTIONS(1256), - [anon_sym___clrcall] = ACTIONS(1256), - [anon_sym___stdcall] = ACTIONS(1256), - [anon_sym___fastcall] = ACTIONS(1256), - [anon_sym___thiscall] = ACTIONS(1256), - [anon_sym___vectorcall] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1258), - [anon_sym_signed] = ACTIONS(1256), - [anon_sym_unsigned] = ACTIONS(1256), - [anon_sym_long] = ACTIONS(1256), - [anon_sym_short] = ACTIONS(1256), - [anon_sym_static] = ACTIONS(1256), - [anon_sym_auto] = ACTIONS(1256), - [anon_sym_register] = ACTIONS(1256), - [anon_sym_inline] = ACTIONS(1256), - [anon_sym_thread_local] = ACTIONS(1256), - [anon_sym___thread] = ACTIONS(1256), - [anon_sym_const] = ACTIONS(1256), - [anon_sym_constexpr] = ACTIONS(1256), - [anon_sym_volatile] = ACTIONS(1256), - [anon_sym_restrict] = ACTIONS(1256), - [anon_sym___restrict__] = ACTIONS(1256), - [anon_sym__Atomic] = ACTIONS(1256), - [anon_sym__Noreturn] = ACTIONS(1256), - [anon_sym_noreturn] = ACTIONS(1256), - [sym_primitive_type] = ACTIONS(1256), - [anon_sym_enum] = ACTIONS(1256), - [anon_sym_struct] = ACTIONS(1256), - [anon_sym_union] = ACTIONS(1256), - [anon_sym_if] = ACTIONS(1256), - [anon_sym_else] = ACTIONS(1256), - [anon_sym_switch] = ACTIONS(1256), - [anon_sym_case] = ACTIONS(1256), - [anon_sym_default] = ACTIONS(1256), - [anon_sym_while] = ACTIONS(1256), - [anon_sym_do] = ACTIONS(1256), - [anon_sym_for] = ACTIONS(1256), - [anon_sym_return] = ACTIONS(1256), - [anon_sym_break] = ACTIONS(1256), - [anon_sym_continue] = ACTIONS(1256), - [anon_sym_goto] = ACTIONS(1256), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_sizeof] = ACTIONS(1256), - [anon_sym_offsetof] = ACTIONS(1256), - [anon_sym__Generic] = ACTIONS(1256), - [anon_sym_asm] = ACTIONS(1256), - [anon_sym___asm__] = ACTIONS(1256), - [sym_number_literal] = ACTIONS(1258), - [anon_sym_L_SQUOTE] = ACTIONS(1258), - [anon_sym_u_SQUOTE] = ACTIONS(1258), - [anon_sym_U_SQUOTE] = ACTIONS(1258), - [anon_sym_u8_SQUOTE] = ACTIONS(1258), - [anon_sym_SQUOTE] = ACTIONS(1258), - [anon_sym_L_DQUOTE] = ACTIONS(1258), - [anon_sym_u_DQUOTE] = ACTIONS(1258), - [anon_sym_U_DQUOTE] = ACTIONS(1258), - [anon_sym_u8_DQUOTE] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(1258), - [sym_true] = ACTIONS(1256), - [sym_false] = ACTIONS(1256), - [anon_sym_NULL] = ACTIONS(1256), - [anon_sym_nullptr] = ACTIONS(1256), + [190] = { + [sym_identifier] = ACTIONS(1304), + [aux_sym_preproc_include_token1] = ACTIONS(1304), + [aux_sym_preproc_def_token1] = ACTIONS(1304), + [aux_sym_preproc_if_token1] = ACTIONS(1304), + [aux_sym_preproc_if_token2] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), + [aux_sym_preproc_else_token1] = ACTIONS(1304), + [aux_sym_preproc_elif_token1] = ACTIONS(1304), + [sym_preproc_directive] = ACTIONS(1304), + [anon_sym_LPAREN2] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_TILDE] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_PLUS] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1306), + [anon_sym___extension__] = ACTIONS(1304), + [anon_sym_typedef] = ACTIONS(1304), + [anon_sym_extern] = ACTIONS(1304), + [anon_sym___attribute__] = ACTIONS(1304), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), + [anon_sym___declspec] = ACTIONS(1304), + [anon_sym___cdecl] = ACTIONS(1304), + [anon_sym___clrcall] = ACTIONS(1304), + [anon_sym___stdcall] = ACTIONS(1304), + [anon_sym___fastcall] = ACTIONS(1304), + [anon_sym___thiscall] = ACTIONS(1304), + [anon_sym___vectorcall] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_signed] = ACTIONS(1304), + [anon_sym_unsigned] = ACTIONS(1304), + [anon_sym_long] = ACTIONS(1304), + [anon_sym_short] = ACTIONS(1304), + [anon_sym_static] = ACTIONS(1304), + [anon_sym_auto] = ACTIONS(1304), + [anon_sym_register] = ACTIONS(1304), + [anon_sym_inline] = ACTIONS(1304), + [anon_sym___inline] = ACTIONS(1304), + [anon_sym___inline__] = ACTIONS(1304), + [anon_sym___forceinline] = ACTIONS(1304), + [anon_sym_thread_local] = ACTIONS(1304), + [anon_sym___thread] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_constexpr] = ACTIONS(1304), + [anon_sym_volatile] = ACTIONS(1304), + [anon_sym_restrict] = ACTIONS(1304), + [anon_sym___restrict__] = ACTIONS(1304), + [anon_sym__Atomic] = ACTIONS(1304), + [anon_sym__Noreturn] = ACTIONS(1304), + [anon_sym_noreturn] = ACTIONS(1304), + [sym_primitive_type] = ACTIONS(1304), + [anon_sym_enum] = ACTIONS(1304), + [anon_sym_struct] = ACTIONS(1304), + [anon_sym_union] = ACTIONS(1304), + [anon_sym_if] = ACTIONS(1304), + [anon_sym_else] = ACTIONS(1304), + [anon_sym_switch] = ACTIONS(1304), + [anon_sym_case] = ACTIONS(1304), + [anon_sym_default] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(1304), + [anon_sym_do] = ACTIONS(1304), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_return] = ACTIONS(1304), + [anon_sym_break] = ACTIONS(1304), + [anon_sym_continue] = ACTIONS(1304), + [anon_sym_goto] = ACTIONS(1304), + [anon_sym_DASH_DASH] = ACTIONS(1306), + [anon_sym_PLUS_PLUS] = ACTIONS(1306), + [anon_sym_sizeof] = ACTIONS(1304), + [anon_sym___alignof__] = ACTIONS(1304), + [anon_sym___alignof] = ACTIONS(1304), + [anon_sym__alignof] = ACTIONS(1304), + [anon_sym_alignof] = ACTIONS(1304), + [anon_sym__Alignof] = ACTIONS(1304), + [anon_sym_offsetof] = ACTIONS(1304), + [anon_sym___builtin_va_arg] = ACTIONS(1304), + [anon_sym__Generic] = ACTIONS(1304), + [anon_sym_asm] = ACTIONS(1304), + [anon_sym___asm__] = ACTIONS(1304), + [sym_number_literal] = ACTIONS(1306), + [anon_sym_L_SQUOTE] = ACTIONS(1306), + [anon_sym_u_SQUOTE] = ACTIONS(1306), + [anon_sym_U_SQUOTE] = ACTIONS(1306), + [anon_sym_u8_SQUOTE] = ACTIONS(1306), + [anon_sym_SQUOTE] = ACTIONS(1306), + [anon_sym_L_DQUOTE] = ACTIONS(1306), + [anon_sym_u_DQUOTE] = ACTIONS(1306), + [anon_sym_U_DQUOTE] = ACTIONS(1306), + [anon_sym_u8_DQUOTE] = ACTIONS(1306), + [anon_sym_DQUOTE] = ACTIONS(1306), + [sym_true] = ACTIONS(1304), + [sym_false] = ACTIONS(1304), + [anon_sym_NULL] = ACTIONS(1304), + [anon_sym_nullptr] = ACTIONS(1304), [sym_comment] = ACTIONS(3), }, - [184] = { - [sym_identifier] = ACTIONS(1260), - [aux_sym_preproc_include_token1] = ACTIONS(1260), - [aux_sym_preproc_def_token1] = ACTIONS(1260), - [aux_sym_preproc_if_token1] = ACTIONS(1260), - [aux_sym_preproc_if_token2] = ACTIONS(1260), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1260), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1260), - [aux_sym_preproc_else_token1] = ACTIONS(1260), - [aux_sym_preproc_elif_token1] = ACTIONS(1260), - [sym_preproc_directive] = ACTIONS(1260), - [anon_sym_LPAREN2] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1262), - [anon_sym_TILDE] = ACTIONS(1262), - [anon_sym_DASH] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1260), - [anon_sym_STAR] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(1262), - [anon_sym_SEMI] = ACTIONS(1262), - [anon_sym_typedef] = ACTIONS(1260), - [anon_sym_extern] = ACTIONS(1260), - [anon_sym___attribute__] = ACTIONS(1260), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1262), - [anon_sym___declspec] = ACTIONS(1260), - [anon_sym___cdecl] = ACTIONS(1260), - [anon_sym___clrcall] = ACTIONS(1260), - [anon_sym___stdcall] = ACTIONS(1260), - [anon_sym___fastcall] = ACTIONS(1260), - [anon_sym___thiscall] = ACTIONS(1260), - [anon_sym___vectorcall] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_signed] = ACTIONS(1260), - [anon_sym_unsigned] = ACTIONS(1260), - [anon_sym_long] = ACTIONS(1260), - [anon_sym_short] = ACTIONS(1260), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_auto] = ACTIONS(1260), - [anon_sym_register] = ACTIONS(1260), - [anon_sym_inline] = ACTIONS(1260), - [anon_sym_thread_local] = ACTIONS(1260), - [anon_sym___thread] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1260), - [anon_sym_constexpr] = ACTIONS(1260), - [anon_sym_volatile] = ACTIONS(1260), - [anon_sym_restrict] = ACTIONS(1260), - [anon_sym___restrict__] = ACTIONS(1260), - [anon_sym__Atomic] = ACTIONS(1260), - [anon_sym__Noreturn] = ACTIONS(1260), - [anon_sym_noreturn] = ACTIONS(1260), - [sym_primitive_type] = ACTIONS(1260), - [anon_sym_enum] = ACTIONS(1260), - [anon_sym_struct] = ACTIONS(1260), - [anon_sym_union] = ACTIONS(1260), - [anon_sym_if] = ACTIONS(1260), - [anon_sym_else] = ACTIONS(1260), - [anon_sym_switch] = ACTIONS(1260), - [anon_sym_case] = ACTIONS(1260), - [anon_sym_default] = ACTIONS(1260), - [anon_sym_while] = ACTIONS(1260), - [anon_sym_do] = ACTIONS(1260), - [anon_sym_for] = ACTIONS(1260), - [anon_sym_return] = ACTIONS(1260), - [anon_sym_break] = ACTIONS(1260), - [anon_sym_continue] = ACTIONS(1260), - [anon_sym_goto] = ACTIONS(1260), - [anon_sym_DASH_DASH] = ACTIONS(1262), - [anon_sym_PLUS_PLUS] = ACTIONS(1262), - [anon_sym_sizeof] = ACTIONS(1260), - [anon_sym_offsetof] = ACTIONS(1260), - [anon_sym__Generic] = ACTIONS(1260), - [anon_sym_asm] = ACTIONS(1260), - [anon_sym___asm__] = ACTIONS(1260), - [sym_number_literal] = ACTIONS(1262), - [anon_sym_L_SQUOTE] = ACTIONS(1262), - [anon_sym_u_SQUOTE] = ACTIONS(1262), - [anon_sym_U_SQUOTE] = ACTIONS(1262), - [anon_sym_u8_SQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1262), - [anon_sym_L_DQUOTE] = ACTIONS(1262), - [anon_sym_u_DQUOTE] = ACTIONS(1262), - [anon_sym_U_DQUOTE] = ACTIONS(1262), - [anon_sym_u8_DQUOTE] = ACTIONS(1262), - [anon_sym_DQUOTE] = ACTIONS(1262), - [sym_true] = ACTIONS(1260), - [sym_false] = ACTIONS(1260), - [anon_sym_NULL] = ACTIONS(1260), - [anon_sym_nullptr] = ACTIONS(1260), + [191] = { + [sym_identifier] = ACTIONS(1308), + [aux_sym_preproc_include_token1] = ACTIONS(1308), + [aux_sym_preproc_def_token1] = ACTIONS(1308), + [aux_sym_preproc_if_token1] = ACTIONS(1308), + [aux_sym_preproc_if_token2] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), + [aux_sym_preproc_else_token1] = ACTIONS(1308), + [aux_sym_preproc_elif_token1] = ACTIONS(1308), + [sym_preproc_directive] = ACTIONS(1308), + [anon_sym_LPAREN2] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym___extension__] = ACTIONS(1308), + [anon_sym_typedef] = ACTIONS(1308), + [anon_sym_extern] = ACTIONS(1308), + [anon_sym___attribute__] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), + [anon_sym___declspec] = ACTIONS(1308), + [anon_sym___cdecl] = ACTIONS(1308), + [anon_sym___clrcall] = ACTIONS(1308), + [anon_sym___stdcall] = ACTIONS(1308), + [anon_sym___fastcall] = ACTIONS(1308), + [anon_sym___thiscall] = ACTIONS(1308), + [anon_sym___vectorcall] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_signed] = ACTIONS(1308), + [anon_sym_unsigned] = ACTIONS(1308), + [anon_sym_long] = ACTIONS(1308), + [anon_sym_short] = ACTIONS(1308), + [anon_sym_static] = ACTIONS(1308), + [anon_sym_auto] = ACTIONS(1308), + [anon_sym_register] = ACTIONS(1308), + [anon_sym_inline] = ACTIONS(1308), + [anon_sym___inline] = ACTIONS(1308), + [anon_sym___inline__] = ACTIONS(1308), + [anon_sym___forceinline] = ACTIONS(1308), + [anon_sym_thread_local] = ACTIONS(1308), + [anon_sym___thread] = ACTIONS(1308), + [anon_sym_const] = ACTIONS(1308), + [anon_sym_constexpr] = ACTIONS(1308), + [anon_sym_volatile] = ACTIONS(1308), + [anon_sym_restrict] = ACTIONS(1308), + [anon_sym___restrict__] = ACTIONS(1308), + [anon_sym__Atomic] = ACTIONS(1308), + [anon_sym__Noreturn] = ACTIONS(1308), + [anon_sym_noreturn] = ACTIONS(1308), + [sym_primitive_type] = ACTIONS(1308), + [anon_sym_enum] = ACTIONS(1308), + [anon_sym_struct] = ACTIONS(1308), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_if] = ACTIONS(1308), + [anon_sym_else] = ACTIONS(1308), + [anon_sym_switch] = ACTIONS(1308), + [anon_sym_case] = ACTIONS(1308), + [anon_sym_default] = ACTIONS(1308), + [anon_sym_while] = ACTIONS(1308), + [anon_sym_do] = ACTIONS(1308), + [anon_sym_for] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1308), + [anon_sym_break] = ACTIONS(1308), + [anon_sym_continue] = ACTIONS(1308), + [anon_sym_goto] = ACTIONS(1308), + [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_sizeof] = ACTIONS(1308), + [anon_sym___alignof__] = ACTIONS(1308), + [anon_sym___alignof] = ACTIONS(1308), + [anon_sym__alignof] = ACTIONS(1308), + [anon_sym_alignof] = ACTIONS(1308), + [anon_sym__Alignof] = ACTIONS(1308), + [anon_sym_offsetof] = ACTIONS(1308), + [anon_sym___builtin_va_arg] = ACTIONS(1308), + [anon_sym__Generic] = ACTIONS(1308), + [anon_sym_asm] = ACTIONS(1308), + [anon_sym___asm__] = ACTIONS(1308), + [sym_number_literal] = ACTIONS(1310), + [anon_sym_L_SQUOTE] = ACTIONS(1310), + [anon_sym_u_SQUOTE] = ACTIONS(1310), + [anon_sym_U_SQUOTE] = ACTIONS(1310), + [anon_sym_u8_SQUOTE] = ACTIONS(1310), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_L_DQUOTE] = ACTIONS(1310), + [anon_sym_u_DQUOTE] = ACTIONS(1310), + [anon_sym_U_DQUOTE] = ACTIONS(1310), + [anon_sym_u8_DQUOTE] = ACTIONS(1310), + [anon_sym_DQUOTE] = ACTIONS(1310), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [anon_sym_NULL] = ACTIONS(1308), + [anon_sym_nullptr] = ACTIONS(1308), [sym_comment] = ACTIONS(3), }, - [185] = { - [sym_identifier] = ACTIONS(1264), - [aux_sym_preproc_include_token1] = ACTIONS(1264), - [aux_sym_preproc_def_token1] = ACTIONS(1264), - [aux_sym_preproc_if_token1] = ACTIONS(1264), - [aux_sym_preproc_if_token2] = ACTIONS(1264), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1264), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1264), - [aux_sym_preproc_else_token1] = ACTIONS(1264), - [aux_sym_preproc_elif_token1] = ACTIONS(1264), - [sym_preproc_directive] = ACTIONS(1264), - [anon_sym_LPAREN2] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1264), - [anon_sym_STAR] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_SEMI] = ACTIONS(1266), - [anon_sym_typedef] = ACTIONS(1264), - [anon_sym_extern] = ACTIONS(1264), - [anon_sym___attribute__] = ACTIONS(1264), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1266), - [anon_sym___declspec] = ACTIONS(1264), - [anon_sym___cdecl] = ACTIONS(1264), - [anon_sym___clrcall] = ACTIONS(1264), - [anon_sym___stdcall] = ACTIONS(1264), - [anon_sym___fastcall] = ACTIONS(1264), - [anon_sym___thiscall] = ACTIONS(1264), - [anon_sym___vectorcall] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_signed] = ACTIONS(1264), - [anon_sym_unsigned] = ACTIONS(1264), - [anon_sym_long] = ACTIONS(1264), - [anon_sym_short] = ACTIONS(1264), - [anon_sym_static] = ACTIONS(1264), - [anon_sym_auto] = ACTIONS(1264), - [anon_sym_register] = ACTIONS(1264), - [anon_sym_inline] = ACTIONS(1264), - [anon_sym_thread_local] = ACTIONS(1264), - [anon_sym___thread] = ACTIONS(1264), - [anon_sym_const] = ACTIONS(1264), - [anon_sym_constexpr] = ACTIONS(1264), - [anon_sym_volatile] = ACTIONS(1264), - [anon_sym_restrict] = ACTIONS(1264), - [anon_sym___restrict__] = ACTIONS(1264), - [anon_sym__Atomic] = ACTIONS(1264), - [anon_sym__Noreturn] = ACTIONS(1264), - [anon_sym_noreturn] = ACTIONS(1264), - [sym_primitive_type] = ACTIONS(1264), - [anon_sym_enum] = ACTIONS(1264), - [anon_sym_struct] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1264), - [anon_sym_else] = ACTIONS(1264), - [anon_sym_switch] = ACTIONS(1264), - [anon_sym_case] = ACTIONS(1264), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_while] = ACTIONS(1264), - [anon_sym_do] = ACTIONS(1264), - [anon_sym_for] = ACTIONS(1264), - [anon_sym_return] = ACTIONS(1264), - [anon_sym_break] = ACTIONS(1264), - [anon_sym_continue] = ACTIONS(1264), - [anon_sym_goto] = ACTIONS(1264), - [anon_sym_DASH_DASH] = ACTIONS(1266), - [anon_sym_PLUS_PLUS] = ACTIONS(1266), - [anon_sym_sizeof] = ACTIONS(1264), - [anon_sym_offsetof] = ACTIONS(1264), - [anon_sym__Generic] = ACTIONS(1264), - [anon_sym_asm] = ACTIONS(1264), - [anon_sym___asm__] = ACTIONS(1264), - [sym_number_literal] = ACTIONS(1266), - [anon_sym_L_SQUOTE] = ACTIONS(1266), - [anon_sym_u_SQUOTE] = ACTIONS(1266), - [anon_sym_U_SQUOTE] = ACTIONS(1266), - [anon_sym_u8_SQUOTE] = ACTIONS(1266), - [anon_sym_SQUOTE] = ACTIONS(1266), - [anon_sym_L_DQUOTE] = ACTIONS(1266), - [anon_sym_u_DQUOTE] = ACTIONS(1266), - [anon_sym_U_DQUOTE] = ACTIONS(1266), - [anon_sym_u8_DQUOTE] = ACTIONS(1266), - [anon_sym_DQUOTE] = ACTIONS(1266), - [sym_true] = ACTIONS(1264), - [sym_false] = ACTIONS(1264), - [anon_sym_NULL] = ACTIONS(1264), - [anon_sym_nullptr] = ACTIONS(1264), + [192] = { + [sym_identifier] = ACTIONS(1392), + [aux_sym_preproc_include_token1] = ACTIONS(1392), + [aux_sym_preproc_def_token1] = ACTIONS(1392), + [aux_sym_preproc_if_token1] = ACTIONS(1392), + [aux_sym_preproc_if_token2] = ACTIONS(1392), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1392), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1392), + [aux_sym_preproc_else_token1] = ACTIONS(1392), + [aux_sym_preproc_elif_token1] = ACTIONS(1392), + [sym_preproc_directive] = ACTIONS(1392), + [anon_sym_LPAREN2] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_TILDE] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_STAR] = ACTIONS(1394), + [anon_sym_AMP] = ACTIONS(1394), + [anon_sym_SEMI] = ACTIONS(1394), + [anon_sym___extension__] = ACTIONS(1392), + [anon_sym_typedef] = ACTIONS(1392), + [anon_sym_extern] = ACTIONS(1392), + [anon_sym___attribute__] = ACTIONS(1392), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1394), + [anon_sym___declspec] = ACTIONS(1392), + [anon_sym___cdecl] = ACTIONS(1392), + [anon_sym___clrcall] = ACTIONS(1392), + [anon_sym___stdcall] = ACTIONS(1392), + [anon_sym___fastcall] = ACTIONS(1392), + [anon_sym___thiscall] = ACTIONS(1392), + [anon_sym___vectorcall] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_signed] = ACTIONS(1392), + [anon_sym_unsigned] = ACTIONS(1392), + [anon_sym_long] = ACTIONS(1392), + [anon_sym_short] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_auto] = ACTIONS(1392), + [anon_sym_register] = ACTIONS(1392), + [anon_sym_inline] = ACTIONS(1392), + [anon_sym___inline] = ACTIONS(1392), + [anon_sym___inline__] = ACTIONS(1392), + [anon_sym___forceinline] = ACTIONS(1392), + [anon_sym_thread_local] = ACTIONS(1392), + [anon_sym___thread] = ACTIONS(1392), + [anon_sym_const] = ACTIONS(1392), + [anon_sym_constexpr] = ACTIONS(1392), + [anon_sym_volatile] = ACTIONS(1392), + [anon_sym_restrict] = ACTIONS(1392), + [anon_sym___restrict__] = ACTIONS(1392), + [anon_sym__Atomic] = ACTIONS(1392), + [anon_sym__Noreturn] = ACTIONS(1392), + [anon_sym_noreturn] = ACTIONS(1392), + [sym_primitive_type] = ACTIONS(1392), + [anon_sym_enum] = ACTIONS(1392), + [anon_sym_struct] = ACTIONS(1392), + [anon_sym_union] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1392), + [anon_sym_else] = ACTIONS(1392), + [anon_sym_switch] = ACTIONS(1392), + [anon_sym_case] = ACTIONS(1392), + [anon_sym_default] = ACTIONS(1392), + [anon_sym_while] = ACTIONS(1392), + [anon_sym_do] = ACTIONS(1392), + [anon_sym_for] = ACTIONS(1392), + [anon_sym_return] = ACTIONS(1392), + [anon_sym_break] = ACTIONS(1392), + [anon_sym_continue] = ACTIONS(1392), + [anon_sym_goto] = ACTIONS(1392), + [anon_sym_DASH_DASH] = ACTIONS(1394), + [anon_sym_PLUS_PLUS] = ACTIONS(1394), + [anon_sym_sizeof] = ACTIONS(1392), + [anon_sym___alignof__] = ACTIONS(1392), + [anon_sym___alignof] = ACTIONS(1392), + [anon_sym__alignof] = ACTIONS(1392), + [anon_sym_alignof] = ACTIONS(1392), + [anon_sym__Alignof] = ACTIONS(1392), + [anon_sym_offsetof] = ACTIONS(1392), + [anon_sym___builtin_va_arg] = ACTIONS(1392), + [anon_sym__Generic] = ACTIONS(1392), + [anon_sym_asm] = ACTIONS(1392), + [anon_sym___asm__] = ACTIONS(1392), + [sym_number_literal] = ACTIONS(1394), + [anon_sym_L_SQUOTE] = ACTIONS(1394), + [anon_sym_u_SQUOTE] = ACTIONS(1394), + [anon_sym_U_SQUOTE] = ACTIONS(1394), + [anon_sym_u8_SQUOTE] = ACTIONS(1394), + [anon_sym_SQUOTE] = ACTIONS(1394), + [anon_sym_L_DQUOTE] = ACTIONS(1394), + [anon_sym_u_DQUOTE] = ACTIONS(1394), + [anon_sym_U_DQUOTE] = ACTIONS(1394), + [anon_sym_u8_DQUOTE] = ACTIONS(1394), + [anon_sym_DQUOTE] = ACTIONS(1394), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [anon_sym_NULL] = ACTIONS(1392), + [anon_sym_nullptr] = ACTIONS(1392), [sym_comment] = ACTIONS(3), }, - [186] = { - [sym_identifier] = ACTIONS(1268), - [aux_sym_preproc_include_token1] = ACTIONS(1268), - [aux_sym_preproc_def_token1] = ACTIONS(1268), - [aux_sym_preproc_if_token1] = ACTIONS(1268), - [aux_sym_preproc_if_token2] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1268), - [aux_sym_preproc_else_token1] = ACTIONS(1268), - [aux_sym_preproc_elif_token1] = ACTIONS(1268), - [sym_preproc_directive] = ACTIONS(1268), - [anon_sym_LPAREN2] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_SEMI] = ACTIONS(1270), - [anon_sym_typedef] = ACTIONS(1268), - [anon_sym_extern] = ACTIONS(1268), - [anon_sym___attribute__] = ACTIONS(1268), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1270), - [anon_sym___declspec] = ACTIONS(1268), - [anon_sym___cdecl] = ACTIONS(1268), - [anon_sym___clrcall] = ACTIONS(1268), - [anon_sym___stdcall] = ACTIONS(1268), - [anon_sym___fastcall] = ACTIONS(1268), - [anon_sym___thiscall] = ACTIONS(1268), - [anon_sym___vectorcall] = ACTIONS(1268), - [anon_sym_LBRACE] = ACTIONS(1270), - [anon_sym_signed] = ACTIONS(1268), - [anon_sym_unsigned] = ACTIONS(1268), - [anon_sym_long] = ACTIONS(1268), - [anon_sym_short] = ACTIONS(1268), - [anon_sym_static] = ACTIONS(1268), - [anon_sym_auto] = ACTIONS(1268), - [anon_sym_register] = ACTIONS(1268), - [anon_sym_inline] = ACTIONS(1268), - [anon_sym_thread_local] = ACTIONS(1268), - [anon_sym___thread] = ACTIONS(1268), - [anon_sym_const] = ACTIONS(1268), - [anon_sym_constexpr] = ACTIONS(1268), - [anon_sym_volatile] = ACTIONS(1268), - [anon_sym_restrict] = ACTIONS(1268), - [anon_sym___restrict__] = ACTIONS(1268), - [anon_sym__Atomic] = ACTIONS(1268), - [anon_sym__Noreturn] = ACTIONS(1268), - [anon_sym_noreturn] = ACTIONS(1268), - [sym_primitive_type] = ACTIONS(1268), - [anon_sym_enum] = ACTIONS(1268), - [anon_sym_struct] = ACTIONS(1268), - [anon_sym_union] = ACTIONS(1268), - [anon_sym_if] = ACTIONS(1268), - [anon_sym_else] = ACTIONS(1268), - [anon_sym_switch] = ACTIONS(1268), - [anon_sym_case] = ACTIONS(1268), - [anon_sym_default] = ACTIONS(1268), - [anon_sym_while] = ACTIONS(1268), - [anon_sym_do] = ACTIONS(1268), - [anon_sym_for] = ACTIONS(1268), - [anon_sym_return] = ACTIONS(1268), - [anon_sym_break] = ACTIONS(1268), - [anon_sym_continue] = ACTIONS(1268), - [anon_sym_goto] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1270), - [anon_sym_PLUS_PLUS] = ACTIONS(1270), - [anon_sym_sizeof] = ACTIONS(1268), - [anon_sym_offsetof] = ACTIONS(1268), - [anon_sym__Generic] = ACTIONS(1268), - [anon_sym_asm] = ACTIONS(1268), - [anon_sym___asm__] = ACTIONS(1268), - [sym_number_literal] = ACTIONS(1270), - [anon_sym_L_SQUOTE] = ACTIONS(1270), - [anon_sym_u_SQUOTE] = ACTIONS(1270), - [anon_sym_U_SQUOTE] = ACTIONS(1270), - [anon_sym_u8_SQUOTE] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1270), - [anon_sym_L_DQUOTE] = ACTIONS(1270), - [anon_sym_u_DQUOTE] = ACTIONS(1270), - [anon_sym_U_DQUOTE] = ACTIONS(1270), - [anon_sym_u8_DQUOTE] = ACTIONS(1270), - [anon_sym_DQUOTE] = ACTIONS(1270), - [sym_true] = ACTIONS(1268), - [sym_false] = ACTIONS(1268), - [anon_sym_NULL] = ACTIONS(1268), - [anon_sym_nullptr] = ACTIONS(1268), + [193] = { + [sym_identifier] = ACTIONS(1396), + [aux_sym_preproc_include_token1] = ACTIONS(1396), + [aux_sym_preproc_def_token1] = ACTIONS(1396), + [aux_sym_preproc_if_token1] = ACTIONS(1396), + [aux_sym_preproc_if_token2] = ACTIONS(1396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(1396), + [aux_sym_preproc_elif_token1] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1396), + [anon_sym_LPAREN2] = ACTIONS(1398), + [anon_sym_BANG] = ACTIONS(1398), + [anon_sym_TILDE] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_PLUS] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym___extension__] = ACTIONS(1396), + [anon_sym_typedef] = ACTIONS(1396), + [anon_sym_extern] = ACTIONS(1396), + [anon_sym___attribute__] = ACTIONS(1396), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1398), + [anon_sym___declspec] = ACTIONS(1396), + [anon_sym___cdecl] = ACTIONS(1396), + [anon_sym___clrcall] = ACTIONS(1396), + [anon_sym___stdcall] = ACTIONS(1396), + [anon_sym___fastcall] = ACTIONS(1396), + [anon_sym___thiscall] = ACTIONS(1396), + [anon_sym___vectorcall] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(1398), + [anon_sym_signed] = ACTIONS(1396), + [anon_sym_unsigned] = ACTIONS(1396), + [anon_sym_long] = ACTIONS(1396), + [anon_sym_short] = ACTIONS(1396), + [anon_sym_static] = ACTIONS(1396), + [anon_sym_auto] = ACTIONS(1396), + [anon_sym_register] = ACTIONS(1396), + [anon_sym_inline] = ACTIONS(1396), + [anon_sym___inline] = ACTIONS(1396), + [anon_sym___inline__] = ACTIONS(1396), + [anon_sym___forceinline] = ACTIONS(1396), + [anon_sym_thread_local] = ACTIONS(1396), + [anon_sym___thread] = ACTIONS(1396), + [anon_sym_const] = ACTIONS(1396), + [anon_sym_constexpr] = ACTIONS(1396), + [anon_sym_volatile] = ACTIONS(1396), + [anon_sym_restrict] = ACTIONS(1396), + [anon_sym___restrict__] = ACTIONS(1396), + [anon_sym__Atomic] = ACTIONS(1396), + [anon_sym__Noreturn] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [sym_primitive_type] = ACTIONS(1396), + [anon_sym_enum] = ACTIONS(1396), + [anon_sym_struct] = ACTIONS(1396), + [anon_sym_union] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1396), + [anon_sym_else] = ACTIONS(1396), + [anon_sym_switch] = ACTIONS(1396), + [anon_sym_case] = ACTIONS(1396), + [anon_sym_default] = ACTIONS(1396), + [anon_sym_while] = ACTIONS(1396), + [anon_sym_do] = ACTIONS(1396), + [anon_sym_for] = ACTIONS(1396), + [anon_sym_return] = ACTIONS(1396), + [anon_sym_break] = ACTIONS(1396), + [anon_sym_continue] = ACTIONS(1396), + [anon_sym_goto] = ACTIONS(1396), + [anon_sym_DASH_DASH] = ACTIONS(1398), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_sizeof] = ACTIONS(1396), + [anon_sym___alignof__] = ACTIONS(1396), + [anon_sym___alignof] = ACTIONS(1396), + [anon_sym__alignof] = ACTIONS(1396), + [anon_sym_alignof] = ACTIONS(1396), + [anon_sym__Alignof] = ACTIONS(1396), + [anon_sym_offsetof] = ACTIONS(1396), + [anon_sym___builtin_va_arg] = ACTIONS(1396), + [anon_sym__Generic] = ACTIONS(1396), + [anon_sym_asm] = ACTIONS(1396), + [anon_sym___asm__] = ACTIONS(1396), + [sym_number_literal] = ACTIONS(1398), + [anon_sym_L_SQUOTE] = ACTIONS(1398), + [anon_sym_u_SQUOTE] = ACTIONS(1398), + [anon_sym_U_SQUOTE] = ACTIONS(1398), + [anon_sym_u8_SQUOTE] = ACTIONS(1398), + [anon_sym_SQUOTE] = ACTIONS(1398), + [anon_sym_L_DQUOTE] = ACTIONS(1398), + [anon_sym_u_DQUOTE] = ACTIONS(1398), + [anon_sym_U_DQUOTE] = ACTIONS(1398), + [anon_sym_u8_DQUOTE] = ACTIONS(1398), + [anon_sym_DQUOTE] = ACTIONS(1398), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [anon_sym_NULL] = ACTIONS(1396), + [anon_sym_nullptr] = ACTIONS(1396), [sym_comment] = ACTIONS(3), }, - [187] = { - [sym_identifier] = ACTIONS(1272), - [aux_sym_preproc_include_token1] = ACTIONS(1272), - [aux_sym_preproc_def_token1] = ACTIONS(1272), - [aux_sym_preproc_if_token1] = ACTIONS(1272), - [aux_sym_preproc_if_token2] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1272), - [aux_sym_preproc_else_token1] = ACTIONS(1272), - [aux_sym_preproc_elif_token1] = ACTIONS(1272), - [sym_preproc_directive] = ACTIONS(1272), - [anon_sym_LPAREN2] = ACTIONS(1274), - [anon_sym_BANG] = ACTIONS(1274), - [anon_sym_TILDE] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1274), - [anon_sym_SEMI] = ACTIONS(1274), - [anon_sym_typedef] = ACTIONS(1272), - [anon_sym_extern] = ACTIONS(1272), - [anon_sym___attribute__] = ACTIONS(1272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1274), - [anon_sym___declspec] = ACTIONS(1272), - [anon_sym___cdecl] = ACTIONS(1272), - [anon_sym___clrcall] = ACTIONS(1272), - [anon_sym___stdcall] = ACTIONS(1272), - [anon_sym___fastcall] = ACTIONS(1272), - [anon_sym___thiscall] = ACTIONS(1272), - [anon_sym___vectorcall] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_signed] = ACTIONS(1272), - [anon_sym_unsigned] = ACTIONS(1272), - [anon_sym_long] = ACTIONS(1272), - [anon_sym_short] = ACTIONS(1272), - [anon_sym_static] = ACTIONS(1272), - [anon_sym_auto] = ACTIONS(1272), - [anon_sym_register] = ACTIONS(1272), - [anon_sym_inline] = ACTIONS(1272), - [anon_sym_thread_local] = ACTIONS(1272), - [anon_sym___thread] = ACTIONS(1272), - [anon_sym_const] = ACTIONS(1272), - [anon_sym_constexpr] = ACTIONS(1272), - [anon_sym_volatile] = ACTIONS(1272), - [anon_sym_restrict] = ACTIONS(1272), - [anon_sym___restrict__] = ACTIONS(1272), - [anon_sym__Atomic] = ACTIONS(1272), - [anon_sym__Noreturn] = ACTIONS(1272), - [anon_sym_noreturn] = ACTIONS(1272), - [sym_primitive_type] = ACTIONS(1272), - [anon_sym_enum] = ACTIONS(1272), - [anon_sym_struct] = ACTIONS(1272), - [anon_sym_union] = ACTIONS(1272), - [anon_sym_if] = ACTIONS(1272), - [anon_sym_else] = ACTIONS(1272), - [anon_sym_switch] = ACTIONS(1272), - [anon_sym_case] = ACTIONS(1272), - [anon_sym_default] = ACTIONS(1272), - [anon_sym_while] = ACTIONS(1272), - [anon_sym_do] = ACTIONS(1272), - [anon_sym_for] = ACTIONS(1272), - [anon_sym_return] = ACTIONS(1272), - [anon_sym_break] = ACTIONS(1272), - [anon_sym_continue] = ACTIONS(1272), - [anon_sym_goto] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_sizeof] = ACTIONS(1272), - [anon_sym_offsetof] = ACTIONS(1272), - [anon_sym__Generic] = ACTIONS(1272), - [anon_sym_asm] = ACTIONS(1272), - [anon_sym___asm__] = ACTIONS(1272), - [sym_number_literal] = ACTIONS(1274), - [anon_sym_L_SQUOTE] = ACTIONS(1274), - [anon_sym_u_SQUOTE] = ACTIONS(1274), - [anon_sym_U_SQUOTE] = ACTIONS(1274), - [anon_sym_u8_SQUOTE] = ACTIONS(1274), - [anon_sym_SQUOTE] = ACTIONS(1274), - [anon_sym_L_DQUOTE] = ACTIONS(1274), - [anon_sym_u_DQUOTE] = ACTIONS(1274), - [anon_sym_U_DQUOTE] = ACTIONS(1274), - [anon_sym_u8_DQUOTE] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [anon_sym_NULL] = ACTIONS(1272), - [anon_sym_nullptr] = ACTIONS(1272), + [194] = { + [sym_identifier] = ACTIONS(1400), + [aux_sym_preproc_include_token1] = ACTIONS(1400), + [aux_sym_preproc_def_token1] = ACTIONS(1400), + [aux_sym_preproc_if_token1] = ACTIONS(1400), + [aux_sym_preproc_if_token2] = ACTIONS(1400), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1400), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1400), + [aux_sym_preproc_else_token1] = ACTIONS(1400), + [aux_sym_preproc_elif_token1] = ACTIONS(1400), + [sym_preproc_directive] = ACTIONS(1400), + [anon_sym_LPAREN2] = ACTIONS(1402), + [anon_sym_BANG] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1402), + [anon_sym_AMP] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym___extension__] = ACTIONS(1400), + [anon_sym_typedef] = ACTIONS(1400), + [anon_sym_extern] = ACTIONS(1400), + [anon_sym___attribute__] = ACTIONS(1400), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1402), + [anon_sym___declspec] = ACTIONS(1400), + [anon_sym___cdecl] = ACTIONS(1400), + [anon_sym___clrcall] = ACTIONS(1400), + [anon_sym___stdcall] = ACTIONS(1400), + [anon_sym___fastcall] = ACTIONS(1400), + [anon_sym___thiscall] = ACTIONS(1400), + [anon_sym___vectorcall] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_signed] = ACTIONS(1400), + [anon_sym_unsigned] = ACTIONS(1400), + [anon_sym_long] = ACTIONS(1400), + [anon_sym_short] = ACTIONS(1400), + [anon_sym_static] = ACTIONS(1400), + [anon_sym_auto] = ACTIONS(1400), + [anon_sym_register] = ACTIONS(1400), + [anon_sym_inline] = ACTIONS(1400), + [anon_sym___inline] = ACTIONS(1400), + [anon_sym___inline__] = ACTIONS(1400), + [anon_sym___forceinline] = ACTIONS(1400), + [anon_sym_thread_local] = ACTIONS(1400), + [anon_sym___thread] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_constexpr] = ACTIONS(1400), + [anon_sym_volatile] = ACTIONS(1400), + [anon_sym_restrict] = ACTIONS(1400), + [anon_sym___restrict__] = ACTIONS(1400), + [anon_sym__Atomic] = ACTIONS(1400), + [anon_sym__Noreturn] = ACTIONS(1400), + [anon_sym_noreturn] = ACTIONS(1400), + [sym_primitive_type] = ACTIONS(1400), + [anon_sym_enum] = ACTIONS(1400), + [anon_sym_struct] = ACTIONS(1400), + [anon_sym_union] = ACTIONS(1400), + [anon_sym_if] = ACTIONS(1400), + [anon_sym_else] = ACTIONS(1400), + [anon_sym_switch] = ACTIONS(1400), + [anon_sym_case] = ACTIONS(1400), + [anon_sym_default] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1400), + [anon_sym_do] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [anon_sym_goto] = ACTIONS(1400), + [anon_sym_DASH_DASH] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1402), + [anon_sym_sizeof] = ACTIONS(1400), + [anon_sym___alignof__] = ACTIONS(1400), + [anon_sym___alignof] = ACTIONS(1400), + [anon_sym__alignof] = ACTIONS(1400), + [anon_sym_alignof] = ACTIONS(1400), + [anon_sym__Alignof] = ACTIONS(1400), + [anon_sym_offsetof] = ACTIONS(1400), + [anon_sym___builtin_va_arg] = ACTIONS(1400), + [anon_sym__Generic] = ACTIONS(1400), + [anon_sym_asm] = ACTIONS(1400), + [anon_sym___asm__] = ACTIONS(1400), + [sym_number_literal] = ACTIONS(1402), + [anon_sym_L_SQUOTE] = ACTIONS(1402), + [anon_sym_u_SQUOTE] = ACTIONS(1402), + [anon_sym_U_SQUOTE] = ACTIONS(1402), + [anon_sym_u8_SQUOTE] = ACTIONS(1402), + [anon_sym_SQUOTE] = ACTIONS(1402), + [anon_sym_L_DQUOTE] = ACTIONS(1402), + [anon_sym_u_DQUOTE] = ACTIONS(1402), + [anon_sym_U_DQUOTE] = ACTIONS(1402), + [anon_sym_u8_DQUOTE] = ACTIONS(1402), + [anon_sym_DQUOTE] = ACTIONS(1402), + [sym_true] = ACTIONS(1400), + [sym_false] = ACTIONS(1400), + [anon_sym_NULL] = ACTIONS(1400), + [anon_sym_nullptr] = ACTIONS(1400), [sym_comment] = ACTIONS(3), }, - [188] = { - [sym_identifier] = ACTIONS(1196), - [aux_sym_preproc_include_token1] = ACTIONS(1196), - [aux_sym_preproc_def_token1] = ACTIONS(1196), - [aux_sym_preproc_if_token1] = ACTIONS(1196), - [aux_sym_preproc_if_token2] = ACTIONS(1196), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1196), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1196), - [aux_sym_preproc_else_token1] = ACTIONS(1196), - [aux_sym_preproc_elif_token1] = ACTIONS(1196), - [sym_preproc_directive] = ACTIONS(1196), - [anon_sym_LPAREN2] = ACTIONS(1198), - [anon_sym_BANG] = ACTIONS(1198), - [anon_sym_TILDE] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_SEMI] = ACTIONS(1198), - [anon_sym_typedef] = ACTIONS(1196), - [anon_sym_extern] = ACTIONS(1196), - [anon_sym___attribute__] = ACTIONS(1196), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1198), - [anon_sym___declspec] = ACTIONS(1196), - [anon_sym___cdecl] = ACTIONS(1196), - [anon_sym___clrcall] = ACTIONS(1196), - [anon_sym___stdcall] = ACTIONS(1196), - [anon_sym___fastcall] = ACTIONS(1196), - [anon_sym___thiscall] = ACTIONS(1196), - [anon_sym___vectorcall] = ACTIONS(1196), - [anon_sym_LBRACE] = ACTIONS(1198), - [anon_sym_signed] = ACTIONS(1196), - [anon_sym_unsigned] = ACTIONS(1196), - [anon_sym_long] = ACTIONS(1196), - [anon_sym_short] = ACTIONS(1196), - [anon_sym_static] = ACTIONS(1196), - [anon_sym_auto] = ACTIONS(1196), - [anon_sym_register] = ACTIONS(1196), - [anon_sym_inline] = ACTIONS(1196), - [anon_sym_thread_local] = ACTIONS(1196), - [anon_sym___thread] = ACTIONS(1196), - [anon_sym_const] = ACTIONS(1196), - [anon_sym_constexpr] = ACTIONS(1196), - [anon_sym_volatile] = ACTIONS(1196), - [anon_sym_restrict] = ACTIONS(1196), - [anon_sym___restrict__] = ACTIONS(1196), - [anon_sym__Atomic] = ACTIONS(1196), - [anon_sym__Noreturn] = ACTIONS(1196), - [anon_sym_noreturn] = ACTIONS(1196), - [sym_primitive_type] = ACTIONS(1196), - [anon_sym_enum] = ACTIONS(1196), - [anon_sym_struct] = ACTIONS(1196), - [anon_sym_union] = ACTIONS(1196), - [anon_sym_if] = ACTIONS(1196), - [anon_sym_else] = ACTIONS(1196), - [anon_sym_switch] = ACTIONS(1196), - [anon_sym_case] = ACTIONS(1196), - [anon_sym_default] = ACTIONS(1196), - [anon_sym_while] = ACTIONS(1196), - [anon_sym_do] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1196), - [anon_sym_return] = ACTIONS(1196), - [anon_sym_break] = ACTIONS(1196), - [anon_sym_continue] = ACTIONS(1196), - [anon_sym_goto] = ACTIONS(1196), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_sizeof] = ACTIONS(1196), - [anon_sym_offsetof] = ACTIONS(1196), - [anon_sym__Generic] = ACTIONS(1196), - [anon_sym_asm] = ACTIONS(1196), - [anon_sym___asm__] = ACTIONS(1196), - [sym_number_literal] = ACTIONS(1198), - [anon_sym_L_SQUOTE] = ACTIONS(1198), - [anon_sym_u_SQUOTE] = ACTIONS(1198), - [anon_sym_U_SQUOTE] = ACTIONS(1198), - [anon_sym_u8_SQUOTE] = ACTIONS(1198), - [anon_sym_SQUOTE] = ACTIONS(1198), - [anon_sym_L_DQUOTE] = ACTIONS(1198), - [anon_sym_u_DQUOTE] = ACTIONS(1198), - [anon_sym_U_DQUOTE] = ACTIONS(1198), - [anon_sym_u8_DQUOTE] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(1198), - [sym_true] = ACTIONS(1196), - [sym_false] = ACTIONS(1196), - [anon_sym_NULL] = ACTIONS(1196), - [anon_sym_nullptr] = ACTIONS(1196), + [195] = { + [sym_identifier] = ACTIONS(1336), + [aux_sym_preproc_include_token1] = ACTIONS(1336), + [aux_sym_preproc_def_token1] = ACTIONS(1336), + [aux_sym_preproc_if_token1] = ACTIONS(1336), + [aux_sym_preproc_if_token2] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), + [aux_sym_preproc_else_token1] = ACTIONS(1336), + [aux_sym_preproc_elif_token1] = ACTIONS(1336), + [sym_preproc_directive] = ACTIONS(1336), + [anon_sym_LPAREN2] = ACTIONS(1338), + [anon_sym_BANG] = ACTIONS(1338), + [anon_sym_TILDE] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1338), + [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym___extension__] = ACTIONS(1336), + [anon_sym_typedef] = ACTIONS(1336), + [anon_sym_extern] = ACTIONS(1336), + [anon_sym___attribute__] = ACTIONS(1336), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), + [anon_sym___declspec] = ACTIONS(1336), + [anon_sym___cdecl] = ACTIONS(1336), + [anon_sym___clrcall] = ACTIONS(1336), + [anon_sym___stdcall] = ACTIONS(1336), + [anon_sym___fastcall] = ACTIONS(1336), + [anon_sym___thiscall] = ACTIONS(1336), + [anon_sym___vectorcall] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1338), + [anon_sym_signed] = ACTIONS(1336), + [anon_sym_unsigned] = ACTIONS(1336), + [anon_sym_long] = ACTIONS(1336), + [anon_sym_short] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(1336), + [anon_sym_auto] = ACTIONS(1336), + [anon_sym_register] = ACTIONS(1336), + [anon_sym_inline] = ACTIONS(1336), + [anon_sym___inline] = ACTIONS(1336), + [anon_sym___inline__] = ACTIONS(1336), + [anon_sym___forceinline] = ACTIONS(1336), + [anon_sym_thread_local] = ACTIONS(1336), + [anon_sym___thread] = ACTIONS(1336), + [anon_sym_const] = ACTIONS(1336), + [anon_sym_constexpr] = ACTIONS(1336), + [anon_sym_volatile] = ACTIONS(1336), + [anon_sym_restrict] = ACTIONS(1336), + [anon_sym___restrict__] = ACTIONS(1336), + [anon_sym__Atomic] = ACTIONS(1336), + [anon_sym__Noreturn] = ACTIONS(1336), + [anon_sym_noreturn] = ACTIONS(1336), + [sym_primitive_type] = ACTIONS(1336), + [anon_sym_enum] = ACTIONS(1336), + [anon_sym_struct] = ACTIONS(1336), + [anon_sym_union] = ACTIONS(1336), + [anon_sym_if] = ACTIONS(1336), + [anon_sym_else] = ACTIONS(1336), + [anon_sym_switch] = ACTIONS(1336), + [anon_sym_case] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1336), + [anon_sym_while] = ACTIONS(1336), + [anon_sym_do] = ACTIONS(1336), + [anon_sym_for] = ACTIONS(1336), + [anon_sym_return] = ACTIONS(1336), + [anon_sym_break] = ACTIONS(1336), + [anon_sym_continue] = ACTIONS(1336), + [anon_sym_goto] = ACTIONS(1336), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_sizeof] = ACTIONS(1336), + [anon_sym___alignof__] = ACTIONS(1336), + [anon_sym___alignof] = ACTIONS(1336), + [anon_sym__alignof] = ACTIONS(1336), + [anon_sym_alignof] = ACTIONS(1336), + [anon_sym__Alignof] = ACTIONS(1336), + [anon_sym_offsetof] = ACTIONS(1336), + [anon_sym___builtin_va_arg] = ACTIONS(1336), + [anon_sym__Generic] = ACTIONS(1336), + [anon_sym_asm] = ACTIONS(1336), + [anon_sym___asm__] = ACTIONS(1336), + [sym_number_literal] = ACTIONS(1338), + [anon_sym_L_SQUOTE] = ACTIONS(1338), + [anon_sym_u_SQUOTE] = ACTIONS(1338), + [anon_sym_U_SQUOTE] = ACTIONS(1338), + [anon_sym_u8_SQUOTE] = ACTIONS(1338), + [anon_sym_SQUOTE] = ACTIONS(1338), + [anon_sym_L_DQUOTE] = ACTIONS(1338), + [anon_sym_u_DQUOTE] = ACTIONS(1338), + [anon_sym_U_DQUOTE] = ACTIONS(1338), + [anon_sym_u8_DQUOTE] = ACTIONS(1338), + [anon_sym_DQUOTE] = ACTIONS(1338), + [sym_true] = ACTIONS(1336), + [sym_false] = ACTIONS(1336), + [anon_sym_NULL] = ACTIONS(1336), + [anon_sym_nullptr] = ACTIONS(1336), [sym_comment] = ACTIONS(3), }, - [189] = { - [sym_identifier] = ACTIONS(1332), - [aux_sym_preproc_include_token1] = ACTIONS(1332), - [aux_sym_preproc_def_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token2] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), - [aux_sym_preproc_else_token1] = ACTIONS(1332), - [aux_sym_preproc_elif_token1] = ACTIONS(1332), - [sym_preproc_directive] = ACTIONS(1332), - [anon_sym_LPAREN2] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym___attribute__] = ACTIONS(1332), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), - [anon_sym___declspec] = ACTIONS(1332), - [anon_sym___cdecl] = ACTIONS(1332), - [anon_sym___clrcall] = ACTIONS(1332), - [anon_sym___stdcall] = ACTIONS(1332), - [anon_sym___fastcall] = ACTIONS(1332), - [anon_sym___thiscall] = ACTIONS(1332), - [anon_sym___vectorcall] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_signed] = ACTIONS(1332), - [anon_sym_unsigned] = ACTIONS(1332), - [anon_sym_long] = ACTIONS(1332), - [anon_sym_short] = ACTIONS(1332), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_auto] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_inline] = ACTIONS(1332), - [anon_sym_thread_local] = ACTIONS(1332), - [anon_sym___thread] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_constexpr] = ACTIONS(1332), - [anon_sym_volatile] = ACTIONS(1332), - [anon_sym_restrict] = ACTIONS(1332), - [anon_sym___restrict__] = ACTIONS(1332), - [anon_sym__Atomic] = ACTIONS(1332), - [anon_sym__Noreturn] = ACTIONS(1332), - [anon_sym_noreturn] = ACTIONS(1332), - [sym_primitive_type] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1332), - [anon_sym_struct] = ACTIONS(1332), - [anon_sym_union] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_else] = ACTIONS(1332), - [anon_sym_switch] = ACTIONS(1332), - [anon_sym_case] = ACTIONS(1332), - [anon_sym_default] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_goto] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_sizeof] = ACTIONS(1332), - [anon_sym_offsetof] = ACTIONS(1332), - [anon_sym__Generic] = ACTIONS(1332), - [anon_sym_asm] = ACTIONS(1332), - [anon_sym___asm__] = ACTIONS(1332), - [sym_number_literal] = ACTIONS(1334), - [anon_sym_L_SQUOTE] = ACTIONS(1334), - [anon_sym_u_SQUOTE] = ACTIONS(1334), - [anon_sym_U_SQUOTE] = ACTIONS(1334), - [anon_sym_u8_SQUOTE] = ACTIONS(1334), - [anon_sym_SQUOTE] = ACTIONS(1334), - [anon_sym_L_DQUOTE] = ACTIONS(1334), - [anon_sym_u_DQUOTE] = ACTIONS(1334), - [anon_sym_U_DQUOTE] = ACTIONS(1334), - [anon_sym_u8_DQUOTE] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1334), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [anon_sym_NULL] = ACTIONS(1332), - [anon_sym_nullptr] = ACTIONS(1332), + [196] = { + [sym_identifier] = ACTIONS(1404), + [aux_sym_preproc_include_token1] = ACTIONS(1404), + [aux_sym_preproc_def_token1] = ACTIONS(1404), + [aux_sym_preproc_if_token1] = ACTIONS(1404), + [aux_sym_preproc_if_token2] = ACTIONS(1404), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1404), + [aux_sym_preproc_else_token1] = ACTIONS(1404), + [aux_sym_preproc_elif_token1] = ACTIONS(1404), + [sym_preproc_directive] = ACTIONS(1404), + [anon_sym_LPAREN2] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1406), + [anon_sym_TILDE] = ACTIONS(1406), + [anon_sym_DASH] = ACTIONS(1404), + [anon_sym_PLUS] = ACTIONS(1404), + [anon_sym_STAR] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1406), + [anon_sym_SEMI] = ACTIONS(1406), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_typedef] = ACTIONS(1404), + [anon_sym_extern] = ACTIONS(1404), + [anon_sym___attribute__] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), + [anon_sym___declspec] = ACTIONS(1404), + [anon_sym___cdecl] = ACTIONS(1404), + [anon_sym___clrcall] = ACTIONS(1404), + [anon_sym___stdcall] = ACTIONS(1404), + [anon_sym___fastcall] = ACTIONS(1404), + [anon_sym___thiscall] = ACTIONS(1404), + [anon_sym___vectorcall] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_signed] = ACTIONS(1404), + [anon_sym_unsigned] = ACTIONS(1404), + [anon_sym_long] = ACTIONS(1404), + [anon_sym_short] = ACTIONS(1404), + [anon_sym_static] = ACTIONS(1404), + [anon_sym_auto] = ACTIONS(1404), + [anon_sym_register] = ACTIONS(1404), + [anon_sym_inline] = ACTIONS(1404), + [anon_sym___inline] = ACTIONS(1404), + [anon_sym___inline__] = ACTIONS(1404), + [anon_sym___forceinline] = ACTIONS(1404), + [anon_sym_thread_local] = ACTIONS(1404), + [anon_sym___thread] = ACTIONS(1404), + [anon_sym_const] = ACTIONS(1404), + [anon_sym_constexpr] = ACTIONS(1404), + [anon_sym_volatile] = ACTIONS(1404), + [anon_sym_restrict] = ACTIONS(1404), + [anon_sym___restrict__] = ACTIONS(1404), + [anon_sym__Atomic] = ACTIONS(1404), + [anon_sym__Noreturn] = ACTIONS(1404), + [anon_sym_noreturn] = ACTIONS(1404), + [sym_primitive_type] = ACTIONS(1404), + [anon_sym_enum] = ACTIONS(1404), + [anon_sym_struct] = ACTIONS(1404), + [anon_sym_union] = ACTIONS(1404), + [anon_sym_if] = ACTIONS(1404), + [anon_sym_else] = ACTIONS(1404), + [anon_sym_switch] = ACTIONS(1404), + [anon_sym_case] = ACTIONS(1404), + [anon_sym_default] = ACTIONS(1404), + [anon_sym_while] = ACTIONS(1404), + [anon_sym_do] = ACTIONS(1404), + [anon_sym_for] = ACTIONS(1404), + [anon_sym_return] = ACTIONS(1404), + [anon_sym_break] = ACTIONS(1404), + [anon_sym_continue] = ACTIONS(1404), + [anon_sym_goto] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1406), + [anon_sym_PLUS_PLUS] = ACTIONS(1406), + [anon_sym_sizeof] = ACTIONS(1404), + [anon_sym___alignof__] = ACTIONS(1404), + [anon_sym___alignof] = ACTIONS(1404), + [anon_sym__alignof] = ACTIONS(1404), + [anon_sym_alignof] = ACTIONS(1404), + [anon_sym__Alignof] = ACTIONS(1404), + [anon_sym_offsetof] = ACTIONS(1404), + [anon_sym___builtin_va_arg] = ACTIONS(1404), + [anon_sym__Generic] = ACTIONS(1404), + [anon_sym_asm] = ACTIONS(1404), + [anon_sym___asm__] = ACTIONS(1404), + [sym_number_literal] = ACTIONS(1406), + [anon_sym_L_SQUOTE] = ACTIONS(1406), + [anon_sym_u_SQUOTE] = ACTIONS(1406), + [anon_sym_U_SQUOTE] = ACTIONS(1406), + [anon_sym_u8_SQUOTE] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1406), + [anon_sym_L_DQUOTE] = ACTIONS(1406), + [anon_sym_u_DQUOTE] = ACTIONS(1406), + [anon_sym_U_DQUOTE] = ACTIONS(1406), + [anon_sym_u8_DQUOTE] = ACTIONS(1406), + [anon_sym_DQUOTE] = ACTIONS(1406), + [sym_true] = ACTIONS(1404), + [sym_false] = ACTIONS(1404), + [anon_sym_NULL] = ACTIONS(1404), + [anon_sym_nullptr] = ACTIONS(1404), [sym_comment] = ACTIONS(3), }, - [190] = { - [sym_identifier] = ACTIONS(1344), - [aux_sym_preproc_include_token1] = ACTIONS(1344), - [aux_sym_preproc_def_token1] = ACTIONS(1344), - [aux_sym_preproc_if_token1] = ACTIONS(1344), - [aux_sym_preproc_if_token2] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), - [aux_sym_preproc_else_token1] = ACTIONS(1344), - [aux_sym_preproc_elif_token1] = ACTIONS(1344), - [sym_preproc_directive] = ACTIONS(1344), - [anon_sym_LPAREN2] = ACTIONS(1346), - [anon_sym_BANG] = ACTIONS(1346), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1344), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1344), - [anon_sym_extern] = ACTIONS(1344), - [anon_sym___attribute__] = ACTIONS(1344), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), - [anon_sym___declspec] = ACTIONS(1344), - [anon_sym___cdecl] = ACTIONS(1344), - [anon_sym___clrcall] = ACTIONS(1344), - [anon_sym___stdcall] = ACTIONS(1344), - [anon_sym___fastcall] = ACTIONS(1344), - [anon_sym___thiscall] = ACTIONS(1344), - [anon_sym___vectorcall] = ACTIONS(1344), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_signed] = ACTIONS(1344), - [anon_sym_unsigned] = ACTIONS(1344), - [anon_sym_long] = ACTIONS(1344), - [anon_sym_short] = ACTIONS(1344), - [anon_sym_static] = ACTIONS(1344), - [anon_sym_auto] = ACTIONS(1344), - [anon_sym_register] = ACTIONS(1344), - [anon_sym_inline] = ACTIONS(1344), - [anon_sym_thread_local] = ACTIONS(1344), - [anon_sym___thread] = ACTIONS(1344), - [anon_sym_const] = ACTIONS(1344), - [anon_sym_constexpr] = ACTIONS(1344), - [anon_sym_volatile] = ACTIONS(1344), - [anon_sym_restrict] = ACTIONS(1344), - [anon_sym___restrict__] = ACTIONS(1344), - [anon_sym__Atomic] = ACTIONS(1344), - [anon_sym__Noreturn] = ACTIONS(1344), - [anon_sym_noreturn] = ACTIONS(1344), - [sym_primitive_type] = ACTIONS(1344), - [anon_sym_enum] = ACTIONS(1344), - [anon_sym_struct] = ACTIONS(1344), - [anon_sym_union] = ACTIONS(1344), - [anon_sym_if] = ACTIONS(1344), - [anon_sym_else] = ACTIONS(1344), - [anon_sym_switch] = ACTIONS(1344), - [anon_sym_case] = ACTIONS(1344), - [anon_sym_default] = ACTIONS(1344), - [anon_sym_while] = ACTIONS(1344), - [anon_sym_do] = ACTIONS(1344), - [anon_sym_for] = ACTIONS(1344), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1344), - [anon_sym_continue] = ACTIONS(1344), - [anon_sym_goto] = ACTIONS(1344), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_sizeof] = ACTIONS(1344), - [anon_sym_offsetof] = ACTIONS(1344), - [anon_sym__Generic] = ACTIONS(1344), - [anon_sym_asm] = ACTIONS(1344), - [anon_sym___asm__] = ACTIONS(1344), - [sym_number_literal] = ACTIONS(1346), - [anon_sym_L_SQUOTE] = ACTIONS(1346), - [anon_sym_u_SQUOTE] = ACTIONS(1346), - [anon_sym_U_SQUOTE] = ACTIONS(1346), - [anon_sym_u8_SQUOTE] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1346), - [anon_sym_L_DQUOTE] = ACTIONS(1346), - [anon_sym_u_DQUOTE] = ACTIONS(1346), - [anon_sym_U_DQUOTE] = ACTIONS(1346), - [anon_sym_u8_DQUOTE] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym_true] = ACTIONS(1344), - [sym_false] = ACTIONS(1344), - [anon_sym_NULL] = ACTIONS(1344), - [anon_sym_nullptr] = ACTIONS(1344), + [197] = { + [sym_identifier] = ACTIONS(1352), + [aux_sym_preproc_include_token1] = ACTIONS(1352), + [aux_sym_preproc_def_token1] = ACTIONS(1352), + [aux_sym_preproc_if_token1] = ACTIONS(1352), + [aux_sym_preproc_if_token2] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), + [aux_sym_preproc_else_token1] = ACTIONS(1352), + [aux_sym_preproc_elif_token1] = ACTIONS(1352), + [sym_preproc_directive] = ACTIONS(1352), + [anon_sym_LPAREN2] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_PLUS] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym___extension__] = ACTIONS(1352), + [anon_sym_typedef] = ACTIONS(1352), + [anon_sym_extern] = ACTIONS(1352), + [anon_sym___attribute__] = ACTIONS(1352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), + [anon_sym___declspec] = ACTIONS(1352), + [anon_sym___cdecl] = ACTIONS(1352), + [anon_sym___clrcall] = ACTIONS(1352), + [anon_sym___stdcall] = ACTIONS(1352), + [anon_sym___fastcall] = ACTIONS(1352), + [anon_sym___thiscall] = ACTIONS(1352), + [anon_sym___vectorcall] = ACTIONS(1352), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_long] = ACTIONS(1352), + [anon_sym_short] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_auto] = ACTIONS(1352), + [anon_sym_register] = ACTIONS(1352), + [anon_sym_inline] = ACTIONS(1352), + [anon_sym___inline] = ACTIONS(1352), + [anon_sym___inline__] = ACTIONS(1352), + [anon_sym___forceinline] = ACTIONS(1352), + [anon_sym_thread_local] = ACTIONS(1352), + [anon_sym___thread] = ACTIONS(1352), + [anon_sym_const] = ACTIONS(1352), + [anon_sym_constexpr] = ACTIONS(1352), + [anon_sym_volatile] = ACTIONS(1352), + [anon_sym_restrict] = ACTIONS(1352), + [anon_sym___restrict__] = ACTIONS(1352), + [anon_sym__Atomic] = ACTIONS(1352), + [anon_sym__Noreturn] = ACTIONS(1352), + [anon_sym_noreturn] = ACTIONS(1352), + [sym_primitive_type] = ACTIONS(1352), + [anon_sym_enum] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1352), + [anon_sym_union] = ACTIONS(1352), + [anon_sym_if] = ACTIONS(1352), + [anon_sym_else] = ACTIONS(1352), + [anon_sym_switch] = ACTIONS(1352), + [anon_sym_case] = ACTIONS(1352), + [anon_sym_default] = ACTIONS(1352), + [anon_sym_while] = ACTIONS(1352), + [anon_sym_do] = ACTIONS(1352), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(1352), + [anon_sym_break] = ACTIONS(1352), + [anon_sym_continue] = ACTIONS(1352), + [anon_sym_goto] = ACTIONS(1352), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_sizeof] = ACTIONS(1352), + [anon_sym___alignof__] = ACTIONS(1352), + [anon_sym___alignof] = ACTIONS(1352), + [anon_sym__alignof] = ACTIONS(1352), + [anon_sym_alignof] = ACTIONS(1352), + [anon_sym__Alignof] = ACTIONS(1352), + [anon_sym_offsetof] = ACTIONS(1352), + [anon_sym___builtin_va_arg] = ACTIONS(1352), + [anon_sym__Generic] = ACTIONS(1352), + [anon_sym_asm] = ACTIONS(1352), + [anon_sym___asm__] = ACTIONS(1352), + [sym_number_literal] = ACTIONS(1354), + [anon_sym_L_SQUOTE] = ACTIONS(1354), + [anon_sym_u_SQUOTE] = ACTIONS(1354), + [anon_sym_U_SQUOTE] = ACTIONS(1354), + [anon_sym_u8_SQUOTE] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [anon_sym_L_DQUOTE] = ACTIONS(1354), + [anon_sym_u_DQUOTE] = ACTIONS(1354), + [anon_sym_U_DQUOTE] = ACTIONS(1354), + [anon_sym_u8_DQUOTE] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1354), + [sym_true] = ACTIONS(1352), + [sym_false] = ACTIONS(1352), + [anon_sym_NULL] = ACTIONS(1352), + [anon_sym_nullptr] = ACTIONS(1352), [sym_comment] = ACTIONS(3), }, - [191] = { - [sym_identifier] = ACTIONS(1280), - [aux_sym_preproc_include_token1] = ACTIONS(1280), - [aux_sym_preproc_def_token1] = ACTIONS(1280), - [aux_sym_preproc_if_token1] = ACTIONS(1280), - [aux_sym_preproc_if_token2] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1280), - [aux_sym_preproc_else_token1] = ACTIONS(1280), - [aux_sym_preproc_elif_token1] = ACTIONS(1280), - [sym_preproc_directive] = ACTIONS(1280), - [anon_sym_LPAREN2] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1282), - [anon_sym_TILDE] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1282), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym_typedef] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym___attribute__] = ACTIONS(1280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1282), - [anon_sym___declspec] = ACTIONS(1280), - [anon_sym___cdecl] = ACTIONS(1280), - [anon_sym___clrcall] = ACTIONS(1280), - [anon_sym___stdcall] = ACTIONS(1280), - [anon_sym___fastcall] = ACTIONS(1280), - [anon_sym___thiscall] = ACTIONS(1280), - [anon_sym___vectorcall] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_signed] = ACTIONS(1280), - [anon_sym_unsigned] = ACTIONS(1280), - [anon_sym_long] = ACTIONS(1280), - [anon_sym_short] = ACTIONS(1280), - [anon_sym_static] = ACTIONS(1280), - [anon_sym_auto] = ACTIONS(1280), - [anon_sym_register] = ACTIONS(1280), - [anon_sym_inline] = ACTIONS(1280), - [anon_sym_thread_local] = ACTIONS(1280), - [anon_sym___thread] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_constexpr] = ACTIONS(1280), - [anon_sym_volatile] = ACTIONS(1280), - [anon_sym_restrict] = ACTIONS(1280), - [anon_sym___restrict__] = ACTIONS(1280), - [anon_sym__Atomic] = ACTIONS(1280), - [anon_sym__Noreturn] = ACTIONS(1280), - [anon_sym_noreturn] = ACTIONS(1280), - [sym_primitive_type] = ACTIONS(1280), - [anon_sym_enum] = ACTIONS(1280), - [anon_sym_struct] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_else] = ACTIONS(1280), - [anon_sym_switch] = ACTIONS(1280), - [anon_sym_case] = ACTIONS(1280), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_goto] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1282), - [anon_sym_sizeof] = ACTIONS(1280), - [anon_sym_offsetof] = ACTIONS(1280), - [anon_sym__Generic] = ACTIONS(1280), - [anon_sym_asm] = ACTIONS(1280), - [anon_sym___asm__] = ACTIONS(1280), - [sym_number_literal] = ACTIONS(1282), - [anon_sym_L_SQUOTE] = ACTIONS(1282), - [anon_sym_u_SQUOTE] = ACTIONS(1282), - [anon_sym_U_SQUOTE] = ACTIONS(1282), - [anon_sym_u8_SQUOTE] = ACTIONS(1282), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_L_DQUOTE] = ACTIONS(1282), - [anon_sym_u_DQUOTE] = ACTIONS(1282), - [anon_sym_U_DQUOTE] = ACTIONS(1282), - [anon_sym_u8_DQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym_true] = ACTIONS(1280), - [sym_false] = ACTIONS(1280), - [anon_sym_NULL] = ACTIONS(1280), - [anon_sym_nullptr] = ACTIONS(1280), + [198] = { + [sym_identifier] = ACTIONS(1408), + [aux_sym_preproc_include_token1] = ACTIONS(1408), + [aux_sym_preproc_def_token1] = ACTIONS(1408), + [aux_sym_preproc_if_token1] = ACTIONS(1408), + [aux_sym_preproc_if_token2] = ACTIONS(1408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1408), + [aux_sym_preproc_else_token1] = ACTIONS(1408), + [aux_sym_preproc_elif_token1] = ACTIONS(1408), + [sym_preproc_directive] = ACTIONS(1408), + [anon_sym_LPAREN2] = ACTIONS(1410), + [anon_sym_BANG] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1410), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_STAR] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym___extension__] = ACTIONS(1408), + [anon_sym_typedef] = ACTIONS(1408), + [anon_sym_extern] = ACTIONS(1408), + [anon_sym___attribute__] = ACTIONS(1408), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1410), + [anon_sym___declspec] = ACTIONS(1408), + [anon_sym___cdecl] = ACTIONS(1408), + [anon_sym___clrcall] = ACTIONS(1408), + [anon_sym___stdcall] = ACTIONS(1408), + [anon_sym___fastcall] = ACTIONS(1408), + [anon_sym___thiscall] = ACTIONS(1408), + [anon_sym___vectorcall] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(1410), + [anon_sym_signed] = ACTIONS(1408), + [anon_sym_unsigned] = ACTIONS(1408), + [anon_sym_long] = ACTIONS(1408), + [anon_sym_short] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_auto] = ACTIONS(1408), + [anon_sym_register] = ACTIONS(1408), + [anon_sym_inline] = ACTIONS(1408), + [anon_sym___inline] = ACTIONS(1408), + [anon_sym___inline__] = ACTIONS(1408), + [anon_sym___forceinline] = ACTIONS(1408), + [anon_sym_thread_local] = ACTIONS(1408), + [anon_sym___thread] = ACTIONS(1408), + [anon_sym_const] = ACTIONS(1408), + [anon_sym_constexpr] = ACTIONS(1408), + [anon_sym_volatile] = ACTIONS(1408), + [anon_sym_restrict] = ACTIONS(1408), + [anon_sym___restrict__] = ACTIONS(1408), + [anon_sym__Atomic] = ACTIONS(1408), + [anon_sym__Noreturn] = ACTIONS(1408), + [anon_sym_noreturn] = ACTIONS(1408), + [sym_primitive_type] = ACTIONS(1408), + [anon_sym_enum] = ACTIONS(1408), + [anon_sym_struct] = ACTIONS(1408), + [anon_sym_union] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1408), + [anon_sym_else] = ACTIONS(1408), + [anon_sym_switch] = ACTIONS(1408), + [anon_sym_case] = ACTIONS(1408), + [anon_sym_default] = ACTIONS(1408), + [anon_sym_while] = ACTIONS(1408), + [anon_sym_do] = ACTIONS(1408), + [anon_sym_for] = ACTIONS(1408), + [anon_sym_return] = ACTIONS(1408), + [anon_sym_break] = ACTIONS(1408), + [anon_sym_continue] = ACTIONS(1408), + [anon_sym_goto] = ACTIONS(1408), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_sizeof] = ACTIONS(1408), + [anon_sym___alignof__] = ACTIONS(1408), + [anon_sym___alignof] = ACTIONS(1408), + [anon_sym__alignof] = ACTIONS(1408), + [anon_sym_alignof] = ACTIONS(1408), + [anon_sym__Alignof] = ACTIONS(1408), + [anon_sym_offsetof] = ACTIONS(1408), + [anon_sym___builtin_va_arg] = ACTIONS(1408), + [anon_sym__Generic] = ACTIONS(1408), + [anon_sym_asm] = ACTIONS(1408), + [anon_sym___asm__] = ACTIONS(1408), + [sym_number_literal] = ACTIONS(1410), + [anon_sym_L_SQUOTE] = ACTIONS(1410), + [anon_sym_u_SQUOTE] = ACTIONS(1410), + [anon_sym_U_SQUOTE] = ACTIONS(1410), + [anon_sym_u8_SQUOTE] = ACTIONS(1410), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_L_DQUOTE] = ACTIONS(1410), + [anon_sym_u_DQUOTE] = ACTIONS(1410), + [anon_sym_U_DQUOTE] = ACTIONS(1410), + [anon_sym_u8_DQUOTE] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1410), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [anon_sym_NULL] = ACTIONS(1408), + [anon_sym_nullptr] = ACTIONS(1408), [sym_comment] = ACTIONS(3), }, - [192] = { - [sym_identifier] = ACTIONS(1284), - [aux_sym_preproc_include_token1] = ACTIONS(1284), - [aux_sym_preproc_def_token1] = ACTIONS(1284), - [aux_sym_preproc_if_token1] = ACTIONS(1284), - [aux_sym_preproc_if_token2] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1284), - [aux_sym_preproc_else_token1] = ACTIONS(1284), - [aux_sym_preproc_elif_token1] = ACTIONS(1284), - [sym_preproc_directive] = ACTIONS(1284), - [anon_sym_LPAREN2] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1286), - [anon_sym_TILDE] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1286), - [anon_sym_SEMI] = ACTIONS(1286), - [anon_sym_typedef] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1284), - [anon_sym___attribute__] = ACTIONS(1284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1286), - [anon_sym___declspec] = ACTIONS(1284), - [anon_sym___cdecl] = ACTIONS(1284), - [anon_sym___clrcall] = ACTIONS(1284), - [anon_sym___stdcall] = ACTIONS(1284), - [anon_sym___fastcall] = ACTIONS(1284), - [anon_sym___thiscall] = ACTIONS(1284), - [anon_sym___vectorcall] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_signed] = ACTIONS(1284), - [anon_sym_unsigned] = ACTIONS(1284), - [anon_sym_long] = ACTIONS(1284), - [anon_sym_short] = ACTIONS(1284), - [anon_sym_static] = ACTIONS(1284), - [anon_sym_auto] = ACTIONS(1284), - [anon_sym_register] = ACTIONS(1284), - [anon_sym_inline] = ACTIONS(1284), - [anon_sym_thread_local] = ACTIONS(1284), - [anon_sym___thread] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_constexpr] = ACTIONS(1284), - [anon_sym_volatile] = ACTIONS(1284), - [anon_sym_restrict] = ACTIONS(1284), - [anon_sym___restrict__] = ACTIONS(1284), - [anon_sym__Atomic] = ACTIONS(1284), - [anon_sym__Noreturn] = ACTIONS(1284), - [anon_sym_noreturn] = ACTIONS(1284), - [sym_primitive_type] = ACTIONS(1284), - [anon_sym_enum] = ACTIONS(1284), - [anon_sym_struct] = ACTIONS(1284), - [anon_sym_union] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_else] = ACTIONS(1284), - [anon_sym_switch] = ACTIONS(1284), - [anon_sym_case] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1284), - [anon_sym_while] = ACTIONS(1284), - [anon_sym_do] = ACTIONS(1284), - [anon_sym_for] = ACTIONS(1284), - [anon_sym_return] = ACTIONS(1284), - [anon_sym_break] = ACTIONS(1284), - [anon_sym_continue] = ACTIONS(1284), - [anon_sym_goto] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1286), - [anon_sym_PLUS_PLUS] = ACTIONS(1286), - [anon_sym_sizeof] = ACTIONS(1284), - [anon_sym_offsetof] = ACTIONS(1284), - [anon_sym__Generic] = ACTIONS(1284), - [anon_sym_asm] = ACTIONS(1284), - [anon_sym___asm__] = ACTIONS(1284), - [sym_number_literal] = ACTIONS(1286), - [anon_sym_L_SQUOTE] = ACTIONS(1286), - [anon_sym_u_SQUOTE] = ACTIONS(1286), - [anon_sym_U_SQUOTE] = ACTIONS(1286), - [anon_sym_u8_SQUOTE] = ACTIONS(1286), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_L_DQUOTE] = ACTIONS(1286), - [anon_sym_u_DQUOTE] = ACTIONS(1286), - [anon_sym_U_DQUOTE] = ACTIONS(1286), - [anon_sym_u8_DQUOTE] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym_true] = ACTIONS(1284), - [sym_false] = ACTIONS(1284), - [anon_sym_NULL] = ACTIONS(1284), - [anon_sym_nullptr] = ACTIONS(1284), + [199] = { + [sym_identifier] = ACTIONS(1412), + [aux_sym_preproc_include_token1] = ACTIONS(1412), + [aux_sym_preproc_def_token1] = ACTIONS(1412), + [aux_sym_preproc_if_token1] = ACTIONS(1412), + [aux_sym_preproc_if_token2] = ACTIONS(1412), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1412), + [aux_sym_preproc_else_token1] = ACTIONS(1412), + [aux_sym_preproc_elif_token1] = ACTIONS(1412), + [sym_preproc_directive] = ACTIONS(1412), + [anon_sym_LPAREN2] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1414), + [anon_sym_TILDE] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_AMP] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1414), + [anon_sym___extension__] = ACTIONS(1412), + [anon_sym_typedef] = ACTIONS(1412), + [anon_sym_extern] = ACTIONS(1412), + [anon_sym___attribute__] = ACTIONS(1412), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1414), + [anon_sym___declspec] = ACTIONS(1412), + [anon_sym___cdecl] = ACTIONS(1412), + [anon_sym___clrcall] = ACTIONS(1412), + [anon_sym___stdcall] = ACTIONS(1412), + [anon_sym___fastcall] = ACTIONS(1412), + [anon_sym___thiscall] = ACTIONS(1412), + [anon_sym___vectorcall] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_signed] = ACTIONS(1412), + [anon_sym_unsigned] = ACTIONS(1412), + [anon_sym_long] = ACTIONS(1412), + [anon_sym_short] = ACTIONS(1412), + [anon_sym_static] = ACTIONS(1412), + [anon_sym_auto] = ACTIONS(1412), + [anon_sym_register] = ACTIONS(1412), + [anon_sym_inline] = ACTIONS(1412), + [anon_sym___inline] = ACTIONS(1412), + [anon_sym___inline__] = ACTIONS(1412), + [anon_sym___forceinline] = ACTIONS(1412), + [anon_sym_thread_local] = ACTIONS(1412), + [anon_sym___thread] = ACTIONS(1412), + [anon_sym_const] = ACTIONS(1412), + [anon_sym_constexpr] = ACTIONS(1412), + [anon_sym_volatile] = ACTIONS(1412), + [anon_sym_restrict] = ACTIONS(1412), + [anon_sym___restrict__] = ACTIONS(1412), + [anon_sym__Atomic] = ACTIONS(1412), + [anon_sym__Noreturn] = ACTIONS(1412), + [anon_sym_noreturn] = ACTIONS(1412), + [sym_primitive_type] = ACTIONS(1412), + [anon_sym_enum] = ACTIONS(1412), + [anon_sym_struct] = ACTIONS(1412), + [anon_sym_union] = ACTIONS(1412), + [anon_sym_if] = ACTIONS(1412), + [anon_sym_else] = ACTIONS(1412), + [anon_sym_switch] = ACTIONS(1412), + [anon_sym_case] = ACTIONS(1412), + [anon_sym_default] = ACTIONS(1412), + [anon_sym_while] = ACTIONS(1412), + [anon_sym_do] = ACTIONS(1412), + [anon_sym_for] = ACTIONS(1412), + [anon_sym_return] = ACTIONS(1412), + [anon_sym_break] = ACTIONS(1412), + [anon_sym_continue] = ACTIONS(1412), + [anon_sym_goto] = ACTIONS(1412), + [anon_sym_DASH_DASH] = ACTIONS(1414), + [anon_sym_PLUS_PLUS] = ACTIONS(1414), + [anon_sym_sizeof] = ACTIONS(1412), + [anon_sym___alignof__] = ACTIONS(1412), + [anon_sym___alignof] = ACTIONS(1412), + [anon_sym__alignof] = ACTIONS(1412), + [anon_sym_alignof] = ACTIONS(1412), + [anon_sym__Alignof] = ACTIONS(1412), + [anon_sym_offsetof] = ACTIONS(1412), + [anon_sym___builtin_va_arg] = ACTIONS(1412), + [anon_sym__Generic] = ACTIONS(1412), + [anon_sym_asm] = ACTIONS(1412), + [anon_sym___asm__] = ACTIONS(1412), + [sym_number_literal] = ACTIONS(1414), + [anon_sym_L_SQUOTE] = ACTIONS(1414), + [anon_sym_u_SQUOTE] = ACTIONS(1414), + [anon_sym_U_SQUOTE] = ACTIONS(1414), + [anon_sym_u8_SQUOTE] = ACTIONS(1414), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_L_DQUOTE] = ACTIONS(1414), + [anon_sym_u_DQUOTE] = ACTIONS(1414), + [anon_sym_U_DQUOTE] = ACTIONS(1414), + [anon_sym_u8_DQUOTE] = ACTIONS(1414), + [anon_sym_DQUOTE] = ACTIONS(1414), + [sym_true] = ACTIONS(1412), + [sym_false] = ACTIONS(1412), + [anon_sym_NULL] = ACTIONS(1412), + [anon_sym_nullptr] = ACTIONS(1412), [sym_comment] = ACTIONS(3), }, - [193] = { - [sym_identifier] = ACTIONS(1312), - [aux_sym_preproc_include_token1] = ACTIONS(1312), - [aux_sym_preproc_def_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token2] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), - [aux_sym_preproc_else_token1] = ACTIONS(1312), - [aux_sym_preproc_elif_token1] = ACTIONS(1312), - [sym_preproc_directive] = ACTIONS(1312), - [anon_sym_LPAREN2] = ACTIONS(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_TILDE] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym_typedef] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym___attribute__] = ACTIONS(1312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), - [anon_sym___declspec] = ACTIONS(1312), - [anon_sym___cdecl] = ACTIONS(1312), - [anon_sym___clrcall] = ACTIONS(1312), - [anon_sym___stdcall] = ACTIONS(1312), - [anon_sym___fastcall] = ACTIONS(1312), - [anon_sym___thiscall] = ACTIONS(1312), - [anon_sym___vectorcall] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_signed] = ACTIONS(1312), - [anon_sym_unsigned] = ACTIONS(1312), - [anon_sym_long] = ACTIONS(1312), - [anon_sym_short] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_auto] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_inline] = ACTIONS(1312), - [anon_sym_thread_local] = ACTIONS(1312), - [anon_sym___thread] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_constexpr] = ACTIONS(1312), - [anon_sym_volatile] = ACTIONS(1312), - [anon_sym_restrict] = ACTIONS(1312), - [anon_sym___restrict__] = ACTIONS(1312), - [anon_sym__Atomic] = ACTIONS(1312), - [anon_sym__Noreturn] = ACTIONS(1312), - [anon_sym_noreturn] = ACTIONS(1312), - [sym_primitive_type] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_goto] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [anon_sym_sizeof] = ACTIONS(1312), - [anon_sym_offsetof] = ACTIONS(1312), - [anon_sym__Generic] = ACTIONS(1312), - [anon_sym_asm] = ACTIONS(1312), - [anon_sym___asm__] = ACTIONS(1312), - [sym_number_literal] = ACTIONS(1314), - [anon_sym_L_SQUOTE] = ACTIONS(1314), - [anon_sym_u_SQUOTE] = ACTIONS(1314), - [anon_sym_U_SQUOTE] = ACTIONS(1314), - [anon_sym_u8_SQUOTE] = ACTIONS(1314), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_L_DQUOTE] = ACTIONS(1314), - [anon_sym_u_DQUOTE] = ACTIONS(1314), - [anon_sym_U_DQUOTE] = ACTIONS(1314), - [anon_sym_u8_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1314), - [sym_true] = ACTIONS(1312), - [sym_false] = ACTIONS(1312), - [anon_sym_NULL] = ACTIONS(1312), - [anon_sym_nullptr] = ACTIONS(1312), + [200] = { + [sym_identifier] = ACTIONS(1416), + [aux_sym_preproc_include_token1] = ACTIONS(1416), + [aux_sym_preproc_def_token1] = ACTIONS(1416), + [aux_sym_preproc_if_token1] = ACTIONS(1416), + [aux_sym_preproc_if_token2] = ACTIONS(1416), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1416), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1416), + [aux_sym_preproc_else_token1] = ACTIONS(1416), + [aux_sym_preproc_elif_token1] = ACTIONS(1416), + [sym_preproc_directive] = ACTIONS(1416), + [anon_sym_LPAREN2] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(1416), + [anon_sym_typedef] = ACTIONS(1416), + [anon_sym_extern] = ACTIONS(1416), + [anon_sym___attribute__] = ACTIONS(1416), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), + [anon_sym___declspec] = ACTIONS(1416), + [anon_sym___cdecl] = ACTIONS(1416), + [anon_sym___clrcall] = ACTIONS(1416), + [anon_sym___stdcall] = ACTIONS(1416), + [anon_sym___fastcall] = ACTIONS(1416), + [anon_sym___thiscall] = ACTIONS(1416), + [anon_sym___vectorcall] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_signed] = ACTIONS(1416), + [anon_sym_unsigned] = ACTIONS(1416), + [anon_sym_long] = ACTIONS(1416), + [anon_sym_short] = ACTIONS(1416), + [anon_sym_static] = ACTIONS(1416), + [anon_sym_auto] = ACTIONS(1416), + [anon_sym_register] = ACTIONS(1416), + [anon_sym_inline] = ACTIONS(1416), + [anon_sym___inline] = ACTIONS(1416), + [anon_sym___inline__] = ACTIONS(1416), + [anon_sym___forceinline] = ACTIONS(1416), + [anon_sym_thread_local] = ACTIONS(1416), + [anon_sym___thread] = ACTIONS(1416), + [anon_sym_const] = ACTIONS(1416), + [anon_sym_constexpr] = ACTIONS(1416), + [anon_sym_volatile] = ACTIONS(1416), + [anon_sym_restrict] = ACTIONS(1416), + [anon_sym___restrict__] = ACTIONS(1416), + [anon_sym__Atomic] = ACTIONS(1416), + [anon_sym__Noreturn] = ACTIONS(1416), + [anon_sym_noreturn] = ACTIONS(1416), + [sym_primitive_type] = ACTIONS(1416), + [anon_sym_enum] = ACTIONS(1416), + [anon_sym_struct] = ACTIONS(1416), + [anon_sym_union] = ACTIONS(1416), + [anon_sym_if] = ACTIONS(1416), + [anon_sym_else] = ACTIONS(1416), + [anon_sym_switch] = ACTIONS(1416), + [anon_sym_case] = ACTIONS(1416), + [anon_sym_default] = ACTIONS(1416), + [anon_sym_while] = ACTIONS(1416), + [anon_sym_do] = ACTIONS(1416), + [anon_sym_for] = ACTIONS(1416), + [anon_sym_return] = ACTIONS(1416), + [anon_sym_break] = ACTIONS(1416), + [anon_sym_continue] = ACTIONS(1416), + [anon_sym_goto] = ACTIONS(1416), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_sizeof] = ACTIONS(1416), + [anon_sym___alignof__] = ACTIONS(1416), + [anon_sym___alignof] = ACTIONS(1416), + [anon_sym__alignof] = ACTIONS(1416), + [anon_sym_alignof] = ACTIONS(1416), + [anon_sym__Alignof] = ACTIONS(1416), + [anon_sym_offsetof] = ACTIONS(1416), + [anon_sym___builtin_va_arg] = ACTIONS(1416), + [anon_sym__Generic] = ACTIONS(1416), + [anon_sym_asm] = ACTIONS(1416), + [anon_sym___asm__] = ACTIONS(1416), + [sym_number_literal] = ACTIONS(1418), + [anon_sym_L_SQUOTE] = ACTIONS(1418), + [anon_sym_u_SQUOTE] = ACTIONS(1418), + [anon_sym_U_SQUOTE] = ACTIONS(1418), + [anon_sym_u8_SQUOTE] = ACTIONS(1418), + [anon_sym_SQUOTE] = ACTIONS(1418), + [anon_sym_L_DQUOTE] = ACTIONS(1418), + [anon_sym_u_DQUOTE] = ACTIONS(1418), + [anon_sym_U_DQUOTE] = ACTIONS(1418), + [anon_sym_u8_DQUOTE] = ACTIONS(1418), + [anon_sym_DQUOTE] = ACTIONS(1418), + [sym_true] = ACTIONS(1416), + [sym_false] = ACTIONS(1416), + [anon_sym_NULL] = ACTIONS(1416), + [anon_sym_nullptr] = ACTIONS(1416), [sym_comment] = ACTIONS(3), }, - [194] = { - [sym_identifier] = ACTIONS(1288), - [aux_sym_preproc_include_token1] = ACTIONS(1288), - [aux_sym_preproc_def_token1] = ACTIONS(1288), - [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), - [sym_preproc_directive] = ACTIONS(1288), - [anon_sym_LPAREN2] = ACTIONS(1290), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym_typedef] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1288), - [anon_sym___attribute__] = ACTIONS(1288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), - [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(1290), - [anon_sym_signed] = ACTIONS(1288), - [anon_sym_unsigned] = ACTIONS(1288), - [anon_sym_long] = ACTIONS(1288), - [anon_sym_short] = ACTIONS(1288), - [anon_sym_static] = ACTIONS(1288), - [anon_sym_auto] = ACTIONS(1288), - [anon_sym_register] = ACTIONS(1288), - [anon_sym_inline] = ACTIONS(1288), - [anon_sym_thread_local] = ACTIONS(1288), - [anon_sym___thread] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_constexpr] = ACTIONS(1288), - [anon_sym_volatile] = ACTIONS(1288), - [anon_sym_restrict] = ACTIONS(1288), - [anon_sym___restrict__] = ACTIONS(1288), - [anon_sym__Atomic] = ACTIONS(1288), - [anon_sym__Noreturn] = ACTIONS(1288), - [anon_sym_noreturn] = 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(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1290), - [anon_sym_sizeof] = ACTIONS(1288), - [anon_sym_offsetof] = ACTIONS(1288), - [anon_sym__Generic] = ACTIONS(1288), - [anon_sym_asm] = ACTIONS(1288), - [anon_sym___asm__] = ACTIONS(1288), - [sym_number_literal] = ACTIONS(1290), - [anon_sym_L_SQUOTE] = ACTIONS(1290), - [anon_sym_u_SQUOTE] = ACTIONS(1290), - [anon_sym_U_SQUOTE] = ACTIONS(1290), - [anon_sym_u8_SQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1290), - [anon_sym_L_DQUOTE] = ACTIONS(1290), - [anon_sym_u_DQUOTE] = ACTIONS(1290), - [anon_sym_U_DQUOTE] = ACTIONS(1290), - [anon_sym_u8_DQUOTE] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [sym_true] = ACTIONS(1288), - [sym_false] = ACTIONS(1288), - [anon_sym_NULL] = ACTIONS(1288), - [anon_sym_nullptr] = ACTIONS(1288), + [201] = { + [sym_identifier] = ACTIONS(1420), + [aux_sym_preproc_include_token1] = ACTIONS(1420), + [aux_sym_preproc_def_token1] = ACTIONS(1420), + [aux_sym_preproc_if_token1] = ACTIONS(1420), + [aux_sym_preproc_if_token2] = ACTIONS(1420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1420), + [aux_sym_preproc_else_token1] = ACTIONS(1420), + [aux_sym_preproc_elif_token1] = ACTIONS(1420), + [sym_preproc_directive] = ACTIONS(1420), + [anon_sym_LPAREN2] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_DASH] = ACTIONS(1420), + [anon_sym_PLUS] = ACTIONS(1420), + [anon_sym_STAR] = ACTIONS(1422), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_SEMI] = ACTIONS(1422), + [anon_sym___extension__] = ACTIONS(1420), + [anon_sym_typedef] = ACTIONS(1420), + [anon_sym_extern] = ACTIONS(1420), + [anon_sym___attribute__] = ACTIONS(1420), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1422), + [anon_sym___declspec] = ACTIONS(1420), + [anon_sym___cdecl] = ACTIONS(1420), + [anon_sym___clrcall] = ACTIONS(1420), + [anon_sym___stdcall] = ACTIONS(1420), + [anon_sym___fastcall] = ACTIONS(1420), + [anon_sym___thiscall] = ACTIONS(1420), + [anon_sym___vectorcall] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1422), + [anon_sym_signed] = ACTIONS(1420), + [anon_sym_unsigned] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_static] = ACTIONS(1420), + [anon_sym_auto] = ACTIONS(1420), + [anon_sym_register] = ACTIONS(1420), + [anon_sym_inline] = ACTIONS(1420), + [anon_sym___inline] = ACTIONS(1420), + [anon_sym___inline__] = ACTIONS(1420), + [anon_sym___forceinline] = ACTIONS(1420), + [anon_sym_thread_local] = ACTIONS(1420), + [anon_sym___thread] = ACTIONS(1420), + [anon_sym_const] = ACTIONS(1420), + [anon_sym_constexpr] = ACTIONS(1420), + [anon_sym_volatile] = ACTIONS(1420), + [anon_sym_restrict] = ACTIONS(1420), + [anon_sym___restrict__] = ACTIONS(1420), + [anon_sym__Atomic] = ACTIONS(1420), + [anon_sym__Noreturn] = ACTIONS(1420), + [anon_sym_noreturn] = ACTIONS(1420), + [sym_primitive_type] = ACTIONS(1420), + [anon_sym_enum] = ACTIONS(1420), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_union] = ACTIONS(1420), + [anon_sym_if] = ACTIONS(1420), + [anon_sym_else] = ACTIONS(1420), + [anon_sym_switch] = ACTIONS(1420), + [anon_sym_case] = ACTIONS(1420), + [anon_sym_default] = ACTIONS(1420), + [anon_sym_while] = ACTIONS(1420), + [anon_sym_do] = ACTIONS(1420), + [anon_sym_for] = ACTIONS(1420), + [anon_sym_return] = ACTIONS(1420), + [anon_sym_break] = ACTIONS(1420), + [anon_sym_continue] = ACTIONS(1420), + [anon_sym_goto] = ACTIONS(1420), + [anon_sym_DASH_DASH] = ACTIONS(1422), + [anon_sym_PLUS_PLUS] = ACTIONS(1422), + [anon_sym_sizeof] = ACTIONS(1420), + [anon_sym___alignof__] = ACTIONS(1420), + [anon_sym___alignof] = ACTIONS(1420), + [anon_sym__alignof] = ACTIONS(1420), + [anon_sym_alignof] = ACTIONS(1420), + [anon_sym__Alignof] = ACTIONS(1420), + [anon_sym_offsetof] = ACTIONS(1420), + [anon_sym___builtin_va_arg] = ACTIONS(1420), + [anon_sym__Generic] = ACTIONS(1420), + [anon_sym_asm] = ACTIONS(1420), + [anon_sym___asm__] = ACTIONS(1420), + [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(1420), + [sym_false] = ACTIONS(1420), + [anon_sym_NULL] = ACTIONS(1420), + [anon_sym_nullptr] = ACTIONS(1420), [sym_comment] = ACTIONS(3), }, - [195] = { - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1292), - [aux_sym_preproc_def_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token2] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), - [aux_sym_preproc_else_token1] = ACTIONS(1292), - [aux_sym_preproc_elif_token1] = ACTIONS(1292), - [sym_preproc_directive] = ACTIONS(1292), - [anon_sym_LPAREN2] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_typedef] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym___attribute__] = ACTIONS(1292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), - [anon_sym___declspec] = ACTIONS(1292), - [anon_sym___cdecl] = ACTIONS(1292), - [anon_sym___clrcall] = ACTIONS(1292), - [anon_sym___stdcall] = ACTIONS(1292), - [anon_sym___fastcall] = ACTIONS(1292), - [anon_sym___thiscall] = ACTIONS(1292), - [anon_sym___vectorcall] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym_thread_local] = ACTIONS(1292), - [anon_sym___thread] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_constexpr] = ACTIONS(1292), - [anon_sym_volatile] = ACTIONS(1292), - [anon_sym_restrict] = ACTIONS(1292), - [anon_sym___restrict__] = ACTIONS(1292), - [anon_sym__Atomic] = ACTIONS(1292), - [anon_sym__Noreturn] = ACTIONS(1292), - [anon_sym_noreturn] = ACTIONS(1292), - [sym_primitive_type] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_else] = ACTIONS(1292), - [anon_sym_switch] = ACTIONS(1292), - [anon_sym_case] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_do] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_goto] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_sizeof] = ACTIONS(1292), - [anon_sym_offsetof] = ACTIONS(1292), - [anon_sym__Generic] = ACTIONS(1292), - [anon_sym_asm] = ACTIONS(1292), - [anon_sym___asm__] = ACTIONS(1292), - [sym_number_literal] = ACTIONS(1294), - [anon_sym_L_SQUOTE] = ACTIONS(1294), - [anon_sym_u_SQUOTE] = ACTIONS(1294), - [anon_sym_U_SQUOTE] = ACTIONS(1294), - [anon_sym_u8_SQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1294), - [anon_sym_L_DQUOTE] = ACTIONS(1294), - [anon_sym_u_DQUOTE] = ACTIONS(1294), - [anon_sym_U_DQUOTE] = ACTIONS(1294), - [anon_sym_u8_DQUOTE] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_true] = ACTIONS(1292), - [sym_false] = ACTIONS(1292), - [anon_sym_NULL] = ACTIONS(1292), - [anon_sym_nullptr] = ACTIONS(1292), + [202] = { + [sym_identifier] = ACTIONS(1252), + [aux_sym_preproc_include_token1] = ACTIONS(1252), + [aux_sym_preproc_def_token1] = ACTIONS(1252), + [aux_sym_preproc_if_token1] = ACTIONS(1252), + [aux_sym_preproc_if_token2] = ACTIONS(1252), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1252), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1252), + [aux_sym_preproc_else_token1] = ACTIONS(1252), + [aux_sym_preproc_elif_token1] = ACTIONS(1252), + [sym_preproc_directive] = ACTIONS(1252), + [anon_sym_LPAREN2] = ACTIONS(1254), + [anon_sym_BANG] = ACTIONS(1254), + [anon_sym_TILDE] = ACTIONS(1254), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1252), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(1252), + [anon_sym_typedef] = ACTIONS(1252), + [anon_sym_extern] = ACTIONS(1252), + [anon_sym___attribute__] = ACTIONS(1252), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1254), + [anon_sym___declspec] = ACTIONS(1252), + [anon_sym___cdecl] = ACTIONS(1252), + [anon_sym___clrcall] = ACTIONS(1252), + [anon_sym___stdcall] = ACTIONS(1252), + [anon_sym___fastcall] = ACTIONS(1252), + [anon_sym___thiscall] = ACTIONS(1252), + [anon_sym___vectorcall] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_signed] = ACTIONS(1252), + [anon_sym_unsigned] = ACTIONS(1252), + [anon_sym_long] = ACTIONS(1252), + [anon_sym_short] = ACTIONS(1252), + [anon_sym_static] = ACTIONS(1252), + [anon_sym_auto] = ACTIONS(1252), + [anon_sym_register] = ACTIONS(1252), + [anon_sym_inline] = ACTIONS(1252), + [anon_sym___inline] = ACTIONS(1252), + [anon_sym___inline__] = ACTIONS(1252), + [anon_sym___forceinline] = ACTIONS(1252), + [anon_sym_thread_local] = ACTIONS(1252), + [anon_sym___thread] = ACTIONS(1252), + [anon_sym_const] = ACTIONS(1252), + [anon_sym_constexpr] = ACTIONS(1252), + [anon_sym_volatile] = ACTIONS(1252), + [anon_sym_restrict] = ACTIONS(1252), + [anon_sym___restrict__] = ACTIONS(1252), + [anon_sym__Atomic] = ACTIONS(1252), + [anon_sym__Noreturn] = ACTIONS(1252), + [anon_sym_noreturn] = ACTIONS(1252), + [sym_primitive_type] = ACTIONS(1252), + [anon_sym_enum] = ACTIONS(1252), + [anon_sym_struct] = ACTIONS(1252), + [anon_sym_union] = ACTIONS(1252), + [anon_sym_if] = ACTIONS(1252), + [anon_sym_else] = ACTIONS(1252), + [anon_sym_switch] = ACTIONS(1252), + [anon_sym_case] = ACTIONS(1252), + [anon_sym_default] = ACTIONS(1252), + [anon_sym_while] = ACTIONS(1252), + [anon_sym_do] = ACTIONS(1252), + [anon_sym_for] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1252), + [anon_sym_break] = ACTIONS(1252), + [anon_sym_continue] = ACTIONS(1252), + [anon_sym_goto] = ACTIONS(1252), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1252), + [anon_sym___alignof__] = ACTIONS(1252), + [anon_sym___alignof] = ACTIONS(1252), + [anon_sym__alignof] = ACTIONS(1252), + [anon_sym_alignof] = ACTIONS(1252), + [anon_sym__Alignof] = ACTIONS(1252), + [anon_sym_offsetof] = ACTIONS(1252), + [anon_sym___builtin_va_arg] = ACTIONS(1252), + [anon_sym__Generic] = ACTIONS(1252), + [anon_sym_asm] = ACTIONS(1252), + [anon_sym___asm__] = ACTIONS(1252), + [sym_number_literal] = ACTIONS(1254), + [anon_sym_L_SQUOTE] = ACTIONS(1254), + [anon_sym_u_SQUOTE] = ACTIONS(1254), + [anon_sym_U_SQUOTE] = ACTIONS(1254), + [anon_sym_u8_SQUOTE] = ACTIONS(1254), + [anon_sym_SQUOTE] = ACTIONS(1254), + [anon_sym_L_DQUOTE] = ACTIONS(1254), + [anon_sym_u_DQUOTE] = ACTIONS(1254), + [anon_sym_U_DQUOTE] = ACTIONS(1254), + [anon_sym_u8_DQUOTE] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(1254), + [sym_true] = ACTIONS(1252), + [sym_false] = ACTIONS(1252), + [anon_sym_NULL] = ACTIONS(1252), + [anon_sym_nullptr] = ACTIONS(1252), [sym_comment] = ACTIONS(3), }, - [196] = { - [sym_identifier] = ACTIONS(1296), - [aux_sym_preproc_include_token1] = ACTIONS(1296), - [aux_sym_preproc_def_token1] = ACTIONS(1296), - [aux_sym_preproc_if_token1] = ACTIONS(1296), - [aux_sym_preproc_if_token2] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), - [aux_sym_preproc_else_token1] = ACTIONS(1296), - [aux_sym_preproc_elif_token1] = ACTIONS(1296), - [sym_preproc_directive] = ACTIONS(1296), - [anon_sym_LPAREN2] = ACTIONS(1298), - [anon_sym_BANG] = ACTIONS(1298), - [anon_sym_TILDE] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1296), - [anon_sym_extern] = ACTIONS(1296), - [anon_sym___attribute__] = ACTIONS(1296), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), - [anon_sym___declspec] = ACTIONS(1296), - [anon_sym___cdecl] = ACTIONS(1296), - [anon_sym___clrcall] = ACTIONS(1296), - [anon_sym___stdcall] = ACTIONS(1296), - [anon_sym___fastcall] = ACTIONS(1296), - [anon_sym___thiscall] = ACTIONS(1296), - [anon_sym___vectorcall] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_signed] = ACTIONS(1296), - [anon_sym_unsigned] = ACTIONS(1296), - [anon_sym_long] = ACTIONS(1296), - [anon_sym_short] = ACTIONS(1296), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_auto] = ACTIONS(1296), - [anon_sym_register] = ACTIONS(1296), - [anon_sym_inline] = ACTIONS(1296), - [anon_sym_thread_local] = ACTIONS(1296), - [anon_sym___thread] = ACTIONS(1296), - [anon_sym_const] = ACTIONS(1296), - [anon_sym_constexpr] = ACTIONS(1296), - [anon_sym_volatile] = ACTIONS(1296), - [anon_sym_restrict] = ACTIONS(1296), - [anon_sym___restrict__] = ACTIONS(1296), - [anon_sym__Atomic] = ACTIONS(1296), - [anon_sym__Noreturn] = ACTIONS(1296), - [anon_sym_noreturn] = ACTIONS(1296), - [sym_primitive_type] = ACTIONS(1296), - [anon_sym_enum] = ACTIONS(1296), - [anon_sym_struct] = ACTIONS(1296), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_if] = ACTIONS(1296), - [anon_sym_else] = ACTIONS(1296), - [anon_sym_switch] = ACTIONS(1296), - [anon_sym_case] = ACTIONS(1296), - [anon_sym_default] = ACTIONS(1296), - [anon_sym_while] = ACTIONS(1296), - [anon_sym_do] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_break] = ACTIONS(1296), - [anon_sym_continue] = ACTIONS(1296), - [anon_sym_goto] = ACTIONS(1296), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_sizeof] = ACTIONS(1296), - [anon_sym_offsetof] = ACTIONS(1296), - [anon_sym__Generic] = ACTIONS(1296), - [anon_sym_asm] = ACTIONS(1296), - [anon_sym___asm__] = ACTIONS(1296), - [sym_number_literal] = ACTIONS(1298), - [anon_sym_L_SQUOTE] = ACTIONS(1298), - [anon_sym_u_SQUOTE] = ACTIONS(1298), - [anon_sym_U_SQUOTE] = ACTIONS(1298), - [anon_sym_u8_SQUOTE] = ACTIONS(1298), - [anon_sym_SQUOTE] = ACTIONS(1298), - [anon_sym_L_DQUOTE] = ACTIONS(1298), - [anon_sym_u_DQUOTE] = ACTIONS(1298), - [anon_sym_U_DQUOTE] = ACTIONS(1298), - [anon_sym_u8_DQUOTE] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym_true] = ACTIONS(1296), - [sym_false] = ACTIONS(1296), - [anon_sym_NULL] = ACTIONS(1296), - [anon_sym_nullptr] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - }, - [197] = { - [sym_identifier] = ACTIONS(1300), - [aux_sym_preproc_include_token1] = ACTIONS(1300), - [aux_sym_preproc_def_token1] = ACTIONS(1300), - [aux_sym_preproc_if_token1] = ACTIONS(1300), - [aux_sym_preproc_if_token2] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), - [aux_sym_preproc_else_token1] = ACTIONS(1300), - [aux_sym_preproc_elif_token1] = ACTIONS(1300), - [sym_preproc_directive] = ACTIONS(1300), - [anon_sym_LPAREN2] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym_typedef] = ACTIONS(1300), - [anon_sym_extern] = ACTIONS(1300), - [anon_sym___attribute__] = ACTIONS(1300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), - [anon_sym___declspec] = ACTIONS(1300), - [anon_sym___cdecl] = ACTIONS(1300), - [anon_sym___clrcall] = ACTIONS(1300), - [anon_sym___stdcall] = ACTIONS(1300), - [anon_sym___fastcall] = ACTIONS(1300), - [anon_sym___thiscall] = ACTIONS(1300), - [anon_sym___vectorcall] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_signed] = ACTIONS(1300), - [anon_sym_unsigned] = ACTIONS(1300), - [anon_sym_long] = ACTIONS(1300), - [anon_sym_short] = ACTIONS(1300), - [anon_sym_static] = ACTIONS(1300), - [anon_sym_auto] = ACTIONS(1300), - [anon_sym_register] = ACTIONS(1300), - [anon_sym_inline] = ACTIONS(1300), - [anon_sym_thread_local] = ACTIONS(1300), - [anon_sym___thread] = ACTIONS(1300), - [anon_sym_const] = ACTIONS(1300), - [anon_sym_constexpr] = ACTIONS(1300), - [anon_sym_volatile] = ACTIONS(1300), - [anon_sym_restrict] = ACTIONS(1300), - [anon_sym___restrict__] = ACTIONS(1300), - [anon_sym__Atomic] = ACTIONS(1300), - [anon_sym__Noreturn] = ACTIONS(1300), - [anon_sym_noreturn] = ACTIONS(1300), - [sym_primitive_type] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1300), - [anon_sym_struct] = ACTIONS(1300), - [anon_sym_union] = ACTIONS(1300), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_else] = ACTIONS(1300), - [anon_sym_switch] = ACTIONS(1300), - [anon_sym_case] = ACTIONS(1300), - [anon_sym_default] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_do] = ACTIONS(1300), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_goto] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_sizeof] = ACTIONS(1300), - [anon_sym_offsetof] = ACTIONS(1300), - [anon_sym__Generic] = ACTIONS(1300), - [anon_sym_asm] = ACTIONS(1300), - [anon_sym___asm__] = ACTIONS(1300), - [sym_number_literal] = ACTIONS(1302), - [anon_sym_L_SQUOTE] = ACTIONS(1302), - [anon_sym_u_SQUOTE] = ACTIONS(1302), - [anon_sym_U_SQUOTE] = ACTIONS(1302), - [anon_sym_u8_SQUOTE] = ACTIONS(1302), - [anon_sym_SQUOTE] = ACTIONS(1302), - [anon_sym_L_DQUOTE] = ACTIONS(1302), - [anon_sym_u_DQUOTE] = ACTIONS(1302), - [anon_sym_U_DQUOTE] = ACTIONS(1302), - [anon_sym_u8_DQUOTE] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [anon_sym_NULL] = ACTIONS(1300), - [anon_sym_nullptr] = ACTIONS(1300), + [203] = { + [ts_builtin_sym_end] = ACTIONS(1362), + [sym_identifier] = ACTIONS(1360), + [aux_sym_preproc_include_token1] = ACTIONS(1360), + [aux_sym_preproc_def_token1] = ACTIONS(1360), + [anon_sym_COMMA] = ACTIONS(1362), + [anon_sym_RPAREN] = ACTIONS(1362), + [aux_sym_preproc_if_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), + [sym_preproc_directive] = ACTIONS(1360), + [anon_sym_LPAREN2] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [anon_sym_TILDE] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym___extension__] = ACTIONS(1360), + [anon_sym_typedef] = ACTIONS(1360), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym___attribute__] = ACTIONS(1360), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), + [anon_sym___declspec] = ACTIONS(1360), + [anon_sym___cdecl] = ACTIONS(1360), + [anon_sym___clrcall] = ACTIONS(1360), + [anon_sym___stdcall] = ACTIONS(1360), + [anon_sym___fastcall] = ACTIONS(1360), + [anon_sym___thiscall] = ACTIONS(1360), + [anon_sym___vectorcall] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_signed] = ACTIONS(1360), + [anon_sym_unsigned] = ACTIONS(1360), + [anon_sym_long] = ACTIONS(1360), + [anon_sym_short] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_auto] = ACTIONS(1360), + [anon_sym_register] = ACTIONS(1360), + [anon_sym_inline] = ACTIONS(1360), + [anon_sym___inline] = ACTIONS(1360), + [anon_sym___inline__] = ACTIONS(1360), + [anon_sym___forceinline] = ACTIONS(1360), + [anon_sym_thread_local] = ACTIONS(1360), + [anon_sym___thread] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_constexpr] = ACTIONS(1360), + [anon_sym_volatile] = ACTIONS(1360), + [anon_sym_restrict] = ACTIONS(1360), + [anon_sym___restrict__] = ACTIONS(1360), + [anon_sym__Atomic] = ACTIONS(1360), + [anon_sym__Noreturn] = ACTIONS(1360), + [anon_sym_noreturn] = ACTIONS(1360), + [sym_primitive_type] = ACTIONS(1360), + [anon_sym_enum] = ACTIONS(1360), + [anon_sym_struct] = ACTIONS(1360), + [anon_sym_union] = ACTIONS(1360), + [anon_sym_if] = ACTIONS(1360), + [anon_sym_else] = ACTIONS(1360), + [anon_sym_switch] = ACTIONS(1360), + [anon_sym_case] = ACTIONS(1360), + [anon_sym_default] = ACTIONS(1360), + [anon_sym_while] = ACTIONS(1360), + [anon_sym_do] = ACTIONS(1360), + [anon_sym_for] = ACTIONS(1360), + [anon_sym_return] = ACTIONS(1360), + [anon_sym_break] = ACTIONS(1360), + [anon_sym_continue] = ACTIONS(1360), + [anon_sym_goto] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1362), + [anon_sym_PLUS_PLUS] = ACTIONS(1362), + [anon_sym_sizeof] = ACTIONS(1360), + [anon_sym___alignof__] = ACTIONS(1360), + [anon_sym___alignof] = ACTIONS(1360), + [anon_sym__alignof] = ACTIONS(1360), + [anon_sym_alignof] = ACTIONS(1360), + [anon_sym__Alignof] = ACTIONS(1360), + [anon_sym_offsetof] = ACTIONS(1360), + [anon_sym___builtin_va_arg] = ACTIONS(1360), + [anon_sym__Generic] = ACTIONS(1360), + [anon_sym_asm] = ACTIONS(1360), + [anon_sym___asm__] = ACTIONS(1360), + [sym_number_literal] = ACTIONS(1362), + [anon_sym_L_SQUOTE] = ACTIONS(1362), + [anon_sym_u_SQUOTE] = ACTIONS(1362), + [anon_sym_U_SQUOTE] = ACTIONS(1362), + [anon_sym_u8_SQUOTE] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_L_DQUOTE] = ACTIONS(1362), + [anon_sym_u_DQUOTE] = ACTIONS(1362), + [anon_sym_U_DQUOTE] = ACTIONS(1362), + [anon_sym_u8_DQUOTE] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym_true] = ACTIONS(1360), + [sym_false] = ACTIONS(1360), + [anon_sym_NULL] = ACTIONS(1360), + [anon_sym_nullptr] = ACTIONS(1360), [sym_comment] = ACTIONS(3), }, - [198] = { - [sym_identifier] = ACTIONS(1304), - [aux_sym_preproc_include_token1] = ACTIONS(1304), - [aux_sym_preproc_def_token1] = ACTIONS(1304), - [aux_sym_preproc_if_token1] = ACTIONS(1304), - [aux_sym_preproc_if_token2] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), - [aux_sym_preproc_else_token1] = ACTIONS(1304), - [aux_sym_preproc_elif_token1] = ACTIONS(1304), - [sym_preproc_directive] = ACTIONS(1304), - [anon_sym_LPAREN2] = ACTIONS(1306), - [anon_sym_BANG] = ACTIONS(1306), - [anon_sym_TILDE] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1304), - [anon_sym_extern] = ACTIONS(1304), - [anon_sym___attribute__] = ACTIONS(1304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), - [anon_sym___declspec] = ACTIONS(1304), - [anon_sym___cdecl] = ACTIONS(1304), - [anon_sym___clrcall] = ACTIONS(1304), - [anon_sym___stdcall] = ACTIONS(1304), - [anon_sym___fastcall] = ACTIONS(1304), - [anon_sym___thiscall] = ACTIONS(1304), - [anon_sym___vectorcall] = ACTIONS(1304), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_signed] = ACTIONS(1304), - [anon_sym_unsigned] = ACTIONS(1304), - [anon_sym_long] = ACTIONS(1304), - [anon_sym_short] = ACTIONS(1304), - [anon_sym_static] = ACTIONS(1304), - [anon_sym_auto] = ACTIONS(1304), - [anon_sym_register] = ACTIONS(1304), - [anon_sym_inline] = ACTIONS(1304), - [anon_sym_thread_local] = ACTIONS(1304), - [anon_sym___thread] = ACTIONS(1304), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_constexpr] = ACTIONS(1304), - [anon_sym_volatile] = ACTIONS(1304), - [anon_sym_restrict] = ACTIONS(1304), - [anon_sym___restrict__] = ACTIONS(1304), - [anon_sym__Atomic] = ACTIONS(1304), - [anon_sym__Noreturn] = ACTIONS(1304), - [anon_sym_noreturn] = ACTIONS(1304), - [sym_primitive_type] = ACTIONS(1304), - [anon_sym_enum] = ACTIONS(1304), - [anon_sym_struct] = ACTIONS(1304), - [anon_sym_union] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1304), - [anon_sym_else] = ACTIONS(1304), - [anon_sym_switch] = ACTIONS(1304), - [anon_sym_case] = ACTIONS(1304), - [anon_sym_default] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1304), - [anon_sym_do] = ACTIONS(1304), - [anon_sym_for] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1304), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_goto] = ACTIONS(1304), - [anon_sym_DASH_DASH] = ACTIONS(1306), - [anon_sym_PLUS_PLUS] = ACTIONS(1306), - [anon_sym_sizeof] = ACTIONS(1304), - [anon_sym_offsetof] = ACTIONS(1304), - [anon_sym__Generic] = ACTIONS(1304), - [anon_sym_asm] = ACTIONS(1304), - [anon_sym___asm__] = ACTIONS(1304), - [sym_number_literal] = ACTIONS(1306), - [anon_sym_L_SQUOTE] = ACTIONS(1306), - [anon_sym_u_SQUOTE] = ACTIONS(1306), - [anon_sym_U_SQUOTE] = ACTIONS(1306), - [anon_sym_u8_SQUOTE] = ACTIONS(1306), - [anon_sym_SQUOTE] = ACTIONS(1306), - [anon_sym_L_DQUOTE] = ACTIONS(1306), - [anon_sym_u_DQUOTE] = ACTIONS(1306), - [anon_sym_U_DQUOTE] = ACTIONS(1306), - [anon_sym_u8_DQUOTE] = ACTIONS(1306), - [anon_sym_DQUOTE] = ACTIONS(1306), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [anon_sym_NULL] = ACTIONS(1304), - [anon_sym_nullptr] = ACTIONS(1304), + [204] = { + [sym_identifier] = ACTIONS(1260), + [aux_sym_preproc_include_token1] = ACTIONS(1260), + [aux_sym_preproc_def_token1] = ACTIONS(1260), + [aux_sym_preproc_if_token1] = ACTIONS(1260), + [aux_sym_preproc_if_token2] = ACTIONS(1260), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1260), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1260), + [aux_sym_preproc_else_token1] = ACTIONS(1260), + [aux_sym_preproc_elif_token1] = ACTIONS(1260), + [sym_preproc_directive] = ACTIONS(1260), + [anon_sym_LPAREN2] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_STAR] = ACTIONS(1262), + [anon_sym_AMP] = ACTIONS(1262), + [anon_sym_SEMI] = ACTIONS(1262), + [anon_sym___extension__] = ACTIONS(1260), + [anon_sym_typedef] = ACTIONS(1260), + [anon_sym_extern] = ACTIONS(1260), + [anon_sym___attribute__] = ACTIONS(1260), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1262), + [anon_sym___declspec] = ACTIONS(1260), + [anon_sym___cdecl] = ACTIONS(1260), + [anon_sym___clrcall] = ACTIONS(1260), + [anon_sym___stdcall] = ACTIONS(1260), + [anon_sym___fastcall] = ACTIONS(1260), + [anon_sym___thiscall] = ACTIONS(1260), + [anon_sym___vectorcall] = ACTIONS(1260), + [anon_sym_LBRACE] = ACTIONS(1262), + [anon_sym_signed] = ACTIONS(1260), + [anon_sym_unsigned] = ACTIONS(1260), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_short] = ACTIONS(1260), + [anon_sym_static] = ACTIONS(1260), + [anon_sym_auto] = ACTIONS(1260), + [anon_sym_register] = ACTIONS(1260), + [anon_sym_inline] = ACTIONS(1260), + [anon_sym___inline] = ACTIONS(1260), + [anon_sym___inline__] = ACTIONS(1260), + [anon_sym___forceinline] = ACTIONS(1260), + [anon_sym_thread_local] = ACTIONS(1260), + [anon_sym___thread] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1260), + [anon_sym_constexpr] = ACTIONS(1260), + [anon_sym_volatile] = ACTIONS(1260), + [anon_sym_restrict] = ACTIONS(1260), + [anon_sym___restrict__] = ACTIONS(1260), + [anon_sym__Atomic] = ACTIONS(1260), + [anon_sym__Noreturn] = ACTIONS(1260), + [anon_sym_noreturn] = ACTIONS(1260), + [sym_primitive_type] = ACTIONS(1260), + [anon_sym_enum] = ACTIONS(1260), + [anon_sym_struct] = ACTIONS(1260), + [anon_sym_union] = ACTIONS(1260), + [anon_sym_if] = ACTIONS(1260), + [anon_sym_else] = ACTIONS(1260), + [anon_sym_switch] = ACTIONS(1260), + [anon_sym_case] = ACTIONS(1260), + [anon_sym_default] = ACTIONS(1260), + [anon_sym_while] = ACTIONS(1260), + [anon_sym_do] = ACTIONS(1260), + [anon_sym_for] = ACTIONS(1260), + [anon_sym_return] = ACTIONS(1260), + [anon_sym_break] = ACTIONS(1260), + [anon_sym_continue] = ACTIONS(1260), + [anon_sym_goto] = ACTIONS(1260), + [anon_sym_DASH_DASH] = ACTIONS(1262), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1260), + [anon_sym___alignof__] = ACTIONS(1260), + [anon_sym___alignof] = ACTIONS(1260), + [anon_sym__alignof] = ACTIONS(1260), + [anon_sym_alignof] = ACTIONS(1260), + [anon_sym__Alignof] = ACTIONS(1260), + [anon_sym_offsetof] = ACTIONS(1260), + [anon_sym___builtin_va_arg] = ACTIONS(1260), + [anon_sym__Generic] = ACTIONS(1260), + [anon_sym_asm] = ACTIONS(1260), + [anon_sym___asm__] = ACTIONS(1260), + [sym_number_literal] = ACTIONS(1262), + [anon_sym_L_SQUOTE] = ACTIONS(1262), + [anon_sym_u_SQUOTE] = ACTIONS(1262), + [anon_sym_U_SQUOTE] = ACTIONS(1262), + [anon_sym_u8_SQUOTE] = ACTIONS(1262), + [anon_sym_SQUOTE] = ACTIONS(1262), + [anon_sym_L_DQUOTE] = ACTIONS(1262), + [anon_sym_u_DQUOTE] = ACTIONS(1262), + [anon_sym_U_DQUOTE] = ACTIONS(1262), + [anon_sym_u8_DQUOTE] = ACTIONS(1262), + [anon_sym_DQUOTE] = ACTIONS(1262), + [sym_true] = ACTIONS(1260), + [sym_false] = ACTIONS(1260), + [anon_sym_NULL] = ACTIONS(1260), + [anon_sym_nullptr] = ACTIONS(1260), [sym_comment] = ACTIONS(3), }, - [199] = { - [sym_identifier] = ACTIONS(1308), - [aux_sym_preproc_include_token1] = ACTIONS(1308), - [aux_sym_preproc_def_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token2] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), - [aux_sym_preproc_else_token1] = ACTIONS(1308), - [aux_sym_preproc_elif_token1] = ACTIONS(1308), - [sym_preproc_directive] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym___attribute__] = ACTIONS(1308), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), - [anon_sym___declspec] = ACTIONS(1308), - [anon_sym___cdecl] = ACTIONS(1308), - [anon_sym___clrcall] = ACTIONS(1308), - [anon_sym___stdcall] = ACTIONS(1308), - [anon_sym___fastcall] = ACTIONS(1308), - [anon_sym___thiscall] = ACTIONS(1308), - [anon_sym___vectorcall] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_signed] = ACTIONS(1308), - [anon_sym_unsigned] = ACTIONS(1308), - [anon_sym_long] = ACTIONS(1308), - [anon_sym_short] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1308), - [anon_sym_auto] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_inline] = ACTIONS(1308), - [anon_sym_thread_local] = ACTIONS(1308), - [anon_sym___thread] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_constexpr] = ACTIONS(1308), - [anon_sym_volatile] = ACTIONS(1308), - [anon_sym_restrict] = ACTIONS(1308), - [anon_sym___restrict__] = ACTIONS(1308), - [anon_sym__Atomic] = ACTIONS(1308), - [anon_sym__Noreturn] = ACTIONS(1308), - [anon_sym_noreturn] = ACTIONS(1308), - [sym_primitive_type] = ACTIONS(1308), - [anon_sym_enum] = ACTIONS(1308), - [anon_sym_struct] = ACTIONS(1308), - [anon_sym_union] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_else] = ACTIONS(1308), - [anon_sym_switch] = ACTIONS(1308), - [anon_sym_case] = ACTIONS(1308), - [anon_sym_default] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_goto] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_sizeof] = ACTIONS(1308), - [anon_sym_offsetof] = ACTIONS(1308), - [anon_sym__Generic] = ACTIONS(1308), - [anon_sym_asm] = ACTIONS(1308), - [anon_sym___asm__] = ACTIONS(1308), - [sym_number_literal] = ACTIONS(1310), - [anon_sym_L_SQUOTE] = ACTIONS(1310), - [anon_sym_u_SQUOTE] = ACTIONS(1310), - [anon_sym_U_SQUOTE] = ACTIONS(1310), - [anon_sym_u8_SQUOTE] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [anon_sym_L_DQUOTE] = ACTIONS(1310), - [anon_sym_u_DQUOTE] = ACTIONS(1310), - [anon_sym_U_DQUOTE] = ACTIONS(1310), - [anon_sym_u8_DQUOTE] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym_true] = ACTIONS(1308), - [sym_false] = ACTIONS(1308), - [anon_sym_NULL] = ACTIONS(1308), - [anon_sym_nullptr] = ACTIONS(1308), + [205] = { + [sym_identifier] = ACTIONS(1264), + [aux_sym_preproc_include_token1] = ACTIONS(1264), + [aux_sym_preproc_def_token1] = ACTIONS(1264), + [aux_sym_preproc_if_token1] = ACTIONS(1264), + [aux_sym_preproc_if_token2] = ACTIONS(1264), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1264), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1264), + [aux_sym_preproc_else_token1] = ACTIONS(1264), + [aux_sym_preproc_elif_token1] = ACTIONS(1264), + [sym_preproc_directive] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(1266), + [anon_sym_BANG] = ACTIONS(1266), + [anon_sym_TILDE] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1264), + [anon_sym_PLUS] = ACTIONS(1264), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_AMP] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1266), + [anon_sym___extension__] = ACTIONS(1264), + [anon_sym_typedef] = ACTIONS(1264), + [anon_sym_extern] = ACTIONS(1264), + [anon_sym___attribute__] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1266), + [anon_sym___declspec] = ACTIONS(1264), + [anon_sym___cdecl] = ACTIONS(1264), + [anon_sym___clrcall] = ACTIONS(1264), + [anon_sym___stdcall] = ACTIONS(1264), + [anon_sym___fastcall] = ACTIONS(1264), + [anon_sym___thiscall] = ACTIONS(1264), + [anon_sym___vectorcall] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_signed] = ACTIONS(1264), + [anon_sym_unsigned] = ACTIONS(1264), + [anon_sym_long] = ACTIONS(1264), + [anon_sym_short] = ACTIONS(1264), + [anon_sym_static] = ACTIONS(1264), + [anon_sym_auto] = ACTIONS(1264), + [anon_sym_register] = ACTIONS(1264), + [anon_sym_inline] = ACTIONS(1264), + [anon_sym___inline] = ACTIONS(1264), + [anon_sym___inline__] = ACTIONS(1264), + [anon_sym___forceinline] = ACTIONS(1264), + [anon_sym_thread_local] = ACTIONS(1264), + [anon_sym___thread] = ACTIONS(1264), + [anon_sym_const] = ACTIONS(1264), + [anon_sym_constexpr] = ACTIONS(1264), + [anon_sym_volatile] = ACTIONS(1264), + [anon_sym_restrict] = ACTIONS(1264), + [anon_sym___restrict__] = ACTIONS(1264), + [anon_sym__Atomic] = ACTIONS(1264), + [anon_sym__Noreturn] = ACTIONS(1264), + [anon_sym_noreturn] = ACTIONS(1264), + [sym_primitive_type] = ACTIONS(1264), + [anon_sym_enum] = ACTIONS(1264), + [anon_sym_struct] = ACTIONS(1264), + [anon_sym_union] = ACTIONS(1264), + [anon_sym_if] = ACTIONS(1264), + [anon_sym_else] = ACTIONS(1264), + [anon_sym_switch] = ACTIONS(1264), + [anon_sym_case] = ACTIONS(1264), + [anon_sym_default] = ACTIONS(1264), + [anon_sym_while] = ACTIONS(1264), + [anon_sym_do] = ACTIONS(1264), + [anon_sym_for] = ACTIONS(1264), + [anon_sym_return] = ACTIONS(1264), + [anon_sym_break] = ACTIONS(1264), + [anon_sym_continue] = ACTIONS(1264), + [anon_sym_goto] = ACTIONS(1264), + [anon_sym_DASH_DASH] = ACTIONS(1266), + [anon_sym_PLUS_PLUS] = ACTIONS(1266), + [anon_sym_sizeof] = ACTIONS(1264), + [anon_sym___alignof__] = ACTIONS(1264), + [anon_sym___alignof] = ACTIONS(1264), + [anon_sym__alignof] = ACTIONS(1264), + [anon_sym_alignof] = ACTIONS(1264), + [anon_sym__Alignof] = ACTIONS(1264), + [anon_sym_offsetof] = ACTIONS(1264), + [anon_sym___builtin_va_arg] = ACTIONS(1264), + [anon_sym__Generic] = ACTIONS(1264), + [anon_sym_asm] = ACTIONS(1264), + [anon_sym___asm__] = ACTIONS(1264), + [sym_number_literal] = ACTIONS(1266), + [anon_sym_L_SQUOTE] = ACTIONS(1266), + [anon_sym_u_SQUOTE] = ACTIONS(1266), + [anon_sym_U_SQUOTE] = ACTIONS(1266), + [anon_sym_u8_SQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1266), + [anon_sym_L_DQUOTE] = ACTIONS(1266), + [anon_sym_u_DQUOTE] = ACTIONS(1266), + [anon_sym_U_DQUOTE] = ACTIONS(1266), + [anon_sym_u8_DQUOTE] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym_true] = ACTIONS(1264), + [sym_false] = ACTIONS(1264), + [anon_sym_NULL] = ACTIONS(1264), + [anon_sym_nullptr] = ACTIONS(1264), [sym_comment] = ACTIONS(3), }, - [200] = { - [sym_identifier] = ACTIONS(1406), - [aux_sym_preproc_include_token1] = ACTIONS(1406), - [aux_sym_preproc_def_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token2] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), - [aux_sym_preproc_else_token1] = ACTIONS(1406), - [aux_sym_preproc_elif_token1] = ACTIONS(1406), - [sym_preproc_directive] = ACTIONS(1406), - [anon_sym_LPAREN2] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym_typedef] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym___attribute__] = ACTIONS(1406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), - [anon_sym___declspec] = ACTIONS(1406), - [anon_sym___cdecl] = ACTIONS(1406), - [anon_sym___clrcall] = ACTIONS(1406), - [anon_sym___stdcall] = ACTIONS(1406), - [anon_sym___fastcall] = ACTIONS(1406), - [anon_sym___thiscall] = ACTIONS(1406), - [anon_sym___vectorcall] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_auto] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym_thread_local] = ACTIONS(1406), - [anon_sym___thread] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_constexpr] = ACTIONS(1406), - [anon_sym_volatile] = ACTIONS(1406), - [anon_sym_restrict] = ACTIONS(1406), - [anon_sym___restrict__] = ACTIONS(1406), - [anon_sym__Atomic] = ACTIONS(1406), - [anon_sym__Noreturn] = ACTIONS(1406), - [anon_sym_noreturn] = ACTIONS(1406), - [sym_primitive_type] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_union] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_case] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_goto] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_sizeof] = ACTIONS(1406), - [anon_sym_offsetof] = ACTIONS(1406), - [anon_sym__Generic] = ACTIONS(1406), - [anon_sym_asm] = ACTIONS(1406), - [anon_sym___asm__] = ACTIONS(1406), - [sym_number_literal] = ACTIONS(1408), - [anon_sym_L_SQUOTE] = ACTIONS(1408), - [anon_sym_u_SQUOTE] = ACTIONS(1408), - [anon_sym_U_SQUOTE] = ACTIONS(1408), - [anon_sym_u8_SQUOTE] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_L_DQUOTE] = ACTIONS(1408), - [anon_sym_u_DQUOTE] = ACTIONS(1408), - [anon_sym_U_DQUOTE] = ACTIONS(1408), - [anon_sym_u8_DQUOTE] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [sym_true] = ACTIONS(1406), - [sym_false] = ACTIONS(1406), - [anon_sym_NULL] = ACTIONS(1406), - [anon_sym_nullptr] = ACTIONS(1406), + [206] = { + [sym_identifier] = ACTIONS(1268), + [aux_sym_preproc_include_token1] = ACTIONS(1268), + [aux_sym_preproc_def_token1] = ACTIONS(1268), + [aux_sym_preproc_if_token1] = ACTIONS(1268), + [aux_sym_preproc_if_token2] = ACTIONS(1268), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1268), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1268), + [aux_sym_preproc_else_token1] = ACTIONS(1268), + [aux_sym_preproc_elif_token1] = ACTIONS(1268), + [sym_preproc_directive] = ACTIONS(1268), + [anon_sym_LPAREN2] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1270), + [anon_sym_TILDE] = ACTIONS(1270), + [anon_sym_DASH] = ACTIONS(1268), + [anon_sym_PLUS] = ACTIONS(1268), + [anon_sym_STAR] = ACTIONS(1270), + [anon_sym_AMP] = ACTIONS(1270), + [anon_sym_SEMI] = ACTIONS(1270), + [anon_sym___extension__] = ACTIONS(1268), + [anon_sym_typedef] = ACTIONS(1268), + [anon_sym_extern] = ACTIONS(1268), + [anon_sym___attribute__] = ACTIONS(1268), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1270), + [anon_sym___declspec] = ACTIONS(1268), + [anon_sym___cdecl] = ACTIONS(1268), + [anon_sym___clrcall] = ACTIONS(1268), + [anon_sym___stdcall] = ACTIONS(1268), + [anon_sym___fastcall] = ACTIONS(1268), + [anon_sym___thiscall] = ACTIONS(1268), + [anon_sym___vectorcall] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_signed] = ACTIONS(1268), + [anon_sym_unsigned] = ACTIONS(1268), + [anon_sym_long] = ACTIONS(1268), + [anon_sym_short] = ACTIONS(1268), + [anon_sym_static] = ACTIONS(1268), + [anon_sym_auto] = ACTIONS(1268), + [anon_sym_register] = ACTIONS(1268), + [anon_sym_inline] = ACTIONS(1268), + [anon_sym___inline] = ACTIONS(1268), + [anon_sym___inline__] = ACTIONS(1268), + [anon_sym___forceinline] = ACTIONS(1268), + [anon_sym_thread_local] = ACTIONS(1268), + [anon_sym___thread] = ACTIONS(1268), + [anon_sym_const] = ACTIONS(1268), + [anon_sym_constexpr] = ACTIONS(1268), + [anon_sym_volatile] = ACTIONS(1268), + [anon_sym_restrict] = ACTIONS(1268), + [anon_sym___restrict__] = ACTIONS(1268), + [anon_sym__Atomic] = ACTIONS(1268), + [anon_sym__Noreturn] = ACTIONS(1268), + [anon_sym_noreturn] = ACTIONS(1268), + [sym_primitive_type] = ACTIONS(1268), + [anon_sym_enum] = ACTIONS(1268), + [anon_sym_struct] = ACTIONS(1268), + [anon_sym_union] = ACTIONS(1268), + [anon_sym_if] = ACTIONS(1268), + [anon_sym_else] = ACTIONS(1268), + [anon_sym_switch] = ACTIONS(1268), + [anon_sym_case] = ACTIONS(1268), + [anon_sym_default] = ACTIONS(1268), + [anon_sym_while] = ACTIONS(1268), + [anon_sym_do] = ACTIONS(1268), + [anon_sym_for] = ACTIONS(1268), + [anon_sym_return] = ACTIONS(1268), + [anon_sym_break] = ACTIONS(1268), + [anon_sym_continue] = ACTIONS(1268), + [anon_sym_goto] = ACTIONS(1268), + [anon_sym_DASH_DASH] = ACTIONS(1270), + [anon_sym_PLUS_PLUS] = ACTIONS(1270), + [anon_sym_sizeof] = ACTIONS(1268), + [anon_sym___alignof__] = ACTIONS(1268), + [anon_sym___alignof] = ACTIONS(1268), + [anon_sym__alignof] = ACTIONS(1268), + [anon_sym_alignof] = ACTIONS(1268), + [anon_sym__Alignof] = ACTIONS(1268), + [anon_sym_offsetof] = ACTIONS(1268), + [anon_sym___builtin_va_arg] = ACTIONS(1268), + [anon_sym__Generic] = ACTIONS(1268), + [anon_sym_asm] = ACTIONS(1268), + [anon_sym___asm__] = ACTIONS(1268), + [sym_number_literal] = ACTIONS(1270), + [anon_sym_L_SQUOTE] = ACTIONS(1270), + [anon_sym_u_SQUOTE] = ACTIONS(1270), + [anon_sym_U_SQUOTE] = ACTIONS(1270), + [anon_sym_u8_SQUOTE] = ACTIONS(1270), + [anon_sym_SQUOTE] = ACTIONS(1270), + [anon_sym_L_DQUOTE] = ACTIONS(1270), + [anon_sym_u_DQUOTE] = ACTIONS(1270), + [anon_sym_U_DQUOTE] = ACTIONS(1270), + [anon_sym_u8_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1270), + [sym_true] = ACTIONS(1268), + [sym_false] = ACTIONS(1268), + [anon_sym_NULL] = ACTIONS(1268), + [anon_sym_nullptr] = ACTIONS(1268), [sym_comment] = ACTIONS(3), }, - [201] = { - [sym_identifier] = ACTIONS(1388), - [aux_sym_preproc_include_token1] = ACTIONS(1388), - [aux_sym_preproc_def_token1] = ACTIONS(1388), - [aux_sym_preproc_if_token1] = ACTIONS(1388), - [aux_sym_preproc_if_token2] = ACTIONS(1388), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1388), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1388), - [aux_sym_preproc_else_token1] = ACTIONS(1388), - [aux_sym_preproc_elif_token1] = ACTIONS(1388), - [sym_preproc_directive] = ACTIONS(1388), - [anon_sym_LPAREN2] = ACTIONS(1390), - [anon_sym_BANG] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1388), - [anon_sym_PLUS] = ACTIONS(1388), - [anon_sym_STAR] = ACTIONS(1390), - [anon_sym_AMP] = ACTIONS(1390), - [anon_sym_SEMI] = ACTIONS(1390), - [anon_sym_typedef] = ACTIONS(1388), - [anon_sym_extern] = ACTIONS(1388), - [anon_sym___attribute__] = ACTIONS(1388), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1390), - [anon_sym___declspec] = ACTIONS(1388), - [anon_sym___cdecl] = ACTIONS(1388), - [anon_sym___clrcall] = ACTIONS(1388), - [anon_sym___stdcall] = ACTIONS(1388), - [anon_sym___fastcall] = ACTIONS(1388), - [anon_sym___thiscall] = ACTIONS(1388), - [anon_sym___vectorcall] = ACTIONS(1388), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_signed] = ACTIONS(1388), - [anon_sym_unsigned] = ACTIONS(1388), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_short] = ACTIONS(1388), - [anon_sym_static] = ACTIONS(1388), - [anon_sym_auto] = ACTIONS(1388), - [anon_sym_register] = ACTIONS(1388), - [anon_sym_inline] = ACTIONS(1388), - [anon_sym_thread_local] = ACTIONS(1388), - [anon_sym___thread] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1388), - [anon_sym_constexpr] = ACTIONS(1388), - [anon_sym_volatile] = ACTIONS(1388), - [anon_sym_restrict] = ACTIONS(1388), - [anon_sym___restrict__] = ACTIONS(1388), - [anon_sym__Atomic] = ACTIONS(1388), - [anon_sym__Noreturn] = ACTIONS(1388), - [anon_sym_noreturn] = ACTIONS(1388), - [sym_primitive_type] = ACTIONS(1388), - [anon_sym_enum] = ACTIONS(1388), - [anon_sym_struct] = ACTIONS(1388), - [anon_sym_union] = ACTIONS(1388), - [anon_sym_if] = ACTIONS(1388), - [anon_sym_switch] = ACTIONS(1388), - [anon_sym_case] = ACTIONS(1388), - [anon_sym_default] = ACTIONS(1388), - [anon_sym_while] = ACTIONS(1388), - [anon_sym_do] = ACTIONS(1388), - [anon_sym_for] = ACTIONS(1388), - [anon_sym_return] = ACTIONS(1388), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1388), - [anon_sym_goto] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1390), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1388), - [anon_sym_offsetof] = ACTIONS(1388), - [anon_sym__Generic] = ACTIONS(1388), - [anon_sym_asm] = ACTIONS(1388), - [anon_sym___asm__] = ACTIONS(1388), - [sym_number_literal] = ACTIONS(1390), - [anon_sym_L_SQUOTE] = ACTIONS(1390), - [anon_sym_u_SQUOTE] = ACTIONS(1390), - [anon_sym_U_SQUOTE] = ACTIONS(1390), - [anon_sym_u8_SQUOTE] = ACTIONS(1390), - [anon_sym_SQUOTE] = ACTIONS(1390), - [anon_sym_L_DQUOTE] = ACTIONS(1390), - [anon_sym_u_DQUOTE] = ACTIONS(1390), - [anon_sym_U_DQUOTE] = ACTIONS(1390), - [anon_sym_u8_DQUOTE] = ACTIONS(1390), - [anon_sym_DQUOTE] = ACTIONS(1390), - [sym_true] = ACTIONS(1388), - [sym_false] = ACTIONS(1388), - [anon_sym_NULL] = ACTIONS(1388), - [anon_sym_nullptr] = ACTIONS(1388), + [207] = { + [sym_identifier] = ACTIONS(1424), + [aux_sym_preproc_include_token1] = ACTIONS(1424), + [aux_sym_preproc_def_token1] = ACTIONS(1424), + [aux_sym_preproc_if_token1] = ACTIONS(1424), + [aux_sym_preproc_if_token2] = ACTIONS(1424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), + [aux_sym_preproc_else_token1] = ACTIONS(1424), + [aux_sym_preproc_elif_token1] = ACTIONS(1424), + [sym_preproc_directive] = ACTIONS(1424), + [anon_sym_LPAREN2] = ACTIONS(1426), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym___extension__] = ACTIONS(1424), + [anon_sym_typedef] = ACTIONS(1424), + [anon_sym_extern] = ACTIONS(1424), + [anon_sym___attribute__] = ACTIONS(1424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1426), + [anon_sym___declspec] = ACTIONS(1424), + [anon_sym___cdecl] = ACTIONS(1424), + [anon_sym___clrcall] = ACTIONS(1424), + [anon_sym___stdcall] = ACTIONS(1424), + [anon_sym___fastcall] = ACTIONS(1424), + [anon_sym___thiscall] = ACTIONS(1424), + [anon_sym___vectorcall] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_signed] = ACTIONS(1424), + [anon_sym_unsigned] = ACTIONS(1424), + [anon_sym_long] = ACTIONS(1424), + [anon_sym_short] = ACTIONS(1424), + [anon_sym_static] = ACTIONS(1424), + [anon_sym_auto] = ACTIONS(1424), + [anon_sym_register] = ACTIONS(1424), + [anon_sym_inline] = ACTIONS(1424), + [anon_sym___inline] = ACTIONS(1424), + [anon_sym___inline__] = ACTIONS(1424), + [anon_sym___forceinline] = ACTIONS(1424), + [anon_sym_thread_local] = ACTIONS(1424), + [anon_sym___thread] = ACTIONS(1424), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_constexpr] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_restrict] = ACTIONS(1424), + [anon_sym___restrict__] = ACTIONS(1424), + [anon_sym__Atomic] = ACTIONS(1424), + [anon_sym__Noreturn] = ACTIONS(1424), + [anon_sym_noreturn] = ACTIONS(1424), + [sym_primitive_type] = ACTIONS(1424), + [anon_sym_enum] = ACTIONS(1424), + [anon_sym_struct] = ACTIONS(1424), + [anon_sym_union] = ACTIONS(1424), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_else] = ACTIONS(1424), + [anon_sym_switch] = ACTIONS(1424), + [anon_sym_case] = ACTIONS(1424), + [anon_sym_default] = ACTIONS(1424), + [anon_sym_while] = ACTIONS(1424), + [anon_sym_do] = ACTIONS(1424), + [anon_sym_for] = ACTIONS(1424), + [anon_sym_return] = ACTIONS(1424), + [anon_sym_break] = ACTIONS(1424), + [anon_sym_continue] = ACTIONS(1424), + [anon_sym_goto] = ACTIONS(1424), + [anon_sym_DASH_DASH] = ACTIONS(1426), + [anon_sym_PLUS_PLUS] = ACTIONS(1426), + [anon_sym_sizeof] = ACTIONS(1424), + [anon_sym___alignof__] = ACTIONS(1424), + [anon_sym___alignof] = ACTIONS(1424), + [anon_sym__alignof] = ACTIONS(1424), + [anon_sym_alignof] = ACTIONS(1424), + [anon_sym__Alignof] = ACTIONS(1424), + [anon_sym_offsetof] = ACTIONS(1424), + [anon_sym___builtin_va_arg] = ACTIONS(1424), + [anon_sym__Generic] = ACTIONS(1424), + [anon_sym_asm] = ACTIONS(1424), + [anon_sym___asm__] = ACTIONS(1424), + [sym_number_literal] = ACTIONS(1426), + [anon_sym_L_SQUOTE] = ACTIONS(1426), + [anon_sym_u_SQUOTE] = ACTIONS(1426), + [anon_sym_U_SQUOTE] = ACTIONS(1426), + [anon_sym_u8_SQUOTE] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1426), + [anon_sym_L_DQUOTE] = ACTIONS(1426), + [anon_sym_u_DQUOTE] = ACTIONS(1426), + [anon_sym_U_DQUOTE] = ACTIONS(1426), + [anon_sym_u8_DQUOTE] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [sym_true] = ACTIONS(1424), + [sym_false] = ACTIONS(1424), + [anon_sym_NULL] = ACTIONS(1424), + [anon_sym_nullptr] = ACTIONS(1424), [sym_comment] = ACTIONS(3), }, - [202] = { - [sym_identifier] = ACTIONS(1384), - [aux_sym_preproc_include_token1] = ACTIONS(1384), - [aux_sym_preproc_def_token1] = ACTIONS(1384), - [aux_sym_preproc_if_token1] = ACTIONS(1384), - [aux_sym_preproc_if_token2] = ACTIONS(1384), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1384), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1384), - [aux_sym_preproc_else_token1] = ACTIONS(1384), - [aux_sym_preproc_elif_token1] = ACTIONS(1384), - [sym_preproc_directive] = ACTIONS(1384), - [anon_sym_LPAREN2] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1384), - [anon_sym_STAR] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1386), - [anon_sym_typedef] = ACTIONS(1384), - [anon_sym_extern] = ACTIONS(1384), - [anon_sym___attribute__] = ACTIONS(1384), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1386), - [anon_sym___declspec] = ACTIONS(1384), - [anon_sym___cdecl] = ACTIONS(1384), - [anon_sym___clrcall] = ACTIONS(1384), - [anon_sym___stdcall] = ACTIONS(1384), - [anon_sym___fastcall] = ACTIONS(1384), - [anon_sym___thiscall] = ACTIONS(1384), - [anon_sym___vectorcall] = ACTIONS(1384), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_long] = ACTIONS(1384), - [anon_sym_short] = ACTIONS(1384), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_auto] = ACTIONS(1384), - [anon_sym_register] = ACTIONS(1384), - [anon_sym_inline] = ACTIONS(1384), - [anon_sym_thread_local] = ACTIONS(1384), - [anon_sym___thread] = ACTIONS(1384), - [anon_sym_const] = ACTIONS(1384), - [anon_sym_constexpr] = ACTIONS(1384), - [anon_sym_volatile] = ACTIONS(1384), - [anon_sym_restrict] = ACTIONS(1384), - [anon_sym___restrict__] = ACTIONS(1384), - [anon_sym__Atomic] = ACTIONS(1384), - [anon_sym__Noreturn] = ACTIONS(1384), - [anon_sym_noreturn] = ACTIONS(1384), - [sym_primitive_type] = ACTIONS(1384), - [anon_sym_enum] = ACTIONS(1384), - [anon_sym_struct] = ACTIONS(1384), - [anon_sym_union] = ACTIONS(1384), - [anon_sym_if] = ACTIONS(1384), - [anon_sym_switch] = ACTIONS(1384), - [anon_sym_case] = ACTIONS(1384), - [anon_sym_default] = ACTIONS(1384), - [anon_sym_while] = ACTIONS(1384), - [anon_sym_do] = ACTIONS(1384), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1384), - [anon_sym_break] = ACTIONS(1384), - [anon_sym_continue] = ACTIONS(1384), - [anon_sym_goto] = ACTIONS(1384), - [anon_sym_DASH_DASH] = ACTIONS(1386), - [anon_sym_PLUS_PLUS] = ACTIONS(1386), - [anon_sym_sizeof] = ACTIONS(1384), - [anon_sym_offsetof] = ACTIONS(1384), - [anon_sym__Generic] = ACTIONS(1384), - [anon_sym_asm] = ACTIONS(1384), - [anon_sym___asm__] = ACTIONS(1384), - [sym_number_literal] = ACTIONS(1386), - [anon_sym_L_SQUOTE] = ACTIONS(1386), - [anon_sym_u_SQUOTE] = ACTIONS(1386), - [anon_sym_U_SQUOTE] = ACTIONS(1386), - [anon_sym_u8_SQUOTE] = ACTIONS(1386), - [anon_sym_SQUOTE] = ACTIONS(1386), - [anon_sym_L_DQUOTE] = ACTIONS(1386), - [anon_sym_u_DQUOTE] = ACTIONS(1386), - [anon_sym_U_DQUOTE] = ACTIONS(1386), - [anon_sym_u8_DQUOTE] = ACTIONS(1386), - [anon_sym_DQUOTE] = ACTIONS(1386), - [sym_true] = ACTIONS(1384), - [sym_false] = ACTIONS(1384), - [anon_sym_NULL] = ACTIONS(1384), - [anon_sym_nullptr] = ACTIONS(1384), + [208] = { + [sym_identifier] = ACTIONS(1272), + [aux_sym_preproc_include_token1] = ACTIONS(1272), + [aux_sym_preproc_def_token1] = ACTIONS(1272), + [aux_sym_preproc_if_token1] = ACTIONS(1272), + [aux_sym_preproc_if_token2] = ACTIONS(1272), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1272), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1272), + [aux_sym_preproc_else_token1] = ACTIONS(1272), + [aux_sym_preproc_elif_token1] = ACTIONS(1272), + [sym_preproc_directive] = ACTIONS(1272), + [anon_sym_LPAREN2] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1274), + [anon_sym_TILDE] = ACTIONS(1274), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_STAR] = ACTIONS(1274), + [anon_sym_AMP] = ACTIONS(1274), + [anon_sym_SEMI] = ACTIONS(1274), + [anon_sym___extension__] = ACTIONS(1272), + [anon_sym_typedef] = ACTIONS(1272), + [anon_sym_extern] = ACTIONS(1272), + [anon_sym___attribute__] = ACTIONS(1272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1274), + [anon_sym___declspec] = ACTIONS(1272), + [anon_sym___cdecl] = ACTIONS(1272), + [anon_sym___clrcall] = ACTIONS(1272), + [anon_sym___stdcall] = ACTIONS(1272), + [anon_sym___fastcall] = ACTIONS(1272), + [anon_sym___thiscall] = ACTIONS(1272), + [anon_sym___vectorcall] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1274), + [anon_sym_signed] = ACTIONS(1272), + [anon_sym_unsigned] = ACTIONS(1272), + [anon_sym_long] = ACTIONS(1272), + [anon_sym_short] = ACTIONS(1272), + [anon_sym_static] = ACTIONS(1272), + [anon_sym_auto] = ACTIONS(1272), + [anon_sym_register] = ACTIONS(1272), + [anon_sym_inline] = ACTIONS(1272), + [anon_sym___inline] = ACTIONS(1272), + [anon_sym___inline__] = ACTIONS(1272), + [anon_sym___forceinline] = ACTIONS(1272), + [anon_sym_thread_local] = ACTIONS(1272), + [anon_sym___thread] = ACTIONS(1272), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_constexpr] = ACTIONS(1272), + [anon_sym_volatile] = ACTIONS(1272), + [anon_sym_restrict] = ACTIONS(1272), + [anon_sym___restrict__] = ACTIONS(1272), + [anon_sym__Atomic] = ACTIONS(1272), + [anon_sym__Noreturn] = ACTIONS(1272), + [anon_sym_noreturn] = ACTIONS(1272), + [sym_primitive_type] = ACTIONS(1272), + [anon_sym_enum] = ACTIONS(1272), + [anon_sym_struct] = ACTIONS(1272), + [anon_sym_union] = ACTIONS(1272), + [anon_sym_if] = ACTIONS(1272), + [anon_sym_else] = ACTIONS(1272), + [anon_sym_switch] = ACTIONS(1272), + [anon_sym_case] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1272), + [anon_sym_while] = ACTIONS(1272), + [anon_sym_do] = ACTIONS(1272), + [anon_sym_for] = ACTIONS(1272), + [anon_sym_return] = ACTIONS(1272), + [anon_sym_break] = ACTIONS(1272), + [anon_sym_continue] = ACTIONS(1272), + [anon_sym_goto] = ACTIONS(1272), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_sizeof] = ACTIONS(1272), + [anon_sym___alignof__] = ACTIONS(1272), + [anon_sym___alignof] = ACTIONS(1272), + [anon_sym__alignof] = ACTIONS(1272), + [anon_sym_alignof] = ACTIONS(1272), + [anon_sym__Alignof] = ACTIONS(1272), + [anon_sym_offsetof] = ACTIONS(1272), + [anon_sym___builtin_va_arg] = ACTIONS(1272), + [anon_sym__Generic] = ACTIONS(1272), + [anon_sym_asm] = ACTIONS(1272), + [anon_sym___asm__] = ACTIONS(1272), + [sym_number_literal] = ACTIONS(1274), + [anon_sym_L_SQUOTE] = ACTIONS(1274), + [anon_sym_u_SQUOTE] = ACTIONS(1274), + [anon_sym_U_SQUOTE] = ACTIONS(1274), + [anon_sym_u8_SQUOTE] = ACTIONS(1274), + [anon_sym_SQUOTE] = ACTIONS(1274), + [anon_sym_L_DQUOTE] = ACTIONS(1274), + [anon_sym_u_DQUOTE] = ACTIONS(1274), + [anon_sym_U_DQUOTE] = ACTIONS(1274), + [anon_sym_u8_DQUOTE] = ACTIONS(1274), + [anon_sym_DQUOTE] = ACTIONS(1274), + [sym_true] = ACTIONS(1272), + [sym_false] = ACTIONS(1272), + [anon_sym_NULL] = ACTIONS(1272), + [anon_sym_nullptr] = ACTIONS(1272), [sym_comment] = ACTIONS(3), }, - [203] = { - [sym_identifier] = ACTIONS(1360), - [aux_sym_preproc_include_token1] = ACTIONS(1360), - [aux_sym_preproc_def_token1] = ACTIONS(1360), - [aux_sym_preproc_if_token1] = ACTIONS(1360), - [aux_sym_preproc_if_token2] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), - [aux_sym_preproc_else_token1] = ACTIONS(1360), - [aux_sym_preproc_elif_token1] = ACTIONS(1360), - [sym_preproc_directive] = ACTIONS(1360), - [anon_sym_LPAREN2] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1362), - [anon_sym_TILDE] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_SEMI] = ACTIONS(1362), - [anon_sym_typedef] = ACTIONS(1360), - [anon_sym_extern] = ACTIONS(1360), - [anon_sym___attribute__] = ACTIONS(1360), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), - [anon_sym___declspec] = ACTIONS(1360), - [anon_sym___cdecl] = ACTIONS(1360), - [anon_sym___clrcall] = ACTIONS(1360), - [anon_sym___stdcall] = ACTIONS(1360), - [anon_sym___fastcall] = ACTIONS(1360), - [anon_sym___thiscall] = ACTIONS(1360), - [anon_sym___vectorcall] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_signed] = ACTIONS(1360), - [anon_sym_unsigned] = ACTIONS(1360), - [anon_sym_long] = ACTIONS(1360), - [anon_sym_short] = ACTIONS(1360), - [anon_sym_static] = ACTIONS(1360), - [anon_sym_auto] = ACTIONS(1360), - [anon_sym_register] = ACTIONS(1360), - [anon_sym_inline] = ACTIONS(1360), - [anon_sym_thread_local] = ACTIONS(1360), - [anon_sym___thread] = ACTIONS(1360), - [anon_sym_const] = ACTIONS(1360), - [anon_sym_constexpr] = ACTIONS(1360), - [anon_sym_volatile] = ACTIONS(1360), - [anon_sym_restrict] = ACTIONS(1360), - [anon_sym___restrict__] = ACTIONS(1360), - [anon_sym__Atomic] = ACTIONS(1360), - [anon_sym__Noreturn] = ACTIONS(1360), - [anon_sym_noreturn] = ACTIONS(1360), - [sym_primitive_type] = ACTIONS(1360), - [anon_sym_enum] = ACTIONS(1360), - [anon_sym_struct] = ACTIONS(1360), - [anon_sym_union] = ACTIONS(1360), - [anon_sym_if] = ACTIONS(1360), - [anon_sym_switch] = ACTIONS(1360), - [anon_sym_case] = ACTIONS(1360), - [anon_sym_default] = ACTIONS(1360), - [anon_sym_while] = ACTIONS(1360), - [anon_sym_do] = ACTIONS(1360), - [anon_sym_for] = ACTIONS(1360), - [anon_sym_return] = ACTIONS(1360), - [anon_sym_break] = ACTIONS(1360), - [anon_sym_continue] = ACTIONS(1360), - [anon_sym_goto] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1360), - [anon_sym_offsetof] = ACTIONS(1360), - [anon_sym__Generic] = ACTIONS(1360), - [anon_sym_asm] = ACTIONS(1360), - [anon_sym___asm__] = ACTIONS(1360), - [sym_number_literal] = ACTIONS(1362), - [anon_sym_L_SQUOTE] = ACTIONS(1362), - [anon_sym_u_SQUOTE] = ACTIONS(1362), - [anon_sym_U_SQUOTE] = ACTIONS(1362), - [anon_sym_u8_SQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1362), - [anon_sym_L_DQUOTE] = ACTIONS(1362), - [anon_sym_u_DQUOTE] = ACTIONS(1362), - [anon_sym_U_DQUOTE] = ACTIONS(1362), - [anon_sym_u8_DQUOTE] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym_true] = ACTIONS(1360), - [sym_false] = ACTIONS(1360), - [anon_sym_NULL] = ACTIONS(1360), - [anon_sym_nullptr] = ACTIONS(1360), + [209] = { + [sym_identifier] = ACTIONS(1276), + [aux_sym_preproc_include_token1] = ACTIONS(1276), + [aux_sym_preproc_def_token1] = ACTIONS(1276), + [aux_sym_preproc_if_token1] = ACTIONS(1276), + [aux_sym_preproc_if_token2] = ACTIONS(1276), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), + [aux_sym_preproc_else_token1] = ACTIONS(1276), + [aux_sym_preproc_elif_token1] = ACTIONS(1276), + [sym_preproc_directive] = ACTIONS(1276), + [anon_sym_LPAREN2] = ACTIONS(1278), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_DASH] = ACTIONS(1276), + [anon_sym_PLUS] = ACTIONS(1276), + [anon_sym_STAR] = ACTIONS(1278), + [anon_sym_AMP] = ACTIONS(1278), + [anon_sym_SEMI] = ACTIONS(1278), + [anon_sym___extension__] = ACTIONS(1276), + [anon_sym_typedef] = ACTIONS(1276), + [anon_sym_extern] = ACTIONS(1276), + [anon_sym___attribute__] = ACTIONS(1276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1278), + [anon_sym___declspec] = ACTIONS(1276), + [anon_sym___cdecl] = ACTIONS(1276), + [anon_sym___clrcall] = ACTIONS(1276), + [anon_sym___stdcall] = ACTIONS(1276), + [anon_sym___fastcall] = ACTIONS(1276), + [anon_sym___thiscall] = ACTIONS(1276), + [anon_sym___vectorcall] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(1278), + [anon_sym_signed] = ACTIONS(1276), + [anon_sym_unsigned] = ACTIONS(1276), + [anon_sym_long] = ACTIONS(1276), + [anon_sym_short] = ACTIONS(1276), + [anon_sym_static] = ACTIONS(1276), + [anon_sym_auto] = ACTIONS(1276), + [anon_sym_register] = ACTIONS(1276), + [anon_sym_inline] = ACTIONS(1276), + [anon_sym___inline] = ACTIONS(1276), + [anon_sym___inline__] = ACTIONS(1276), + [anon_sym___forceinline] = ACTIONS(1276), + [anon_sym_thread_local] = ACTIONS(1276), + [anon_sym___thread] = ACTIONS(1276), + [anon_sym_const] = ACTIONS(1276), + [anon_sym_constexpr] = ACTIONS(1276), + [anon_sym_volatile] = ACTIONS(1276), + [anon_sym_restrict] = ACTIONS(1276), + [anon_sym___restrict__] = ACTIONS(1276), + [anon_sym__Atomic] = ACTIONS(1276), + [anon_sym__Noreturn] = ACTIONS(1276), + [anon_sym_noreturn] = ACTIONS(1276), + [sym_primitive_type] = ACTIONS(1276), + [anon_sym_enum] = ACTIONS(1276), + [anon_sym_struct] = ACTIONS(1276), + [anon_sym_union] = ACTIONS(1276), + [anon_sym_if] = ACTIONS(1276), + [anon_sym_else] = ACTIONS(1276), + [anon_sym_switch] = ACTIONS(1276), + [anon_sym_case] = ACTIONS(1276), + [anon_sym_default] = ACTIONS(1276), + [anon_sym_while] = ACTIONS(1276), + [anon_sym_do] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1276), + [anon_sym_return] = ACTIONS(1276), + [anon_sym_break] = ACTIONS(1276), + [anon_sym_continue] = ACTIONS(1276), + [anon_sym_goto] = ACTIONS(1276), + [anon_sym_DASH_DASH] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1278), + [anon_sym_sizeof] = ACTIONS(1276), + [anon_sym___alignof__] = ACTIONS(1276), + [anon_sym___alignof] = ACTIONS(1276), + [anon_sym__alignof] = ACTIONS(1276), + [anon_sym_alignof] = ACTIONS(1276), + [anon_sym__Alignof] = ACTIONS(1276), + [anon_sym_offsetof] = ACTIONS(1276), + [anon_sym___builtin_va_arg] = ACTIONS(1276), + [anon_sym__Generic] = ACTIONS(1276), + [anon_sym_asm] = ACTIONS(1276), + [anon_sym___asm__] = ACTIONS(1276), + [sym_number_literal] = ACTIONS(1278), + [anon_sym_L_SQUOTE] = ACTIONS(1278), + [anon_sym_u_SQUOTE] = ACTIONS(1278), + [anon_sym_U_SQUOTE] = ACTIONS(1278), + [anon_sym_u8_SQUOTE] = ACTIONS(1278), + [anon_sym_SQUOTE] = ACTIONS(1278), + [anon_sym_L_DQUOTE] = ACTIONS(1278), + [anon_sym_u_DQUOTE] = ACTIONS(1278), + [anon_sym_U_DQUOTE] = ACTIONS(1278), + [anon_sym_u8_DQUOTE] = ACTIONS(1278), + [anon_sym_DQUOTE] = ACTIONS(1278), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [anon_sym_NULL] = ACTIONS(1276), + [anon_sym_nullptr] = ACTIONS(1276), [sym_comment] = ACTIONS(3), }, - [204] = { - [sym_identifier] = ACTIONS(1372), - [aux_sym_preproc_include_token1] = ACTIONS(1372), - [aux_sym_preproc_def_token1] = ACTIONS(1372), - [aux_sym_preproc_if_token1] = ACTIONS(1372), - [aux_sym_preproc_if_token2] = ACTIONS(1372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), - [aux_sym_preproc_else_token1] = ACTIONS(1372), - [aux_sym_preproc_elif_token1] = ACTIONS(1372), - [sym_preproc_directive] = ACTIONS(1372), - [anon_sym_LPAREN2] = ACTIONS(1374), - [anon_sym_BANG] = ACTIONS(1374), - [anon_sym_TILDE] = ACTIONS(1374), - [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_PLUS] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1374), - [anon_sym_AMP] = ACTIONS(1374), - [anon_sym_SEMI] = ACTIONS(1374), - [anon_sym_typedef] = ACTIONS(1372), - [anon_sym_extern] = ACTIONS(1372), - [anon_sym___attribute__] = ACTIONS(1372), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym___declspec] = ACTIONS(1372), - [anon_sym___cdecl] = ACTIONS(1372), - [anon_sym___clrcall] = ACTIONS(1372), - [anon_sym___stdcall] = ACTIONS(1372), - [anon_sym___fastcall] = ACTIONS(1372), - [anon_sym___thiscall] = ACTIONS(1372), - [anon_sym___vectorcall] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_signed] = ACTIONS(1372), - [anon_sym_unsigned] = ACTIONS(1372), - [anon_sym_long] = ACTIONS(1372), - [anon_sym_short] = ACTIONS(1372), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_auto] = ACTIONS(1372), - [anon_sym_register] = ACTIONS(1372), - [anon_sym_inline] = ACTIONS(1372), - [anon_sym_thread_local] = ACTIONS(1372), - [anon_sym___thread] = ACTIONS(1372), - [anon_sym_const] = ACTIONS(1372), - [anon_sym_constexpr] = ACTIONS(1372), - [anon_sym_volatile] = ACTIONS(1372), - [anon_sym_restrict] = ACTIONS(1372), - [anon_sym___restrict__] = ACTIONS(1372), - [anon_sym__Atomic] = ACTIONS(1372), - [anon_sym__Noreturn] = ACTIONS(1372), - [anon_sym_noreturn] = ACTIONS(1372), - [sym_primitive_type] = ACTIONS(1372), - [anon_sym_enum] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1372), - [anon_sym_union] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1372), - [anon_sym_switch] = ACTIONS(1372), - [anon_sym_case] = ACTIONS(1372), - [anon_sym_default] = ACTIONS(1372), - [anon_sym_while] = ACTIONS(1372), - [anon_sym_do] = ACTIONS(1372), - [anon_sym_for] = ACTIONS(1372), - [anon_sym_return] = ACTIONS(1372), - [anon_sym_break] = ACTIONS(1372), - [anon_sym_continue] = ACTIONS(1372), - [anon_sym_goto] = ACTIONS(1372), - [anon_sym_DASH_DASH] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1374), - [anon_sym_sizeof] = ACTIONS(1372), - [anon_sym_offsetof] = ACTIONS(1372), - [anon_sym__Generic] = ACTIONS(1372), - [anon_sym_asm] = ACTIONS(1372), - [anon_sym___asm__] = ACTIONS(1372), - [sym_number_literal] = ACTIONS(1374), - [anon_sym_L_SQUOTE] = ACTIONS(1374), - [anon_sym_u_SQUOTE] = ACTIONS(1374), - [anon_sym_U_SQUOTE] = ACTIONS(1374), - [anon_sym_u8_SQUOTE] = ACTIONS(1374), - [anon_sym_SQUOTE] = ACTIONS(1374), - [anon_sym_L_DQUOTE] = ACTIONS(1374), - [anon_sym_u_DQUOTE] = ACTIONS(1374), - [anon_sym_U_DQUOTE] = ACTIONS(1374), - [anon_sym_u8_DQUOTE] = ACTIONS(1374), - [anon_sym_DQUOTE] = ACTIONS(1374), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [anon_sym_NULL] = ACTIONS(1372), - [anon_sym_nullptr] = ACTIONS(1372), + [210] = { + [ts_builtin_sym_end] = ACTIONS(1286), + [sym_identifier] = ACTIONS(1284), + [aux_sym_preproc_include_token1] = ACTIONS(1284), + [aux_sym_preproc_def_token1] = ACTIONS(1284), + [anon_sym_COMMA] = ACTIONS(1286), + [anon_sym_RPAREN] = ACTIONS(1286), + [aux_sym_preproc_if_token1] = ACTIONS(1284), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1284), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1284), + [sym_preproc_directive] = ACTIONS(1284), + [anon_sym_LPAREN2] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1286), + [anon_sym_TILDE] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_STAR] = ACTIONS(1286), + [anon_sym_AMP] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [anon_sym___extension__] = ACTIONS(1284), + [anon_sym_typedef] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym___attribute__] = ACTIONS(1284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1286), + [anon_sym___declspec] = ACTIONS(1284), + [anon_sym___cdecl] = ACTIONS(1284), + [anon_sym___clrcall] = ACTIONS(1284), + [anon_sym___stdcall] = ACTIONS(1284), + [anon_sym___fastcall] = ACTIONS(1284), + [anon_sym___thiscall] = ACTIONS(1284), + [anon_sym___vectorcall] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_signed] = ACTIONS(1284), + [anon_sym_unsigned] = ACTIONS(1284), + [anon_sym_long] = ACTIONS(1284), + [anon_sym_short] = ACTIONS(1284), + [anon_sym_static] = ACTIONS(1284), + [anon_sym_auto] = ACTIONS(1284), + [anon_sym_register] = ACTIONS(1284), + [anon_sym_inline] = ACTIONS(1284), + [anon_sym___inline] = ACTIONS(1284), + [anon_sym___inline__] = ACTIONS(1284), + [anon_sym___forceinline] = ACTIONS(1284), + [anon_sym_thread_local] = ACTIONS(1284), + [anon_sym___thread] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_constexpr] = ACTIONS(1284), + [anon_sym_volatile] = ACTIONS(1284), + [anon_sym_restrict] = ACTIONS(1284), + [anon_sym___restrict__] = ACTIONS(1284), + [anon_sym__Atomic] = ACTIONS(1284), + [anon_sym__Noreturn] = ACTIONS(1284), + [anon_sym_noreturn] = ACTIONS(1284), + [sym_primitive_type] = ACTIONS(1284), + [anon_sym_enum] = ACTIONS(1284), + [anon_sym_struct] = ACTIONS(1284), + [anon_sym_union] = ACTIONS(1284), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_else] = ACTIONS(1284), + [anon_sym_switch] = ACTIONS(1284), + [anon_sym_case] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(1284), + [anon_sym_while] = ACTIONS(1284), + [anon_sym_do] = ACTIONS(1284), + [anon_sym_for] = ACTIONS(1284), + [anon_sym_return] = ACTIONS(1284), + [anon_sym_break] = ACTIONS(1284), + [anon_sym_continue] = ACTIONS(1284), + [anon_sym_goto] = ACTIONS(1284), + [anon_sym_DASH_DASH] = ACTIONS(1286), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [anon_sym_sizeof] = ACTIONS(1284), + [anon_sym___alignof__] = ACTIONS(1284), + [anon_sym___alignof] = ACTIONS(1284), + [anon_sym__alignof] = ACTIONS(1284), + [anon_sym_alignof] = ACTIONS(1284), + [anon_sym__Alignof] = ACTIONS(1284), + [anon_sym_offsetof] = ACTIONS(1284), + [anon_sym___builtin_va_arg] = ACTIONS(1284), + [anon_sym__Generic] = ACTIONS(1284), + [anon_sym_asm] = ACTIONS(1284), + [anon_sym___asm__] = ACTIONS(1284), + [sym_number_literal] = ACTIONS(1286), + [anon_sym_L_SQUOTE] = ACTIONS(1286), + [anon_sym_u_SQUOTE] = ACTIONS(1286), + [anon_sym_U_SQUOTE] = ACTIONS(1286), + [anon_sym_u8_SQUOTE] = ACTIONS(1286), + [anon_sym_SQUOTE] = ACTIONS(1286), + [anon_sym_L_DQUOTE] = ACTIONS(1286), + [anon_sym_u_DQUOTE] = ACTIONS(1286), + [anon_sym_U_DQUOTE] = ACTIONS(1286), + [anon_sym_u8_DQUOTE] = ACTIONS(1286), + [anon_sym_DQUOTE] = ACTIONS(1286), + [sym_true] = ACTIONS(1284), + [sym_false] = ACTIONS(1284), + [anon_sym_NULL] = ACTIONS(1284), + [anon_sym_nullptr] = ACTIONS(1284), [sym_comment] = ACTIONS(3), }, - [205] = { - [sym_else_clause] = STATE(249), - [sym_identifier] = ACTIONS(1172), - [aux_sym_preproc_include_token1] = ACTIONS(1172), - [aux_sym_preproc_def_token1] = ACTIONS(1172), - [aux_sym_preproc_if_token1] = ACTIONS(1172), - [aux_sym_preproc_if_token2] = ACTIONS(1172), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1172), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1172), - [sym_preproc_directive] = ACTIONS(1172), - [anon_sym_LPAREN2] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1174), - [anon_sym_TILDE] = ACTIONS(1174), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_PLUS] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(1174), - [anon_sym_SEMI] = ACTIONS(1174), - [anon_sym_typedef] = ACTIONS(1172), - [anon_sym_extern] = ACTIONS(1172), - [anon_sym___attribute__] = ACTIONS(1172), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1174), - [anon_sym___declspec] = ACTIONS(1172), - [anon_sym___cdecl] = ACTIONS(1172), - [anon_sym___clrcall] = ACTIONS(1172), - [anon_sym___stdcall] = ACTIONS(1172), - [anon_sym___fastcall] = ACTIONS(1172), - [anon_sym___thiscall] = ACTIONS(1172), - [anon_sym___vectorcall] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1174), - [anon_sym_signed] = ACTIONS(1172), - [anon_sym_unsigned] = ACTIONS(1172), - [anon_sym_long] = ACTIONS(1172), - [anon_sym_short] = ACTIONS(1172), - [anon_sym_static] = ACTIONS(1172), - [anon_sym_auto] = ACTIONS(1172), - [anon_sym_register] = ACTIONS(1172), - [anon_sym_inline] = ACTIONS(1172), - [anon_sym_thread_local] = ACTIONS(1172), - [anon_sym___thread] = ACTIONS(1172), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_constexpr] = ACTIONS(1172), - [anon_sym_volatile] = ACTIONS(1172), - [anon_sym_restrict] = ACTIONS(1172), - [anon_sym___restrict__] = ACTIONS(1172), - [anon_sym__Atomic] = ACTIONS(1172), - [anon_sym__Noreturn] = ACTIONS(1172), - [anon_sym_noreturn] = ACTIONS(1172), - [sym_primitive_type] = ACTIONS(1172), - [anon_sym_enum] = ACTIONS(1172), - [anon_sym_struct] = ACTIONS(1172), - [anon_sym_union] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_else] = ACTIONS(1442), - [anon_sym_switch] = ACTIONS(1172), - [anon_sym_case] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(1172), - [anon_sym_while] = ACTIONS(1172), - [anon_sym_do] = ACTIONS(1172), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1172), - [anon_sym_break] = ACTIONS(1172), - [anon_sym_continue] = ACTIONS(1172), - [anon_sym_goto] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1174), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_sizeof] = ACTIONS(1172), - [anon_sym_offsetof] = ACTIONS(1172), - [anon_sym__Generic] = ACTIONS(1172), - [anon_sym_asm] = ACTIONS(1172), - [anon_sym___asm__] = ACTIONS(1172), - [sym_number_literal] = ACTIONS(1174), - [anon_sym_L_SQUOTE] = ACTIONS(1174), - [anon_sym_u_SQUOTE] = ACTIONS(1174), - [anon_sym_U_SQUOTE] = ACTIONS(1174), - [anon_sym_u8_SQUOTE] = ACTIONS(1174), - [anon_sym_SQUOTE] = ACTIONS(1174), - [anon_sym_L_DQUOTE] = ACTIONS(1174), - [anon_sym_u_DQUOTE] = ACTIONS(1174), - [anon_sym_U_DQUOTE] = ACTIONS(1174), - [anon_sym_u8_DQUOTE] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1174), - [sym_true] = ACTIONS(1172), - [sym_false] = ACTIONS(1172), - [anon_sym_NULL] = ACTIONS(1172), - [anon_sym_nullptr] = ACTIONS(1172), + [211] = { + [sym_identifier] = ACTIONS(1312), + [aux_sym_preproc_include_token1] = ACTIONS(1312), + [aux_sym_preproc_def_token1] = ACTIONS(1312), + [aux_sym_preproc_if_token1] = ACTIONS(1312), + [aux_sym_preproc_if_token2] = ACTIONS(1312), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), + [aux_sym_preproc_else_token1] = ACTIONS(1312), + [aux_sym_preproc_elif_token1] = ACTIONS(1312), + [sym_preproc_directive] = ACTIONS(1312), + [anon_sym_LPAREN2] = ACTIONS(1314), + [anon_sym_BANG] = ACTIONS(1314), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1314), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_SEMI] = ACTIONS(1314), + [anon_sym___extension__] = ACTIONS(1312), + [anon_sym_typedef] = ACTIONS(1312), + [anon_sym_extern] = ACTIONS(1312), + [anon_sym___attribute__] = ACTIONS(1312), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), + [anon_sym___declspec] = ACTIONS(1312), + [anon_sym___cdecl] = ACTIONS(1312), + [anon_sym___clrcall] = ACTIONS(1312), + [anon_sym___stdcall] = ACTIONS(1312), + [anon_sym___fastcall] = ACTIONS(1312), + [anon_sym___thiscall] = ACTIONS(1312), + [anon_sym___vectorcall] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(1314), + [anon_sym_signed] = ACTIONS(1312), + [anon_sym_unsigned] = ACTIONS(1312), + [anon_sym_long] = ACTIONS(1312), + [anon_sym_short] = ACTIONS(1312), + [anon_sym_static] = ACTIONS(1312), + [anon_sym_auto] = ACTIONS(1312), + [anon_sym_register] = ACTIONS(1312), + [anon_sym_inline] = ACTIONS(1312), + [anon_sym___inline] = ACTIONS(1312), + [anon_sym___inline__] = ACTIONS(1312), + [anon_sym___forceinline] = ACTIONS(1312), + [anon_sym_thread_local] = ACTIONS(1312), + [anon_sym___thread] = ACTIONS(1312), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_constexpr] = ACTIONS(1312), + [anon_sym_volatile] = ACTIONS(1312), + [anon_sym_restrict] = ACTIONS(1312), + [anon_sym___restrict__] = ACTIONS(1312), + [anon_sym__Atomic] = ACTIONS(1312), + [anon_sym__Noreturn] = ACTIONS(1312), + [anon_sym_noreturn] = ACTIONS(1312), + [sym_primitive_type] = ACTIONS(1312), + [anon_sym_enum] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1312), + [anon_sym_union] = ACTIONS(1312), + [anon_sym_if] = ACTIONS(1312), + [anon_sym_else] = ACTIONS(1312), + [anon_sym_switch] = ACTIONS(1312), + [anon_sym_case] = ACTIONS(1312), + [anon_sym_default] = ACTIONS(1312), + [anon_sym_while] = ACTIONS(1312), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_for] = ACTIONS(1312), + [anon_sym_return] = ACTIONS(1312), + [anon_sym_break] = ACTIONS(1312), + [anon_sym_continue] = ACTIONS(1312), + [anon_sym_goto] = ACTIONS(1312), + [anon_sym_DASH_DASH] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1314), + [anon_sym_sizeof] = ACTIONS(1312), + [anon_sym___alignof__] = ACTIONS(1312), + [anon_sym___alignof] = ACTIONS(1312), + [anon_sym__alignof] = ACTIONS(1312), + [anon_sym_alignof] = ACTIONS(1312), + [anon_sym__Alignof] = ACTIONS(1312), + [anon_sym_offsetof] = ACTIONS(1312), + [anon_sym___builtin_va_arg] = ACTIONS(1312), + [anon_sym__Generic] = ACTIONS(1312), + [anon_sym_asm] = ACTIONS(1312), + [anon_sym___asm__] = ACTIONS(1312), + [sym_number_literal] = ACTIONS(1314), + [anon_sym_L_SQUOTE] = ACTIONS(1314), + [anon_sym_u_SQUOTE] = ACTIONS(1314), + [anon_sym_U_SQUOTE] = ACTIONS(1314), + [anon_sym_u8_SQUOTE] = ACTIONS(1314), + [anon_sym_SQUOTE] = ACTIONS(1314), + [anon_sym_L_DQUOTE] = ACTIONS(1314), + [anon_sym_u_DQUOTE] = ACTIONS(1314), + [anon_sym_U_DQUOTE] = ACTIONS(1314), + [anon_sym_u8_DQUOTE] = ACTIONS(1314), + [anon_sym_DQUOTE] = ACTIONS(1314), + [sym_true] = ACTIONS(1312), + [sym_false] = ACTIONS(1312), + [anon_sym_NULL] = ACTIONS(1312), + [anon_sym_nullptr] = ACTIONS(1312), [sym_comment] = ACTIONS(3), }, - [206] = { - [sym_identifier] = ACTIONS(1414), - [aux_sym_preproc_include_token1] = ACTIONS(1414), - [aux_sym_preproc_def_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token2] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), - [aux_sym_preproc_else_token1] = ACTIONS(1414), - [aux_sym_preproc_elif_token1] = ACTIONS(1414), - [sym_preproc_directive] = ACTIONS(1414), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym_typedef] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym___attribute__] = ACTIONS(1414), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), - [anon_sym___declspec] = ACTIONS(1414), - [anon_sym___cdecl] = ACTIONS(1414), - [anon_sym___clrcall] = ACTIONS(1414), - [anon_sym___stdcall] = ACTIONS(1414), - [anon_sym___fastcall] = ACTIONS(1414), - [anon_sym___thiscall] = ACTIONS(1414), - [anon_sym___vectorcall] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_signed] = ACTIONS(1414), - [anon_sym_unsigned] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_short] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_auto] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_inline] = ACTIONS(1414), - [anon_sym_thread_local] = ACTIONS(1414), - [anon_sym___thread] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_constexpr] = ACTIONS(1414), - [anon_sym_volatile] = ACTIONS(1414), - [anon_sym_restrict] = ACTIONS(1414), - [anon_sym___restrict__] = ACTIONS(1414), - [anon_sym__Atomic] = ACTIONS(1414), - [anon_sym__Noreturn] = ACTIONS(1414), - [anon_sym_noreturn] = ACTIONS(1414), - [sym_primitive_type] = ACTIONS(1414), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_case] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_goto] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_sizeof] = ACTIONS(1414), - [anon_sym_offsetof] = ACTIONS(1414), - [anon_sym__Generic] = ACTIONS(1414), - [anon_sym_asm] = ACTIONS(1414), - [anon_sym___asm__] = ACTIONS(1414), - [sym_number_literal] = ACTIONS(1416), - [anon_sym_L_SQUOTE] = ACTIONS(1416), - [anon_sym_u_SQUOTE] = ACTIONS(1416), - [anon_sym_U_SQUOTE] = ACTIONS(1416), - [anon_sym_u8_SQUOTE] = ACTIONS(1416), - [anon_sym_SQUOTE] = ACTIONS(1416), - [anon_sym_L_DQUOTE] = ACTIONS(1416), - [anon_sym_u_DQUOTE] = ACTIONS(1416), - [anon_sym_U_DQUOTE] = ACTIONS(1416), - [anon_sym_u8_DQUOTE] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [sym_true] = ACTIONS(1414), - [sym_false] = ACTIONS(1414), - [anon_sym_NULL] = ACTIONS(1414), - [anon_sym_nullptr] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - }, - [207] = { - [sym_identifier] = ACTIONS(1364), - [aux_sym_preproc_include_token1] = ACTIONS(1364), - [aux_sym_preproc_def_token1] = ACTIONS(1364), - [aux_sym_preproc_if_token1] = ACTIONS(1364), - [aux_sym_preproc_if_token2] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), - [aux_sym_preproc_else_token1] = ACTIONS(1364), - [aux_sym_preproc_elif_token1] = ACTIONS(1364), - [sym_preproc_directive] = ACTIONS(1364), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(1366), - [anon_sym_TILDE] = ACTIONS(1366), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_AMP] = ACTIONS(1366), - [anon_sym_SEMI] = ACTIONS(1366), - [anon_sym_typedef] = ACTIONS(1364), - [anon_sym_extern] = ACTIONS(1364), - [anon_sym___attribute__] = ACTIONS(1364), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1366), - [anon_sym___declspec] = ACTIONS(1364), - [anon_sym___cdecl] = ACTIONS(1364), - [anon_sym___clrcall] = ACTIONS(1364), - [anon_sym___stdcall] = ACTIONS(1364), - [anon_sym___fastcall] = ACTIONS(1364), - [anon_sym___thiscall] = ACTIONS(1364), - [anon_sym___vectorcall] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_signed] = ACTIONS(1364), - [anon_sym_unsigned] = ACTIONS(1364), - [anon_sym_long] = ACTIONS(1364), - [anon_sym_short] = ACTIONS(1364), - [anon_sym_static] = ACTIONS(1364), - [anon_sym_auto] = ACTIONS(1364), - [anon_sym_register] = ACTIONS(1364), - [anon_sym_inline] = ACTIONS(1364), - [anon_sym_thread_local] = ACTIONS(1364), - [anon_sym___thread] = ACTIONS(1364), - [anon_sym_const] = ACTIONS(1364), - [anon_sym_constexpr] = ACTIONS(1364), - [anon_sym_volatile] = ACTIONS(1364), - [anon_sym_restrict] = ACTIONS(1364), - [anon_sym___restrict__] = ACTIONS(1364), - [anon_sym__Atomic] = ACTIONS(1364), - [anon_sym__Noreturn] = ACTIONS(1364), - [anon_sym_noreturn] = ACTIONS(1364), - [sym_primitive_type] = ACTIONS(1364), - [anon_sym_enum] = ACTIONS(1364), - [anon_sym_struct] = ACTIONS(1364), - [anon_sym_union] = ACTIONS(1364), - [anon_sym_if] = ACTIONS(1364), - [anon_sym_switch] = ACTIONS(1364), - [anon_sym_case] = ACTIONS(1364), - [anon_sym_default] = ACTIONS(1364), - [anon_sym_while] = ACTIONS(1364), - [anon_sym_do] = ACTIONS(1364), - [anon_sym_for] = ACTIONS(1364), - [anon_sym_return] = ACTIONS(1364), - [anon_sym_break] = ACTIONS(1364), - [anon_sym_continue] = ACTIONS(1364), - [anon_sym_goto] = ACTIONS(1364), - [anon_sym_DASH_DASH] = ACTIONS(1366), - [anon_sym_PLUS_PLUS] = ACTIONS(1366), - [anon_sym_sizeof] = ACTIONS(1364), - [anon_sym_offsetof] = ACTIONS(1364), - [anon_sym__Generic] = ACTIONS(1364), - [anon_sym_asm] = ACTIONS(1364), - [anon_sym___asm__] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(1366), - [anon_sym_L_SQUOTE] = ACTIONS(1366), - [anon_sym_u_SQUOTE] = ACTIONS(1366), - [anon_sym_U_SQUOTE] = ACTIONS(1366), - [anon_sym_u8_SQUOTE] = ACTIONS(1366), - [anon_sym_SQUOTE] = ACTIONS(1366), - [anon_sym_L_DQUOTE] = ACTIONS(1366), - [anon_sym_u_DQUOTE] = ACTIONS(1366), - [anon_sym_U_DQUOTE] = ACTIONS(1366), - [anon_sym_u8_DQUOTE] = ACTIONS(1366), - [anon_sym_DQUOTE] = ACTIONS(1366), - [sym_true] = ACTIONS(1364), - [sym_false] = ACTIONS(1364), - [anon_sym_NULL] = ACTIONS(1364), - [anon_sym_nullptr] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - }, - [208] = { - [sym_identifier] = ACTIONS(1402), - [aux_sym_preproc_include_token1] = ACTIONS(1402), - [aux_sym_preproc_def_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token2] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), - [aux_sym_preproc_else_token1] = ACTIONS(1402), - [aux_sym_preproc_elif_token1] = ACTIONS(1402), - [sym_preproc_directive] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym___attribute__] = ACTIONS(1402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), - [anon_sym___declspec] = ACTIONS(1402), - [anon_sym___cdecl] = ACTIONS(1402), - [anon_sym___clrcall] = ACTIONS(1402), - [anon_sym___stdcall] = ACTIONS(1402), - [anon_sym___fastcall] = ACTIONS(1402), - [anon_sym___thiscall] = ACTIONS(1402), - [anon_sym___vectorcall] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym_thread_local] = ACTIONS(1402), - [anon_sym___thread] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_constexpr] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_restrict] = ACTIONS(1402), - [anon_sym___restrict__] = ACTIONS(1402), - [anon_sym__Atomic] = ACTIONS(1402), - [anon_sym__Noreturn] = ACTIONS(1402), - [anon_sym_noreturn] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_case] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_goto] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1402), - [anon_sym_offsetof] = ACTIONS(1402), - [anon_sym__Generic] = ACTIONS(1402), - [anon_sym_asm] = ACTIONS(1402), - [anon_sym___asm__] = ACTIONS(1402), - [sym_number_literal] = ACTIONS(1404), - [anon_sym_L_SQUOTE] = ACTIONS(1404), - [anon_sym_u_SQUOTE] = ACTIONS(1404), - [anon_sym_U_SQUOTE] = ACTIONS(1404), - [anon_sym_u8_SQUOTE] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_L_DQUOTE] = ACTIONS(1404), - [anon_sym_u_DQUOTE] = ACTIONS(1404), - [anon_sym_U_DQUOTE] = ACTIONS(1404), - [anon_sym_u8_DQUOTE] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [sym_true] = ACTIONS(1402), - [sym_false] = ACTIONS(1402), - [anon_sym_NULL] = ACTIONS(1402), - [anon_sym_nullptr] = ACTIONS(1402), - [sym_comment] = ACTIONS(3), - }, - [209] = { - [sym_identifier] = ACTIONS(1380), - [aux_sym_preproc_include_token1] = ACTIONS(1380), - [aux_sym_preproc_def_token1] = ACTIONS(1380), - [aux_sym_preproc_if_token1] = ACTIONS(1380), - [aux_sym_preproc_if_token2] = ACTIONS(1380), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), - [aux_sym_preproc_else_token1] = ACTIONS(1380), - [aux_sym_preproc_elif_token1] = ACTIONS(1380), - [sym_preproc_directive] = ACTIONS(1380), - [anon_sym_LPAREN2] = ACTIONS(1382), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_TILDE] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1380), - [anon_sym_PLUS] = ACTIONS(1380), - [anon_sym_STAR] = ACTIONS(1382), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_SEMI] = ACTIONS(1382), - [anon_sym_typedef] = ACTIONS(1380), - [anon_sym_extern] = ACTIONS(1380), - [anon_sym___attribute__] = ACTIONS(1380), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), - [anon_sym___declspec] = ACTIONS(1380), - [anon_sym___cdecl] = ACTIONS(1380), - [anon_sym___clrcall] = ACTIONS(1380), - [anon_sym___stdcall] = ACTIONS(1380), - [anon_sym___fastcall] = ACTIONS(1380), - [anon_sym___thiscall] = ACTIONS(1380), - [anon_sym___vectorcall] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_signed] = ACTIONS(1380), - [anon_sym_unsigned] = ACTIONS(1380), - [anon_sym_long] = ACTIONS(1380), - [anon_sym_short] = ACTIONS(1380), - [anon_sym_static] = ACTIONS(1380), - [anon_sym_auto] = ACTIONS(1380), - [anon_sym_register] = ACTIONS(1380), - [anon_sym_inline] = ACTIONS(1380), - [anon_sym_thread_local] = ACTIONS(1380), - [anon_sym___thread] = ACTIONS(1380), - [anon_sym_const] = ACTIONS(1380), - [anon_sym_constexpr] = ACTIONS(1380), - [anon_sym_volatile] = ACTIONS(1380), - [anon_sym_restrict] = ACTIONS(1380), - [anon_sym___restrict__] = ACTIONS(1380), - [anon_sym__Atomic] = ACTIONS(1380), - [anon_sym__Noreturn] = ACTIONS(1380), - [anon_sym_noreturn] = ACTIONS(1380), - [sym_primitive_type] = ACTIONS(1380), - [anon_sym_enum] = ACTIONS(1380), - [anon_sym_struct] = ACTIONS(1380), - [anon_sym_union] = ACTIONS(1380), - [anon_sym_if] = ACTIONS(1380), - [anon_sym_switch] = ACTIONS(1380), - [anon_sym_case] = ACTIONS(1380), - [anon_sym_default] = ACTIONS(1380), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1380), - [anon_sym_for] = ACTIONS(1380), - [anon_sym_return] = ACTIONS(1380), - [anon_sym_break] = ACTIONS(1380), - [anon_sym_continue] = ACTIONS(1380), - [anon_sym_goto] = ACTIONS(1380), - [anon_sym_DASH_DASH] = ACTIONS(1382), - [anon_sym_PLUS_PLUS] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1380), - [anon_sym_offsetof] = ACTIONS(1380), - [anon_sym__Generic] = ACTIONS(1380), - [anon_sym_asm] = ACTIONS(1380), - [anon_sym___asm__] = ACTIONS(1380), - [sym_number_literal] = ACTIONS(1382), - [anon_sym_L_SQUOTE] = ACTIONS(1382), - [anon_sym_u_SQUOTE] = ACTIONS(1382), - [anon_sym_U_SQUOTE] = ACTIONS(1382), - [anon_sym_u8_SQUOTE] = ACTIONS(1382), - [anon_sym_SQUOTE] = ACTIONS(1382), - [anon_sym_L_DQUOTE] = ACTIONS(1382), - [anon_sym_u_DQUOTE] = ACTIONS(1382), - [anon_sym_U_DQUOTE] = ACTIONS(1382), - [anon_sym_u8_DQUOTE] = ACTIONS(1382), - [anon_sym_DQUOTE] = ACTIONS(1382), - [sym_true] = ACTIONS(1380), - [sym_false] = ACTIONS(1380), - [anon_sym_NULL] = ACTIONS(1380), - [anon_sym_nullptr] = ACTIONS(1380), - [sym_comment] = ACTIONS(3), - }, - [210] = { - [sym_identifier] = ACTIONS(1418), - [aux_sym_preproc_include_token1] = ACTIONS(1418), - [aux_sym_preproc_def_token1] = ACTIONS(1418), - [aux_sym_preproc_if_token1] = ACTIONS(1418), - [aux_sym_preproc_if_token2] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), - [aux_sym_preproc_else_token1] = ACTIONS(1418), - [aux_sym_preproc_elif_token1] = ACTIONS(1418), - [sym_preproc_directive] = ACTIONS(1418), - [anon_sym_LPAREN2] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_typedef] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym___attribute__] = ACTIONS(1418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), - [anon_sym___declspec] = ACTIONS(1418), - [anon_sym___cdecl] = ACTIONS(1418), - [anon_sym___clrcall] = ACTIONS(1418), - [anon_sym___stdcall] = ACTIONS(1418), - [anon_sym___fastcall] = ACTIONS(1418), - [anon_sym___thiscall] = ACTIONS(1418), - [anon_sym___vectorcall] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_signed] = ACTIONS(1418), - [anon_sym_unsigned] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_auto] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_inline] = ACTIONS(1418), - [anon_sym_thread_local] = ACTIONS(1418), - [anon_sym___thread] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_constexpr] = ACTIONS(1418), - [anon_sym_volatile] = ACTIONS(1418), - [anon_sym_restrict] = ACTIONS(1418), - [anon_sym___restrict__] = ACTIONS(1418), - [anon_sym__Atomic] = ACTIONS(1418), - [anon_sym__Noreturn] = ACTIONS(1418), - [anon_sym_noreturn] = ACTIONS(1418), - [sym_primitive_type] = ACTIONS(1418), - [anon_sym_enum] = ACTIONS(1418), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_union] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_case] = ACTIONS(1418), - [anon_sym_default] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_goto] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_sizeof] = ACTIONS(1418), - [anon_sym_offsetof] = ACTIONS(1418), - [anon_sym__Generic] = ACTIONS(1418), - [anon_sym_asm] = ACTIONS(1418), - [anon_sym___asm__] = ACTIONS(1418), - [sym_number_literal] = ACTIONS(1420), - [anon_sym_L_SQUOTE] = ACTIONS(1420), - [anon_sym_u_SQUOTE] = ACTIONS(1420), - [anon_sym_U_SQUOTE] = ACTIONS(1420), - [anon_sym_u8_SQUOTE] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_L_DQUOTE] = ACTIONS(1420), - [anon_sym_u_DQUOTE] = ACTIONS(1420), - [anon_sym_U_DQUOTE] = ACTIONS(1420), - [anon_sym_u8_DQUOTE] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1420), - [sym_true] = ACTIONS(1418), - [sym_false] = ACTIONS(1418), - [anon_sym_NULL] = ACTIONS(1418), - [anon_sym_nullptr] = ACTIONS(1418), - [sym_comment] = ACTIONS(3), - }, - [211] = { - [sym_identifier] = ACTIONS(1410), - [aux_sym_preproc_include_token1] = ACTIONS(1410), - [aux_sym_preproc_def_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token2] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), - [aux_sym_preproc_else_token1] = ACTIONS(1410), - [aux_sym_preproc_elif_token1] = ACTIONS(1410), - [sym_preproc_directive] = ACTIONS(1410), - [anon_sym_LPAREN2] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym_typedef] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym___attribute__] = ACTIONS(1410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), - [anon_sym___declspec] = ACTIONS(1410), - [anon_sym___cdecl] = ACTIONS(1410), - [anon_sym___clrcall] = ACTIONS(1410), - [anon_sym___stdcall] = ACTIONS(1410), - [anon_sym___fastcall] = ACTIONS(1410), - [anon_sym___thiscall] = ACTIONS(1410), - [anon_sym___vectorcall] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_auto] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), - [anon_sym_thread_local] = ACTIONS(1410), - [anon_sym___thread] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_constexpr] = ACTIONS(1410), - [anon_sym_volatile] = ACTIONS(1410), - [anon_sym_restrict] = ACTIONS(1410), - [anon_sym___restrict__] = ACTIONS(1410), - [anon_sym__Atomic] = ACTIONS(1410), - [anon_sym__Noreturn] = ACTIONS(1410), - [anon_sym_noreturn] = ACTIONS(1410), - [sym_primitive_type] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_case] = ACTIONS(1410), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_goto] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_sizeof] = ACTIONS(1410), - [anon_sym_offsetof] = ACTIONS(1410), - [anon_sym__Generic] = ACTIONS(1410), - [anon_sym_asm] = ACTIONS(1410), - [anon_sym___asm__] = ACTIONS(1410), - [sym_number_literal] = ACTIONS(1412), - [anon_sym_L_SQUOTE] = ACTIONS(1412), - [anon_sym_u_SQUOTE] = ACTIONS(1412), - [anon_sym_U_SQUOTE] = ACTIONS(1412), - [anon_sym_u8_SQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_L_DQUOTE] = ACTIONS(1412), - [anon_sym_u_DQUOTE] = ACTIONS(1412), - [anon_sym_U_DQUOTE] = ACTIONS(1412), - [anon_sym_u8_DQUOTE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [sym_true] = ACTIONS(1410), - [sym_false] = ACTIONS(1410), - [anon_sym_NULL] = ACTIONS(1410), - [anon_sym_nullptr] = ACTIONS(1410), - [sym_comment] = ACTIONS(3), - }, - [212] = { - [sym_else_clause] = STATE(312), - [sym_identifier] = ACTIONS(1172), - [aux_sym_preproc_include_token1] = ACTIONS(1172), - [aux_sym_preproc_def_token1] = ACTIONS(1172), - [aux_sym_preproc_if_token1] = ACTIONS(1172), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1172), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1172), - [sym_preproc_directive] = ACTIONS(1172), - [anon_sym_LPAREN2] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1174), - [anon_sym_TILDE] = ACTIONS(1174), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_PLUS] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(1174), - [anon_sym_SEMI] = ACTIONS(1174), - [anon_sym_typedef] = ACTIONS(1172), - [anon_sym_extern] = ACTIONS(1172), - [anon_sym___attribute__] = ACTIONS(1172), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1174), - [anon_sym___declspec] = ACTIONS(1172), - [anon_sym___cdecl] = ACTIONS(1172), - [anon_sym___clrcall] = ACTIONS(1172), - [anon_sym___stdcall] = ACTIONS(1172), - [anon_sym___fastcall] = ACTIONS(1172), - [anon_sym___thiscall] = ACTIONS(1172), - [anon_sym___vectorcall] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1174), - [anon_sym_RBRACE] = ACTIONS(1174), - [anon_sym_signed] = ACTIONS(1172), - [anon_sym_unsigned] = ACTIONS(1172), - [anon_sym_long] = ACTIONS(1172), - [anon_sym_short] = ACTIONS(1172), - [anon_sym_static] = ACTIONS(1172), - [anon_sym_auto] = ACTIONS(1172), - [anon_sym_register] = ACTIONS(1172), - [anon_sym_inline] = ACTIONS(1172), - [anon_sym_thread_local] = ACTIONS(1172), - [anon_sym___thread] = ACTIONS(1172), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_constexpr] = ACTIONS(1172), - [anon_sym_volatile] = ACTIONS(1172), - [anon_sym_restrict] = ACTIONS(1172), - [anon_sym___restrict__] = ACTIONS(1172), - [anon_sym__Atomic] = ACTIONS(1172), - [anon_sym__Noreturn] = ACTIONS(1172), - [anon_sym_noreturn] = ACTIONS(1172), - [sym_primitive_type] = ACTIONS(1172), - [anon_sym_enum] = ACTIONS(1172), - [anon_sym_struct] = ACTIONS(1172), - [anon_sym_union] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_else] = ACTIONS(1444), - [anon_sym_switch] = ACTIONS(1172), - [anon_sym_case] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(1172), - [anon_sym_while] = ACTIONS(1172), - [anon_sym_do] = ACTIONS(1172), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1172), - [anon_sym_break] = ACTIONS(1172), - [anon_sym_continue] = ACTIONS(1172), - [anon_sym_goto] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1174), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_sizeof] = ACTIONS(1172), - [anon_sym_offsetof] = ACTIONS(1172), - [anon_sym__Generic] = ACTIONS(1172), - [anon_sym_asm] = ACTIONS(1172), - [anon_sym___asm__] = ACTIONS(1172), - [sym_number_literal] = ACTIONS(1174), - [anon_sym_L_SQUOTE] = ACTIONS(1174), - [anon_sym_u_SQUOTE] = ACTIONS(1174), - [anon_sym_U_SQUOTE] = ACTIONS(1174), - [anon_sym_u8_SQUOTE] = ACTIONS(1174), - [anon_sym_SQUOTE] = ACTIONS(1174), - [anon_sym_L_DQUOTE] = ACTIONS(1174), - [anon_sym_u_DQUOTE] = ACTIONS(1174), - [anon_sym_U_DQUOTE] = ACTIONS(1174), - [anon_sym_u8_DQUOTE] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1174), - [sym_true] = ACTIONS(1172), - [sym_false] = ACTIONS(1172), - [anon_sym_NULL] = ACTIONS(1172), - [anon_sym_nullptr] = ACTIONS(1172), + [212] = { + [sym_identifier] = ACTIONS(1316), + [aux_sym_preproc_include_token1] = ACTIONS(1316), + [aux_sym_preproc_def_token1] = ACTIONS(1316), + [aux_sym_preproc_if_token1] = ACTIONS(1316), + [aux_sym_preproc_if_token2] = ACTIONS(1316), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), + [aux_sym_preproc_else_token1] = ACTIONS(1316), + [aux_sym_preproc_elif_token1] = ACTIONS(1316), + [sym_preproc_directive] = ACTIONS(1316), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym___extension__] = ACTIONS(1316), + [anon_sym_typedef] = ACTIONS(1316), + [anon_sym_extern] = ACTIONS(1316), + [anon_sym___attribute__] = ACTIONS(1316), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), + [anon_sym___declspec] = ACTIONS(1316), + [anon_sym___cdecl] = ACTIONS(1316), + [anon_sym___clrcall] = ACTIONS(1316), + [anon_sym___stdcall] = ACTIONS(1316), + [anon_sym___fastcall] = ACTIONS(1316), + [anon_sym___thiscall] = ACTIONS(1316), + [anon_sym___vectorcall] = ACTIONS(1316), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_signed] = ACTIONS(1316), + [anon_sym_unsigned] = ACTIONS(1316), + [anon_sym_long] = ACTIONS(1316), + [anon_sym_short] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1316), + [anon_sym_auto] = ACTIONS(1316), + [anon_sym_register] = ACTIONS(1316), + [anon_sym_inline] = ACTIONS(1316), + [anon_sym___inline] = ACTIONS(1316), + [anon_sym___inline__] = ACTIONS(1316), + [anon_sym___forceinline] = ACTIONS(1316), + [anon_sym_thread_local] = ACTIONS(1316), + [anon_sym___thread] = ACTIONS(1316), + [anon_sym_const] = ACTIONS(1316), + [anon_sym_constexpr] = ACTIONS(1316), + [anon_sym_volatile] = ACTIONS(1316), + [anon_sym_restrict] = ACTIONS(1316), + [anon_sym___restrict__] = ACTIONS(1316), + [anon_sym__Atomic] = ACTIONS(1316), + [anon_sym__Noreturn] = ACTIONS(1316), + [anon_sym_noreturn] = ACTIONS(1316), + [sym_primitive_type] = ACTIONS(1316), + [anon_sym_enum] = ACTIONS(1316), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_union] = ACTIONS(1316), + [anon_sym_if] = ACTIONS(1316), + [anon_sym_else] = ACTIONS(1316), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_case] = ACTIONS(1316), + [anon_sym_default] = ACTIONS(1316), + [anon_sym_while] = ACTIONS(1316), + [anon_sym_do] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1316), + [anon_sym_break] = ACTIONS(1316), + [anon_sym_continue] = ACTIONS(1316), + [anon_sym_goto] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1318), + [anon_sym_PLUS_PLUS] = ACTIONS(1318), + [anon_sym_sizeof] = ACTIONS(1316), + [anon_sym___alignof__] = ACTIONS(1316), + [anon_sym___alignof] = ACTIONS(1316), + [anon_sym__alignof] = ACTIONS(1316), + [anon_sym_alignof] = ACTIONS(1316), + [anon_sym__Alignof] = ACTIONS(1316), + [anon_sym_offsetof] = ACTIONS(1316), + [anon_sym___builtin_va_arg] = ACTIONS(1316), + [anon_sym__Generic] = ACTIONS(1316), + [anon_sym_asm] = ACTIONS(1316), + [anon_sym___asm__] = ACTIONS(1316), + [sym_number_literal] = ACTIONS(1318), + [anon_sym_L_SQUOTE] = ACTIONS(1318), + [anon_sym_u_SQUOTE] = ACTIONS(1318), + [anon_sym_U_SQUOTE] = ACTIONS(1318), + [anon_sym_u8_SQUOTE] = ACTIONS(1318), + [anon_sym_SQUOTE] = ACTIONS(1318), + [anon_sym_L_DQUOTE] = ACTIONS(1318), + [anon_sym_u_DQUOTE] = ACTIONS(1318), + [anon_sym_U_DQUOTE] = ACTIONS(1318), + [anon_sym_u8_DQUOTE] = ACTIONS(1318), + [anon_sym_DQUOTE] = ACTIONS(1318), + [sym_true] = ACTIONS(1316), + [sym_false] = ACTIONS(1316), + [anon_sym_NULL] = ACTIONS(1316), + [anon_sym_nullptr] = ACTIONS(1316), [sym_comment] = ACTIONS(3), }, [213] = { - [sym_identifier] = ACTIONS(1422), - [aux_sym_preproc_include_token1] = ACTIONS(1422), - [aux_sym_preproc_def_token1] = ACTIONS(1422), - [aux_sym_preproc_if_token1] = ACTIONS(1422), - [aux_sym_preproc_if_token2] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), - [aux_sym_preproc_else_token1] = ACTIONS(1422), - [aux_sym_preproc_elif_token1] = ACTIONS(1422), - [sym_preproc_directive] = ACTIONS(1422), - [anon_sym_LPAREN2] = ACTIONS(1424), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_TILDE] = ACTIONS(1424), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1424), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym_typedef] = ACTIONS(1422), - [anon_sym_extern] = ACTIONS(1422), - [anon_sym___attribute__] = ACTIONS(1422), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym___declspec] = ACTIONS(1422), - [anon_sym___cdecl] = ACTIONS(1422), - [anon_sym___clrcall] = ACTIONS(1422), - [anon_sym___stdcall] = ACTIONS(1422), - [anon_sym___fastcall] = ACTIONS(1422), - [anon_sym___thiscall] = ACTIONS(1422), - [anon_sym___vectorcall] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_signed] = ACTIONS(1422), - [anon_sym_unsigned] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_short] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_auto] = ACTIONS(1422), - [anon_sym_register] = ACTIONS(1422), - [anon_sym_inline] = ACTIONS(1422), - [anon_sym_thread_local] = ACTIONS(1422), - [anon_sym___thread] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_constexpr] = ACTIONS(1422), - [anon_sym_volatile] = ACTIONS(1422), - [anon_sym_restrict] = ACTIONS(1422), - [anon_sym___restrict__] = ACTIONS(1422), - [anon_sym__Atomic] = ACTIONS(1422), - [anon_sym__Noreturn] = ACTIONS(1422), - [anon_sym_noreturn] = ACTIONS(1422), - [sym_primitive_type] = ACTIONS(1422), - [anon_sym_enum] = ACTIONS(1422), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_union] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_case] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_do] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_goto] = ACTIONS(1422), - [anon_sym_DASH_DASH] = ACTIONS(1424), - [anon_sym_PLUS_PLUS] = ACTIONS(1424), - [anon_sym_sizeof] = ACTIONS(1422), - [anon_sym_offsetof] = ACTIONS(1422), - [anon_sym__Generic] = ACTIONS(1422), - [anon_sym_asm] = ACTIONS(1422), - [anon_sym___asm__] = ACTIONS(1422), - [sym_number_literal] = ACTIONS(1424), - [anon_sym_L_SQUOTE] = ACTIONS(1424), - [anon_sym_u_SQUOTE] = ACTIONS(1424), - [anon_sym_U_SQUOTE] = ACTIONS(1424), - [anon_sym_u8_SQUOTE] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_L_DQUOTE] = ACTIONS(1424), - [anon_sym_u_DQUOTE] = ACTIONS(1424), - [anon_sym_U_DQUOTE] = ACTIONS(1424), - [anon_sym_u8_DQUOTE] = ACTIONS(1424), - [anon_sym_DQUOTE] = ACTIONS(1424), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [anon_sym_NULL] = ACTIONS(1422), - [anon_sym_nullptr] = ACTIONS(1422), + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [aux_sym_preproc_else_token1] = ACTIONS(1320), + [aux_sym_preproc_elif_token1] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym___builtin_va_arg] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [214] = { - [sym_identifier] = ACTIONS(1426), - [aux_sym_preproc_include_token1] = ACTIONS(1426), - [aux_sym_preproc_def_token1] = ACTIONS(1426), - [aux_sym_preproc_if_token1] = ACTIONS(1426), - [aux_sym_preproc_if_token2] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), - [aux_sym_preproc_else_token1] = ACTIONS(1426), - [aux_sym_preproc_elif_token1] = ACTIONS(1426), - [sym_preproc_directive] = ACTIONS(1426), - [anon_sym_LPAREN2] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym_typedef] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym___attribute__] = ACTIONS(1426), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), - [anon_sym___declspec] = ACTIONS(1426), - [anon_sym___cdecl] = ACTIONS(1426), - [anon_sym___clrcall] = ACTIONS(1426), - [anon_sym___stdcall] = ACTIONS(1426), - [anon_sym___fastcall] = ACTIONS(1426), - [anon_sym___thiscall] = ACTIONS(1426), - [anon_sym___vectorcall] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_signed] = ACTIONS(1426), - [anon_sym_unsigned] = ACTIONS(1426), - [anon_sym_long] = ACTIONS(1426), - [anon_sym_short] = ACTIONS(1426), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_auto] = ACTIONS(1426), - [anon_sym_register] = ACTIONS(1426), - [anon_sym_inline] = ACTIONS(1426), - [anon_sym_thread_local] = ACTIONS(1426), - [anon_sym___thread] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_constexpr] = ACTIONS(1426), - [anon_sym_volatile] = ACTIONS(1426), - [anon_sym_restrict] = ACTIONS(1426), - [anon_sym___restrict__] = ACTIONS(1426), - [anon_sym__Atomic] = ACTIONS(1426), - [anon_sym__Noreturn] = ACTIONS(1426), - [anon_sym_noreturn] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(1426), - [anon_sym_enum] = ACTIONS(1426), - [anon_sym_struct] = ACTIONS(1426), - [anon_sym_union] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_switch] = ACTIONS(1426), - [anon_sym_case] = ACTIONS(1426), - [anon_sym_default] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_do] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_goto] = ACTIONS(1426), - [anon_sym_DASH_DASH] = ACTIONS(1428), - [anon_sym_PLUS_PLUS] = ACTIONS(1428), - [anon_sym_sizeof] = ACTIONS(1426), - [anon_sym_offsetof] = ACTIONS(1426), - [anon_sym__Generic] = ACTIONS(1426), - [anon_sym_asm] = ACTIONS(1426), - [anon_sym___asm__] = ACTIONS(1426), - [sym_number_literal] = ACTIONS(1428), - [anon_sym_L_SQUOTE] = ACTIONS(1428), - [anon_sym_u_SQUOTE] = ACTIONS(1428), - [anon_sym_U_SQUOTE] = ACTIONS(1428), - [anon_sym_u8_SQUOTE] = ACTIONS(1428), - [anon_sym_SQUOTE] = ACTIONS(1428), - [anon_sym_L_DQUOTE] = ACTIONS(1428), - [anon_sym_u_DQUOTE] = ACTIONS(1428), - [anon_sym_U_DQUOTE] = ACTIONS(1428), - [anon_sym_u8_DQUOTE] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [sym_true] = ACTIONS(1426), - [sym_false] = ACTIONS(1426), - [anon_sym_NULL] = ACTIONS(1426), - [anon_sym_nullptr] = ACTIONS(1426), + [sym_identifier] = ACTIONS(1324), + [aux_sym_preproc_include_token1] = ACTIONS(1324), + [aux_sym_preproc_def_token1] = ACTIONS(1324), + [aux_sym_preproc_if_token1] = ACTIONS(1324), + [aux_sym_preproc_if_token2] = ACTIONS(1324), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), + [aux_sym_preproc_else_token1] = ACTIONS(1324), + [aux_sym_preproc_elif_token1] = ACTIONS(1324), + [sym_preproc_directive] = ACTIONS(1324), + [anon_sym_LPAREN2] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1324), + [anon_sym_STAR] = ACTIONS(1326), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_SEMI] = ACTIONS(1326), + [anon_sym___extension__] = ACTIONS(1324), + [anon_sym_typedef] = ACTIONS(1324), + [anon_sym_extern] = ACTIONS(1324), + [anon_sym___attribute__] = ACTIONS(1324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), + [anon_sym___declspec] = ACTIONS(1324), + [anon_sym___cdecl] = ACTIONS(1324), + [anon_sym___clrcall] = ACTIONS(1324), + [anon_sym___stdcall] = ACTIONS(1324), + [anon_sym___fastcall] = ACTIONS(1324), + [anon_sym___thiscall] = ACTIONS(1324), + [anon_sym___vectorcall] = ACTIONS(1324), + [anon_sym_LBRACE] = ACTIONS(1326), + [anon_sym_signed] = ACTIONS(1324), + [anon_sym_unsigned] = ACTIONS(1324), + [anon_sym_long] = ACTIONS(1324), + [anon_sym_short] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(1324), + [anon_sym_auto] = ACTIONS(1324), + [anon_sym_register] = ACTIONS(1324), + [anon_sym_inline] = ACTIONS(1324), + [anon_sym___inline] = ACTIONS(1324), + [anon_sym___inline__] = ACTIONS(1324), + [anon_sym___forceinline] = ACTIONS(1324), + [anon_sym_thread_local] = ACTIONS(1324), + [anon_sym___thread] = ACTIONS(1324), + [anon_sym_const] = ACTIONS(1324), + [anon_sym_constexpr] = ACTIONS(1324), + [anon_sym_volatile] = ACTIONS(1324), + [anon_sym_restrict] = ACTIONS(1324), + [anon_sym___restrict__] = ACTIONS(1324), + [anon_sym__Atomic] = ACTIONS(1324), + [anon_sym__Noreturn] = ACTIONS(1324), + [anon_sym_noreturn] = ACTIONS(1324), + [sym_primitive_type] = ACTIONS(1324), + [anon_sym_enum] = ACTIONS(1324), + [anon_sym_struct] = ACTIONS(1324), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_if] = ACTIONS(1324), + [anon_sym_else] = ACTIONS(1324), + [anon_sym_switch] = ACTIONS(1324), + [anon_sym_case] = ACTIONS(1324), + [anon_sym_default] = ACTIONS(1324), + [anon_sym_while] = ACTIONS(1324), + [anon_sym_do] = ACTIONS(1324), + [anon_sym_for] = ACTIONS(1324), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1324), + [anon_sym_continue] = ACTIONS(1324), + [anon_sym_goto] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1326), + [anon_sym_PLUS_PLUS] = ACTIONS(1326), + [anon_sym_sizeof] = ACTIONS(1324), + [anon_sym___alignof__] = ACTIONS(1324), + [anon_sym___alignof] = ACTIONS(1324), + [anon_sym__alignof] = ACTIONS(1324), + [anon_sym_alignof] = ACTIONS(1324), + [anon_sym__Alignof] = ACTIONS(1324), + [anon_sym_offsetof] = ACTIONS(1324), + [anon_sym___builtin_va_arg] = ACTIONS(1324), + [anon_sym__Generic] = ACTIONS(1324), + [anon_sym_asm] = ACTIONS(1324), + [anon_sym___asm__] = ACTIONS(1324), + [sym_number_literal] = ACTIONS(1326), + [anon_sym_L_SQUOTE] = ACTIONS(1326), + [anon_sym_u_SQUOTE] = ACTIONS(1326), + [anon_sym_U_SQUOTE] = ACTIONS(1326), + [anon_sym_u8_SQUOTE] = ACTIONS(1326), + [anon_sym_SQUOTE] = ACTIONS(1326), + [anon_sym_L_DQUOTE] = ACTIONS(1326), + [anon_sym_u_DQUOTE] = ACTIONS(1326), + [anon_sym_U_DQUOTE] = ACTIONS(1326), + [anon_sym_u8_DQUOTE] = ACTIONS(1326), + [anon_sym_DQUOTE] = ACTIONS(1326), + [sym_true] = ACTIONS(1324), + [sym_false] = ACTIONS(1324), + [anon_sym_NULL] = ACTIONS(1324), + [anon_sym_nullptr] = ACTIONS(1324), [sym_comment] = ACTIONS(3), }, [215] = { - [sym_else_clause] = STATE(342), - [ts_builtin_sym_end] = ACTIONS(1174), - [sym_identifier] = ACTIONS(1172), - [aux_sym_preproc_include_token1] = ACTIONS(1172), - [aux_sym_preproc_def_token1] = ACTIONS(1172), - [aux_sym_preproc_if_token1] = ACTIONS(1172), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1172), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1172), - [sym_preproc_directive] = ACTIONS(1172), - [anon_sym_LPAREN2] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1174), - [anon_sym_TILDE] = ACTIONS(1174), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_PLUS] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(1174), - [anon_sym_SEMI] = ACTIONS(1174), - [anon_sym_typedef] = ACTIONS(1172), - [anon_sym_extern] = ACTIONS(1172), - [anon_sym___attribute__] = ACTIONS(1172), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1174), - [anon_sym___declspec] = ACTIONS(1172), - [anon_sym___cdecl] = ACTIONS(1172), - [anon_sym___clrcall] = ACTIONS(1172), - [anon_sym___stdcall] = ACTIONS(1172), - [anon_sym___fastcall] = ACTIONS(1172), - [anon_sym___thiscall] = ACTIONS(1172), - [anon_sym___vectorcall] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1174), - [anon_sym_signed] = ACTIONS(1172), - [anon_sym_unsigned] = ACTIONS(1172), - [anon_sym_long] = ACTIONS(1172), - [anon_sym_short] = ACTIONS(1172), - [anon_sym_static] = ACTIONS(1172), - [anon_sym_auto] = ACTIONS(1172), - [anon_sym_register] = ACTIONS(1172), - [anon_sym_inline] = ACTIONS(1172), - [anon_sym_thread_local] = ACTIONS(1172), - [anon_sym___thread] = ACTIONS(1172), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_constexpr] = ACTIONS(1172), - [anon_sym_volatile] = ACTIONS(1172), - [anon_sym_restrict] = ACTIONS(1172), - [anon_sym___restrict__] = ACTIONS(1172), - [anon_sym__Atomic] = ACTIONS(1172), - [anon_sym__Noreturn] = ACTIONS(1172), - [anon_sym_noreturn] = ACTIONS(1172), - [sym_primitive_type] = ACTIONS(1172), - [anon_sym_enum] = ACTIONS(1172), - [anon_sym_struct] = ACTIONS(1172), - [anon_sym_union] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_else] = ACTIONS(1446), - [anon_sym_switch] = ACTIONS(1172), - [anon_sym_case] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(1172), - [anon_sym_while] = ACTIONS(1172), - [anon_sym_do] = ACTIONS(1172), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1172), - [anon_sym_break] = ACTIONS(1172), - [anon_sym_continue] = ACTIONS(1172), - [anon_sym_goto] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1174), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_sizeof] = ACTIONS(1172), - [anon_sym_offsetof] = ACTIONS(1172), - [anon_sym__Generic] = ACTIONS(1172), - [anon_sym_asm] = ACTIONS(1172), - [anon_sym___asm__] = ACTIONS(1172), - [sym_number_literal] = ACTIONS(1174), - [anon_sym_L_SQUOTE] = ACTIONS(1174), - [anon_sym_u_SQUOTE] = ACTIONS(1174), - [anon_sym_U_SQUOTE] = ACTIONS(1174), - [anon_sym_u8_SQUOTE] = ACTIONS(1174), - [anon_sym_SQUOTE] = ACTIONS(1174), - [anon_sym_L_DQUOTE] = ACTIONS(1174), - [anon_sym_u_DQUOTE] = ACTIONS(1174), - [anon_sym_U_DQUOTE] = ACTIONS(1174), - [anon_sym_u8_DQUOTE] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1174), - [sym_true] = ACTIONS(1172), - [sym_false] = ACTIONS(1172), - [anon_sym_NULL] = ACTIONS(1172), - [anon_sym_nullptr] = ACTIONS(1172), + [sym_identifier] = ACTIONS(1328), + [aux_sym_preproc_include_token1] = ACTIONS(1328), + [aux_sym_preproc_def_token1] = ACTIONS(1328), + [aux_sym_preproc_if_token1] = ACTIONS(1328), + [aux_sym_preproc_if_token2] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), + [aux_sym_preproc_else_token1] = ACTIONS(1328), + [aux_sym_preproc_elif_token1] = ACTIONS(1328), + [sym_preproc_directive] = ACTIONS(1328), + [anon_sym_LPAREN2] = ACTIONS(1330), + [anon_sym_BANG] = ACTIONS(1330), + [anon_sym_TILDE] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1328), + [anon_sym_STAR] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1330), + [anon_sym_SEMI] = ACTIONS(1330), + [anon_sym___extension__] = ACTIONS(1328), + [anon_sym_typedef] = ACTIONS(1328), + [anon_sym_extern] = ACTIONS(1328), + [anon_sym___attribute__] = ACTIONS(1328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), + [anon_sym___declspec] = ACTIONS(1328), + [anon_sym___cdecl] = ACTIONS(1328), + [anon_sym___clrcall] = ACTIONS(1328), + [anon_sym___stdcall] = ACTIONS(1328), + [anon_sym___fastcall] = ACTIONS(1328), + [anon_sym___thiscall] = ACTIONS(1328), + [anon_sym___vectorcall] = ACTIONS(1328), + [anon_sym_LBRACE] = ACTIONS(1330), + [anon_sym_signed] = ACTIONS(1328), + [anon_sym_unsigned] = ACTIONS(1328), + [anon_sym_long] = ACTIONS(1328), + [anon_sym_short] = ACTIONS(1328), + [anon_sym_static] = ACTIONS(1328), + [anon_sym_auto] = ACTIONS(1328), + [anon_sym_register] = ACTIONS(1328), + [anon_sym_inline] = ACTIONS(1328), + [anon_sym___inline] = ACTIONS(1328), + [anon_sym___inline__] = ACTIONS(1328), + [anon_sym___forceinline] = ACTIONS(1328), + [anon_sym_thread_local] = ACTIONS(1328), + [anon_sym___thread] = ACTIONS(1328), + [anon_sym_const] = ACTIONS(1328), + [anon_sym_constexpr] = ACTIONS(1328), + [anon_sym_volatile] = ACTIONS(1328), + [anon_sym_restrict] = ACTIONS(1328), + [anon_sym___restrict__] = ACTIONS(1328), + [anon_sym__Atomic] = ACTIONS(1328), + [anon_sym__Noreturn] = ACTIONS(1328), + [anon_sym_noreturn] = ACTIONS(1328), + [sym_primitive_type] = ACTIONS(1328), + [anon_sym_enum] = ACTIONS(1328), + [anon_sym_struct] = ACTIONS(1328), + [anon_sym_union] = ACTIONS(1328), + [anon_sym_if] = ACTIONS(1328), + [anon_sym_else] = ACTIONS(1328), + [anon_sym_switch] = ACTIONS(1328), + [anon_sym_case] = ACTIONS(1328), + [anon_sym_default] = ACTIONS(1328), + [anon_sym_while] = ACTIONS(1328), + [anon_sym_do] = ACTIONS(1328), + [anon_sym_for] = ACTIONS(1328), + [anon_sym_return] = ACTIONS(1328), + [anon_sym_break] = ACTIONS(1328), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1328), + [anon_sym_DASH_DASH] = ACTIONS(1330), + [anon_sym_PLUS_PLUS] = ACTIONS(1330), + [anon_sym_sizeof] = ACTIONS(1328), + [anon_sym___alignof__] = ACTIONS(1328), + [anon_sym___alignof] = ACTIONS(1328), + [anon_sym__alignof] = ACTIONS(1328), + [anon_sym_alignof] = ACTIONS(1328), + [anon_sym__Alignof] = ACTIONS(1328), + [anon_sym_offsetof] = ACTIONS(1328), + [anon_sym___builtin_va_arg] = ACTIONS(1328), + [anon_sym__Generic] = ACTIONS(1328), + [anon_sym_asm] = ACTIONS(1328), + [anon_sym___asm__] = ACTIONS(1328), + [sym_number_literal] = ACTIONS(1330), + [anon_sym_L_SQUOTE] = ACTIONS(1330), + [anon_sym_u_SQUOTE] = ACTIONS(1330), + [anon_sym_U_SQUOTE] = ACTIONS(1330), + [anon_sym_u8_SQUOTE] = ACTIONS(1330), + [anon_sym_SQUOTE] = ACTIONS(1330), + [anon_sym_L_DQUOTE] = ACTIONS(1330), + [anon_sym_u_DQUOTE] = ACTIONS(1330), + [anon_sym_U_DQUOTE] = ACTIONS(1330), + [anon_sym_u8_DQUOTE] = ACTIONS(1330), + [anon_sym_DQUOTE] = ACTIONS(1330), + [sym_true] = ACTIONS(1328), + [sym_false] = ACTIONS(1328), + [anon_sym_NULL] = ACTIONS(1328), + [anon_sym_nullptr] = ACTIONS(1328), [sym_comment] = ACTIONS(3), }, [216] = { - [sym_identifier] = ACTIONS(1356), - [aux_sym_preproc_include_token1] = ACTIONS(1356), - [aux_sym_preproc_def_token1] = ACTIONS(1356), - [aux_sym_preproc_if_token1] = ACTIONS(1356), - [aux_sym_preproc_if_token2] = ACTIONS(1356), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), - [aux_sym_preproc_else_token1] = ACTIONS(1356), - [aux_sym_preproc_elif_token1] = ACTIONS(1356), - [sym_preproc_directive] = ACTIONS(1356), - [anon_sym_LPAREN2] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym_typedef] = ACTIONS(1356), - [anon_sym_extern] = ACTIONS(1356), - [anon_sym___attribute__] = ACTIONS(1356), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1358), - [anon_sym___declspec] = ACTIONS(1356), - [anon_sym___cdecl] = ACTIONS(1356), - [anon_sym___clrcall] = ACTIONS(1356), - [anon_sym___stdcall] = ACTIONS(1356), - [anon_sym___fastcall] = ACTIONS(1356), - [anon_sym___thiscall] = ACTIONS(1356), - [anon_sym___vectorcall] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_signed] = ACTIONS(1356), - [anon_sym_unsigned] = ACTIONS(1356), - [anon_sym_long] = ACTIONS(1356), - [anon_sym_short] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_auto] = ACTIONS(1356), - [anon_sym_register] = ACTIONS(1356), - [anon_sym_inline] = ACTIONS(1356), - [anon_sym_thread_local] = ACTIONS(1356), - [anon_sym___thread] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_constexpr] = ACTIONS(1356), - [anon_sym_volatile] = ACTIONS(1356), - [anon_sym_restrict] = ACTIONS(1356), - [anon_sym___restrict__] = ACTIONS(1356), - [anon_sym__Atomic] = ACTIONS(1356), - [anon_sym__Noreturn] = ACTIONS(1356), - [anon_sym_noreturn] = ACTIONS(1356), - [sym_primitive_type] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_struct] = ACTIONS(1356), - [anon_sym_union] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_switch] = ACTIONS(1356), - [anon_sym_case] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_do] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_goto] = ACTIONS(1356), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_sizeof] = ACTIONS(1356), - [anon_sym_offsetof] = ACTIONS(1356), - [anon_sym__Generic] = ACTIONS(1356), - [anon_sym_asm] = ACTIONS(1356), - [anon_sym___asm__] = ACTIONS(1356), - [sym_number_literal] = ACTIONS(1358), - [anon_sym_L_SQUOTE] = ACTIONS(1358), - [anon_sym_u_SQUOTE] = ACTIONS(1358), - [anon_sym_U_SQUOTE] = ACTIONS(1358), - [anon_sym_u8_SQUOTE] = ACTIONS(1358), - [anon_sym_SQUOTE] = ACTIONS(1358), - [anon_sym_L_DQUOTE] = ACTIONS(1358), - [anon_sym_u_DQUOTE] = ACTIONS(1358), - [anon_sym_U_DQUOTE] = ACTIONS(1358), - [anon_sym_u8_DQUOTE] = ACTIONS(1358), - [anon_sym_DQUOTE] = ACTIONS(1358), - [sym_true] = ACTIONS(1356), - [sym_false] = ACTIONS(1356), - [anon_sym_NULL] = ACTIONS(1356), - [anon_sym_nullptr] = ACTIONS(1356), - [sym_comment] = ACTIONS(3), - }, - [217] = { - [sym_identifier] = ACTIONS(1430), - [aux_sym_preproc_include_token1] = ACTIONS(1430), - [aux_sym_preproc_def_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token2] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), - [aux_sym_preproc_else_token1] = ACTIONS(1430), - [aux_sym_preproc_elif_token1] = ACTIONS(1430), - [sym_preproc_directive] = ACTIONS(1430), - [anon_sym_LPAREN2] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym_typedef] = ACTIONS(1430), - [anon_sym_extern] = ACTIONS(1430), - [anon_sym___attribute__] = ACTIONS(1430), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), - [anon_sym___declspec] = ACTIONS(1430), - [anon_sym___cdecl] = ACTIONS(1430), - [anon_sym___clrcall] = ACTIONS(1430), - [anon_sym___stdcall] = ACTIONS(1430), - [anon_sym___fastcall] = ACTIONS(1430), - [anon_sym___thiscall] = ACTIONS(1430), - [anon_sym___vectorcall] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_signed] = ACTIONS(1430), - [anon_sym_unsigned] = ACTIONS(1430), - [anon_sym_long] = ACTIONS(1430), - [anon_sym_short] = ACTIONS(1430), - [anon_sym_static] = ACTIONS(1430), - [anon_sym_auto] = ACTIONS(1430), - [anon_sym_register] = ACTIONS(1430), - [anon_sym_inline] = ACTIONS(1430), - [anon_sym_thread_local] = ACTIONS(1430), - [anon_sym___thread] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_constexpr] = ACTIONS(1430), - [anon_sym_volatile] = ACTIONS(1430), - [anon_sym_restrict] = ACTIONS(1430), - [anon_sym___restrict__] = ACTIONS(1430), - [anon_sym__Atomic] = ACTIONS(1430), - [anon_sym__Noreturn] = ACTIONS(1430), - [anon_sym_noreturn] = ACTIONS(1430), - [sym_primitive_type] = ACTIONS(1430), - [anon_sym_enum] = ACTIONS(1430), - [anon_sym_struct] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_switch] = ACTIONS(1430), - [anon_sym_case] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_goto] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1432), - [anon_sym_sizeof] = ACTIONS(1430), - [anon_sym_offsetof] = ACTIONS(1430), - [anon_sym__Generic] = ACTIONS(1430), - [anon_sym_asm] = ACTIONS(1430), - [anon_sym___asm__] = ACTIONS(1430), - [sym_number_literal] = ACTIONS(1432), - [anon_sym_L_SQUOTE] = ACTIONS(1432), - [anon_sym_u_SQUOTE] = ACTIONS(1432), - [anon_sym_U_SQUOTE] = ACTIONS(1432), - [anon_sym_u8_SQUOTE] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1432), - [anon_sym_L_DQUOTE] = ACTIONS(1432), - [anon_sym_u_DQUOTE] = ACTIONS(1432), - [anon_sym_U_DQUOTE] = ACTIONS(1432), - [anon_sym_u8_DQUOTE] = ACTIONS(1432), - [anon_sym_DQUOTE] = ACTIONS(1432), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [anon_sym_NULL] = ACTIONS(1430), - [anon_sym_nullptr] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - }, - [218] = { - [sym_identifier] = ACTIONS(1434), - [aux_sym_preproc_include_token1] = ACTIONS(1434), - [aux_sym_preproc_def_token1] = ACTIONS(1434), - [aux_sym_preproc_if_token1] = ACTIONS(1434), - [aux_sym_preproc_if_token2] = ACTIONS(1434), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), - [aux_sym_preproc_else_token1] = ACTIONS(1434), - [aux_sym_preproc_elif_token1] = ACTIONS(1434), - [sym_preproc_directive] = ACTIONS(1434), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1436), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1434), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1436), - [anon_sym_typedef] = ACTIONS(1434), - [anon_sym_extern] = ACTIONS(1434), - [anon_sym___attribute__] = ACTIONS(1434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1436), - [anon_sym___declspec] = ACTIONS(1434), - [anon_sym___cdecl] = ACTIONS(1434), - [anon_sym___clrcall] = ACTIONS(1434), - [anon_sym___stdcall] = ACTIONS(1434), - [anon_sym___fastcall] = ACTIONS(1434), - [anon_sym___thiscall] = ACTIONS(1434), - [anon_sym___vectorcall] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1434), - [anon_sym_unsigned] = ACTIONS(1434), - [anon_sym_long] = ACTIONS(1434), - [anon_sym_short] = ACTIONS(1434), - [anon_sym_static] = ACTIONS(1434), - [anon_sym_auto] = ACTIONS(1434), - [anon_sym_register] = ACTIONS(1434), - [anon_sym_inline] = ACTIONS(1434), - [anon_sym_thread_local] = ACTIONS(1434), - [anon_sym___thread] = ACTIONS(1434), - [anon_sym_const] = ACTIONS(1434), - [anon_sym_constexpr] = ACTIONS(1434), - [anon_sym_volatile] = ACTIONS(1434), - [anon_sym_restrict] = ACTIONS(1434), - [anon_sym___restrict__] = ACTIONS(1434), - [anon_sym__Atomic] = ACTIONS(1434), - [anon_sym__Noreturn] = ACTIONS(1434), - [anon_sym_noreturn] = ACTIONS(1434), - [sym_primitive_type] = ACTIONS(1434), - [anon_sym_enum] = ACTIONS(1434), - [anon_sym_struct] = ACTIONS(1434), - [anon_sym_union] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_switch] = ACTIONS(1434), - [anon_sym_case] = ACTIONS(1434), - [anon_sym_default] = ACTIONS(1434), - [anon_sym_while] = ACTIONS(1434), - [anon_sym_do] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1434), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_goto] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1436), - [anon_sym_PLUS_PLUS] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1434), - [anon_sym_offsetof] = ACTIONS(1434), - [anon_sym__Generic] = ACTIONS(1434), - [anon_sym_asm] = ACTIONS(1434), - [anon_sym___asm__] = ACTIONS(1434), - [sym_number_literal] = ACTIONS(1436), - [anon_sym_L_SQUOTE] = ACTIONS(1436), - [anon_sym_u_SQUOTE] = ACTIONS(1436), - [anon_sym_U_SQUOTE] = ACTIONS(1436), - [anon_sym_u8_SQUOTE] = ACTIONS(1436), - [anon_sym_SQUOTE] = ACTIONS(1436), - [anon_sym_L_DQUOTE] = ACTIONS(1436), - [anon_sym_u_DQUOTE] = ACTIONS(1436), - [anon_sym_U_DQUOTE] = ACTIONS(1436), - [anon_sym_u8_DQUOTE] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1436), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [anon_sym_NULL] = ACTIONS(1434), - [anon_sym_nullptr] = ACTIONS(1434), - [sym_comment] = ACTIONS(3), - }, - [219] = { - [sym_identifier] = ACTIONS(1398), - [aux_sym_preproc_include_token1] = ACTIONS(1398), - [aux_sym_preproc_def_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token2] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), - [aux_sym_preproc_else_token1] = ACTIONS(1398), - [aux_sym_preproc_elif_token1] = ACTIONS(1398), - [sym_preproc_directive] = ACTIONS(1398), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_typedef] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym___attribute__] = ACTIONS(1398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), - [anon_sym___declspec] = ACTIONS(1398), - [anon_sym___cdecl] = ACTIONS(1398), - [anon_sym___clrcall] = ACTIONS(1398), - [anon_sym___stdcall] = ACTIONS(1398), - [anon_sym___fastcall] = ACTIONS(1398), - [anon_sym___thiscall] = ACTIONS(1398), - [anon_sym___vectorcall] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_auto] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym_thread_local] = ACTIONS(1398), - [anon_sym___thread] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_constexpr] = ACTIONS(1398), - [anon_sym_volatile] = ACTIONS(1398), - [anon_sym_restrict] = ACTIONS(1398), - [anon_sym___restrict__] = ACTIONS(1398), - [anon_sym__Atomic] = ACTIONS(1398), - [anon_sym__Noreturn] = ACTIONS(1398), - [anon_sym_noreturn] = ACTIONS(1398), - [sym_primitive_type] = ACTIONS(1398), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_struct] = ACTIONS(1398), - [anon_sym_union] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_case] = ACTIONS(1398), - [anon_sym_default] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_goto] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_sizeof] = ACTIONS(1398), - [anon_sym_offsetof] = ACTIONS(1398), - [anon_sym__Generic] = ACTIONS(1398), - [anon_sym_asm] = ACTIONS(1398), - [anon_sym___asm__] = ACTIONS(1398), - [sym_number_literal] = ACTIONS(1400), - [anon_sym_L_SQUOTE] = ACTIONS(1400), - [anon_sym_u_SQUOTE] = ACTIONS(1400), - [anon_sym_U_SQUOTE] = ACTIONS(1400), - [anon_sym_u8_SQUOTE] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_L_DQUOTE] = ACTIONS(1400), - [anon_sym_u_DQUOTE] = ACTIONS(1400), - [anon_sym_U_DQUOTE] = ACTIONS(1400), - [anon_sym_u8_DQUOTE] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym_true] = ACTIONS(1398), - [sym_false] = ACTIONS(1398), - [anon_sym_NULL] = ACTIONS(1398), - [anon_sym_nullptr] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - }, - [220] = { - [sym_identifier] = ACTIONS(1438), - [aux_sym_preproc_include_token1] = ACTIONS(1438), - [aux_sym_preproc_def_token1] = ACTIONS(1438), - [aux_sym_preproc_if_token1] = ACTIONS(1438), - [aux_sym_preproc_if_token2] = ACTIONS(1438), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), - [aux_sym_preproc_else_token1] = ACTIONS(1438), - [aux_sym_preproc_elif_token1] = ACTIONS(1438), - [sym_preproc_directive] = ACTIONS(1438), - [anon_sym_LPAREN2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1440), - [anon_sym_TILDE] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_typedef] = ACTIONS(1438), - [anon_sym_extern] = ACTIONS(1438), - [anon_sym___attribute__] = ACTIONS(1438), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1440), - [anon_sym___declspec] = ACTIONS(1438), - [anon_sym___cdecl] = ACTIONS(1438), - [anon_sym___clrcall] = ACTIONS(1438), - [anon_sym___stdcall] = ACTIONS(1438), - [anon_sym___fastcall] = ACTIONS(1438), - [anon_sym___thiscall] = ACTIONS(1438), - [anon_sym___vectorcall] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_signed] = ACTIONS(1438), - [anon_sym_unsigned] = ACTIONS(1438), - [anon_sym_long] = ACTIONS(1438), - [anon_sym_short] = ACTIONS(1438), - [anon_sym_static] = ACTIONS(1438), - [anon_sym_auto] = ACTIONS(1438), - [anon_sym_register] = ACTIONS(1438), - [anon_sym_inline] = ACTIONS(1438), - [anon_sym_thread_local] = ACTIONS(1438), - [anon_sym___thread] = ACTIONS(1438), - [anon_sym_const] = ACTIONS(1438), - [anon_sym_constexpr] = ACTIONS(1438), - [anon_sym_volatile] = ACTIONS(1438), - [anon_sym_restrict] = ACTIONS(1438), - [anon_sym___restrict__] = ACTIONS(1438), - [anon_sym__Atomic] = ACTIONS(1438), - [anon_sym__Noreturn] = ACTIONS(1438), - [anon_sym_noreturn] = ACTIONS(1438), - [sym_primitive_type] = ACTIONS(1438), - [anon_sym_enum] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1438), - [anon_sym_union] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1438), - [anon_sym_switch] = ACTIONS(1438), - [anon_sym_case] = ACTIONS(1438), - [anon_sym_default] = ACTIONS(1438), - [anon_sym_while] = ACTIONS(1438), - [anon_sym_do] = ACTIONS(1438), - [anon_sym_for] = ACTIONS(1438), - [anon_sym_return] = ACTIONS(1438), - [anon_sym_break] = ACTIONS(1438), - [anon_sym_continue] = ACTIONS(1438), - [anon_sym_goto] = ACTIONS(1438), - [anon_sym_DASH_DASH] = ACTIONS(1440), - [anon_sym_PLUS_PLUS] = ACTIONS(1440), - [anon_sym_sizeof] = ACTIONS(1438), - [anon_sym_offsetof] = ACTIONS(1438), - [anon_sym__Generic] = ACTIONS(1438), - [anon_sym_asm] = ACTIONS(1438), - [anon_sym___asm__] = ACTIONS(1438), - [sym_number_literal] = ACTIONS(1440), - [anon_sym_L_SQUOTE] = ACTIONS(1440), - [anon_sym_u_SQUOTE] = ACTIONS(1440), - [anon_sym_U_SQUOTE] = ACTIONS(1440), - [anon_sym_u8_SQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1440), - [anon_sym_L_DQUOTE] = ACTIONS(1440), - [anon_sym_u_DQUOTE] = ACTIONS(1440), - [anon_sym_U_DQUOTE] = ACTIONS(1440), - [anon_sym_u8_DQUOTE] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1440), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [anon_sym_NULL] = ACTIONS(1438), - [anon_sym_nullptr] = ACTIONS(1438), - [sym_comment] = ACTIONS(3), - }, - [221] = { - [sym_identifier] = ACTIONS(1392), - [aux_sym_preproc_include_token1] = ACTIONS(1392), - [aux_sym_preproc_def_token1] = ACTIONS(1392), - [aux_sym_preproc_if_token1] = ACTIONS(1392), - [aux_sym_preproc_if_token2] = ACTIONS(1392), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1392), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1392), - [aux_sym_preproc_else_token1] = ACTIONS(1392), - [aux_sym_preproc_elif_token1] = ACTIONS(1392), - [sym_preproc_directive] = ACTIONS(1392), - [anon_sym_LPAREN2] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_TILDE] = ACTIONS(1394), - [anon_sym_DASH] = ACTIONS(1392), - [anon_sym_PLUS] = ACTIONS(1392), - [anon_sym_STAR] = ACTIONS(1394), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_SEMI] = ACTIONS(1394), - [anon_sym_typedef] = ACTIONS(1392), - [anon_sym_extern] = ACTIONS(1392), - [anon_sym___attribute__] = ACTIONS(1392), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1394), - [anon_sym___declspec] = ACTIONS(1392), - [anon_sym___cdecl] = ACTIONS(1392), - [anon_sym___clrcall] = ACTIONS(1392), - [anon_sym___stdcall] = ACTIONS(1392), - [anon_sym___fastcall] = ACTIONS(1392), - [anon_sym___thiscall] = ACTIONS(1392), - [anon_sym___vectorcall] = ACTIONS(1392), - [anon_sym_LBRACE] = ACTIONS(1394), - [anon_sym_signed] = ACTIONS(1392), - [anon_sym_unsigned] = ACTIONS(1392), - [anon_sym_long] = ACTIONS(1392), - [anon_sym_short] = ACTIONS(1392), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_auto] = ACTIONS(1392), - [anon_sym_register] = ACTIONS(1392), - [anon_sym_inline] = ACTIONS(1392), - [anon_sym_thread_local] = ACTIONS(1392), - [anon_sym___thread] = ACTIONS(1392), - [anon_sym_const] = ACTIONS(1392), - [anon_sym_constexpr] = ACTIONS(1392), - [anon_sym_volatile] = ACTIONS(1392), - [anon_sym_restrict] = ACTIONS(1392), - [anon_sym___restrict__] = ACTIONS(1392), - [anon_sym__Atomic] = ACTIONS(1392), - [anon_sym__Noreturn] = ACTIONS(1392), - [anon_sym_noreturn] = ACTIONS(1392), - [sym_primitive_type] = ACTIONS(1392), - [anon_sym_enum] = ACTIONS(1392), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_union] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1392), - [anon_sym_switch] = ACTIONS(1392), - [anon_sym_case] = ACTIONS(1392), - [anon_sym_default] = ACTIONS(1392), - [anon_sym_while] = ACTIONS(1392), - [anon_sym_do] = ACTIONS(1392), - [anon_sym_for] = ACTIONS(1392), - [anon_sym_return] = ACTIONS(1392), - [anon_sym_break] = ACTIONS(1392), - [anon_sym_continue] = ACTIONS(1392), - [anon_sym_goto] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(1394), - [anon_sym_PLUS_PLUS] = ACTIONS(1394), - [anon_sym_sizeof] = ACTIONS(1392), - [anon_sym_offsetof] = ACTIONS(1392), - [anon_sym__Generic] = ACTIONS(1392), - [anon_sym_asm] = ACTIONS(1392), - [anon_sym___asm__] = ACTIONS(1392), - [sym_number_literal] = ACTIONS(1394), - [anon_sym_L_SQUOTE] = ACTIONS(1394), - [anon_sym_u_SQUOTE] = ACTIONS(1394), - [anon_sym_U_SQUOTE] = ACTIONS(1394), - [anon_sym_u8_SQUOTE] = ACTIONS(1394), - [anon_sym_SQUOTE] = ACTIONS(1394), - [anon_sym_L_DQUOTE] = ACTIONS(1394), - [anon_sym_u_DQUOTE] = ACTIONS(1394), - [anon_sym_U_DQUOTE] = ACTIONS(1394), - [anon_sym_u8_DQUOTE] = ACTIONS(1394), - [anon_sym_DQUOTE] = ACTIONS(1394), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [anon_sym_NULL] = ACTIONS(1392), - [anon_sym_nullptr] = ACTIONS(1392), + [sym_identifier] = ACTIONS(1332), + [aux_sym_preproc_include_token1] = ACTIONS(1332), + [aux_sym_preproc_def_token1] = ACTIONS(1332), + [aux_sym_preproc_if_token1] = ACTIONS(1332), + [aux_sym_preproc_if_token2] = ACTIONS(1332), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), + [aux_sym_preproc_else_token1] = ACTIONS(1332), + [aux_sym_preproc_elif_token1] = ACTIONS(1332), + [sym_preproc_directive] = ACTIONS(1332), + [anon_sym_LPAREN2] = ACTIONS(1334), + [anon_sym_BANG] = ACTIONS(1334), + [anon_sym_TILDE] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1332), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1334), + [anon_sym___extension__] = ACTIONS(1332), + [anon_sym_typedef] = ACTIONS(1332), + [anon_sym_extern] = ACTIONS(1332), + [anon_sym___attribute__] = ACTIONS(1332), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), + [anon_sym___declspec] = ACTIONS(1332), + [anon_sym___cdecl] = ACTIONS(1332), + [anon_sym___clrcall] = ACTIONS(1332), + [anon_sym___stdcall] = ACTIONS(1332), + [anon_sym___fastcall] = ACTIONS(1332), + [anon_sym___thiscall] = ACTIONS(1332), + [anon_sym___vectorcall] = ACTIONS(1332), + [anon_sym_LBRACE] = ACTIONS(1334), + [anon_sym_signed] = ACTIONS(1332), + [anon_sym_unsigned] = ACTIONS(1332), + [anon_sym_long] = ACTIONS(1332), + [anon_sym_short] = ACTIONS(1332), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_auto] = ACTIONS(1332), + [anon_sym_register] = ACTIONS(1332), + [anon_sym_inline] = ACTIONS(1332), + [anon_sym___inline] = ACTIONS(1332), + [anon_sym___inline__] = ACTIONS(1332), + [anon_sym___forceinline] = ACTIONS(1332), + [anon_sym_thread_local] = ACTIONS(1332), + [anon_sym___thread] = ACTIONS(1332), + [anon_sym_const] = ACTIONS(1332), + [anon_sym_constexpr] = ACTIONS(1332), + [anon_sym_volatile] = ACTIONS(1332), + [anon_sym_restrict] = ACTIONS(1332), + [anon_sym___restrict__] = ACTIONS(1332), + [anon_sym__Atomic] = ACTIONS(1332), + [anon_sym__Noreturn] = ACTIONS(1332), + [anon_sym_noreturn] = ACTIONS(1332), + [sym_primitive_type] = ACTIONS(1332), + [anon_sym_enum] = ACTIONS(1332), + [anon_sym_struct] = ACTIONS(1332), + [anon_sym_union] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(1332), + [anon_sym_else] = ACTIONS(1332), + [anon_sym_switch] = ACTIONS(1332), + [anon_sym_case] = ACTIONS(1332), + [anon_sym_default] = ACTIONS(1332), + [anon_sym_while] = ACTIONS(1332), + [anon_sym_do] = ACTIONS(1332), + [anon_sym_for] = ACTIONS(1332), + [anon_sym_return] = ACTIONS(1332), + [anon_sym_break] = ACTIONS(1332), + [anon_sym_continue] = ACTIONS(1332), + [anon_sym_goto] = ACTIONS(1332), + [anon_sym_DASH_DASH] = ACTIONS(1334), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_sizeof] = ACTIONS(1332), + [anon_sym___alignof__] = ACTIONS(1332), + [anon_sym___alignof] = ACTIONS(1332), + [anon_sym__alignof] = ACTIONS(1332), + [anon_sym_alignof] = ACTIONS(1332), + [anon_sym__Alignof] = ACTIONS(1332), + [anon_sym_offsetof] = ACTIONS(1332), + [anon_sym___builtin_va_arg] = ACTIONS(1332), + [anon_sym__Generic] = ACTIONS(1332), + [anon_sym_asm] = ACTIONS(1332), + [anon_sym___asm__] = ACTIONS(1332), + [sym_number_literal] = ACTIONS(1334), + [anon_sym_L_SQUOTE] = ACTIONS(1334), + [anon_sym_u_SQUOTE] = ACTIONS(1334), + [anon_sym_U_SQUOTE] = ACTIONS(1334), + [anon_sym_u8_SQUOTE] = ACTIONS(1334), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_L_DQUOTE] = ACTIONS(1334), + [anon_sym_u_DQUOTE] = ACTIONS(1334), + [anon_sym_U_DQUOTE] = ACTIONS(1334), + [anon_sym_u8_DQUOTE] = ACTIONS(1334), + [anon_sym_DQUOTE] = ACTIONS(1334), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [anon_sym_NULL] = ACTIONS(1332), + [anon_sym_nullptr] = ACTIONS(1332), [sym_comment] = ACTIONS(3), }, - [222] = { - [sym_identifier] = ACTIONS(1368), - [aux_sym_preproc_include_token1] = ACTIONS(1368), - [aux_sym_preproc_def_token1] = ACTIONS(1368), - [aux_sym_preproc_if_token1] = ACTIONS(1368), - [aux_sym_preproc_if_token2] = ACTIONS(1368), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1368), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1368), - [aux_sym_preproc_else_token1] = ACTIONS(1368), - [aux_sym_preproc_elif_token1] = ACTIONS(1368), - [sym_preproc_directive] = ACTIONS(1368), - [anon_sym_LPAREN2] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_typedef] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym___attribute__] = ACTIONS(1368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1370), - [anon_sym___declspec] = ACTIONS(1368), - [anon_sym___cdecl] = ACTIONS(1368), - [anon_sym___clrcall] = ACTIONS(1368), - [anon_sym___stdcall] = ACTIONS(1368), - [anon_sym___fastcall] = ACTIONS(1368), - [anon_sym___thiscall] = ACTIONS(1368), - [anon_sym___vectorcall] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_signed] = ACTIONS(1368), - [anon_sym_unsigned] = ACTIONS(1368), - [anon_sym_long] = ACTIONS(1368), - [anon_sym_short] = ACTIONS(1368), - [anon_sym_static] = ACTIONS(1368), - [anon_sym_auto] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_inline] = ACTIONS(1368), - [anon_sym_thread_local] = ACTIONS(1368), - [anon_sym___thread] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_constexpr] = ACTIONS(1368), - [anon_sym_volatile] = ACTIONS(1368), - [anon_sym_restrict] = ACTIONS(1368), - [anon_sym___restrict__] = ACTIONS(1368), - [anon_sym__Atomic] = ACTIONS(1368), - [anon_sym__Noreturn] = ACTIONS(1368), - [anon_sym_noreturn] = ACTIONS(1368), - [sym_primitive_type] = ACTIONS(1368), - [anon_sym_enum] = ACTIONS(1368), - [anon_sym_struct] = ACTIONS(1368), - [anon_sym_union] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_switch] = ACTIONS(1368), - [anon_sym_case] = ACTIONS(1368), - [anon_sym_default] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_goto] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_sizeof] = ACTIONS(1368), - [anon_sym_offsetof] = ACTIONS(1368), - [anon_sym__Generic] = ACTIONS(1368), - [anon_sym_asm] = ACTIONS(1368), - [anon_sym___asm__] = ACTIONS(1368), - [sym_number_literal] = ACTIONS(1370), - [anon_sym_L_SQUOTE] = ACTIONS(1370), - [anon_sym_u_SQUOTE] = ACTIONS(1370), - [anon_sym_U_SQUOTE] = ACTIONS(1370), - [anon_sym_u8_SQUOTE] = ACTIONS(1370), - [anon_sym_SQUOTE] = ACTIONS(1370), - [anon_sym_L_DQUOTE] = ACTIONS(1370), - [anon_sym_u_DQUOTE] = ACTIONS(1370), - [anon_sym_U_DQUOTE] = ACTIONS(1370), - [anon_sym_u8_DQUOTE] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym_true] = ACTIONS(1368), - [sym_false] = ACTIONS(1368), - [anon_sym_NULL] = ACTIONS(1368), - [anon_sym_nullptr] = ACTIONS(1368), + [217] = { + [sym_identifier] = ACTIONS(1340), + [aux_sym_preproc_include_token1] = ACTIONS(1340), + [aux_sym_preproc_def_token1] = ACTIONS(1340), + [aux_sym_preproc_if_token1] = ACTIONS(1340), + [aux_sym_preproc_if_token2] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), + [aux_sym_preproc_else_token1] = ACTIONS(1340), + [aux_sym_preproc_elif_token1] = ACTIONS(1340), + [sym_preproc_directive] = ACTIONS(1340), + [anon_sym_LPAREN2] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym___extension__] = ACTIONS(1340), + [anon_sym_typedef] = ACTIONS(1340), + [anon_sym_extern] = ACTIONS(1340), + [anon_sym___attribute__] = ACTIONS(1340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), + [anon_sym___declspec] = ACTIONS(1340), + [anon_sym___cdecl] = ACTIONS(1340), + [anon_sym___clrcall] = ACTIONS(1340), + [anon_sym___stdcall] = ACTIONS(1340), + [anon_sym___fastcall] = ACTIONS(1340), + [anon_sym___thiscall] = ACTIONS(1340), + [anon_sym___vectorcall] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(1342), + [anon_sym_signed] = ACTIONS(1340), + [anon_sym_unsigned] = ACTIONS(1340), + [anon_sym_long] = ACTIONS(1340), + [anon_sym_short] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_auto] = ACTIONS(1340), + [anon_sym_register] = ACTIONS(1340), + [anon_sym_inline] = ACTIONS(1340), + [anon_sym___inline] = ACTIONS(1340), + [anon_sym___inline__] = ACTIONS(1340), + [anon_sym___forceinline] = ACTIONS(1340), + [anon_sym_thread_local] = ACTIONS(1340), + [anon_sym___thread] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_constexpr] = ACTIONS(1340), + [anon_sym_volatile] = ACTIONS(1340), + [anon_sym_restrict] = ACTIONS(1340), + [anon_sym___restrict__] = ACTIONS(1340), + [anon_sym__Atomic] = ACTIONS(1340), + [anon_sym__Noreturn] = ACTIONS(1340), + [anon_sym_noreturn] = ACTIONS(1340), + [sym_primitive_type] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_else] = ACTIONS(1340), + [anon_sym_switch] = ACTIONS(1340), + [anon_sym_case] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [anon_sym_do] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_goto] = ACTIONS(1340), + [anon_sym_DASH_DASH] = ACTIONS(1342), + [anon_sym_PLUS_PLUS] = ACTIONS(1342), + [anon_sym_sizeof] = ACTIONS(1340), + [anon_sym___alignof__] = ACTIONS(1340), + [anon_sym___alignof] = ACTIONS(1340), + [anon_sym__alignof] = ACTIONS(1340), + [anon_sym_alignof] = ACTIONS(1340), + [anon_sym__Alignof] = ACTIONS(1340), + [anon_sym_offsetof] = ACTIONS(1340), + [anon_sym___builtin_va_arg] = ACTIONS(1340), + [anon_sym__Generic] = ACTIONS(1340), + [anon_sym_asm] = ACTIONS(1340), + [anon_sym___asm__] = ACTIONS(1340), + [sym_number_literal] = ACTIONS(1342), + [anon_sym_L_SQUOTE] = ACTIONS(1342), + [anon_sym_u_SQUOTE] = ACTIONS(1342), + [anon_sym_U_SQUOTE] = ACTIONS(1342), + [anon_sym_u8_SQUOTE] = ACTIONS(1342), + [anon_sym_SQUOTE] = ACTIONS(1342), + [anon_sym_L_DQUOTE] = ACTIONS(1342), + [anon_sym_u_DQUOTE] = ACTIONS(1342), + [anon_sym_U_DQUOTE] = ACTIONS(1342), + [anon_sym_u8_DQUOTE] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1342), + [sym_true] = ACTIONS(1340), + [sym_false] = ACTIONS(1340), + [anon_sym_NULL] = ACTIONS(1340), + [anon_sym_nullptr] = ACTIONS(1340), [sym_comment] = ACTIONS(3), }, - [223] = { - [sym_identifier] = ACTIONS(1376), - [aux_sym_preproc_include_token1] = ACTIONS(1376), - [aux_sym_preproc_def_token1] = ACTIONS(1376), - [aux_sym_preproc_if_token1] = ACTIONS(1376), - [aux_sym_preproc_if_token2] = ACTIONS(1376), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1376), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1376), - [aux_sym_preproc_else_token1] = ACTIONS(1376), - [aux_sym_preproc_elif_token1] = ACTIONS(1376), - [sym_preproc_directive] = ACTIONS(1376), - [anon_sym_LPAREN2] = ACTIONS(1378), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_AMP] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_typedef] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym___attribute__] = ACTIONS(1376), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1378), - [anon_sym___declspec] = ACTIONS(1376), - [anon_sym___cdecl] = ACTIONS(1376), - [anon_sym___clrcall] = ACTIONS(1376), - [anon_sym___stdcall] = ACTIONS(1376), - [anon_sym___fastcall] = ACTIONS(1376), - [anon_sym___thiscall] = ACTIONS(1376), - [anon_sym___vectorcall] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_signed] = ACTIONS(1376), - [anon_sym_unsigned] = ACTIONS(1376), - [anon_sym_long] = ACTIONS(1376), - [anon_sym_short] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(1376), - [anon_sym_auto] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_inline] = ACTIONS(1376), - [anon_sym_thread_local] = ACTIONS(1376), - [anon_sym___thread] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_constexpr] = ACTIONS(1376), - [anon_sym_volatile] = ACTIONS(1376), - [anon_sym_restrict] = ACTIONS(1376), - [anon_sym___restrict__] = ACTIONS(1376), - [anon_sym__Atomic] = ACTIONS(1376), - [anon_sym__Noreturn] = ACTIONS(1376), - [anon_sym_noreturn] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(1376), - [anon_sym_enum] = ACTIONS(1376), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_union] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1376), - [anon_sym_case] = ACTIONS(1376), - [anon_sym_default] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_goto] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1378), - [anon_sym_sizeof] = ACTIONS(1376), - [anon_sym_offsetof] = ACTIONS(1376), - [anon_sym__Generic] = ACTIONS(1376), - [anon_sym_asm] = ACTIONS(1376), - [anon_sym___asm__] = ACTIONS(1376), - [sym_number_literal] = ACTIONS(1378), - [anon_sym_L_SQUOTE] = ACTIONS(1378), - [anon_sym_u_SQUOTE] = ACTIONS(1378), - [anon_sym_U_SQUOTE] = ACTIONS(1378), - [anon_sym_u8_SQUOTE] = ACTIONS(1378), - [anon_sym_SQUOTE] = ACTIONS(1378), - [anon_sym_L_DQUOTE] = ACTIONS(1378), - [anon_sym_u_DQUOTE] = ACTIONS(1378), - [anon_sym_U_DQUOTE] = ACTIONS(1378), - [anon_sym_u8_DQUOTE] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym_true] = ACTIONS(1376), - [sym_false] = ACTIONS(1376), - [anon_sym_NULL] = ACTIONS(1376), - [anon_sym_nullptr] = ACTIONS(1376), + [218] = { + [sym_identifier] = ACTIONS(1344), + [aux_sym_preproc_include_token1] = ACTIONS(1344), + [aux_sym_preproc_def_token1] = ACTIONS(1344), + [aux_sym_preproc_if_token1] = ACTIONS(1344), + [aux_sym_preproc_if_token2] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), + [aux_sym_preproc_else_token1] = ACTIONS(1344), + [aux_sym_preproc_elif_token1] = ACTIONS(1344), + [sym_preproc_directive] = ACTIONS(1344), + [anon_sym_LPAREN2] = ACTIONS(1346), + [anon_sym_BANG] = ACTIONS(1346), + [anon_sym_TILDE] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1344), + [anon_sym_PLUS] = ACTIONS(1344), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1346), + [anon_sym___extension__] = ACTIONS(1344), + [anon_sym_typedef] = ACTIONS(1344), + [anon_sym_extern] = ACTIONS(1344), + [anon_sym___attribute__] = ACTIONS(1344), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), + [anon_sym___declspec] = ACTIONS(1344), + [anon_sym___cdecl] = ACTIONS(1344), + [anon_sym___clrcall] = ACTIONS(1344), + [anon_sym___stdcall] = ACTIONS(1344), + [anon_sym___fastcall] = ACTIONS(1344), + [anon_sym___thiscall] = ACTIONS(1344), + [anon_sym___vectorcall] = ACTIONS(1344), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_signed] = ACTIONS(1344), + [anon_sym_unsigned] = ACTIONS(1344), + [anon_sym_long] = ACTIONS(1344), + [anon_sym_short] = ACTIONS(1344), + [anon_sym_static] = ACTIONS(1344), + [anon_sym_auto] = ACTIONS(1344), + [anon_sym_register] = ACTIONS(1344), + [anon_sym_inline] = ACTIONS(1344), + [anon_sym___inline] = ACTIONS(1344), + [anon_sym___inline__] = ACTIONS(1344), + [anon_sym___forceinline] = ACTIONS(1344), + [anon_sym_thread_local] = ACTIONS(1344), + [anon_sym___thread] = ACTIONS(1344), + [anon_sym_const] = ACTIONS(1344), + [anon_sym_constexpr] = ACTIONS(1344), + [anon_sym_volatile] = ACTIONS(1344), + [anon_sym_restrict] = ACTIONS(1344), + [anon_sym___restrict__] = ACTIONS(1344), + [anon_sym__Atomic] = ACTIONS(1344), + [anon_sym__Noreturn] = ACTIONS(1344), + [anon_sym_noreturn] = ACTIONS(1344), + [sym_primitive_type] = ACTIONS(1344), + [anon_sym_enum] = ACTIONS(1344), + [anon_sym_struct] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_else] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(1344), + [anon_sym_case] = ACTIONS(1344), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_while] = ACTIONS(1344), + [anon_sym_do] = ACTIONS(1344), + [anon_sym_for] = ACTIONS(1344), + [anon_sym_return] = ACTIONS(1344), + [anon_sym_break] = ACTIONS(1344), + [anon_sym_continue] = ACTIONS(1344), + [anon_sym_goto] = ACTIONS(1344), + [anon_sym_DASH_DASH] = ACTIONS(1346), + [anon_sym_PLUS_PLUS] = ACTIONS(1346), + [anon_sym_sizeof] = ACTIONS(1344), + [anon_sym___alignof__] = ACTIONS(1344), + [anon_sym___alignof] = ACTIONS(1344), + [anon_sym__alignof] = ACTIONS(1344), + [anon_sym_alignof] = ACTIONS(1344), + [anon_sym__Alignof] = ACTIONS(1344), + [anon_sym_offsetof] = ACTIONS(1344), + [anon_sym___builtin_va_arg] = ACTIONS(1344), + [anon_sym__Generic] = ACTIONS(1344), + [anon_sym_asm] = ACTIONS(1344), + [anon_sym___asm__] = ACTIONS(1344), + [sym_number_literal] = ACTIONS(1346), + [anon_sym_L_SQUOTE] = ACTIONS(1346), + [anon_sym_u_SQUOTE] = ACTIONS(1346), + [anon_sym_U_SQUOTE] = ACTIONS(1346), + [anon_sym_u8_SQUOTE] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1346), + [anon_sym_L_DQUOTE] = ACTIONS(1346), + [anon_sym_u_DQUOTE] = ACTIONS(1346), + [anon_sym_U_DQUOTE] = ACTIONS(1346), + [anon_sym_u8_DQUOTE] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1346), + [sym_true] = ACTIONS(1344), + [sym_false] = ACTIONS(1344), + [anon_sym_NULL] = ACTIONS(1344), + [anon_sym_nullptr] = ACTIONS(1344), [sym_comment] = ACTIONS(3), }, - [224] = { - [sym_identifier] = ACTIONS(1300), - [aux_sym_preproc_include_token1] = ACTIONS(1300), - [aux_sym_preproc_def_token1] = ACTIONS(1300), - [aux_sym_preproc_if_token1] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), - [sym_preproc_directive] = ACTIONS(1300), - [anon_sym_LPAREN2] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym_typedef] = ACTIONS(1300), - [anon_sym_extern] = ACTIONS(1300), - [anon_sym___attribute__] = ACTIONS(1300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), - [anon_sym___declspec] = ACTIONS(1300), - [anon_sym___cdecl] = ACTIONS(1300), - [anon_sym___clrcall] = ACTIONS(1300), - [anon_sym___stdcall] = ACTIONS(1300), - [anon_sym___fastcall] = ACTIONS(1300), - [anon_sym___thiscall] = ACTIONS(1300), - [anon_sym___vectorcall] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_RBRACE] = ACTIONS(1302), - [anon_sym_signed] = ACTIONS(1300), - [anon_sym_unsigned] = ACTIONS(1300), - [anon_sym_long] = ACTIONS(1300), - [anon_sym_short] = ACTIONS(1300), - [anon_sym_static] = ACTIONS(1300), - [anon_sym_auto] = ACTIONS(1300), - [anon_sym_register] = ACTIONS(1300), - [anon_sym_inline] = ACTIONS(1300), - [anon_sym_thread_local] = ACTIONS(1300), - [anon_sym___thread] = ACTIONS(1300), - [anon_sym_const] = ACTIONS(1300), - [anon_sym_constexpr] = ACTIONS(1300), - [anon_sym_volatile] = ACTIONS(1300), - [anon_sym_restrict] = ACTIONS(1300), - [anon_sym___restrict__] = ACTIONS(1300), - [anon_sym__Atomic] = ACTIONS(1300), - [anon_sym__Noreturn] = ACTIONS(1300), - [anon_sym_noreturn] = ACTIONS(1300), - [sym_primitive_type] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1300), - [anon_sym_struct] = ACTIONS(1300), - [anon_sym_union] = ACTIONS(1300), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_else] = ACTIONS(1300), - [anon_sym_switch] = ACTIONS(1300), - [anon_sym_case] = ACTIONS(1300), - [anon_sym_default] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_do] = ACTIONS(1300), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_goto] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_sizeof] = ACTIONS(1300), - [anon_sym_offsetof] = ACTIONS(1300), - [anon_sym__Generic] = ACTIONS(1300), - [anon_sym_asm] = ACTIONS(1300), - [anon_sym___asm__] = ACTIONS(1300), - [sym_number_literal] = ACTIONS(1302), - [anon_sym_L_SQUOTE] = ACTIONS(1302), - [anon_sym_u_SQUOTE] = ACTIONS(1302), - [anon_sym_U_SQUOTE] = ACTIONS(1302), - [anon_sym_u8_SQUOTE] = ACTIONS(1302), - [anon_sym_SQUOTE] = ACTIONS(1302), - [anon_sym_L_DQUOTE] = ACTIONS(1302), - [anon_sym_u_DQUOTE] = ACTIONS(1302), - [anon_sym_U_DQUOTE] = ACTIONS(1302), - [anon_sym_u8_DQUOTE] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [anon_sym_NULL] = ACTIONS(1300), - [anon_sym_nullptr] = ACTIONS(1300), + [219] = { + [sym_identifier] = ACTIONS(1348), + [aux_sym_preproc_include_token1] = ACTIONS(1348), + [aux_sym_preproc_def_token1] = ACTIONS(1348), + [aux_sym_preproc_if_token1] = ACTIONS(1348), + [aux_sym_preproc_if_token2] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1348), + [aux_sym_preproc_else_token1] = ACTIONS(1348), + [aux_sym_preproc_elif_token1] = ACTIONS(1348), + [sym_preproc_directive] = ACTIONS(1348), + [anon_sym_LPAREN2] = ACTIONS(1350), + [anon_sym_BANG] = ACTIONS(1350), + [anon_sym_TILDE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym___extension__] = ACTIONS(1348), + [anon_sym_typedef] = ACTIONS(1348), + [anon_sym_extern] = ACTIONS(1348), + [anon_sym___attribute__] = ACTIONS(1348), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), + [anon_sym___declspec] = ACTIONS(1348), + [anon_sym___cdecl] = ACTIONS(1348), + [anon_sym___clrcall] = ACTIONS(1348), + [anon_sym___stdcall] = ACTIONS(1348), + [anon_sym___fastcall] = ACTIONS(1348), + [anon_sym___thiscall] = ACTIONS(1348), + [anon_sym___vectorcall] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_signed] = ACTIONS(1348), + [anon_sym_unsigned] = ACTIONS(1348), + [anon_sym_long] = ACTIONS(1348), + [anon_sym_short] = ACTIONS(1348), + [anon_sym_static] = ACTIONS(1348), + [anon_sym_auto] = ACTIONS(1348), + [anon_sym_register] = ACTIONS(1348), + [anon_sym_inline] = ACTIONS(1348), + [anon_sym___inline] = ACTIONS(1348), + [anon_sym___inline__] = ACTIONS(1348), + [anon_sym___forceinline] = ACTIONS(1348), + [anon_sym_thread_local] = ACTIONS(1348), + [anon_sym___thread] = ACTIONS(1348), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_constexpr] = ACTIONS(1348), + [anon_sym_volatile] = ACTIONS(1348), + [anon_sym_restrict] = ACTIONS(1348), + [anon_sym___restrict__] = ACTIONS(1348), + [anon_sym__Atomic] = ACTIONS(1348), + [anon_sym__Noreturn] = ACTIONS(1348), + [anon_sym_noreturn] = ACTIONS(1348), + [sym_primitive_type] = ACTIONS(1348), + [anon_sym_enum] = ACTIONS(1348), + [anon_sym_struct] = ACTIONS(1348), + [anon_sym_union] = ACTIONS(1348), + [anon_sym_if] = ACTIONS(1348), + [anon_sym_else] = ACTIONS(1348), + [anon_sym_switch] = ACTIONS(1348), + [anon_sym_case] = ACTIONS(1348), + [anon_sym_default] = ACTIONS(1348), + [anon_sym_while] = ACTIONS(1348), + [anon_sym_do] = ACTIONS(1348), + [anon_sym_for] = ACTIONS(1348), + [anon_sym_return] = ACTIONS(1348), + [anon_sym_break] = ACTIONS(1348), + [anon_sym_continue] = ACTIONS(1348), + [anon_sym_goto] = ACTIONS(1348), + [anon_sym_DASH_DASH] = ACTIONS(1350), + [anon_sym_PLUS_PLUS] = ACTIONS(1350), + [anon_sym_sizeof] = ACTIONS(1348), + [anon_sym___alignof__] = ACTIONS(1348), + [anon_sym___alignof] = ACTIONS(1348), + [anon_sym__alignof] = ACTIONS(1348), + [anon_sym_alignof] = ACTIONS(1348), + [anon_sym__Alignof] = ACTIONS(1348), + [anon_sym_offsetof] = ACTIONS(1348), + [anon_sym___builtin_va_arg] = ACTIONS(1348), + [anon_sym__Generic] = ACTIONS(1348), + [anon_sym_asm] = ACTIONS(1348), + [anon_sym___asm__] = ACTIONS(1348), + [sym_number_literal] = ACTIONS(1350), + [anon_sym_L_SQUOTE] = ACTIONS(1350), + [anon_sym_u_SQUOTE] = ACTIONS(1350), + [anon_sym_U_SQUOTE] = ACTIONS(1350), + [anon_sym_u8_SQUOTE] = ACTIONS(1350), + [anon_sym_SQUOTE] = ACTIONS(1350), + [anon_sym_L_DQUOTE] = ACTIONS(1350), + [anon_sym_u_DQUOTE] = ACTIONS(1350), + [anon_sym_U_DQUOTE] = ACTIONS(1350), + [anon_sym_u8_DQUOTE] = ACTIONS(1350), + [anon_sym_DQUOTE] = ACTIONS(1350), + [sym_true] = ACTIONS(1348), + [sym_false] = ACTIONS(1348), + [anon_sym_NULL] = ACTIONS(1348), + [anon_sym_nullptr] = ACTIONS(1348), + [sym_comment] = ACTIONS(3), + }, + [220] = { + [sym_identifier] = ACTIONS(1244), + [aux_sym_preproc_include_token1] = ACTIONS(1244), + [aux_sym_preproc_def_token1] = ACTIONS(1244), + [aux_sym_preproc_if_token1] = ACTIONS(1244), + [aux_sym_preproc_if_token2] = ACTIONS(1244), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1244), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1244), + [aux_sym_preproc_else_token1] = ACTIONS(1244), + [aux_sym_preproc_elif_token1] = ACTIONS(1244), + [sym_preproc_directive] = ACTIONS(1244), + [anon_sym_LPAREN2] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1246), + [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_PLUS] = ACTIONS(1244), + [anon_sym_STAR] = ACTIONS(1246), + [anon_sym_AMP] = ACTIONS(1246), + [anon_sym_SEMI] = ACTIONS(1246), + [anon_sym___extension__] = ACTIONS(1244), + [anon_sym_typedef] = ACTIONS(1244), + [anon_sym_extern] = ACTIONS(1244), + [anon_sym___attribute__] = ACTIONS(1244), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1246), + [anon_sym___declspec] = ACTIONS(1244), + [anon_sym___cdecl] = ACTIONS(1244), + [anon_sym___clrcall] = ACTIONS(1244), + [anon_sym___stdcall] = ACTIONS(1244), + [anon_sym___fastcall] = ACTIONS(1244), + [anon_sym___thiscall] = ACTIONS(1244), + [anon_sym___vectorcall] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1246), + [anon_sym_signed] = ACTIONS(1244), + [anon_sym_unsigned] = ACTIONS(1244), + [anon_sym_long] = ACTIONS(1244), + [anon_sym_short] = ACTIONS(1244), + [anon_sym_static] = ACTIONS(1244), + [anon_sym_auto] = ACTIONS(1244), + [anon_sym_register] = ACTIONS(1244), + [anon_sym_inline] = ACTIONS(1244), + [anon_sym___inline] = ACTIONS(1244), + [anon_sym___inline__] = ACTIONS(1244), + [anon_sym___forceinline] = ACTIONS(1244), + [anon_sym_thread_local] = ACTIONS(1244), + [anon_sym___thread] = ACTIONS(1244), + [anon_sym_const] = ACTIONS(1244), + [anon_sym_constexpr] = ACTIONS(1244), + [anon_sym_volatile] = ACTIONS(1244), + [anon_sym_restrict] = ACTIONS(1244), + [anon_sym___restrict__] = ACTIONS(1244), + [anon_sym__Atomic] = ACTIONS(1244), + [anon_sym__Noreturn] = ACTIONS(1244), + [anon_sym_noreturn] = ACTIONS(1244), + [sym_primitive_type] = ACTIONS(1244), + [anon_sym_enum] = ACTIONS(1244), + [anon_sym_struct] = ACTIONS(1244), + [anon_sym_union] = ACTIONS(1244), + [anon_sym_if] = ACTIONS(1244), + [anon_sym_else] = ACTIONS(1244), + [anon_sym_switch] = ACTIONS(1244), + [anon_sym_case] = ACTIONS(1244), + [anon_sym_default] = ACTIONS(1244), + [anon_sym_while] = ACTIONS(1244), + [anon_sym_do] = ACTIONS(1244), + [anon_sym_for] = ACTIONS(1244), + [anon_sym_return] = ACTIONS(1244), + [anon_sym_break] = ACTIONS(1244), + [anon_sym_continue] = ACTIONS(1244), + [anon_sym_goto] = ACTIONS(1244), + [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_PLUS_PLUS] = ACTIONS(1246), + [anon_sym_sizeof] = ACTIONS(1244), + [anon_sym___alignof__] = ACTIONS(1244), + [anon_sym___alignof] = ACTIONS(1244), + [anon_sym__alignof] = ACTIONS(1244), + [anon_sym_alignof] = ACTIONS(1244), + [anon_sym__Alignof] = ACTIONS(1244), + [anon_sym_offsetof] = ACTIONS(1244), + [anon_sym___builtin_va_arg] = ACTIONS(1244), + [anon_sym__Generic] = ACTIONS(1244), + [anon_sym_asm] = ACTIONS(1244), + [anon_sym___asm__] = ACTIONS(1244), + [sym_number_literal] = ACTIONS(1246), + [anon_sym_L_SQUOTE] = ACTIONS(1246), + [anon_sym_u_SQUOTE] = ACTIONS(1246), + [anon_sym_U_SQUOTE] = ACTIONS(1246), + [anon_sym_u8_SQUOTE] = ACTIONS(1246), + [anon_sym_SQUOTE] = ACTIONS(1246), + [anon_sym_L_DQUOTE] = ACTIONS(1246), + [anon_sym_u_DQUOTE] = ACTIONS(1246), + [anon_sym_U_DQUOTE] = ACTIONS(1246), + [anon_sym_u8_DQUOTE] = ACTIONS(1246), + [anon_sym_DQUOTE] = ACTIONS(1246), + [sym_true] = ACTIONS(1244), + [sym_false] = ACTIONS(1244), + [anon_sym_NULL] = ACTIONS(1244), + [anon_sym_nullptr] = ACTIONS(1244), + [sym_comment] = ACTIONS(3), + }, + [221] = { + [sym_identifier] = ACTIONS(1376), + [aux_sym_preproc_include_token1] = ACTIONS(1376), + [aux_sym_preproc_def_token1] = ACTIONS(1376), + [aux_sym_preproc_if_token1] = ACTIONS(1376), + [aux_sym_preproc_if_token2] = ACTIONS(1376), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1376), + [aux_sym_preproc_else_token1] = ACTIONS(1376), + [aux_sym_preproc_elif_token1] = ACTIONS(1376), + [sym_preproc_directive] = ACTIONS(1376), + [anon_sym_LPAREN2] = ACTIONS(1378), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_TILDE] = ACTIONS(1378), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_AMP] = ACTIONS(1378), + [anon_sym_SEMI] = ACTIONS(1378), + [anon_sym___extension__] = ACTIONS(1376), + [anon_sym_typedef] = ACTIONS(1376), + [anon_sym_extern] = ACTIONS(1376), + [anon_sym___attribute__] = ACTIONS(1376), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1378), + [anon_sym___declspec] = ACTIONS(1376), + [anon_sym___cdecl] = ACTIONS(1376), + [anon_sym___clrcall] = ACTIONS(1376), + [anon_sym___stdcall] = ACTIONS(1376), + [anon_sym___fastcall] = ACTIONS(1376), + [anon_sym___thiscall] = ACTIONS(1376), + [anon_sym___vectorcall] = ACTIONS(1376), + [anon_sym_LBRACE] = ACTIONS(1378), + [anon_sym_signed] = ACTIONS(1376), + [anon_sym_unsigned] = ACTIONS(1376), + [anon_sym_long] = ACTIONS(1376), + [anon_sym_short] = ACTIONS(1376), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_auto] = ACTIONS(1376), + [anon_sym_register] = ACTIONS(1376), + [anon_sym_inline] = ACTIONS(1376), + [anon_sym___inline] = ACTIONS(1376), + [anon_sym___inline__] = ACTIONS(1376), + [anon_sym___forceinline] = ACTIONS(1376), + [anon_sym_thread_local] = ACTIONS(1376), + [anon_sym___thread] = ACTIONS(1376), + [anon_sym_const] = ACTIONS(1376), + [anon_sym_constexpr] = ACTIONS(1376), + [anon_sym_volatile] = ACTIONS(1376), + [anon_sym_restrict] = ACTIONS(1376), + [anon_sym___restrict__] = ACTIONS(1376), + [anon_sym__Atomic] = ACTIONS(1376), + [anon_sym__Noreturn] = ACTIONS(1376), + [anon_sym_noreturn] = ACTIONS(1376), + [sym_primitive_type] = ACTIONS(1376), + [anon_sym_enum] = ACTIONS(1376), + [anon_sym_struct] = ACTIONS(1376), + [anon_sym_union] = ACTIONS(1376), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_else] = ACTIONS(1376), + [anon_sym_switch] = ACTIONS(1376), + [anon_sym_case] = ACTIONS(1376), + [anon_sym_default] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(1376), + [anon_sym_do] = ACTIONS(1376), + [anon_sym_for] = ACTIONS(1376), + [anon_sym_return] = ACTIONS(1376), + [anon_sym_break] = ACTIONS(1376), + [anon_sym_continue] = ACTIONS(1376), + [anon_sym_goto] = ACTIONS(1376), + [anon_sym_DASH_DASH] = ACTIONS(1378), + [anon_sym_PLUS_PLUS] = ACTIONS(1378), + [anon_sym_sizeof] = ACTIONS(1376), + [anon_sym___alignof__] = ACTIONS(1376), + [anon_sym___alignof] = ACTIONS(1376), + [anon_sym__alignof] = ACTIONS(1376), + [anon_sym_alignof] = ACTIONS(1376), + [anon_sym__Alignof] = ACTIONS(1376), + [anon_sym_offsetof] = ACTIONS(1376), + [anon_sym___builtin_va_arg] = ACTIONS(1376), + [anon_sym__Generic] = ACTIONS(1376), + [anon_sym_asm] = ACTIONS(1376), + [anon_sym___asm__] = ACTIONS(1376), + [sym_number_literal] = ACTIONS(1378), + [anon_sym_L_SQUOTE] = ACTIONS(1378), + [anon_sym_u_SQUOTE] = ACTIONS(1378), + [anon_sym_U_SQUOTE] = ACTIONS(1378), + [anon_sym_u8_SQUOTE] = ACTIONS(1378), + [anon_sym_SQUOTE] = ACTIONS(1378), + [anon_sym_L_DQUOTE] = ACTIONS(1378), + [anon_sym_u_DQUOTE] = ACTIONS(1378), + [anon_sym_U_DQUOTE] = ACTIONS(1378), + [anon_sym_u8_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE] = ACTIONS(1378), + [sym_true] = ACTIONS(1376), + [sym_false] = ACTIONS(1376), + [anon_sym_NULL] = ACTIONS(1376), + [anon_sym_nullptr] = ACTIONS(1376), + [sym_comment] = ACTIONS(3), + }, + [222] = { + [sym_identifier] = ACTIONS(1384), + [aux_sym_preproc_include_token1] = ACTIONS(1384), + [aux_sym_preproc_def_token1] = ACTIONS(1384), + [aux_sym_preproc_if_token1] = ACTIONS(1384), + [aux_sym_preproc_if_token2] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1384), + [aux_sym_preproc_else_token1] = ACTIONS(1384), + [aux_sym_preproc_elif_token1] = ACTIONS(1384), + [sym_preproc_directive] = ACTIONS(1384), + [anon_sym_LPAREN2] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1386), + [anon_sym_SEMI] = ACTIONS(1386), + [anon_sym___extension__] = ACTIONS(1384), + [anon_sym_typedef] = ACTIONS(1384), + [anon_sym_extern] = ACTIONS(1384), + [anon_sym___attribute__] = ACTIONS(1384), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1386), + [anon_sym___declspec] = ACTIONS(1384), + [anon_sym___cdecl] = ACTIONS(1384), + [anon_sym___clrcall] = ACTIONS(1384), + [anon_sym___stdcall] = ACTIONS(1384), + [anon_sym___fastcall] = ACTIONS(1384), + [anon_sym___thiscall] = ACTIONS(1384), + [anon_sym___vectorcall] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_long] = ACTIONS(1384), + [anon_sym_short] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1384), + [anon_sym_auto] = ACTIONS(1384), + [anon_sym_register] = ACTIONS(1384), + [anon_sym_inline] = ACTIONS(1384), + [anon_sym___inline] = ACTIONS(1384), + [anon_sym___inline__] = ACTIONS(1384), + [anon_sym___forceinline] = ACTIONS(1384), + [anon_sym_thread_local] = ACTIONS(1384), + [anon_sym___thread] = ACTIONS(1384), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_constexpr] = ACTIONS(1384), + [anon_sym_volatile] = ACTIONS(1384), + [anon_sym_restrict] = ACTIONS(1384), + [anon_sym___restrict__] = ACTIONS(1384), + [anon_sym__Atomic] = ACTIONS(1384), + [anon_sym__Noreturn] = ACTIONS(1384), + [anon_sym_noreturn] = ACTIONS(1384), + [sym_primitive_type] = ACTIONS(1384), + [anon_sym_enum] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_union] = ACTIONS(1384), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_else] = ACTIONS(1384), + [anon_sym_switch] = ACTIONS(1384), + [anon_sym_case] = ACTIONS(1384), + [anon_sym_default] = ACTIONS(1384), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_do] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_return] = ACTIONS(1384), + [anon_sym_break] = ACTIONS(1384), + [anon_sym_continue] = ACTIONS(1384), + [anon_sym_goto] = ACTIONS(1384), + [anon_sym_DASH_DASH] = ACTIONS(1386), + [anon_sym_PLUS_PLUS] = ACTIONS(1386), + [anon_sym_sizeof] = ACTIONS(1384), + [anon_sym___alignof__] = ACTIONS(1384), + [anon_sym___alignof] = ACTIONS(1384), + [anon_sym__alignof] = ACTIONS(1384), + [anon_sym_alignof] = ACTIONS(1384), + [anon_sym__Alignof] = ACTIONS(1384), + [anon_sym_offsetof] = ACTIONS(1384), + [anon_sym___builtin_va_arg] = ACTIONS(1384), + [anon_sym__Generic] = ACTIONS(1384), + [anon_sym_asm] = ACTIONS(1384), + [anon_sym___asm__] = ACTIONS(1384), + [sym_number_literal] = ACTIONS(1386), + [anon_sym_L_SQUOTE] = ACTIONS(1386), + [anon_sym_u_SQUOTE] = ACTIONS(1386), + [anon_sym_U_SQUOTE] = ACTIONS(1386), + [anon_sym_u8_SQUOTE] = ACTIONS(1386), + [anon_sym_SQUOTE] = ACTIONS(1386), + [anon_sym_L_DQUOTE] = ACTIONS(1386), + [anon_sym_u_DQUOTE] = ACTIONS(1386), + [anon_sym_U_DQUOTE] = ACTIONS(1386), + [anon_sym_u8_DQUOTE] = ACTIONS(1386), + [anon_sym_DQUOTE] = ACTIONS(1386), + [sym_true] = ACTIONS(1384), + [sym_false] = ACTIONS(1384), + [anon_sym_NULL] = ACTIONS(1384), + [anon_sym_nullptr] = ACTIONS(1384), + [sym_comment] = ACTIONS(3), + }, + [223] = { + [sym_identifier] = ACTIONS(1388), + [aux_sym_preproc_include_token1] = ACTIONS(1388), + [aux_sym_preproc_def_token1] = ACTIONS(1388), + [aux_sym_preproc_if_token1] = ACTIONS(1388), + [aux_sym_preproc_if_token2] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1388), + [aux_sym_preproc_else_token1] = ACTIONS(1388), + [aux_sym_preproc_elif_token1] = ACTIONS(1388), + [sym_preproc_directive] = ACTIONS(1388), + [anon_sym_LPAREN2] = ACTIONS(1390), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1390), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_SEMI] = ACTIONS(1390), + [anon_sym___extension__] = ACTIONS(1388), + [anon_sym_typedef] = ACTIONS(1388), + [anon_sym_extern] = ACTIONS(1388), + [anon_sym___attribute__] = ACTIONS(1388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1390), + [anon_sym___declspec] = ACTIONS(1388), + [anon_sym___cdecl] = ACTIONS(1388), + [anon_sym___clrcall] = ACTIONS(1388), + [anon_sym___stdcall] = ACTIONS(1388), + [anon_sym___fastcall] = ACTIONS(1388), + [anon_sym___thiscall] = ACTIONS(1388), + [anon_sym___vectorcall] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_signed] = ACTIONS(1388), + [anon_sym_unsigned] = ACTIONS(1388), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_short] = ACTIONS(1388), + [anon_sym_static] = ACTIONS(1388), + [anon_sym_auto] = ACTIONS(1388), + [anon_sym_register] = ACTIONS(1388), + [anon_sym_inline] = ACTIONS(1388), + [anon_sym___inline] = ACTIONS(1388), + [anon_sym___inline__] = ACTIONS(1388), + [anon_sym___forceinline] = ACTIONS(1388), + [anon_sym_thread_local] = ACTIONS(1388), + [anon_sym___thread] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1388), + [anon_sym_constexpr] = ACTIONS(1388), + [anon_sym_volatile] = ACTIONS(1388), + [anon_sym_restrict] = ACTIONS(1388), + [anon_sym___restrict__] = ACTIONS(1388), + [anon_sym__Atomic] = ACTIONS(1388), + [anon_sym__Noreturn] = ACTIONS(1388), + [anon_sym_noreturn] = ACTIONS(1388), + [sym_primitive_type] = ACTIONS(1388), + [anon_sym_enum] = ACTIONS(1388), + [anon_sym_struct] = ACTIONS(1388), + [anon_sym_union] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(1388), + [anon_sym_else] = ACTIONS(1388), + [anon_sym_switch] = ACTIONS(1388), + [anon_sym_case] = ACTIONS(1388), + [anon_sym_default] = ACTIONS(1388), + [anon_sym_while] = ACTIONS(1388), + [anon_sym_do] = ACTIONS(1388), + [anon_sym_for] = ACTIONS(1388), + [anon_sym_return] = ACTIONS(1388), + [anon_sym_break] = ACTIONS(1388), + [anon_sym_continue] = ACTIONS(1388), + [anon_sym_goto] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_PLUS_PLUS] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1388), + [anon_sym___alignof__] = ACTIONS(1388), + [anon_sym___alignof] = ACTIONS(1388), + [anon_sym__alignof] = ACTIONS(1388), + [anon_sym_alignof] = ACTIONS(1388), + [anon_sym__Alignof] = ACTIONS(1388), + [anon_sym_offsetof] = ACTIONS(1388), + [anon_sym___builtin_va_arg] = ACTIONS(1388), + [anon_sym__Generic] = ACTIONS(1388), + [anon_sym_asm] = ACTIONS(1388), + [anon_sym___asm__] = ACTIONS(1388), + [sym_number_literal] = ACTIONS(1390), + [anon_sym_L_SQUOTE] = ACTIONS(1390), + [anon_sym_u_SQUOTE] = ACTIONS(1390), + [anon_sym_U_SQUOTE] = ACTIONS(1390), + [anon_sym_u8_SQUOTE] = ACTIONS(1390), + [anon_sym_SQUOTE] = ACTIONS(1390), + [anon_sym_L_DQUOTE] = ACTIONS(1390), + [anon_sym_u_DQUOTE] = ACTIONS(1390), + [anon_sym_U_DQUOTE] = ACTIONS(1390), + [anon_sym_u8_DQUOTE] = ACTIONS(1390), + [anon_sym_DQUOTE] = ACTIONS(1390), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [anon_sym_NULL] = ACTIONS(1388), + [anon_sym_nullptr] = ACTIONS(1388), + [sym_comment] = ACTIONS(3), + }, + [224] = { + [sym_identifier] = ACTIONS(1460), + [aux_sym_preproc_include_token1] = ACTIONS(1460), + [aux_sym_preproc_def_token1] = ACTIONS(1460), + [aux_sym_preproc_if_token1] = ACTIONS(1460), + [aux_sym_preproc_if_token2] = ACTIONS(1460), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1460), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1460), + [aux_sym_preproc_else_token1] = ACTIONS(1460), + [aux_sym_preproc_elif_token1] = ACTIONS(1460), + [sym_preproc_directive] = ACTIONS(1460), + [anon_sym_LPAREN2] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1460), + [anon_sym_STAR] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym___extension__] = ACTIONS(1460), + [anon_sym_typedef] = ACTIONS(1460), + [anon_sym_extern] = ACTIONS(1460), + [anon_sym___attribute__] = ACTIONS(1460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), + [anon_sym___declspec] = ACTIONS(1460), + [anon_sym___cdecl] = ACTIONS(1460), + [anon_sym___clrcall] = ACTIONS(1460), + [anon_sym___stdcall] = ACTIONS(1460), + [anon_sym___fastcall] = ACTIONS(1460), + [anon_sym___thiscall] = ACTIONS(1460), + [anon_sym___vectorcall] = ACTIONS(1460), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_signed] = ACTIONS(1460), + [anon_sym_unsigned] = ACTIONS(1460), + [anon_sym_long] = ACTIONS(1460), + [anon_sym_short] = ACTIONS(1460), + [anon_sym_static] = ACTIONS(1460), + [anon_sym_auto] = ACTIONS(1460), + [anon_sym_register] = ACTIONS(1460), + [anon_sym_inline] = ACTIONS(1460), + [anon_sym___inline] = ACTIONS(1460), + [anon_sym___inline__] = ACTIONS(1460), + [anon_sym___forceinline] = ACTIONS(1460), + [anon_sym_thread_local] = ACTIONS(1460), + [anon_sym___thread] = ACTIONS(1460), + [anon_sym_const] = ACTIONS(1460), + [anon_sym_constexpr] = ACTIONS(1460), + [anon_sym_volatile] = ACTIONS(1460), + [anon_sym_restrict] = ACTIONS(1460), + [anon_sym___restrict__] = ACTIONS(1460), + [anon_sym__Atomic] = ACTIONS(1460), + [anon_sym__Noreturn] = ACTIONS(1460), + [anon_sym_noreturn] = ACTIONS(1460), + [sym_primitive_type] = ACTIONS(1460), + [anon_sym_enum] = ACTIONS(1460), + [anon_sym_struct] = ACTIONS(1460), + [anon_sym_union] = ACTIONS(1460), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_else] = ACTIONS(1460), + [anon_sym_switch] = ACTIONS(1460), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(1460), + [anon_sym_do] = ACTIONS(1460), + [anon_sym_for] = ACTIONS(1460), + [anon_sym_return] = ACTIONS(1460), + [anon_sym_break] = ACTIONS(1460), + [anon_sym_continue] = ACTIONS(1460), + [anon_sym_goto] = ACTIONS(1460), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_sizeof] = ACTIONS(1460), + [anon_sym___alignof__] = ACTIONS(1460), + [anon_sym___alignof] = ACTIONS(1460), + [anon_sym__alignof] = ACTIONS(1460), + [anon_sym_alignof] = ACTIONS(1460), + [anon_sym__Alignof] = ACTIONS(1460), + [anon_sym_offsetof] = ACTIONS(1460), + [anon_sym___builtin_va_arg] = ACTIONS(1460), + [anon_sym__Generic] = ACTIONS(1460), + [anon_sym_asm] = ACTIONS(1460), + [anon_sym___asm__] = ACTIONS(1460), + [sym_number_literal] = ACTIONS(1462), + [anon_sym_L_SQUOTE] = ACTIONS(1462), + [anon_sym_u_SQUOTE] = ACTIONS(1462), + [anon_sym_U_SQUOTE] = ACTIONS(1462), + [anon_sym_u8_SQUOTE] = ACTIONS(1462), + [anon_sym_SQUOTE] = ACTIONS(1462), + [anon_sym_L_DQUOTE] = ACTIONS(1462), + [anon_sym_u_DQUOTE] = ACTIONS(1462), + [anon_sym_U_DQUOTE] = ACTIONS(1462), + [anon_sym_u8_DQUOTE] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1462), + [sym_true] = ACTIONS(1460), + [sym_false] = ACTIONS(1460), + [anon_sym_NULL] = ACTIONS(1460), + [anon_sym_nullptr] = ACTIONS(1460), [sym_comment] = ACTIONS(3), }, [225] = { - [sym__expression] = STATE(840), - [sym__expression_not_binary] = STATE(795), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(795), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(795), - [sym_call_expression] = STATE(795), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(795), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(795), - [sym_initializer_list] = STATE(815), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_identifier] = ACTIONS(149), - [anon_sym_LPAREN2] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1450), + [sym_identifier] = ACTIONS(1456), + [aux_sym_preproc_include_token1] = ACTIONS(1456), + [aux_sym_preproc_def_token1] = ACTIONS(1456), + [aux_sym_preproc_if_token1] = ACTIONS(1456), + [aux_sym_preproc_if_token2] = ACTIONS(1456), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1456), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1456), + [aux_sym_preproc_else_token1] = ACTIONS(1456), + [aux_sym_preproc_elif_token1] = ACTIONS(1456), + [sym_preproc_directive] = ACTIONS(1456), + [anon_sym_LPAREN2] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_TILDE] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1456), + [anon_sym_PLUS] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym___extension__] = ACTIONS(1456), + [anon_sym_typedef] = ACTIONS(1456), + [anon_sym_extern] = ACTIONS(1456), + [anon_sym___attribute__] = ACTIONS(1456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1458), + [anon_sym___declspec] = ACTIONS(1456), + [anon_sym___cdecl] = ACTIONS(1456), + [anon_sym___clrcall] = ACTIONS(1456), + [anon_sym___stdcall] = ACTIONS(1456), + [anon_sym___fastcall] = ACTIONS(1456), + [anon_sym___thiscall] = ACTIONS(1456), + [anon_sym___vectorcall] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_signed] = ACTIONS(1456), + [anon_sym_unsigned] = ACTIONS(1456), + [anon_sym_long] = ACTIONS(1456), + [anon_sym_short] = ACTIONS(1456), + [anon_sym_static] = ACTIONS(1456), + [anon_sym_auto] = ACTIONS(1456), + [anon_sym_register] = ACTIONS(1456), + [anon_sym_inline] = ACTIONS(1456), + [anon_sym___inline] = ACTIONS(1456), + [anon_sym___inline__] = ACTIONS(1456), + [anon_sym___forceinline] = ACTIONS(1456), + [anon_sym_thread_local] = ACTIONS(1456), + [anon_sym___thread] = ACTIONS(1456), + [anon_sym_const] = ACTIONS(1456), + [anon_sym_constexpr] = ACTIONS(1456), + [anon_sym_volatile] = ACTIONS(1456), + [anon_sym_restrict] = ACTIONS(1456), + [anon_sym___restrict__] = ACTIONS(1456), + [anon_sym__Atomic] = ACTIONS(1456), + [anon_sym__Noreturn] = ACTIONS(1456), + [anon_sym_noreturn] = ACTIONS(1456), + [sym_primitive_type] = ACTIONS(1456), + [anon_sym_enum] = ACTIONS(1456), + [anon_sym_struct] = ACTIONS(1456), + [anon_sym_union] = ACTIONS(1456), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_else] = ACTIONS(1456), + [anon_sym_switch] = ACTIONS(1456), + [anon_sym_case] = ACTIONS(1456), + [anon_sym_default] = ACTIONS(1456), + [anon_sym_while] = ACTIONS(1456), + [anon_sym_do] = ACTIONS(1456), + [anon_sym_for] = ACTIONS(1456), + [anon_sym_return] = ACTIONS(1456), + [anon_sym_break] = ACTIONS(1456), + [anon_sym_continue] = ACTIONS(1456), + [anon_sym_goto] = ACTIONS(1456), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_sizeof] = ACTIONS(1456), + [anon_sym___alignof__] = ACTIONS(1456), + [anon_sym___alignof] = ACTIONS(1456), + [anon_sym__alignof] = ACTIONS(1456), + [anon_sym_alignof] = ACTIONS(1456), + [anon_sym__Alignof] = ACTIONS(1456), + [anon_sym_offsetof] = ACTIONS(1456), + [anon_sym___builtin_va_arg] = ACTIONS(1456), + [anon_sym__Generic] = ACTIONS(1456), + [anon_sym_asm] = ACTIONS(1456), + [anon_sym___asm__] = ACTIONS(1456), + [sym_number_literal] = ACTIONS(1458), + [anon_sym_L_SQUOTE] = ACTIONS(1458), + [anon_sym_u_SQUOTE] = ACTIONS(1458), + [anon_sym_U_SQUOTE] = ACTIONS(1458), + [anon_sym_u8_SQUOTE] = ACTIONS(1458), + [anon_sym_SQUOTE] = ACTIONS(1458), + [anon_sym_L_DQUOTE] = ACTIONS(1458), + [anon_sym_u_DQUOTE] = ACTIONS(1458), + [anon_sym_U_DQUOTE] = ACTIONS(1458), + [anon_sym_u8_DQUOTE] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [sym_true] = ACTIONS(1456), + [sym_false] = ACTIONS(1456), + [anon_sym_NULL] = ACTIONS(1456), + [anon_sym_nullptr] = ACTIONS(1456), + [sym_comment] = ACTIONS(3), + }, + [226] = { + [sym_identifier] = ACTIONS(1452), + [aux_sym_preproc_include_token1] = ACTIONS(1452), + [aux_sym_preproc_def_token1] = ACTIONS(1452), + [aux_sym_preproc_if_token1] = ACTIONS(1452), + [aux_sym_preproc_if_token2] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), + [aux_sym_preproc_else_token1] = ACTIONS(1452), + [aux_sym_preproc_elif_token1] = ACTIONS(1452), + [sym_preproc_directive] = ACTIONS(1452), + [anon_sym_LPAREN2] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_TILDE] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1452), [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_SLASH] = ACTIONS(1188), - [anon_sym_PERCENT] = ACTIONS(1188), - [anon_sym_PIPE_PIPE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(1178), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_CARET] = ACTIONS(1188), [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_EQ_EQ] = ACTIONS(1178), - [anon_sym_BANG_EQ] = ACTIONS(1178), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_GT_EQ] = ACTIONS(1178), - [anon_sym_LT_EQ] = ACTIONS(1178), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_LT_LT] = ACTIONS(1188), - [anon_sym_GT_GT] = ACTIONS(1188), - [anon_sym_LBRACE] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_RBRACK] = ACTIONS(1178), - [anon_sym_EQ] = ACTIONS(1188), - [anon_sym_QMARK] = ACTIONS(1178), - [anon_sym_STAR_EQ] = ACTIONS(1178), - [anon_sym_SLASH_EQ] = ACTIONS(1178), - [anon_sym_PERCENT_EQ] = ACTIONS(1178), - [anon_sym_PLUS_EQ] = ACTIONS(1178), - [anon_sym_DASH_EQ] = ACTIONS(1178), - [anon_sym_LT_LT_EQ] = ACTIONS(1178), - [anon_sym_GT_GT_EQ] = ACTIONS(1178), - [anon_sym_AMP_EQ] = ACTIONS(1178), - [anon_sym_CARET_EQ] = ACTIONS(1178), - [anon_sym_PIPE_EQ] = ACTIONS(1178), - [anon_sym_DASH_DASH] = ACTIONS(1456), - [anon_sym_PLUS_PLUS] = ACTIONS(1456), - [anon_sym_sizeof] = ACTIONS(1458), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [anon_sym_DOT] = ACTIONS(1188), - [anon_sym_DASH_GT] = ACTIONS(1178), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym___extension__] = ACTIONS(1452), + [anon_sym_typedef] = ACTIONS(1452), + [anon_sym_extern] = ACTIONS(1452), + [anon_sym___attribute__] = ACTIONS(1452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym___declspec] = ACTIONS(1452), + [anon_sym___cdecl] = ACTIONS(1452), + [anon_sym___clrcall] = ACTIONS(1452), + [anon_sym___stdcall] = ACTIONS(1452), + [anon_sym___fastcall] = ACTIONS(1452), + [anon_sym___thiscall] = ACTIONS(1452), + [anon_sym___vectorcall] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_signed] = ACTIONS(1452), + [anon_sym_unsigned] = ACTIONS(1452), + [anon_sym_long] = ACTIONS(1452), + [anon_sym_short] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1452), + [anon_sym_auto] = ACTIONS(1452), + [anon_sym_register] = ACTIONS(1452), + [anon_sym_inline] = ACTIONS(1452), + [anon_sym___inline] = ACTIONS(1452), + [anon_sym___inline__] = ACTIONS(1452), + [anon_sym___forceinline] = ACTIONS(1452), + [anon_sym_thread_local] = ACTIONS(1452), + [anon_sym___thread] = ACTIONS(1452), + [anon_sym_const] = ACTIONS(1452), + [anon_sym_constexpr] = ACTIONS(1452), + [anon_sym_volatile] = ACTIONS(1452), + [anon_sym_restrict] = ACTIONS(1452), + [anon_sym___restrict__] = ACTIONS(1452), + [anon_sym__Atomic] = ACTIONS(1452), + [anon_sym__Noreturn] = ACTIONS(1452), + [anon_sym_noreturn] = ACTIONS(1452), + [sym_primitive_type] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1452), + [anon_sym_union] = ACTIONS(1452), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_else] = ACTIONS(1452), + [anon_sym_switch] = ACTIONS(1452), + [anon_sym_case] = ACTIONS(1452), + [anon_sym_default] = ACTIONS(1452), + [anon_sym_while] = ACTIONS(1452), + [anon_sym_do] = ACTIONS(1452), + [anon_sym_for] = ACTIONS(1452), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_goto] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_sizeof] = ACTIONS(1452), + [anon_sym___alignof__] = ACTIONS(1452), + [anon_sym___alignof] = ACTIONS(1452), + [anon_sym__alignof] = ACTIONS(1452), + [anon_sym_alignof] = ACTIONS(1452), + [anon_sym__Alignof] = ACTIONS(1452), + [anon_sym_offsetof] = ACTIONS(1452), + [anon_sym___builtin_va_arg] = ACTIONS(1452), + [anon_sym__Generic] = ACTIONS(1452), + [anon_sym_asm] = ACTIONS(1452), + [anon_sym___asm__] = ACTIONS(1452), + [sym_number_literal] = ACTIONS(1454), + [anon_sym_L_SQUOTE] = ACTIONS(1454), + [anon_sym_u_SQUOTE] = ACTIONS(1454), + [anon_sym_U_SQUOTE] = ACTIONS(1454), + [anon_sym_u8_SQUOTE] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_L_DQUOTE] = ACTIONS(1454), + [anon_sym_u_DQUOTE] = ACTIONS(1454), + [anon_sym_U_DQUOTE] = ACTIONS(1454), + [anon_sym_u8_DQUOTE] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [sym_true] = ACTIONS(1452), + [sym_false] = ACTIONS(1452), + [anon_sym_NULL] = ACTIONS(1452), + [anon_sym_nullptr] = ACTIONS(1452), [sym_comment] = ACTIONS(3), }, - [226] = { - [sym_identifier] = ACTIONS(1280), - [aux_sym_preproc_include_token1] = ACTIONS(1280), + [227] = { + [sym_identifier] = ACTIONS(1448), + [aux_sym_preproc_include_token1] = ACTIONS(1448), + [aux_sym_preproc_def_token1] = ACTIONS(1448), + [aux_sym_preproc_if_token1] = ACTIONS(1448), + [aux_sym_preproc_if_token2] = ACTIONS(1448), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1448), + [aux_sym_preproc_else_token1] = ACTIONS(1448), + [aux_sym_preproc_elif_token1] = ACTIONS(1448), + [sym_preproc_directive] = ACTIONS(1448), + [anon_sym_LPAREN2] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym___extension__] = ACTIONS(1448), + [anon_sym_typedef] = ACTIONS(1448), + [anon_sym_extern] = ACTIONS(1448), + [anon_sym___attribute__] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), + [anon_sym___declspec] = ACTIONS(1448), + [anon_sym___cdecl] = ACTIONS(1448), + [anon_sym___clrcall] = ACTIONS(1448), + [anon_sym___stdcall] = ACTIONS(1448), + [anon_sym___fastcall] = ACTIONS(1448), + [anon_sym___thiscall] = ACTIONS(1448), + [anon_sym___vectorcall] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_signed] = ACTIONS(1448), + [anon_sym_unsigned] = ACTIONS(1448), + [anon_sym_long] = ACTIONS(1448), + [anon_sym_short] = ACTIONS(1448), + [anon_sym_static] = ACTIONS(1448), + [anon_sym_auto] = ACTIONS(1448), + [anon_sym_register] = ACTIONS(1448), + [anon_sym_inline] = ACTIONS(1448), + [anon_sym___inline] = ACTIONS(1448), + [anon_sym___inline__] = ACTIONS(1448), + [anon_sym___forceinline] = ACTIONS(1448), + [anon_sym_thread_local] = ACTIONS(1448), + [anon_sym___thread] = ACTIONS(1448), + [anon_sym_const] = ACTIONS(1448), + [anon_sym_constexpr] = ACTIONS(1448), + [anon_sym_volatile] = ACTIONS(1448), + [anon_sym_restrict] = ACTIONS(1448), + [anon_sym___restrict__] = ACTIONS(1448), + [anon_sym__Atomic] = ACTIONS(1448), + [anon_sym__Noreturn] = ACTIONS(1448), + [anon_sym_noreturn] = ACTIONS(1448), + [sym_primitive_type] = ACTIONS(1448), + [anon_sym_enum] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1448), + [anon_sym_union] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_else] = ACTIONS(1448), + [anon_sym_switch] = ACTIONS(1448), + [anon_sym_case] = ACTIONS(1448), + [anon_sym_default] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_do] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_return] = ACTIONS(1448), + [anon_sym_break] = ACTIONS(1448), + [anon_sym_continue] = ACTIONS(1448), + [anon_sym_goto] = ACTIONS(1448), + [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_PLUS_PLUS] = ACTIONS(1450), + [anon_sym_sizeof] = ACTIONS(1448), + [anon_sym___alignof__] = ACTIONS(1448), + [anon_sym___alignof] = ACTIONS(1448), + [anon_sym__alignof] = ACTIONS(1448), + [anon_sym_alignof] = ACTIONS(1448), + [anon_sym__Alignof] = ACTIONS(1448), + [anon_sym_offsetof] = ACTIONS(1448), + [anon_sym___builtin_va_arg] = ACTIONS(1448), + [anon_sym__Generic] = ACTIONS(1448), + [anon_sym_asm] = ACTIONS(1448), + [anon_sym___asm__] = ACTIONS(1448), + [sym_number_literal] = ACTIONS(1450), + [anon_sym_L_SQUOTE] = ACTIONS(1450), + [anon_sym_u_SQUOTE] = ACTIONS(1450), + [anon_sym_U_SQUOTE] = ACTIONS(1450), + [anon_sym_u8_SQUOTE] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1450), + [anon_sym_L_DQUOTE] = ACTIONS(1450), + [anon_sym_u_DQUOTE] = ACTIONS(1450), + [anon_sym_U_DQUOTE] = ACTIONS(1450), + [anon_sym_u8_DQUOTE] = ACTIONS(1450), + [anon_sym_DQUOTE] = ACTIONS(1450), + [sym_true] = ACTIONS(1448), + [sym_false] = ACTIONS(1448), + [anon_sym_NULL] = ACTIONS(1448), + [anon_sym_nullptr] = ACTIONS(1448), + [sym_comment] = ACTIONS(3), + }, + [228] = { + [sym_identifier] = ACTIONS(1280), + [aux_sym_preproc_include_token1] = ACTIONS(1280), [aux_sym_preproc_def_token1] = ACTIONS(1280), [aux_sym_preproc_if_token1] = ACTIONS(1280), [aux_sym_preproc_if_token2] = ACTIONS(1280), [aux_sym_preproc_ifdef_token1] = ACTIONS(1280), [aux_sym_preproc_ifdef_token2] = ACTIONS(1280), + [aux_sym_preproc_else_token1] = ACTIONS(1280), + [aux_sym_preproc_elif_token1] = ACTIONS(1280), [sym_preproc_directive] = ACTIONS(1280), [anon_sym_LPAREN2] = ACTIONS(1282), [anon_sym_BANG] = ACTIONS(1282), @@ -40107,6 +43503,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1282), [anon_sym_AMP] = ACTIONS(1282), [anon_sym_SEMI] = ACTIONS(1282), + [anon_sym___extension__] = ACTIONS(1280), [anon_sym_typedef] = ACTIONS(1280), [anon_sym_extern] = ACTIONS(1280), [anon_sym___attribute__] = ACTIONS(1280), @@ -40127,6 +43524,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1280), [anon_sym_register] = ACTIONS(1280), [anon_sym_inline] = ACTIONS(1280), + [anon_sym___inline] = ACTIONS(1280), + [anon_sym___inline__] = ACTIONS(1280), + [anon_sym___forceinline] = ACTIONS(1280), [anon_sym_thread_local] = ACTIONS(1280), [anon_sym___thread] = ACTIONS(1280), [anon_sym_const] = ACTIONS(1280), @@ -40156,7 +43556,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1282), [anon_sym_PLUS_PLUS] = ACTIONS(1282), [anon_sym_sizeof] = ACTIONS(1280), + [anon_sym___alignof__] = ACTIONS(1280), + [anon_sym___alignof] = ACTIONS(1280), + [anon_sym__alignof] = ACTIONS(1280), + [anon_sym_alignof] = ACTIONS(1280), + [anon_sym__Alignof] = ACTIONS(1280), [anon_sym_offsetof] = ACTIONS(1280), + [anon_sym___builtin_va_arg] = ACTIONS(1280), [anon_sym__Generic] = ACTIONS(1280), [anon_sym_asm] = ACTIONS(1280), [anon_sym___asm__] = ACTIONS(1280), @@ -40177,2270 +43583,2753 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1280), [sym_comment] = ACTIONS(3), }, - [227] = { - [sym_identifier] = ACTIONS(1276), - [aux_sym_preproc_include_token1] = ACTIONS(1276), - [aux_sym_preproc_def_token1] = ACTIONS(1276), - [aux_sym_preproc_if_token1] = ACTIONS(1276), - [aux_sym_preproc_if_token2] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), - [sym_preproc_directive] = ACTIONS(1276), - [anon_sym_LPAREN2] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1278), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym_typedef] = ACTIONS(1276), - [anon_sym_extern] = ACTIONS(1276), - [anon_sym___attribute__] = ACTIONS(1276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1278), - [anon_sym___declspec] = ACTIONS(1276), - [anon_sym___cdecl] = ACTIONS(1276), - [anon_sym___clrcall] = ACTIONS(1276), - [anon_sym___stdcall] = ACTIONS(1276), - [anon_sym___fastcall] = ACTIONS(1276), - [anon_sym___thiscall] = ACTIONS(1276), - [anon_sym___vectorcall] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_signed] = ACTIONS(1276), - [anon_sym_unsigned] = ACTIONS(1276), - [anon_sym_long] = ACTIONS(1276), - [anon_sym_short] = ACTIONS(1276), - [anon_sym_static] = ACTIONS(1276), - [anon_sym_auto] = ACTIONS(1276), - [anon_sym_register] = ACTIONS(1276), - [anon_sym_inline] = ACTIONS(1276), - [anon_sym_thread_local] = ACTIONS(1276), - [anon_sym___thread] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1276), - [anon_sym_constexpr] = ACTIONS(1276), - [anon_sym_volatile] = ACTIONS(1276), - [anon_sym_restrict] = ACTIONS(1276), - [anon_sym___restrict__] = ACTIONS(1276), - [anon_sym__Atomic] = ACTIONS(1276), - [anon_sym__Noreturn] = ACTIONS(1276), - [anon_sym_noreturn] = ACTIONS(1276), - [sym_primitive_type] = ACTIONS(1276), - [anon_sym_enum] = ACTIONS(1276), - [anon_sym_struct] = ACTIONS(1276), - [anon_sym_union] = ACTIONS(1276), - [anon_sym_if] = ACTIONS(1276), - [anon_sym_else] = ACTIONS(1276), - [anon_sym_switch] = ACTIONS(1276), - [anon_sym_case] = ACTIONS(1276), - [anon_sym_default] = ACTIONS(1276), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(1276), - [anon_sym_for] = ACTIONS(1276), - [anon_sym_return] = ACTIONS(1276), - [anon_sym_break] = ACTIONS(1276), - [anon_sym_continue] = ACTIONS(1276), - [anon_sym_goto] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1278), - [anon_sym_PLUS_PLUS] = ACTIONS(1278), - [anon_sym_sizeof] = ACTIONS(1276), - [anon_sym_offsetof] = ACTIONS(1276), - [anon_sym__Generic] = ACTIONS(1276), - [anon_sym_asm] = ACTIONS(1276), - [anon_sym___asm__] = ACTIONS(1276), - [sym_number_literal] = ACTIONS(1278), - [anon_sym_L_SQUOTE] = ACTIONS(1278), - [anon_sym_u_SQUOTE] = ACTIONS(1278), - [anon_sym_U_SQUOTE] = ACTIONS(1278), - [anon_sym_u8_SQUOTE] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1278), - [anon_sym_L_DQUOTE] = ACTIONS(1278), - [anon_sym_u_DQUOTE] = ACTIONS(1278), - [anon_sym_U_DQUOTE] = ACTIONS(1278), - [anon_sym_u8_DQUOTE] = ACTIONS(1278), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym_true] = ACTIONS(1276), - [sym_false] = ACTIONS(1276), - [anon_sym_NULL] = ACTIONS(1276), - [anon_sym_nullptr] = ACTIONS(1276), - [sym_comment] = ACTIONS(3), - }, - [228] = { - [sym_identifier] = ACTIONS(1196), - [aux_sym_preproc_include_token1] = ACTIONS(1196), - [aux_sym_preproc_def_token1] = ACTIONS(1196), - [aux_sym_preproc_if_token1] = ACTIONS(1196), - [aux_sym_preproc_if_token2] = ACTIONS(1196), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1196), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1196), - [sym_preproc_directive] = ACTIONS(1196), - [anon_sym_LPAREN2] = ACTIONS(1198), - [anon_sym_BANG] = ACTIONS(1198), - [anon_sym_TILDE] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_SEMI] = ACTIONS(1198), - [anon_sym_typedef] = ACTIONS(1196), - [anon_sym_extern] = ACTIONS(1196), - [anon_sym___attribute__] = ACTIONS(1196), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1198), - [anon_sym___declspec] = ACTIONS(1196), - [anon_sym___cdecl] = ACTIONS(1196), - [anon_sym___clrcall] = ACTIONS(1196), - [anon_sym___stdcall] = ACTIONS(1196), - [anon_sym___fastcall] = ACTIONS(1196), - [anon_sym___thiscall] = ACTIONS(1196), - [anon_sym___vectorcall] = ACTIONS(1196), - [anon_sym_LBRACE] = ACTIONS(1198), - [anon_sym_signed] = ACTIONS(1196), - [anon_sym_unsigned] = ACTIONS(1196), - [anon_sym_long] = ACTIONS(1196), - [anon_sym_short] = ACTIONS(1196), - [anon_sym_static] = ACTIONS(1196), - [anon_sym_auto] = ACTIONS(1196), - [anon_sym_register] = ACTIONS(1196), - [anon_sym_inline] = ACTIONS(1196), - [anon_sym_thread_local] = ACTIONS(1196), - [anon_sym___thread] = ACTIONS(1196), - [anon_sym_const] = ACTIONS(1196), - [anon_sym_constexpr] = ACTIONS(1196), - [anon_sym_volatile] = ACTIONS(1196), - [anon_sym_restrict] = ACTIONS(1196), - [anon_sym___restrict__] = ACTIONS(1196), - [anon_sym__Atomic] = ACTIONS(1196), - [anon_sym__Noreturn] = ACTIONS(1196), - [anon_sym_noreturn] = ACTIONS(1196), - [sym_primitive_type] = ACTIONS(1196), - [anon_sym_enum] = ACTIONS(1196), - [anon_sym_struct] = ACTIONS(1196), - [anon_sym_union] = ACTIONS(1196), - [anon_sym_if] = ACTIONS(1196), - [anon_sym_else] = ACTIONS(1196), - [anon_sym_switch] = ACTIONS(1196), - [anon_sym_case] = ACTIONS(1196), - [anon_sym_default] = ACTIONS(1196), - [anon_sym_while] = ACTIONS(1196), - [anon_sym_do] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1196), - [anon_sym_return] = ACTIONS(1196), - [anon_sym_break] = ACTIONS(1196), - [anon_sym_continue] = ACTIONS(1196), - [anon_sym_goto] = ACTIONS(1196), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_sizeof] = ACTIONS(1196), - [anon_sym_offsetof] = ACTIONS(1196), - [anon_sym__Generic] = ACTIONS(1196), - [anon_sym_asm] = ACTIONS(1196), - [anon_sym___asm__] = ACTIONS(1196), - [sym_number_literal] = ACTIONS(1198), - [anon_sym_L_SQUOTE] = ACTIONS(1198), - [anon_sym_u_SQUOTE] = ACTIONS(1198), - [anon_sym_U_SQUOTE] = ACTIONS(1198), - [anon_sym_u8_SQUOTE] = ACTIONS(1198), - [anon_sym_SQUOTE] = ACTIONS(1198), - [anon_sym_L_DQUOTE] = ACTIONS(1198), - [anon_sym_u_DQUOTE] = ACTIONS(1198), - [anon_sym_U_DQUOTE] = ACTIONS(1198), - [anon_sym_u8_DQUOTE] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(1198), - [sym_true] = ACTIONS(1196), - [sym_false] = ACTIONS(1196), - [anon_sym_NULL] = ACTIONS(1196), - [anon_sym_nullptr] = ACTIONS(1196), - [sym_comment] = ACTIONS(3), - }, [229] = { - [sym_identifier] = ACTIONS(1272), - [aux_sym_preproc_include_token1] = ACTIONS(1272), - [aux_sym_preproc_def_token1] = ACTIONS(1272), - [aux_sym_preproc_if_token1] = ACTIONS(1272), - [aux_sym_preproc_if_token2] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1272), - [sym_preproc_directive] = ACTIONS(1272), - [anon_sym_LPAREN2] = ACTIONS(1274), - [anon_sym_BANG] = ACTIONS(1274), - [anon_sym_TILDE] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1274), - [anon_sym_SEMI] = ACTIONS(1274), - [anon_sym_typedef] = ACTIONS(1272), - [anon_sym_extern] = ACTIONS(1272), - [anon_sym___attribute__] = ACTIONS(1272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1274), - [anon_sym___declspec] = ACTIONS(1272), - [anon_sym___cdecl] = ACTIONS(1272), - [anon_sym___clrcall] = ACTIONS(1272), - [anon_sym___stdcall] = ACTIONS(1272), - [anon_sym___fastcall] = ACTIONS(1272), - [anon_sym___thiscall] = ACTIONS(1272), - [anon_sym___vectorcall] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_signed] = ACTIONS(1272), - [anon_sym_unsigned] = ACTIONS(1272), - [anon_sym_long] = ACTIONS(1272), - [anon_sym_short] = ACTIONS(1272), - [anon_sym_static] = ACTIONS(1272), - [anon_sym_auto] = ACTIONS(1272), - [anon_sym_register] = ACTIONS(1272), - [anon_sym_inline] = ACTIONS(1272), - [anon_sym_thread_local] = ACTIONS(1272), - [anon_sym___thread] = ACTIONS(1272), - [anon_sym_const] = ACTIONS(1272), - [anon_sym_constexpr] = ACTIONS(1272), - [anon_sym_volatile] = ACTIONS(1272), - [anon_sym_restrict] = ACTIONS(1272), - [anon_sym___restrict__] = ACTIONS(1272), - [anon_sym__Atomic] = ACTIONS(1272), - [anon_sym__Noreturn] = ACTIONS(1272), - [anon_sym_noreturn] = ACTIONS(1272), - [sym_primitive_type] = ACTIONS(1272), - [anon_sym_enum] = ACTIONS(1272), - [anon_sym_struct] = ACTIONS(1272), - [anon_sym_union] = ACTIONS(1272), - [anon_sym_if] = ACTIONS(1272), - [anon_sym_else] = ACTIONS(1272), - [anon_sym_switch] = ACTIONS(1272), - [anon_sym_case] = ACTIONS(1272), - [anon_sym_default] = ACTIONS(1272), - [anon_sym_while] = ACTIONS(1272), - [anon_sym_do] = ACTIONS(1272), - [anon_sym_for] = ACTIONS(1272), - [anon_sym_return] = ACTIONS(1272), - [anon_sym_break] = ACTIONS(1272), - [anon_sym_continue] = ACTIONS(1272), - [anon_sym_goto] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_sizeof] = ACTIONS(1272), - [anon_sym_offsetof] = ACTIONS(1272), - [anon_sym__Generic] = ACTIONS(1272), - [anon_sym_asm] = ACTIONS(1272), - [anon_sym___asm__] = ACTIONS(1272), - [sym_number_literal] = ACTIONS(1274), - [anon_sym_L_SQUOTE] = ACTIONS(1274), - [anon_sym_u_SQUOTE] = ACTIONS(1274), - [anon_sym_U_SQUOTE] = ACTIONS(1274), - [anon_sym_u8_SQUOTE] = ACTIONS(1274), - [anon_sym_SQUOTE] = ACTIONS(1274), - [anon_sym_L_DQUOTE] = ACTIONS(1274), - [anon_sym_u_DQUOTE] = ACTIONS(1274), - [anon_sym_U_DQUOTE] = ACTIONS(1274), - [anon_sym_u8_DQUOTE] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [anon_sym_NULL] = ACTIONS(1272), - [anon_sym_nullptr] = ACTIONS(1272), + [sym_identifier] = ACTIONS(1432), + [aux_sym_preproc_include_token1] = ACTIONS(1432), + [aux_sym_preproc_def_token1] = ACTIONS(1432), + [aux_sym_preproc_if_token1] = ACTIONS(1432), + [aux_sym_preproc_if_token2] = ACTIONS(1432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), + [aux_sym_preproc_else_token1] = ACTIONS(1432), + [aux_sym_preproc_elif_token1] = ACTIONS(1432), + [sym_preproc_directive] = ACTIONS(1432), + [anon_sym_LPAREN2] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym___extension__] = ACTIONS(1432), + [anon_sym_typedef] = ACTIONS(1432), + [anon_sym_extern] = ACTIONS(1432), + [anon_sym___attribute__] = ACTIONS(1432), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1434), + [anon_sym___declspec] = ACTIONS(1432), + [anon_sym___cdecl] = ACTIONS(1432), + [anon_sym___clrcall] = ACTIONS(1432), + [anon_sym___stdcall] = ACTIONS(1432), + [anon_sym___fastcall] = ACTIONS(1432), + [anon_sym___thiscall] = ACTIONS(1432), + [anon_sym___vectorcall] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_signed] = ACTIONS(1432), + [anon_sym_unsigned] = ACTIONS(1432), + [anon_sym_long] = ACTIONS(1432), + [anon_sym_short] = ACTIONS(1432), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_auto] = ACTIONS(1432), + [anon_sym_register] = ACTIONS(1432), + [anon_sym_inline] = ACTIONS(1432), + [anon_sym___inline] = ACTIONS(1432), + [anon_sym___inline__] = ACTIONS(1432), + [anon_sym___forceinline] = ACTIONS(1432), + [anon_sym_thread_local] = ACTIONS(1432), + [anon_sym___thread] = ACTIONS(1432), + [anon_sym_const] = ACTIONS(1432), + [anon_sym_constexpr] = ACTIONS(1432), + [anon_sym_volatile] = ACTIONS(1432), + [anon_sym_restrict] = ACTIONS(1432), + [anon_sym___restrict__] = ACTIONS(1432), + [anon_sym__Atomic] = ACTIONS(1432), + [anon_sym__Noreturn] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [sym_primitive_type] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [anon_sym_struct] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(1432), + [anon_sym_switch] = ACTIONS(1432), + [anon_sym_case] = ACTIONS(1432), + [anon_sym_default] = ACTIONS(1432), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_do] = ACTIONS(1432), + [anon_sym_for] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_break] = ACTIONS(1432), + [anon_sym_continue] = ACTIONS(1432), + [anon_sym_goto] = ACTIONS(1432), + [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_PLUS_PLUS] = ACTIONS(1434), + [anon_sym_sizeof] = ACTIONS(1432), + [anon_sym___alignof__] = ACTIONS(1432), + [anon_sym___alignof] = ACTIONS(1432), + [anon_sym__alignof] = ACTIONS(1432), + [anon_sym_alignof] = ACTIONS(1432), + [anon_sym__Alignof] = ACTIONS(1432), + [anon_sym_offsetof] = ACTIONS(1432), + [anon_sym___builtin_va_arg] = ACTIONS(1432), + [anon_sym__Generic] = ACTIONS(1432), + [anon_sym_asm] = ACTIONS(1432), + [anon_sym___asm__] = ACTIONS(1432), + [sym_number_literal] = ACTIONS(1434), + [anon_sym_L_SQUOTE] = ACTIONS(1434), + [anon_sym_u_SQUOTE] = ACTIONS(1434), + [anon_sym_U_SQUOTE] = ACTIONS(1434), + [anon_sym_u8_SQUOTE] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(1434), + [anon_sym_L_DQUOTE] = ACTIONS(1434), + [anon_sym_u_DQUOTE] = ACTIONS(1434), + [anon_sym_U_DQUOTE] = ACTIONS(1434), + [anon_sym_u8_DQUOTE] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(1434), + [sym_true] = ACTIONS(1432), + [sym_false] = ACTIONS(1432), + [anon_sym_NULL] = ACTIONS(1432), + [anon_sym_nullptr] = ACTIONS(1432), [sym_comment] = ACTIONS(3), }, [230] = { - [sym_identifier] = ACTIONS(1268), - [aux_sym_preproc_include_token1] = ACTIONS(1268), - [aux_sym_preproc_def_token1] = ACTIONS(1268), - [aux_sym_preproc_if_token1] = ACTIONS(1268), - [aux_sym_preproc_if_token2] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1268), - [sym_preproc_directive] = ACTIONS(1268), - [anon_sym_LPAREN2] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_SEMI] = ACTIONS(1270), - [anon_sym_typedef] = ACTIONS(1268), - [anon_sym_extern] = ACTIONS(1268), - [anon_sym___attribute__] = ACTIONS(1268), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1270), - [anon_sym___declspec] = ACTIONS(1268), - [anon_sym___cdecl] = ACTIONS(1268), - [anon_sym___clrcall] = ACTIONS(1268), - [anon_sym___stdcall] = ACTIONS(1268), - [anon_sym___fastcall] = ACTIONS(1268), - [anon_sym___thiscall] = ACTIONS(1268), - [anon_sym___vectorcall] = ACTIONS(1268), - [anon_sym_LBRACE] = ACTIONS(1270), - [anon_sym_signed] = ACTIONS(1268), - [anon_sym_unsigned] = ACTIONS(1268), - [anon_sym_long] = ACTIONS(1268), - [anon_sym_short] = ACTIONS(1268), - [anon_sym_static] = ACTIONS(1268), - [anon_sym_auto] = ACTIONS(1268), - [anon_sym_register] = ACTIONS(1268), - [anon_sym_inline] = ACTIONS(1268), - [anon_sym_thread_local] = ACTIONS(1268), - [anon_sym___thread] = ACTIONS(1268), - [anon_sym_const] = ACTIONS(1268), - [anon_sym_constexpr] = ACTIONS(1268), - [anon_sym_volatile] = ACTIONS(1268), - [anon_sym_restrict] = ACTIONS(1268), - [anon_sym___restrict__] = ACTIONS(1268), - [anon_sym__Atomic] = ACTIONS(1268), - [anon_sym__Noreturn] = ACTIONS(1268), - [anon_sym_noreturn] = ACTIONS(1268), - [sym_primitive_type] = ACTIONS(1268), - [anon_sym_enum] = ACTIONS(1268), - [anon_sym_struct] = ACTIONS(1268), - [anon_sym_union] = ACTIONS(1268), - [anon_sym_if] = ACTIONS(1268), - [anon_sym_else] = ACTIONS(1268), - [anon_sym_switch] = ACTIONS(1268), - [anon_sym_case] = ACTIONS(1268), - [anon_sym_default] = ACTIONS(1268), - [anon_sym_while] = ACTIONS(1268), - [anon_sym_do] = ACTIONS(1268), - [anon_sym_for] = ACTIONS(1268), - [anon_sym_return] = ACTIONS(1268), - [anon_sym_break] = ACTIONS(1268), - [anon_sym_continue] = ACTIONS(1268), - [anon_sym_goto] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1270), - [anon_sym_PLUS_PLUS] = ACTIONS(1270), - [anon_sym_sizeof] = ACTIONS(1268), - [anon_sym_offsetof] = ACTIONS(1268), - [anon_sym__Generic] = ACTIONS(1268), - [anon_sym_asm] = ACTIONS(1268), - [anon_sym___asm__] = ACTIONS(1268), - [sym_number_literal] = ACTIONS(1270), - [anon_sym_L_SQUOTE] = ACTIONS(1270), - [anon_sym_u_SQUOTE] = ACTIONS(1270), - [anon_sym_U_SQUOTE] = ACTIONS(1270), - [anon_sym_u8_SQUOTE] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1270), - [anon_sym_L_DQUOTE] = ACTIONS(1270), - [anon_sym_u_DQUOTE] = ACTIONS(1270), - [anon_sym_U_DQUOTE] = ACTIONS(1270), - [anon_sym_u8_DQUOTE] = ACTIONS(1270), - [anon_sym_DQUOTE] = ACTIONS(1270), - [sym_true] = ACTIONS(1268), - [sym_false] = ACTIONS(1268), - [anon_sym_NULL] = ACTIONS(1268), - [anon_sym_nullptr] = ACTIONS(1268), + [sym_identifier] = ACTIONS(1440), + [aux_sym_preproc_include_token1] = ACTIONS(1440), + [aux_sym_preproc_def_token1] = ACTIONS(1440), + [aux_sym_preproc_if_token1] = ACTIONS(1440), + [aux_sym_preproc_if_token2] = ACTIONS(1440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1440), + [aux_sym_preproc_else_token1] = ACTIONS(1440), + [aux_sym_preproc_elif_token1] = ACTIONS(1440), + [sym_preproc_directive] = ACTIONS(1440), + [anon_sym_LPAREN2] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym___extension__] = ACTIONS(1440), + [anon_sym_typedef] = ACTIONS(1440), + [anon_sym_extern] = ACTIONS(1440), + [anon_sym___attribute__] = ACTIONS(1440), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1442), + [anon_sym___declspec] = ACTIONS(1440), + [anon_sym___cdecl] = ACTIONS(1440), + [anon_sym___clrcall] = ACTIONS(1440), + [anon_sym___stdcall] = ACTIONS(1440), + [anon_sym___fastcall] = ACTIONS(1440), + [anon_sym___thiscall] = ACTIONS(1440), + [anon_sym___vectorcall] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_signed] = ACTIONS(1440), + [anon_sym_unsigned] = ACTIONS(1440), + [anon_sym_long] = ACTIONS(1440), + [anon_sym_short] = ACTIONS(1440), + [anon_sym_static] = ACTIONS(1440), + [anon_sym_auto] = ACTIONS(1440), + [anon_sym_register] = ACTIONS(1440), + [anon_sym_inline] = ACTIONS(1440), + [anon_sym___inline] = ACTIONS(1440), + [anon_sym___inline__] = ACTIONS(1440), + [anon_sym___forceinline] = ACTIONS(1440), + [anon_sym_thread_local] = ACTIONS(1440), + [anon_sym___thread] = ACTIONS(1440), + [anon_sym_const] = ACTIONS(1440), + [anon_sym_constexpr] = ACTIONS(1440), + [anon_sym_volatile] = ACTIONS(1440), + [anon_sym_restrict] = ACTIONS(1440), + [anon_sym___restrict__] = ACTIONS(1440), + [anon_sym__Atomic] = ACTIONS(1440), + [anon_sym__Noreturn] = ACTIONS(1440), + [anon_sym_noreturn] = ACTIONS(1440), + [sym_primitive_type] = ACTIONS(1440), + [anon_sym_enum] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_union] = ACTIONS(1440), + [anon_sym_if] = ACTIONS(1440), + [anon_sym_else] = ACTIONS(1440), + [anon_sym_switch] = ACTIONS(1440), + [anon_sym_case] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1440), + [anon_sym_while] = ACTIONS(1440), + [anon_sym_do] = ACTIONS(1440), + [anon_sym_for] = ACTIONS(1440), + [anon_sym_return] = ACTIONS(1440), + [anon_sym_break] = ACTIONS(1440), + [anon_sym_continue] = ACTIONS(1440), + [anon_sym_goto] = ACTIONS(1440), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_sizeof] = ACTIONS(1440), + [anon_sym___alignof__] = ACTIONS(1440), + [anon_sym___alignof] = ACTIONS(1440), + [anon_sym__alignof] = ACTIONS(1440), + [anon_sym_alignof] = ACTIONS(1440), + [anon_sym__Alignof] = ACTIONS(1440), + [anon_sym_offsetof] = ACTIONS(1440), + [anon_sym___builtin_va_arg] = ACTIONS(1440), + [anon_sym__Generic] = ACTIONS(1440), + [anon_sym_asm] = ACTIONS(1440), + [anon_sym___asm__] = ACTIONS(1440), + [sym_number_literal] = ACTIONS(1442), + [anon_sym_L_SQUOTE] = ACTIONS(1442), + [anon_sym_u_SQUOTE] = ACTIONS(1442), + [anon_sym_U_SQUOTE] = ACTIONS(1442), + [anon_sym_u8_SQUOTE] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_L_DQUOTE] = ACTIONS(1442), + [anon_sym_u_DQUOTE] = ACTIONS(1442), + [anon_sym_U_DQUOTE] = ACTIONS(1442), + [anon_sym_u8_DQUOTE] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [sym_true] = ACTIONS(1440), + [sym_false] = ACTIONS(1440), + [anon_sym_NULL] = ACTIONS(1440), + [anon_sym_nullptr] = ACTIONS(1440), [sym_comment] = ACTIONS(3), }, [231] = { - [sym_identifier] = ACTIONS(1264), - [aux_sym_preproc_include_token1] = ACTIONS(1264), - [aux_sym_preproc_def_token1] = ACTIONS(1264), - [aux_sym_preproc_if_token1] = ACTIONS(1264), - [aux_sym_preproc_if_token2] = ACTIONS(1264), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1264), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1264), - [sym_preproc_directive] = ACTIONS(1264), - [anon_sym_LPAREN2] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1264), - [anon_sym_STAR] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_SEMI] = ACTIONS(1266), - [anon_sym_typedef] = ACTIONS(1264), - [anon_sym_extern] = ACTIONS(1264), - [anon_sym___attribute__] = ACTIONS(1264), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1266), - [anon_sym___declspec] = ACTIONS(1264), - [anon_sym___cdecl] = ACTIONS(1264), - [anon_sym___clrcall] = ACTIONS(1264), - [anon_sym___stdcall] = ACTIONS(1264), - [anon_sym___fastcall] = ACTIONS(1264), - [anon_sym___thiscall] = ACTIONS(1264), - [anon_sym___vectorcall] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_signed] = ACTIONS(1264), - [anon_sym_unsigned] = ACTIONS(1264), - [anon_sym_long] = ACTIONS(1264), - [anon_sym_short] = ACTIONS(1264), - [anon_sym_static] = ACTIONS(1264), - [anon_sym_auto] = ACTIONS(1264), - [anon_sym_register] = ACTIONS(1264), - [anon_sym_inline] = ACTIONS(1264), - [anon_sym_thread_local] = ACTIONS(1264), - [anon_sym___thread] = ACTIONS(1264), - [anon_sym_const] = ACTIONS(1264), - [anon_sym_constexpr] = ACTIONS(1264), - [anon_sym_volatile] = ACTIONS(1264), - [anon_sym_restrict] = ACTIONS(1264), - [anon_sym___restrict__] = ACTIONS(1264), - [anon_sym__Atomic] = ACTIONS(1264), - [anon_sym__Noreturn] = ACTIONS(1264), - [anon_sym_noreturn] = ACTIONS(1264), - [sym_primitive_type] = ACTIONS(1264), - [anon_sym_enum] = ACTIONS(1264), - [anon_sym_struct] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1264), - [anon_sym_else] = ACTIONS(1264), - [anon_sym_switch] = ACTIONS(1264), - [anon_sym_case] = ACTIONS(1264), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_while] = ACTIONS(1264), - [anon_sym_do] = ACTIONS(1264), - [anon_sym_for] = ACTIONS(1264), - [anon_sym_return] = ACTIONS(1264), - [anon_sym_break] = ACTIONS(1264), - [anon_sym_continue] = ACTIONS(1264), - [anon_sym_goto] = ACTIONS(1264), - [anon_sym_DASH_DASH] = ACTIONS(1266), - [anon_sym_PLUS_PLUS] = ACTIONS(1266), - [anon_sym_sizeof] = ACTIONS(1264), - [anon_sym_offsetof] = ACTIONS(1264), - [anon_sym__Generic] = ACTIONS(1264), - [anon_sym_asm] = ACTIONS(1264), - [anon_sym___asm__] = ACTIONS(1264), - [sym_number_literal] = ACTIONS(1266), - [anon_sym_L_SQUOTE] = ACTIONS(1266), - [anon_sym_u_SQUOTE] = ACTIONS(1266), - [anon_sym_U_SQUOTE] = ACTIONS(1266), - [anon_sym_u8_SQUOTE] = ACTIONS(1266), - [anon_sym_SQUOTE] = ACTIONS(1266), - [anon_sym_L_DQUOTE] = ACTIONS(1266), - [anon_sym_u_DQUOTE] = ACTIONS(1266), - [anon_sym_U_DQUOTE] = ACTIONS(1266), - [anon_sym_u8_DQUOTE] = ACTIONS(1266), - [anon_sym_DQUOTE] = ACTIONS(1266), - [sym_true] = ACTIONS(1264), - [sym_false] = ACTIONS(1264), - [anon_sym_NULL] = ACTIONS(1264), - [anon_sym_nullptr] = ACTIONS(1264), + [sym_identifier] = ACTIONS(1436), + [aux_sym_preproc_include_token1] = ACTIONS(1436), + [aux_sym_preproc_def_token1] = ACTIONS(1436), + [aux_sym_preproc_if_token1] = ACTIONS(1436), + [aux_sym_preproc_if_token2] = ACTIONS(1436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1436), + [aux_sym_preproc_else_token1] = ACTIONS(1436), + [aux_sym_preproc_elif_token1] = ACTIONS(1436), + [sym_preproc_directive] = ACTIONS(1436), + [anon_sym_LPAREN2] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym___extension__] = ACTIONS(1436), + [anon_sym_typedef] = ACTIONS(1436), + [anon_sym_extern] = ACTIONS(1436), + [anon_sym___attribute__] = ACTIONS(1436), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1438), + [anon_sym___declspec] = ACTIONS(1436), + [anon_sym___cdecl] = ACTIONS(1436), + [anon_sym___clrcall] = ACTIONS(1436), + [anon_sym___stdcall] = ACTIONS(1436), + [anon_sym___fastcall] = ACTIONS(1436), + [anon_sym___thiscall] = ACTIONS(1436), + [anon_sym___vectorcall] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_signed] = ACTIONS(1436), + [anon_sym_unsigned] = ACTIONS(1436), + [anon_sym_long] = ACTIONS(1436), + [anon_sym_short] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_auto] = ACTIONS(1436), + [anon_sym_register] = ACTIONS(1436), + [anon_sym_inline] = ACTIONS(1436), + [anon_sym___inline] = ACTIONS(1436), + [anon_sym___inline__] = ACTIONS(1436), + [anon_sym___forceinline] = ACTIONS(1436), + [anon_sym_thread_local] = ACTIONS(1436), + [anon_sym___thread] = ACTIONS(1436), + [anon_sym_const] = ACTIONS(1436), + [anon_sym_constexpr] = ACTIONS(1436), + [anon_sym_volatile] = ACTIONS(1436), + [anon_sym_restrict] = ACTIONS(1436), + [anon_sym___restrict__] = ACTIONS(1436), + [anon_sym__Atomic] = ACTIONS(1436), + [anon_sym__Noreturn] = ACTIONS(1436), + [anon_sym_noreturn] = ACTIONS(1436), + [sym_primitive_type] = ACTIONS(1436), + [anon_sym_enum] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1436), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_else] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1436), + [anon_sym_case] = ACTIONS(1436), + [anon_sym_default] = ACTIONS(1436), + [anon_sym_while] = ACTIONS(1436), + [anon_sym_do] = ACTIONS(1436), + [anon_sym_for] = ACTIONS(1436), + [anon_sym_return] = ACTIONS(1436), + [anon_sym_break] = ACTIONS(1436), + [anon_sym_continue] = ACTIONS(1436), + [anon_sym_goto] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1438), + [anon_sym_PLUS_PLUS] = ACTIONS(1438), + [anon_sym_sizeof] = ACTIONS(1436), + [anon_sym___alignof__] = ACTIONS(1436), + [anon_sym___alignof] = ACTIONS(1436), + [anon_sym__alignof] = ACTIONS(1436), + [anon_sym_alignof] = ACTIONS(1436), + [anon_sym__Alignof] = ACTIONS(1436), + [anon_sym_offsetof] = ACTIONS(1436), + [anon_sym___builtin_va_arg] = ACTIONS(1436), + [anon_sym__Generic] = ACTIONS(1436), + [anon_sym_asm] = ACTIONS(1436), + [anon_sym___asm__] = ACTIONS(1436), + [sym_number_literal] = ACTIONS(1438), + [anon_sym_L_SQUOTE] = ACTIONS(1438), + [anon_sym_u_SQUOTE] = ACTIONS(1438), + [anon_sym_U_SQUOTE] = ACTIONS(1438), + [anon_sym_u8_SQUOTE] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_L_DQUOTE] = ACTIONS(1438), + [anon_sym_u_DQUOTE] = ACTIONS(1438), + [anon_sym_U_DQUOTE] = ACTIONS(1438), + [anon_sym_u8_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [sym_true] = ACTIONS(1436), + [sym_false] = ACTIONS(1436), + [anon_sym_NULL] = ACTIONS(1436), + [anon_sym_nullptr] = ACTIONS(1436), [sym_comment] = ACTIONS(3), }, [232] = { - [sym_identifier] = ACTIONS(1260), - [aux_sym_preproc_include_token1] = ACTIONS(1260), - [aux_sym_preproc_def_token1] = ACTIONS(1260), - [aux_sym_preproc_if_token1] = ACTIONS(1260), - [aux_sym_preproc_if_token2] = ACTIONS(1260), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1260), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1260), - [sym_preproc_directive] = ACTIONS(1260), - [anon_sym_LPAREN2] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1262), - [anon_sym_TILDE] = ACTIONS(1262), - [anon_sym_DASH] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1260), - [anon_sym_STAR] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(1262), - [anon_sym_SEMI] = ACTIONS(1262), - [anon_sym_typedef] = ACTIONS(1260), - [anon_sym_extern] = ACTIONS(1260), - [anon_sym___attribute__] = ACTIONS(1260), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1262), - [anon_sym___declspec] = ACTIONS(1260), - [anon_sym___cdecl] = ACTIONS(1260), - [anon_sym___clrcall] = ACTIONS(1260), - [anon_sym___stdcall] = ACTIONS(1260), - [anon_sym___fastcall] = ACTIONS(1260), - [anon_sym___thiscall] = ACTIONS(1260), - [anon_sym___vectorcall] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_signed] = ACTIONS(1260), - [anon_sym_unsigned] = ACTIONS(1260), - [anon_sym_long] = ACTIONS(1260), - [anon_sym_short] = ACTIONS(1260), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_auto] = ACTIONS(1260), - [anon_sym_register] = ACTIONS(1260), - [anon_sym_inline] = ACTIONS(1260), - [anon_sym_thread_local] = ACTIONS(1260), - [anon_sym___thread] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1260), - [anon_sym_constexpr] = ACTIONS(1260), - [anon_sym_volatile] = ACTIONS(1260), - [anon_sym_restrict] = ACTIONS(1260), - [anon_sym___restrict__] = ACTIONS(1260), - [anon_sym__Atomic] = ACTIONS(1260), - [anon_sym__Noreturn] = ACTIONS(1260), - [anon_sym_noreturn] = ACTIONS(1260), - [sym_primitive_type] = ACTIONS(1260), - [anon_sym_enum] = ACTIONS(1260), - [anon_sym_struct] = ACTIONS(1260), - [anon_sym_union] = ACTIONS(1260), - [anon_sym_if] = ACTIONS(1260), - [anon_sym_else] = ACTIONS(1260), - [anon_sym_switch] = ACTIONS(1260), - [anon_sym_case] = ACTIONS(1260), - [anon_sym_default] = ACTIONS(1260), - [anon_sym_while] = ACTIONS(1260), - [anon_sym_do] = ACTIONS(1260), - [anon_sym_for] = ACTIONS(1260), - [anon_sym_return] = ACTIONS(1260), - [anon_sym_break] = ACTIONS(1260), - [anon_sym_continue] = ACTIONS(1260), - [anon_sym_goto] = ACTIONS(1260), - [anon_sym_DASH_DASH] = ACTIONS(1262), - [anon_sym_PLUS_PLUS] = ACTIONS(1262), - [anon_sym_sizeof] = ACTIONS(1260), - [anon_sym_offsetof] = ACTIONS(1260), - [anon_sym__Generic] = ACTIONS(1260), - [anon_sym_asm] = ACTIONS(1260), - [anon_sym___asm__] = ACTIONS(1260), - [sym_number_literal] = ACTIONS(1262), - [anon_sym_L_SQUOTE] = ACTIONS(1262), - [anon_sym_u_SQUOTE] = ACTIONS(1262), - [anon_sym_U_SQUOTE] = ACTIONS(1262), - [anon_sym_u8_SQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1262), - [anon_sym_L_DQUOTE] = ACTIONS(1262), - [anon_sym_u_DQUOTE] = ACTIONS(1262), - [anon_sym_U_DQUOTE] = ACTIONS(1262), - [anon_sym_u8_DQUOTE] = ACTIONS(1262), - [anon_sym_DQUOTE] = ACTIONS(1262), - [sym_true] = ACTIONS(1260), - [sym_false] = ACTIONS(1260), - [anon_sym_NULL] = ACTIONS(1260), - [anon_sym_nullptr] = ACTIONS(1260), + [sym_else_clause] = STATE(420), + [ts_builtin_sym_end] = ACTIONS(1236), + [sym_identifier] = ACTIONS(1234), + [aux_sym_preproc_include_token1] = ACTIONS(1234), + [aux_sym_preproc_def_token1] = ACTIONS(1234), + [aux_sym_preproc_if_token1] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), + [sym_preproc_directive] = ACTIONS(1234), + [anon_sym_LPAREN2] = ACTIONS(1236), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(1236), + [anon_sym_SEMI] = ACTIONS(1236), + [anon_sym___extension__] = ACTIONS(1234), + [anon_sym_typedef] = ACTIONS(1234), + [anon_sym_extern] = ACTIONS(1234), + [anon_sym___attribute__] = ACTIONS(1234), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1236), + [anon_sym___declspec] = ACTIONS(1234), + [anon_sym___cdecl] = ACTIONS(1234), + [anon_sym___clrcall] = ACTIONS(1234), + [anon_sym___stdcall] = ACTIONS(1234), + [anon_sym___fastcall] = ACTIONS(1234), + [anon_sym___thiscall] = ACTIONS(1234), + [anon_sym___vectorcall] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(1236), + [anon_sym_signed] = ACTIONS(1234), + [anon_sym_unsigned] = ACTIONS(1234), + [anon_sym_long] = ACTIONS(1234), + [anon_sym_short] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_auto] = ACTIONS(1234), + [anon_sym_register] = ACTIONS(1234), + [anon_sym_inline] = ACTIONS(1234), + [anon_sym___inline] = ACTIONS(1234), + [anon_sym___inline__] = ACTIONS(1234), + [anon_sym___forceinline] = ACTIONS(1234), + [anon_sym_thread_local] = ACTIONS(1234), + [anon_sym___thread] = ACTIONS(1234), + [anon_sym_const] = ACTIONS(1234), + [anon_sym_constexpr] = ACTIONS(1234), + [anon_sym_volatile] = ACTIONS(1234), + [anon_sym_restrict] = ACTIONS(1234), + [anon_sym___restrict__] = ACTIONS(1234), + [anon_sym__Atomic] = ACTIONS(1234), + [anon_sym__Noreturn] = ACTIONS(1234), + [anon_sym_noreturn] = ACTIONS(1234), + [sym_primitive_type] = ACTIONS(1234), + [anon_sym_enum] = ACTIONS(1234), + [anon_sym_struct] = ACTIONS(1234), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_if] = ACTIONS(1234), + [anon_sym_else] = ACTIONS(1570), + [anon_sym_switch] = ACTIONS(1234), + [anon_sym_case] = ACTIONS(1234), + [anon_sym_default] = ACTIONS(1234), + [anon_sym_while] = ACTIONS(1234), + [anon_sym_do] = ACTIONS(1234), + [anon_sym_for] = ACTIONS(1234), + [anon_sym_return] = ACTIONS(1234), + [anon_sym_break] = ACTIONS(1234), + [anon_sym_continue] = ACTIONS(1234), + [anon_sym_goto] = ACTIONS(1234), + [anon_sym_DASH_DASH] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_sizeof] = ACTIONS(1234), + [anon_sym___alignof__] = ACTIONS(1234), + [anon_sym___alignof] = ACTIONS(1234), + [anon_sym__alignof] = ACTIONS(1234), + [anon_sym_alignof] = ACTIONS(1234), + [anon_sym__Alignof] = ACTIONS(1234), + [anon_sym_offsetof] = ACTIONS(1234), + [anon_sym___builtin_va_arg] = ACTIONS(1234), + [anon_sym__Generic] = ACTIONS(1234), + [anon_sym_asm] = ACTIONS(1234), + [anon_sym___asm__] = ACTIONS(1234), + [sym_number_literal] = ACTIONS(1236), + [anon_sym_L_SQUOTE] = ACTIONS(1236), + [anon_sym_u_SQUOTE] = ACTIONS(1236), + [anon_sym_U_SQUOTE] = ACTIONS(1236), + [anon_sym_u8_SQUOTE] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1236), + [anon_sym_L_DQUOTE] = ACTIONS(1236), + [anon_sym_u_DQUOTE] = ACTIONS(1236), + [anon_sym_U_DQUOTE] = ACTIONS(1236), + [anon_sym_u8_DQUOTE] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(1236), + [sym_true] = ACTIONS(1234), + [sym_false] = ACTIONS(1234), + [anon_sym_NULL] = ACTIONS(1234), + [anon_sym_nullptr] = ACTIONS(1234), [sym_comment] = ACTIONS(3), }, [233] = { - [ts_builtin_sym_end] = ACTIONS(1266), - [sym_identifier] = ACTIONS(1264), - [aux_sym_preproc_include_token1] = ACTIONS(1264), - [aux_sym_preproc_def_token1] = ACTIONS(1264), - [aux_sym_preproc_if_token1] = ACTIONS(1264), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1264), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1264), - [sym_preproc_directive] = ACTIONS(1264), - [anon_sym_LPAREN2] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1264), - [anon_sym_STAR] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_SEMI] = ACTIONS(1266), - [anon_sym_typedef] = ACTIONS(1264), - [anon_sym_extern] = ACTIONS(1264), - [anon_sym___attribute__] = ACTIONS(1264), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1266), - [anon_sym___declspec] = ACTIONS(1264), - [anon_sym___cdecl] = ACTIONS(1264), - [anon_sym___clrcall] = ACTIONS(1264), - [anon_sym___stdcall] = ACTIONS(1264), - [anon_sym___fastcall] = ACTIONS(1264), - [anon_sym___thiscall] = ACTIONS(1264), - [anon_sym___vectorcall] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_signed] = ACTIONS(1264), - [anon_sym_unsigned] = ACTIONS(1264), - [anon_sym_long] = ACTIONS(1264), - [anon_sym_short] = ACTIONS(1264), - [anon_sym_static] = ACTIONS(1264), - [anon_sym_auto] = ACTIONS(1264), - [anon_sym_register] = ACTIONS(1264), - [anon_sym_inline] = ACTIONS(1264), - [anon_sym_thread_local] = ACTIONS(1264), - [anon_sym___thread] = ACTIONS(1264), - [anon_sym_const] = ACTIONS(1264), - [anon_sym_constexpr] = ACTIONS(1264), - [anon_sym_volatile] = ACTIONS(1264), - [anon_sym_restrict] = ACTIONS(1264), - [anon_sym___restrict__] = ACTIONS(1264), - [anon_sym__Atomic] = ACTIONS(1264), - [anon_sym__Noreturn] = ACTIONS(1264), - [anon_sym_noreturn] = ACTIONS(1264), - [sym_primitive_type] = ACTIONS(1264), - [anon_sym_enum] = ACTIONS(1264), - [anon_sym_struct] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1264), - [anon_sym_else] = ACTIONS(1264), - [anon_sym_switch] = ACTIONS(1264), - [anon_sym_case] = ACTIONS(1264), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_while] = ACTIONS(1264), - [anon_sym_do] = ACTIONS(1264), - [anon_sym_for] = ACTIONS(1264), - [anon_sym_return] = ACTIONS(1264), - [anon_sym_break] = ACTIONS(1264), - [anon_sym_continue] = ACTIONS(1264), - [anon_sym_goto] = ACTIONS(1264), - [anon_sym_DASH_DASH] = ACTIONS(1266), - [anon_sym_PLUS_PLUS] = ACTIONS(1266), - [anon_sym_sizeof] = ACTIONS(1264), - [anon_sym_offsetof] = ACTIONS(1264), - [anon_sym__Generic] = ACTIONS(1264), - [anon_sym_asm] = ACTIONS(1264), - [anon_sym___asm__] = ACTIONS(1264), - [sym_number_literal] = ACTIONS(1266), - [anon_sym_L_SQUOTE] = ACTIONS(1266), - [anon_sym_u_SQUOTE] = ACTIONS(1266), - [anon_sym_U_SQUOTE] = ACTIONS(1266), - [anon_sym_u8_SQUOTE] = ACTIONS(1266), - [anon_sym_SQUOTE] = ACTIONS(1266), - [anon_sym_L_DQUOTE] = ACTIONS(1266), - [anon_sym_u_DQUOTE] = ACTIONS(1266), - [anon_sym_U_DQUOTE] = ACTIONS(1266), - [anon_sym_u8_DQUOTE] = ACTIONS(1266), - [anon_sym_DQUOTE] = ACTIONS(1266), - [sym_true] = ACTIONS(1264), - [sym_false] = ACTIONS(1264), - [anon_sym_NULL] = ACTIONS(1264), - [anon_sym_nullptr] = ACTIONS(1264), + [sym_else_clause] = STATE(314), + [sym_identifier] = ACTIONS(1234), + [aux_sym_preproc_include_token1] = ACTIONS(1234), + [aux_sym_preproc_def_token1] = ACTIONS(1234), + [aux_sym_preproc_if_token1] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), + [sym_preproc_directive] = ACTIONS(1234), + [anon_sym_LPAREN2] = ACTIONS(1236), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(1236), + [anon_sym_SEMI] = ACTIONS(1236), + [anon_sym___extension__] = ACTIONS(1234), + [anon_sym_typedef] = ACTIONS(1234), + [anon_sym_extern] = ACTIONS(1234), + [anon_sym___attribute__] = ACTIONS(1234), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1236), + [anon_sym___declspec] = ACTIONS(1234), + [anon_sym___cdecl] = ACTIONS(1234), + [anon_sym___clrcall] = ACTIONS(1234), + [anon_sym___stdcall] = ACTIONS(1234), + [anon_sym___fastcall] = ACTIONS(1234), + [anon_sym___thiscall] = ACTIONS(1234), + [anon_sym___vectorcall] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(1236), + [anon_sym_RBRACE] = ACTIONS(1236), + [anon_sym_signed] = ACTIONS(1234), + [anon_sym_unsigned] = ACTIONS(1234), + [anon_sym_long] = ACTIONS(1234), + [anon_sym_short] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_auto] = ACTIONS(1234), + [anon_sym_register] = ACTIONS(1234), + [anon_sym_inline] = ACTIONS(1234), + [anon_sym___inline] = ACTIONS(1234), + [anon_sym___inline__] = ACTIONS(1234), + [anon_sym___forceinline] = ACTIONS(1234), + [anon_sym_thread_local] = ACTIONS(1234), + [anon_sym___thread] = ACTIONS(1234), + [anon_sym_const] = ACTIONS(1234), + [anon_sym_constexpr] = ACTIONS(1234), + [anon_sym_volatile] = ACTIONS(1234), + [anon_sym_restrict] = ACTIONS(1234), + [anon_sym___restrict__] = ACTIONS(1234), + [anon_sym__Atomic] = ACTIONS(1234), + [anon_sym__Noreturn] = ACTIONS(1234), + [anon_sym_noreturn] = ACTIONS(1234), + [sym_primitive_type] = ACTIONS(1234), + [anon_sym_enum] = ACTIONS(1234), + [anon_sym_struct] = ACTIONS(1234), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_if] = ACTIONS(1234), + [anon_sym_else] = ACTIONS(1572), + [anon_sym_switch] = ACTIONS(1234), + [anon_sym_case] = ACTIONS(1234), + [anon_sym_default] = ACTIONS(1234), + [anon_sym_while] = ACTIONS(1234), + [anon_sym_do] = ACTIONS(1234), + [anon_sym_for] = ACTIONS(1234), + [anon_sym_return] = ACTIONS(1234), + [anon_sym_break] = ACTIONS(1234), + [anon_sym_continue] = ACTIONS(1234), + [anon_sym_goto] = ACTIONS(1234), + [anon_sym_DASH_DASH] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_sizeof] = ACTIONS(1234), + [anon_sym___alignof__] = ACTIONS(1234), + [anon_sym___alignof] = ACTIONS(1234), + [anon_sym__alignof] = ACTIONS(1234), + [anon_sym_alignof] = ACTIONS(1234), + [anon_sym__Alignof] = ACTIONS(1234), + [anon_sym_offsetof] = ACTIONS(1234), + [anon_sym___builtin_va_arg] = ACTIONS(1234), + [anon_sym__Generic] = ACTIONS(1234), + [anon_sym_asm] = ACTIONS(1234), + [anon_sym___asm__] = ACTIONS(1234), + [sym_number_literal] = ACTIONS(1236), + [anon_sym_L_SQUOTE] = ACTIONS(1236), + [anon_sym_u_SQUOTE] = ACTIONS(1236), + [anon_sym_U_SQUOTE] = ACTIONS(1236), + [anon_sym_u8_SQUOTE] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1236), + [anon_sym_L_DQUOTE] = ACTIONS(1236), + [anon_sym_u_DQUOTE] = ACTIONS(1236), + [anon_sym_U_DQUOTE] = ACTIONS(1236), + [anon_sym_u8_DQUOTE] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(1236), + [sym_true] = ACTIONS(1234), + [sym_false] = ACTIONS(1234), + [anon_sym_NULL] = ACTIONS(1234), + [anon_sym_nullptr] = ACTIONS(1234), [sym_comment] = ACTIONS(3), }, [234] = { - [sym_identifier] = ACTIONS(1256), - [aux_sym_preproc_include_token1] = ACTIONS(1256), - [aux_sym_preproc_def_token1] = ACTIONS(1256), - [aux_sym_preproc_if_token1] = ACTIONS(1256), - [aux_sym_preproc_if_token2] = ACTIONS(1256), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1256), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1256), - [sym_preproc_directive] = ACTIONS(1256), - [anon_sym_LPAREN2] = ACTIONS(1258), - [anon_sym_BANG] = ACTIONS(1258), - [anon_sym_TILDE] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym_typedef] = ACTIONS(1256), - [anon_sym_extern] = ACTIONS(1256), - [anon_sym___attribute__] = ACTIONS(1256), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1258), - [anon_sym___declspec] = ACTIONS(1256), - [anon_sym___cdecl] = ACTIONS(1256), - [anon_sym___clrcall] = ACTIONS(1256), - [anon_sym___stdcall] = ACTIONS(1256), - [anon_sym___fastcall] = ACTIONS(1256), - [anon_sym___thiscall] = ACTIONS(1256), - [anon_sym___vectorcall] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1258), - [anon_sym_signed] = ACTIONS(1256), - [anon_sym_unsigned] = ACTIONS(1256), - [anon_sym_long] = ACTIONS(1256), - [anon_sym_short] = ACTIONS(1256), - [anon_sym_static] = ACTIONS(1256), - [anon_sym_auto] = ACTIONS(1256), - [anon_sym_register] = ACTIONS(1256), - [anon_sym_inline] = ACTIONS(1256), - [anon_sym_thread_local] = ACTIONS(1256), - [anon_sym___thread] = ACTIONS(1256), - [anon_sym_const] = ACTIONS(1256), - [anon_sym_constexpr] = ACTIONS(1256), - [anon_sym_volatile] = ACTIONS(1256), - [anon_sym_restrict] = ACTIONS(1256), - [anon_sym___restrict__] = ACTIONS(1256), - [anon_sym__Atomic] = ACTIONS(1256), - [anon_sym__Noreturn] = ACTIONS(1256), - [anon_sym_noreturn] = ACTIONS(1256), - [sym_primitive_type] = ACTIONS(1256), - [anon_sym_enum] = ACTIONS(1256), - [anon_sym_struct] = ACTIONS(1256), - [anon_sym_union] = ACTIONS(1256), - [anon_sym_if] = ACTIONS(1256), - [anon_sym_else] = ACTIONS(1256), - [anon_sym_switch] = ACTIONS(1256), - [anon_sym_case] = ACTIONS(1256), - [anon_sym_default] = ACTIONS(1256), - [anon_sym_while] = ACTIONS(1256), - [anon_sym_do] = ACTIONS(1256), - [anon_sym_for] = ACTIONS(1256), - [anon_sym_return] = ACTIONS(1256), - [anon_sym_break] = ACTIONS(1256), - [anon_sym_continue] = ACTIONS(1256), - [anon_sym_goto] = ACTIONS(1256), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_sizeof] = ACTIONS(1256), - [anon_sym_offsetof] = ACTIONS(1256), - [anon_sym__Generic] = ACTIONS(1256), - [anon_sym_asm] = ACTIONS(1256), - [anon_sym___asm__] = ACTIONS(1256), - [sym_number_literal] = ACTIONS(1258), - [anon_sym_L_SQUOTE] = ACTIONS(1258), - [anon_sym_u_SQUOTE] = ACTIONS(1258), - [anon_sym_U_SQUOTE] = ACTIONS(1258), - [anon_sym_u8_SQUOTE] = ACTIONS(1258), - [anon_sym_SQUOTE] = ACTIONS(1258), - [anon_sym_L_DQUOTE] = ACTIONS(1258), - [anon_sym_u_DQUOTE] = ACTIONS(1258), - [anon_sym_U_DQUOTE] = ACTIONS(1258), - [anon_sym_u8_DQUOTE] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(1258), - [sym_true] = ACTIONS(1256), - [sym_false] = ACTIONS(1256), - [anon_sym_NULL] = ACTIONS(1256), - [anon_sym_nullptr] = ACTIONS(1256), + [sym_identifier] = ACTIONS(1530), + [aux_sym_preproc_include_token1] = ACTIONS(1530), + [aux_sym_preproc_def_token1] = ACTIONS(1530), + [aux_sym_preproc_if_token1] = ACTIONS(1530), + [aux_sym_preproc_if_token2] = ACTIONS(1530), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1530), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1530), + [aux_sym_preproc_else_token1] = ACTIONS(1530), + [aux_sym_preproc_elif_token1] = ACTIONS(1530), + [sym_preproc_directive] = ACTIONS(1530), + [anon_sym_LPAREN2] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(1532), + [anon_sym_TILDE] = ACTIONS(1532), + [anon_sym_DASH] = ACTIONS(1530), + [anon_sym_PLUS] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1532), + [anon_sym_AMP] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym___extension__] = ACTIONS(1530), + [anon_sym_typedef] = ACTIONS(1530), + [anon_sym_extern] = ACTIONS(1530), + [anon_sym___attribute__] = ACTIONS(1530), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1532), + [anon_sym___declspec] = ACTIONS(1530), + [anon_sym___cdecl] = ACTIONS(1530), + [anon_sym___clrcall] = ACTIONS(1530), + [anon_sym___stdcall] = ACTIONS(1530), + [anon_sym___fastcall] = ACTIONS(1530), + [anon_sym___thiscall] = ACTIONS(1530), + [anon_sym___vectorcall] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_signed] = ACTIONS(1530), + [anon_sym_unsigned] = ACTIONS(1530), + [anon_sym_long] = ACTIONS(1530), + [anon_sym_short] = ACTIONS(1530), + [anon_sym_static] = ACTIONS(1530), + [anon_sym_auto] = ACTIONS(1530), + [anon_sym_register] = ACTIONS(1530), + [anon_sym_inline] = ACTIONS(1530), + [anon_sym___inline] = ACTIONS(1530), + [anon_sym___inline__] = ACTIONS(1530), + [anon_sym___forceinline] = ACTIONS(1530), + [anon_sym_thread_local] = ACTIONS(1530), + [anon_sym___thread] = ACTIONS(1530), + [anon_sym_const] = ACTIONS(1530), + [anon_sym_constexpr] = ACTIONS(1530), + [anon_sym_volatile] = ACTIONS(1530), + [anon_sym_restrict] = ACTIONS(1530), + [anon_sym___restrict__] = ACTIONS(1530), + [anon_sym__Atomic] = ACTIONS(1530), + [anon_sym__Noreturn] = ACTIONS(1530), + [anon_sym_noreturn] = ACTIONS(1530), + [sym_primitive_type] = ACTIONS(1530), + [anon_sym_enum] = ACTIONS(1530), + [anon_sym_struct] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), + [anon_sym_if] = ACTIONS(1530), + [anon_sym_switch] = ACTIONS(1530), + [anon_sym_case] = ACTIONS(1530), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_while] = ACTIONS(1530), + [anon_sym_do] = ACTIONS(1530), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1530), + [anon_sym_continue] = ACTIONS(1530), + [anon_sym_goto] = ACTIONS(1530), + [anon_sym_DASH_DASH] = ACTIONS(1532), + [anon_sym_PLUS_PLUS] = ACTIONS(1532), + [anon_sym_sizeof] = ACTIONS(1530), + [anon_sym___alignof__] = ACTIONS(1530), + [anon_sym___alignof] = ACTIONS(1530), + [anon_sym__alignof] = ACTIONS(1530), + [anon_sym_alignof] = ACTIONS(1530), + [anon_sym__Alignof] = ACTIONS(1530), + [anon_sym_offsetof] = ACTIONS(1530), + [anon_sym___builtin_va_arg] = ACTIONS(1530), + [anon_sym__Generic] = ACTIONS(1530), + [anon_sym_asm] = ACTIONS(1530), + [anon_sym___asm__] = ACTIONS(1530), + [sym_number_literal] = ACTIONS(1532), + [anon_sym_L_SQUOTE] = ACTIONS(1532), + [anon_sym_u_SQUOTE] = ACTIONS(1532), + [anon_sym_U_SQUOTE] = ACTIONS(1532), + [anon_sym_u8_SQUOTE] = ACTIONS(1532), + [anon_sym_SQUOTE] = ACTIONS(1532), + [anon_sym_L_DQUOTE] = ACTIONS(1532), + [anon_sym_u_DQUOTE] = ACTIONS(1532), + [anon_sym_U_DQUOTE] = ACTIONS(1532), + [anon_sym_u8_DQUOTE] = ACTIONS(1532), + [anon_sym_DQUOTE] = ACTIONS(1532), + [sym_true] = ACTIONS(1530), + [sym_false] = ACTIONS(1530), + [anon_sym_NULL] = ACTIONS(1530), + [anon_sym_nullptr] = ACTIONS(1530), [sym_comment] = ACTIONS(3), }, [235] = { - [ts_builtin_sym_end] = ACTIONS(1262), - [sym_identifier] = ACTIONS(1260), - [aux_sym_preproc_include_token1] = ACTIONS(1260), - [aux_sym_preproc_def_token1] = ACTIONS(1260), - [aux_sym_preproc_if_token1] = ACTIONS(1260), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1260), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1260), - [sym_preproc_directive] = ACTIONS(1260), - [anon_sym_LPAREN2] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1262), - [anon_sym_TILDE] = ACTIONS(1262), - [anon_sym_DASH] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1260), - [anon_sym_STAR] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(1262), - [anon_sym_SEMI] = ACTIONS(1262), - [anon_sym_typedef] = ACTIONS(1260), - [anon_sym_extern] = ACTIONS(1260), - [anon_sym___attribute__] = ACTIONS(1260), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1262), - [anon_sym___declspec] = ACTIONS(1260), - [anon_sym___cdecl] = ACTIONS(1260), - [anon_sym___clrcall] = ACTIONS(1260), - [anon_sym___stdcall] = ACTIONS(1260), - [anon_sym___fastcall] = ACTIONS(1260), - [anon_sym___thiscall] = ACTIONS(1260), - [anon_sym___vectorcall] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_signed] = ACTIONS(1260), - [anon_sym_unsigned] = ACTIONS(1260), - [anon_sym_long] = ACTIONS(1260), - [anon_sym_short] = ACTIONS(1260), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_auto] = ACTIONS(1260), - [anon_sym_register] = ACTIONS(1260), - [anon_sym_inline] = ACTIONS(1260), - [anon_sym_thread_local] = ACTIONS(1260), - [anon_sym___thread] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1260), - [anon_sym_constexpr] = ACTIONS(1260), - [anon_sym_volatile] = ACTIONS(1260), - [anon_sym_restrict] = ACTIONS(1260), - [anon_sym___restrict__] = ACTIONS(1260), - [anon_sym__Atomic] = ACTIONS(1260), - [anon_sym__Noreturn] = ACTIONS(1260), - [anon_sym_noreturn] = ACTIONS(1260), - [sym_primitive_type] = ACTIONS(1260), - [anon_sym_enum] = ACTIONS(1260), - [anon_sym_struct] = ACTIONS(1260), - [anon_sym_union] = ACTIONS(1260), - [anon_sym_if] = ACTIONS(1260), - [anon_sym_else] = ACTIONS(1260), - [anon_sym_switch] = ACTIONS(1260), - [anon_sym_case] = ACTIONS(1260), - [anon_sym_default] = ACTIONS(1260), - [anon_sym_while] = ACTIONS(1260), - [anon_sym_do] = ACTIONS(1260), - [anon_sym_for] = ACTIONS(1260), - [anon_sym_return] = ACTIONS(1260), - [anon_sym_break] = ACTIONS(1260), - [anon_sym_continue] = ACTIONS(1260), - [anon_sym_goto] = ACTIONS(1260), - [anon_sym_DASH_DASH] = ACTIONS(1262), - [anon_sym_PLUS_PLUS] = ACTIONS(1262), - [anon_sym_sizeof] = ACTIONS(1260), - [anon_sym_offsetof] = ACTIONS(1260), - [anon_sym__Generic] = ACTIONS(1260), - [anon_sym_asm] = ACTIONS(1260), - [anon_sym___asm__] = ACTIONS(1260), - [sym_number_literal] = ACTIONS(1262), - [anon_sym_L_SQUOTE] = ACTIONS(1262), - [anon_sym_u_SQUOTE] = ACTIONS(1262), - [anon_sym_U_SQUOTE] = ACTIONS(1262), - [anon_sym_u8_SQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1262), - [anon_sym_L_DQUOTE] = ACTIONS(1262), - [anon_sym_u_DQUOTE] = ACTIONS(1262), - [anon_sym_U_DQUOTE] = ACTIONS(1262), - [anon_sym_u8_DQUOTE] = ACTIONS(1262), - [anon_sym_DQUOTE] = ACTIONS(1262), - [sym_true] = ACTIONS(1260), - [sym_false] = ACTIONS(1260), - [anon_sym_NULL] = ACTIONS(1260), - [anon_sym_nullptr] = ACTIONS(1260), + [sym_identifier] = ACTIONS(1550), + [aux_sym_preproc_include_token1] = ACTIONS(1550), + [aux_sym_preproc_def_token1] = ACTIONS(1550), + [aux_sym_preproc_if_token1] = ACTIONS(1550), + [aux_sym_preproc_if_token2] = ACTIONS(1550), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1550), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1550), + [aux_sym_preproc_else_token1] = ACTIONS(1550), + [aux_sym_preproc_elif_token1] = ACTIONS(1550), + [sym_preproc_directive] = ACTIONS(1550), + [anon_sym_LPAREN2] = ACTIONS(1552), + [anon_sym_BANG] = ACTIONS(1552), + [anon_sym_TILDE] = ACTIONS(1552), + [anon_sym_DASH] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1550), + [anon_sym_STAR] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(1552), + [anon_sym_SEMI] = ACTIONS(1552), + [anon_sym___extension__] = ACTIONS(1550), + [anon_sym_typedef] = ACTIONS(1550), + [anon_sym_extern] = ACTIONS(1550), + [anon_sym___attribute__] = ACTIONS(1550), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1552), + [anon_sym___declspec] = ACTIONS(1550), + [anon_sym___cdecl] = ACTIONS(1550), + [anon_sym___clrcall] = ACTIONS(1550), + [anon_sym___stdcall] = ACTIONS(1550), + [anon_sym___fastcall] = ACTIONS(1550), + [anon_sym___thiscall] = ACTIONS(1550), + [anon_sym___vectorcall] = ACTIONS(1550), + [anon_sym_LBRACE] = ACTIONS(1552), + [anon_sym_signed] = ACTIONS(1550), + [anon_sym_unsigned] = ACTIONS(1550), + [anon_sym_long] = ACTIONS(1550), + [anon_sym_short] = ACTIONS(1550), + [anon_sym_static] = ACTIONS(1550), + [anon_sym_auto] = ACTIONS(1550), + [anon_sym_register] = ACTIONS(1550), + [anon_sym_inline] = ACTIONS(1550), + [anon_sym___inline] = ACTIONS(1550), + [anon_sym___inline__] = ACTIONS(1550), + [anon_sym___forceinline] = ACTIONS(1550), + [anon_sym_thread_local] = ACTIONS(1550), + [anon_sym___thread] = ACTIONS(1550), + [anon_sym_const] = ACTIONS(1550), + [anon_sym_constexpr] = ACTIONS(1550), + [anon_sym_volatile] = ACTIONS(1550), + [anon_sym_restrict] = ACTIONS(1550), + [anon_sym___restrict__] = ACTIONS(1550), + [anon_sym__Atomic] = ACTIONS(1550), + [anon_sym__Noreturn] = ACTIONS(1550), + [anon_sym_noreturn] = ACTIONS(1550), + [sym_primitive_type] = ACTIONS(1550), + [anon_sym_enum] = ACTIONS(1550), + [anon_sym_struct] = ACTIONS(1550), + [anon_sym_union] = ACTIONS(1550), + [anon_sym_if] = ACTIONS(1550), + [anon_sym_switch] = ACTIONS(1550), + [anon_sym_case] = ACTIONS(1550), + [anon_sym_default] = ACTIONS(1550), + [anon_sym_while] = ACTIONS(1550), + [anon_sym_do] = ACTIONS(1550), + [anon_sym_for] = ACTIONS(1550), + [anon_sym_return] = ACTIONS(1550), + [anon_sym_break] = ACTIONS(1550), + [anon_sym_continue] = ACTIONS(1550), + [anon_sym_goto] = ACTIONS(1550), + [anon_sym_DASH_DASH] = ACTIONS(1552), + [anon_sym_PLUS_PLUS] = ACTIONS(1552), + [anon_sym_sizeof] = ACTIONS(1550), + [anon_sym___alignof__] = ACTIONS(1550), + [anon_sym___alignof] = ACTIONS(1550), + [anon_sym__alignof] = ACTIONS(1550), + [anon_sym_alignof] = ACTIONS(1550), + [anon_sym__Alignof] = ACTIONS(1550), + [anon_sym_offsetof] = ACTIONS(1550), + [anon_sym___builtin_va_arg] = ACTIONS(1550), + [anon_sym__Generic] = ACTIONS(1550), + [anon_sym_asm] = ACTIONS(1550), + [anon_sym___asm__] = ACTIONS(1550), + [sym_number_literal] = ACTIONS(1552), + [anon_sym_L_SQUOTE] = ACTIONS(1552), + [anon_sym_u_SQUOTE] = ACTIONS(1552), + [anon_sym_U_SQUOTE] = ACTIONS(1552), + [anon_sym_u8_SQUOTE] = ACTIONS(1552), + [anon_sym_SQUOTE] = ACTIONS(1552), + [anon_sym_L_DQUOTE] = ACTIONS(1552), + [anon_sym_u_DQUOTE] = ACTIONS(1552), + [anon_sym_U_DQUOTE] = ACTIONS(1552), + [anon_sym_u8_DQUOTE] = ACTIONS(1552), + [anon_sym_DQUOTE] = ACTIONS(1552), + [sym_true] = ACTIONS(1550), + [sym_false] = ACTIONS(1550), + [anon_sym_NULL] = ACTIONS(1550), + [anon_sym_nullptr] = ACTIONS(1550), [sym_comment] = ACTIONS(3), }, [236] = { - [sym_identifier] = ACTIONS(1244), - [aux_sym_preproc_include_token1] = ACTIONS(1244), - [aux_sym_preproc_def_token1] = ACTIONS(1244), - [aux_sym_preproc_if_token1] = ACTIONS(1244), - [aux_sym_preproc_if_token2] = ACTIONS(1244), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1244), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1244), - [sym_preproc_directive] = ACTIONS(1244), - [anon_sym_LPAREN2] = ACTIONS(1246), - [anon_sym_BANG] = ACTIONS(1246), - [anon_sym_TILDE] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1246), - [anon_sym_SEMI] = ACTIONS(1246), - [anon_sym_typedef] = ACTIONS(1244), - [anon_sym_extern] = ACTIONS(1244), - [anon_sym___attribute__] = ACTIONS(1244), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1246), - [anon_sym___declspec] = ACTIONS(1244), - [anon_sym___cdecl] = ACTIONS(1244), - [anon_sym___clrcall] = ACTIONS(1244), - [anon_sym___stdcall] = ACTIONS(1244), - [anon_sym___fastcall] = ACTIONS(1244), - [anon_sym___thiscall] = ACTIONS(1244), - [anon_sym___vectorcall] = ACTIONS(1244), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_signed] = ACTIONS(1244), - [anon_sym_unsigned] = ACTIONS(1244), - [anon_sym_long] = ACTIONS(1244), - [anon_sym_short] = ACTIONS(1244), - [anon_sym_static] = ACTIONS(1244), - [anon_sym_auto] = ACTIONS(1244), - [anon_sym_register] = ACTIONS(1244), - [anon_sym_inline] = ACTIONS(1244), - [anon_sym_thread_local] = ACTIONS(1244), - [anon_sym___thread] = ACTIONS(1244), - [anon_sym_const] = ACTIONS(1244), - [anon_sym_constexpr] = ACTIONS(1244), - [anon_sym_volatile] = ACTIONS(1244), - [anon_sym_restrict] = ACTIONS(1244), - [anon_sym___restrict__] = ACTIONS(1244), - [anon_sym__Atomic] = ACTIONS(1244), - [anon_sym__Noreturn] = ACTIONS(1244), - [anon_sym_noreturn] = ACTIONS(1244), - [sym_primitive_type] = ACTIONS(1244), - [anon_sym_enum] = ACTIONS(1244), - [anon_sym_struct] = ACTIONS(1244), - [anon_sym_union] = ACTIONS(1244), - [anon_sym_if] = ACTIONS(1244), - [anon_sym_else] = ACTIONS(1244), - [anon_sym_switch] = ACTIONS(1244), - [anon_sym_case] = ACTIONS(1244), - [anon_sym_default] = ACTIONS(1244), - [anon_sym_while] = ACTIONS(1244), - [anon_sym_do] = ACTIONS(1244), - [anon_sym_for] = ACTIONS(1244), - [anon_sym_return] = ACTIONS(1244), - [anon_sym_break] = ACTIONS(1244), - [anon_sym_continue] = ACTIONS(1244), - [anon_sym_goto] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1246), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_sizeof] = ACTIONS(1244), - [anon_sym_offsetof] = ACTIONS(1244), - [anon_sym__Generic] = ACTIONS(1244), - [anon_sym_asm] = ACTIONS(1244), - [anon_sym___asm__] = ACTIONS(1244), - [sym_number_literal] = ACTIONS(1246), - [anon_sym_L_SQUOTE] = ACTIONS(1246), - [anon_sym_u_SQUOTE] = ACTIONS(1246), - [anon_sym_U_SQUOTE] = ACTIONS(1246), - [anon_sym_u8_SQUOTE] = ACTIONS(1246), - [anon_sym_SQUOTE] = ACTIONS(1246), - [anon_sym_L_DQUOTE] = ACTIONS(1246), - [anon_sym_u_DQUOTE] = ACTIONS(1246), - [anon_sym_U_DQUOTE] = ACTIONS(1246), - [anon_sym_u8_DQUOTE] = ACTIONS(1246), - [anon_sym_DQUOTE] = ACTIONS(1246), - [sym_true] = ACTIONS(1244), - [sym_false] = ACTIONS(1244), - [anon_sym_NULL] = ACTIONS(1244), - [anon_sym_nullptr] = ACTIONS(1244), + [sym_identifier] = ACTIONS(1534), + [aux_sym_preproc_include_token1] = ACTIONS(1534), + [aux_sym_preproc_def_token1] = ACTIONS(1534), + [aux_sym_preproc_if_token1] = ACTIONS(1534), + [aux_sym_preproc_if_token2] = ACTIONS(1534), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1534), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1534), + [aux_sym_preproc_else_token1] = ACTIONS(1534), + [aux_sym_preproc_elif_token1] = ACTIONS(1534), + [sym_preproc_directive] = ACTIONS(1534), + [anon_sym_LPAREN2] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1536), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_DASH] = ACTIONS(1534), + [anon_sym_PLUS] = ACTIONS(1534), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_AMP] = ACTIONS(1536), + [anon_sym_SEMI] = ACTIONS(1536), + [anon_sym___extension__] = ACTIONS(1534), + [anon_sym_typedef] = ACTIONS(1534), + [anon_sym_extern] = ACTIONS(1534), + [anon_sym___attribute__] = ACTIONS(1534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), + [anon_sym___declspec] = ACTIONS(1534), + [anon_sym___cdecl] = ACTIONS(1534), + [anon_sym___clrcall] = ACTIONS(1534), + [anon_sym___stdcall] = ACTIONS(1534), + [anon_sym___fastcall] = ACTIONS(1534), + [anon_sym___thiscall] = ACTIONS(1534), + [anon_sym___vectorcall] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_signed] = ACTIONS(1534), + [anon_sym_unsigned] = ACTIONS(1534), + [anon_sym_long] = ACTIONS(1534), + [anon_sym_short] = ACTIONS(1534), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_auto] = ACTIONS(1534), + [anon_sym_register] = ACTIONS(1534), + [anon_sym_inline] = ACTIONS(1534), + [anon_sym___inline] = ACTIONS(1534), + [anon_sym___inline__] = ACTIONS(1534), + [anon_sym___forceinline] = ACTIONS(1534), + [anon_sym_thread_local] = ACTIONS(1534), + [anon_sym___thread] = ACTIONS(1534), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_constexpr] = ACTIONS(1534), + [anon_sym_volatile] = ACTIONS(1534), + [anon_sym_restrict] = ACTIONS(1534), + [anon_sym___restrict__] = ACTIONS(1534), + [anon_sym__Atomic] = ACTIONS(1534), + [anon_sym__Noreturn] = ACTIONS(1534), + [anon_sym_noreturn] = ACTIONS(1534), + [sym_primitive_type] = ACTIONS(1534), + [anon_sym_enum] = ACTIONS(1534), + [anon_sym_struct] = ACTIONS(1534), + [anon_sym_union] = ACTIONS(1534), + [anon_sym_if] = ACTIONS(1534), + [anon_sym_switch] = ACTIONS(1534), + [anon_sym_case] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1534), + [anon_sym_while] = ACTIONS(1534), + [anon_sym_do] = ACTIONS(1534), + [anon_sym_for] = ACTIONS(1534), + [anon_sym_return] = ACTIONS(1534), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1534), + [anon_sym_goto] = ACTIONS(1534), + [anon_sym_DASH_DASH] = ACTIONS(1536), + [anon_sym_PLUS_PLUS] = ACTIONS(1536), + [anon_sym_sizeof] = ACTIONS(1534), + [anon_sym___alignof__] = ACTIONS(1534), + [anon_sym___alignof] = ACTIONS(1534), + [anon_sym__alignof] = ACTIONS(1534), + [anon_sym_alignof] = ACTIONS(1534), + [anon_sym__Alignof] = ACTIONS(1534), + [anon_sym_offsetof] = ACTIONS(1534), + [anon_sym___builtin_va_arg] = ACTIONS(1534), + [anon_sym__Generic] = ACTIONS(1534), + [anon_sym_asm] = ACTIONS(1534), + [anon_sym___asm__] = ACTIONS(1534), + [sym_number_literal] = ACTIONS(1536), + [anon_sym_L_SQUOTE] = ACTIONS(1536), + [anon_sym_u_SQUOTE] = ACTIONS(1536), + [anon_sym_U_SQUOTE] = ACTIONS(1536), + [anon_sym_u8_SQUOTE] = ACTIONS(1536), + [anon_sym_SQUOTE] = ACTIONS(1536), + [anon_sym_L_DQUOTE] = ACTIONS(1536), + [anon_sym_u_DQUOTE] = ACTIONS(1536), + [anon_sym_U_DQUOTE] = ACTIONS(1536), + [anon_sym_u8_DQUOTE] = ACTIONS(1536), + [anon_sym_DQUOTE] = ACTIONS(1536), + [sym_true] = ACTIONS(1534), + [sym_false] = ACTIONS(1534), + [anon_sym_NULL] = ACTIONS(1534), + [anon_sym_nullptr] = ACTIONS(1534), [sym_comment] = ACTIONS(3), }, [237] = { - [ts_builtin_sym_end] = ACTIONS(1250), - [sym_identifier] = ACTIONS(1248), - [aux_sym_preproc_include_token1] = ACTIONS(1248), - [aux_sym_preproc_def_token1] = ACTIONS(1248), - [aux_sym_preproc_if_token1] = ACTIONS(1248), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1248), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1248), - [sym_preproc_directive] = ACTIONS(1248), - [anon_sym_LPAREN2] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1250), - [anon_sym_TILDE] = ACTIONS(1250), - [anon_sym_DASH] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1248), - [anon_sym_STAR] = ACTIONS(1250), - [anon_sym_AMP] = ACTIONS(1250), - [anon_sym_SEMI] = ACTIONS(1250), - [anon_sym_typedef] = ACTIONS(1248), - [anon_sym_extern] = ACTIONS(1248), - [anon_sym___attribute__] = ACTIONS(1248), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1250), - [anon_sym___declspec] = ACTIONS(1248), - [anon_sym___cdecl] = ACTIONS(1248), - [anon_sym___clrcall] = ACTIONS(1248), - [anon_sym___stdcall] = ACTIONS(1248), - [anon_sym___fastcall] = ACTIONS(1248), - [anon_sym___thiscall] = ACTIONS(1248), - [anon_sym___vectorcall] = ACTIONS(1248), - [anon_sym_LBRACE] = ACTIONS(1250), - [anon_sym_signed] = ACTIONS(1248), - [anon_sym_unsigned] = ACTIONS(1248), - [anon_sym_long] = ACTIONS(1248), - [anon_sym_short] = ACTIONS(1248), - [anon_sym_static] = ACTIONS(1248), - [anon_sym_auto] = ACTIONS(1248), - [anon_sym_register] = ACTIONS(1248), - [anon_sym_inline] = ACTIONS(1248), - [anon_sym_thread_local] = ACTIONS(1248), - [anon_sym___thread] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1248), - [anon_sym_constexpr] = ACTIONS(1248), - [anon_sym_volatile] = ACTIONS(1248), - [anon_sym_restrict] = ACTIONS(1248), - [anon_sym___restrict__] = ACTIONS(1248), - [anon_sym__Atomic] = ACTIONS(1248), - [anon_sym__Noreturn] = ACTIONS(1248), - [anon_sym_noreturn] = ACTIONS(1248), - [sym_primitive_type] = ACTIONS(1248), - [anon_sym_enum] = ACTIONS(1248), - [anon_sym_struct] = ACTIONS(1248), - [anon_sym_union] = ACTIONS(1248), - [anon_sym_if] = ACTIONS(1248), - [anon_sym_else] = ACTIONS(1248), - [anon_sym_switch] = ACTIONS(1248), - [anon_sym_case] = ACTIONS(1248), - [anon_sym_default] = ACTIONS(1248), - [anon_sym_while] = ACTIONS(1248), - [anon_sym_do] = ACTIONS(1248), - [anon_sym_for] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1248), - [anon_sym_break] = ACTIONS(1248), - [anon_sym_continue] = ACTIONS(1248), - [anon_sym_goto] = ACTIONS(1248), - [anon_sym_DASH_DASH] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1250), - [anon_sym_sizeof] = ACTIONS(1248), - [anon_sym_offsetof] = ACTIONS(1248), - [anon_sym__Generic] = ACTIONS(1248), - [anon_sym_asm] = ACTIONS(1248), - [anon_sym___asm__] = ACTIONS(1248), - [sym_number_literal] = ACTIONS(1250), - [anon_sym_L_SQUOTE] = ACTIONS(1250), - [anon_sym_u_SQUOTE] = ACTIONS(1250), - [anon_sym_U_SQUOTE] = ACTIONS(1250), - [anon_sym_u8_SQUOTE] = ACTIONS(1250), - [anon_sym_SQUOTE] = ACTIONS(1250), - [anon_sym_L_DQUOTE] = ACTIONS(1250), - [anon_sym_u_DQUOTE] = ACTIONS(1250), - [anon_sym_U_DQUOTE] = ACTIONS(1250), - [anon_sym_u8_DQUOTE] = ACTIONS(1250), - [anon_sym_DQUOTE] = ACTIONS(1250), - [sym_true] = ACTIONS(1248), - [sym_false] = ACTIONS(1248), - [anon_sym_NULL] = ACTIONS(1248), - [anon_sym_nullptr] = ACTIONS(1248), + [sym_identifier] = ACTIONS(1464), + [aux_sym_preproc_include_token1] = ACTIONS(1464), + [aux_sym_preproc_def_token1] = ACTIONS(1464), + [aux_sym_preproc_if_token1] = ACTIONS(1464), + [aux_sym_preproc_if_token2] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), + [aux_sym_preproc_else_token1] = ACTIONS(1464), + [aux_sym_preproc_elif_token1] = ACTIONS(1464), + [sym_preproc_directive] = ACTIONS(1464), + [anon_sym_LPAREN2] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym___extension__] = ACTIONS(1464), + [anon_sym_typedef] = ACTIONS(1464), + [anon_sym_extern] = ACTIONS(1464), + [anon_sym___attribute__] = ACTIONS(1464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), + [anon_sym___declspec] = ACTIONS(1464), + [anon_sym___cdecl] = ACTIONS(1464), + [anon_sym___clrcall] = ACTIONS(1464), + [anon_sym___stdcall] = ACTIONS(1464), + [anon_sym___fastcall] = ACTIONS(1464), + [anon_sym___thiscall] = ACTIONS(1464), + [anon_sym___vectorcall] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_signed] = ACTIONS(1464), + [anon_sym_unsigned] = ACTIONS(1464), + [anon_sym_long] = ACTIONS(1464), + [anon_sym_short] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_auto] = ACTIONS(1464), + [anon_sym_register] = ACTIONS(1464), + [anon_sym_inline] = ACTIONS(1464), + [anon_sym___inline] = ACTIONS(1464), + [anon_sym___inline__] = ACTIONS(1464), + [anon_sym___forceinline] = ACTIONS(1464), + [anon_sym_thread_local] = ACTIONS(1464), + [anon_sym___thread] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_constexpr] = ACTIONS(1464), + [anon_sym_volatile] = ACTIONS(1464), + [anon_sym_restrict] = ACTIONS(1464), + [anon_sym___restrict__] = ACTIONS(1464), + [anon_sym__Atomic] = ACTIONS(1464), + [anon_sym__Noreturn] = ACTIONS(1464), + [anon_sym_noreturn] = ACTIONS(1464), + [sym_primitive_type] = ACTIONS(1464), + [anon_sym_enum] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1464), + [anon_sym_union] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_case] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_continue] = ACTIONS(1464), + [anon_sym_goto] = ACTIONS(1464), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_sizeof] = ACTIONS(1464), + [anon_sym___alignof__] = ACTIONS(1464), + [anon_sym___alignof] = ACTIONS(1464), + [anon_sym__alignof] = ACTIONS(1464), + [anon_sym_alignof] = ACTIONS(1464), + [anon_sym__Alignof] = ACTIONS(1464), + [anon_sym_offsetof] = ACTIONS(1464), + [anon_sym___builtin_va_arg] = ACTIONS(1464), + [anon_sym__Generic] = ACTIONS(1464), + [anon_sym_asm] = ACTIONS(1464), + [anon_sym___asm__] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [anon_sym_L_SQUOTE] = ACTIONS(1466), + [anon_sym_u_SQUOTE] = ACTIONS(1466), + [anon_sym_U_SQUOTE] = ACTIONS(1466), + [anon_sym_u8_SQUOTE] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [anon_sym_L_DQUOTE] = ACTIONS(1466), + [anon_sym_u_DQUOTE] = ACTIONS(1466), + [anon_sym_U_DQUOTE] = ACTIONS(1466), + [anon_sym_u8_DQUOTE] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [anon_sym_NULL] = ACTIONS(1464), + [anon_sym_nullptr] = ACTIONS(1464), [sym_comment] = ACTIONS(3), }, [238] = { - [sym_identifier] = ACTIONS(1240), - [aux_sym_preproc_include_token1] = ACTIONS(1240), - [aux_sym_preproc_def_token1] = ACTIONS(1240), - [aux_sym_preproc_if_token1] = ACTIONS(1240), - [aux_sym_preproc_if_token2] = ACTIONS(1240), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1240), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1240), - [sym_preproc_directive] = ACTIONS(1240), - [anon_sym_LPAREN2] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1240), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_typedef] = ACTIONS(1240), - [anon_sym_extern] = ACTIONS(1240), - [anon_sym___attribute__] = ACTIONS(1240), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1242), - [anon_sym___declspec] = ACTIONS(1240), - [anon_sym___cdecl] = ACTIONS(1240), - [anon_sym___clrcall] = ACTIONS(1240), - [anon_sym___stdcall] = ACTIONS(1240), - [anon_sym___fastcall] = ACTIONS(1240), - [anon_sym___thiscall] = ACTIONS(1240), - [anon_sym___vectorcall] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_signed] = ACTIONS(1240), - [anon_sym_unsigned] = ACTIONS(1240), - [anon_sym_long] = ACTIONS(1240), - [anon_sym_short] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1240), - [anon_sym_auto] = ACTIONS(1240), - [anon_sym_register] = ACTIONS(1240), - [anon_sym_inline] = ACTIONS(1240), - [anon_sym_thread_local] = ACTIONS(1240), - [anon_sym___thread] = ACTIONS(1240), - [anon_sym_const] = ACTIONS(1240), - [anon_sym_constexpr] = ACTIONS(1240), - [anon_sym_volatile] = ACTIONS(1240), - [anon_sym_restrict] = ACTIONS(1240), - [anon_sym___restrict__] = ACTIONS(1240), - [anon_sym__Atomic] = ACTIONS(1240), - [anon_sym__Noreturn] = ACTIONS(1240), - [anon_sym_noreturn] = ACTIONS(1240), - [sym_primitive_type] = ACTIONS(1240), - [anon_sym_enum] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_else] = ACTIONS(1240), - [anon_sym_switch] = ACTIONS(1240), - [anon_sym_case] = ACTIONS(1240), - [anon_sym_default] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1240), - [anon_sym_do] = ACTIONS(1240), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1240), - [anon_sym_goto] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1242), - [anon_sym_sizeof] = ACTIONS(1240), - [anon_sym_offsetof] = ACTIONS(1240), - [anon_sym__Generic] = ACTIONS(1240), - [anon_sym_asm] = ACTIONS(1240), - [anon_sym___asm__] = ACTIONS(1240), - [sym_number_literal] = ACTIONS(1242), - [anon_sym_L_SQUOTE] = ACTIONS(1242), - [anon_sym_u_SQUOTE] = ACTIONS(1242), - [anon_sym_U_SQUOTE] = ACTIONS(1242), - [anon_sym_u8_SQUOTE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1242), - [anon_sym_L_DQUOTE] = ACTIONS(1242), - [anon_sym_u_DQUOTE] = ACTIONS(1242), - [anon_sym_U_DQUOTE] = ACTIONS(1242), - [anon_sym_u8_DQUOTE] = ACTIONS(1242), - [anon_sym_DQUOTE] = ACTIONS(1242), - [sym_true] = ACTIONS(1240), - [sym_false] = ACTIONS(1240), - [anon_sym_NULL] = ACTIONS(1240), - [anon_sym_nullptr] = ACTIONS(1240), + [sym_identifier] = ACTIONS(1468), + [aux_sym_preproc_include_token1] = ACTIONS(1468), + [aux_sym_preproc_def_token1] = ACTIONS(1468), + [aux_sym_preproc_if_token1] = ACTIONS(1468), + [aux_sym_preproc_if_token2] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), + [aux_sym_preproc_else_token1] = ACTIONS(1468), + [aux_sym_preproc_elif_token1] = ACTIONS(1468), + [sym_preproc_directive] = ACTIONS(1468), + [anon_sym_LPAREN2] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym___extension__] = ACTIONS(1468), + [anon_sym_typedef] = ACTIONS(1468), + [anon_sym_extern] = ACTIONS(1468), + [anon_sym___attribute__] = ACTIONS(1468), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), + [anon_sym___declspec] = ACTIONS(1468), + [anon_sym___cdecl] = ACTIONS(1468), + [anon_sym___clrcall] = ACTIONS(1468), + [anon_sym___stdcall] = ACTIONS(1468), + [anon_sym___fastcall] = ACTIONS(1468), + [anon_sym___thiscall] = ACTIONS(1468), + [anon_sym___vectorcall] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1468), + [anon_sym_unsigned] = ACTIONS(1468), + [anon_sym_long] = ACTIONS(1468), + [anon_sym_short] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1468), + [anon_sym_auto] = ACTIONS(1468), + [anon_sym_register] = ACTIONS(1468), + [anon_sym_inline] = ACTIONS(1468), + [anon_sym___inline] = ACTIONS(1468), + [anon_sym___inline__] = ACTIONS(1468), + [anon_sym___forceinline] = ACTIONS(1468), + [anon_sym_thread_local] = ACTIONS(1468), + [anon_sym___thread] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1468), + [anon_sym_constexpr] = ACTIONS(1468), + [anon_sym_volatile] = ACTIONS(1468), + [anon_sym_restrict] = ACTIONS(1468), + [anon_sym___restrict__] = ACTIONS(1468), + [anon_sym__Atomic] = ACTIONS(1468), + [anon_sym__Noreturn] = ACTIONS(1468), + [anon_sym_noreturn] = ACTIONS(1468), + [sym_primitive_type] = ACTIONS(1468), + [anon_sym_enum] = ACTIONS(1468), + [anon_sym_struct] = ACTIONS(1468), + [anon_sym_union] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_switch] = ACTIONS(1468), + [anon_sym_case] = ACTIONS(1468), + [anon_sym_default] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1468), + [anon_sym_do] = ACTIONS(1468), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(1468), + [anon_sym_break] = ACTIONS(1468), + [anon_sym_continue] = ACTIONS(1468), + [anon_sym_goto] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1468), + [anon_sym___alignof__] = ACTIONS(1468), + [anon_sym___alignof] = ACTIONS(1468), + [anon_sym__alignof] = ACTIONS(1468), + [anon_sym_alignof] = ACTIONS(1468), + [anon_sym__Alignof] = ACTIONS(1468), + [anon_sym_offsetof] = ACTIONS(1468), + [anon_sym___builtin_va_arg] = ACTIONS(1468), + [anon_sym__Generic] = ACTIONS(1468), + [anon_sym_asm] = ACTIONS(1468), + [anon_sym___asm__] = ACTIONS(1468), + [sym_number_literal] = ACTIONS(1470), + [anon_sym_L_SQUOTE] = ACTIONS(1470), + [anon_sym_u_SQUOTE] = ACTIONS(1470), + [anon_sym_U_SQUOTE] = ACTIONS(1470), + [anon_sym_u8_SQUOTE] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1470), + [anon_sym_L_DQUOTE] = ACTIONS(1470), + [anon_sym_u_DQUOTE] = ACTIONS(1470), + [anon_sym_U_DQUOTE] = ACTIONS(1470), + [anon_sym_u8_DQUOTE] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [sym_true] = ACTIONS(1468), + [sym_false] = ACTIONS(1468), + [anon_sym_NULL] = ACTIONS(1468), + [anon_sym_nullptr] = ACTIONS(1468), [sym_comment] = ACTIONS(3), }, [239] = { - [ts_builtin_sym_end] = ACTIONS(1270), - [sym_identifier] = ACTIONS(1268), - [aux_sym_preproc_include_token1] = ACTIONS(1268), - [aux_sym_preproc_def_token1] = ACTIONS(1268), - [aux_sym_preproc_if_token1] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1268), - [sym_preproc_directive] = ACTIONS(1268), - [anon_sym_LPAREN2] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_SEMI] = ACTIONS(1270), - [anon_sym_typedef] = ACTIONS(1268), - [anon_sym_extern] = ACTIONS(1268), - [anon_sym___attribute__] = ACTIONS(1268), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1270), - [anon_sym___declspec] = ACTIONS(1268), - [anon_sym___cdecl] = ACTIONS(1268), - [anon_sym___clrcall] = ACTIONS(1268), - [anon_sym___stdcall] = ACTIONS(1268), - [anon_sym___fastcall] = ACTIONS(1268), - [anon_sym___thiscall] = ACTIONS(1268), - [anon_sym___vectorcall] = ACTIONS(1268), - [anon_sym_LBRACE] = ACTIONS(1270), - [anon_sym_signed] = ACTIONS(1268), - [anon_sym_unsigned] = ACTIONS(1268), - [anon_sym_long] = ACTIONS(1268), - [anon_sym_short] = ACTIONS(1268), - [anon_sym_static] = ACTIONS(1268), - [anon_sym_auto] = ACTIONS(1268), - [anon_sym_register] = ACTIONS(1268), - [anon_sym_inline] = ACTIONS(1268), - [anon_sym_thread_local] = ACTIONS(1268), - [anon_sym___thread] = ACTIONS(1268), - [anon_sym_const] = ACTIONS(1268), - [anon_sym_constexpr] = ACTIONS(1268), - [anon_sym_volatile] = ACTIONS(1268), - [anon_sym_restrict] = ACTIONS(1268), - [anon_sym___restrict__] = ACTIONS(1268), - [anon_sym__Atomic] = ACTIONS(1268), - [anon_sym__Noreturn] = ACTIONS(1268), - [anon_sym_noreturn] = ACTIONS(1268), - [sym_primitive_type] = ACTIONS(1268), - [anon_sym_enum] = ACTIONS(1268), - [anon_sym_struct] = ACTIONS(1268), - [anon_sym_union] = ACTIONS(1268), - [anon_sym_if] = ACTIONS(1268), - [anon_sym_else] = ACTIONS(1268), - [anon_sym_switch] = ACTIONS(1268), - [anon_sym_case] = ACTIONS(1268), - [anon_sym_default] = ACTIONS(1268), - [anon_sym_while] = ACTIONS(1268), - [anon_sym_do] = ACTIONS(1268), - [anon_sym_for] = ACTIONS(1268), - [anon_sym_return] = ACTIONS(1268), - [anon_sym_break] = ACTIONS(1268), - [anon_sym_continue] = ACTIONS(1268), - [anon_sym_goto] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1270), - [anon_sym_PLUS_PLUS] = ACTIONS(1270), - [anon_sym_sizeof] = ACTIONS(1268), - [anon_sym_offsetof] = ACTIONS(1268), - [anon_sym__Generic] = ACTIONS(1268), - [anon_sym_asm] = ACTIONS(1268), - [anon_sym___asm__] = ACTIONS(1268), - [sym_number_literal] = ACTIONS(1270), - [anon_sym_L_SQUOTE] = ACTIONS(1270), - [anon_sym_u_SQUOTE] = ACTIONS(1270), - [anon_sym_U_SQUOTE] = ACTIONS(1270), - [anon_sym_u8_SQUOTE] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1270), - [anon_sym_L_DQUOTE] = ACTIONS(1270), - [anon_sym_u_DQUOTE] = ACTIONS(1270), - [anon_sym_U_DQUOTE] = ACTIONS(1270), - [anon_sym_u8_DQUOTE] = ACTIONS(1270), - [anon_sym_DQUOTE] = ACTIONS(1270), - [sym_true] = ACTIONS(1268), - [sym_false] = ACTIONS(1268), - [anon_sym_NULL] = ACTIONS(1268), - [anon_sym_nullptr] = ACTIONS(1268), + [sym_identifier] = ACTIONS(1476), + [aux_sym_preproc_include_token1] = ACTIONS(1476), + [aux_sym_preproc_def_token1] = ACTIONS(1476), + [aux_sym_preproc_if_token1] = ACTIONS(1476), + [aux_sym_preproc_if_token2] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), + [aux_sym_preproc_else_token1] = ACTIONS(1476), + [aux_sym_preproc_elif_token1] = ACTIONS(1476), + [sym_preproc_directive] = ACTIONS(1476), + [anon_sym_LPAREN2] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym___extension__] = ACTIONS(1476), + [anon_sym_typedef] = ACTIONS(1476), + [anon_sym_extern] = ACTIONS(1476), + [anon_sym___attribute__] = ACTIONS(1476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), + [anon_sym___declspec] = ACTIONS(1476), + [anon_sym___cdecl] = ACTIONS(1476), + [anon_sym___clrcall] = ACTIONS(1476), + [anon_sym___stdcall] = ACTIONS(1476), + [anon_sym___fastcall] = ACTIONS(1476), + [anon_sym___thiscall] = ACTIONS(1476), + [anon_sym___vectorcall] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_signed] = ACTIONS(1476), + [anon_sym_unsigned] = ACTIONS(1476), + [anon_sym_long] = ACTIONS(1476), + [anon_sym_short] = ACTIONS(1476), + [anon_sym_static] = ACTIONS(1476), + [anon_sym_auto] = ACTIONS(1476), + [anon_sym_register] = ACTIONS(1476), + [anon_sym_inline] = ACTIONS(1476), + [anon_sym___inline] = ACTIONS(1476), + [anon_sym___inline__] = ACTIONS(1476), + [anon_sym___forceinline] = ACTIONS(1476), + [anon_sym_thread_local] = ACTIONS(1476), + [anon_sym___thread] = ACTIONS(1476), + [anon_sym_const] = ACTIONS(1476), + [anon_sym_constexpr] = ACTIONS(1476), + [anon_sym_volatile] = ACTIONS(1476), + [anon_sym_restrict] = ACTIONS(1476), + [anon_sym___restrict__] = ACTIONS(1476), + [anon_sym__Atomic] = ACTIONS(1476), + [anon_sym__Noreturn] = ACTIONS(1476), + [anon_sym_noreturn] = ACTIONS(1476), + [sym_primitive_type] = ACTIONS(1476), + [anon_sym_enum] = ACTIONS(1476), + [anon_sym_struct] = ACTIONS(1476), + [anon_sym_union] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_switch] = ACTIONS(1476), + [anon_sym_case] = ACTIONS(1476), + [anon_sym_default] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_do] = ACTIONS(1476), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_goto] = ACTIONS(1476), + [anon_sym_DASH_DASH] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_sizeof] = ACTIONS(1476), + [anon_sym___alignof__] = ACTIONS(1476), + [anon_sym___alignof] = ACTIONS(1476), + [anon_sym__alignof] = ACTIONS(1476), + [anon_sym_alignof] = ACTIONS(1476), + [anon_sym__Alignof] = ACTIONS(1476), + [anon_sym_offsetof] = ACTIONS(1476), + [anon_sym___builtin_va_arg] = ACTIONS(1476), + [anon_sym__Generic] = ACTIONS(1476), + [anon_sym_asm] = ACTIONS(1476), + [anon_sym___asm__] = ACTIONS(1476), + [sym_number_literal] = ACTIONS(1478), + [anon_sym_L_SQUOTE] = ACTIONS(1478), + [anon_sym_u_SQUOTE] = ACTIONS(1478), + [anon_sym_U_SQUOTE] = ACTIONS(1478), + [anon_sym_u8_SQUOTE] = ACTIONS(1478), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_L_DQUOTE] = ACTIONS(1478), + [anon_sym_u_DQUOTE] = ACTIONS(1478), + [anon_sym_U_DQUOTE] = ACTIONS(1478), + [anon_sym_u8_DQUOTE] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(1478), + [sym_true] = ACTIONS(1476), + [sym_false] = ACTIONS(1476), + [anon_sym_NULL] = ACTIONS(1476), + [anon_sym_nullptr] = ACTIONS(1476), [sym_comment] = ACTIONS(3), }, [240] = { - [sym_identifier] = ACTIONS(1336), - [aux_sym_preproc_include_token1] = ACTIONS(1336), - [aux_sym_preproc_def_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(1336), - [anon_sym_LPAREN2] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym___attribute__] = ACTIONS(1336), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), - [anon_sym___declspec] = ACTIONS(1336), - [anon_sym___cdecl] = ACTIONS(1336), - [anon_sym___clrcall] = ACTIONS(1336), - [anon_sym___stdcall] = ACTIONS(1336), - [anon_sym___fastcall] = ACTIONS(1336), - [anon_sym___thiscall] = ACTIONS(1336), - [anon_sym___vectorcall] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_RBRACE] = ACTIONS(1338), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_auto] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_inline] = ACTIONS(1336), - [anon_sym_thread_local] = ACTIONS(1336), - [anon_sym___thread] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_constexpr] = ACTIONS(1336), - [anon_sym_volatile] = ACTIONS(1336), - [anon_sym_restrict] = ACTIONS(1336), - [anon_sym___restrict__] = ACTIONS(1336), - [anon_sym__Atomic] = ACTIONS(1336), - [anon_sym__Noreturn] = ACTIONS(1336), - [anon_sym_noreturn] = ACTIONS(1336), - [sym_primitive_type] = ACTIONS(1336), - [anon_sym_enum] = ACTIONS(1336), - [anon_sym_struct] = ACTIONS(1336), - [anon_sym_union] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_else] = ACTIONS(1336), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1336), - [anon_sym_default] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_do] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_goto] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_sizeof] = ACTIONS(1336), - [anon_sym_offsetof] = ACTIONS(1336), - [anon_sym__Generic] = ACTIONS(1336), - [anon_sym_asm] = ACTIONS(1336), - [anon_sym___asm__] = ACTIONS(1336), - [sym_number_literal] = ACTIONS(1338), - [anon_sym_L_SQUOTE] = ACTIONS(1338), - [anon_sym_u_SQUOTE] = ACTIONS(1338), - [anon_sym_U_SQUOTE] = ACTIONS(1338), - [anon_sym_u8_SQUOTE] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1338), - [anon_sym_L_DQUOTE] = ACTIONS(1338), - [anon_sym_u_DQUOTE] = ACTIONS(1338), - [anon_sym_U_DQUOTE] = ACTIONS(1338), - [anon_sym_u8_DQUOTE] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym_true] = ACTIONS(1336), - [sym_false] = ACTIONS(1336), - [anon_sym_NULL] = ACTIONS(1336), - [anon_sym_nullptr] = ACTIONS(1336), + [sym_identifier] = ACTIONS(1480), + [aux_sym_preproc_include_token1] = ACTIONS(1480), + [aux_sym_preproc_def_token1] = ACTIONS(1480), + [aux_sym_preproc_if_token1] = ACTIONS(1480), + [aux_sym_preproc_if_token2] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), + [aux_sym_preproc_else_token1] = ACTIONS(1480), + [aux_sym_preproc_elif_token1] = ACTIONS(1480), + [sym_preproc_directive] = ACTIONS(1480), + [anon_sym_LPAREN2] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym___extension__] = ACTIONS(1480), + [anon_sym_typedef] = ACTIONS(1480), + [anon_sym_extern] = ACTIONS(1480), + [anon_sym___attribute__] = ACTIONS(1480), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), + [anon_sym___declspec] = ACTIONS(1480), + [anon_sym___cdecl] = ACTIONS(1480), + [anon_sym___clrcall] = ACTIONS(1480), + [anon_sym___stdcall] = ACTIONS(1480), + [anon_sym___fastcall] = ACTIONS(1480), + [anon_sym___thiscall] = ACTIONS(1480), + [anon_sym___vectorcall] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_signed] = ACTIONS(1480), + [anon_sym_unsigned] = ACTIONS(1480), + [anon_sym_long] = ACTIONS(1480), + [anon_sym_short] = ACTIONS(1480), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_auto] = ACTIONS(1480), + [anon_sym_register] = ACTIONS(1480), + [anon_sym_inline] = ACTIONS(1480), + [anon_sym___inline] = ACTIONS(1480), + [anon_sym___inline__] = ACTIONS(1480), + [anon_sym___forceinline] = ACTIONS(1480), + [anon_sym_thread_local] = ACTIONS(1480), + [anon_sym___thread] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_constexpr] = ACTIONS(1480), + [anon_sym_volatile] = ACTIONS(1480), + [anon_sym_restrict] = ACTIONS(1480), + [anon_sym___restrict__] = ACTIONS(1480), + [anon_sym__Atomic] = ACTIONS(1480), + [anon_sym__Noreturn] = ACTIONS(1480), + [anon_sym_noreturn] = ACTIONS(1480), + [sym_primitive_type] = ACTIONS(1480), + [anon_sym_enum] = ACTIONS(1480), + [anon_sym_struct] = ACTIONS(1480), + [anon_sym_union] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_switch] = ACTIONS(1480), + [anon_sym_case] = ACTIONS(1480), + [anon_sym_default] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_do] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1480), + [anon_sym_goto] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1482), + [anon_sym_PLUS_PLUS] = ACTIONS(1482), + [anon_sym_sizeof] = ACTIONS(1480), + [anon_sym___alignof__] = ACTIONS(1480), + [anon_sym___alignof] = ACTIONS(1480), + [anon_sym__alignof] = ACTIONS(1480), + [anon_sym_alignof] = ACTIONS(1480), + [anon_sym__Alignof] = ACTIONS(1480), + [anon_sym_offsetof] = ACTIONS(1480), + [anon_sym___builtin_va_arg] = ACTIONS(1480), + [anon_sym__Generic] = ACTIONS(1480), + [anon_sym_asm] = ACTIONS(1480), + [anon_sym___asm__] = ACTIONS(1480), + [sym_number_literal] = ACTIONS(1482), + [anon_sym_L_SQUOTE] = ACTIONS(1482), + [anon_sym_u_SQUOTE] = ACTIONS(1482), + [anon_sym_U_SQUOTE] = ACTIONS(1482), + [anon_sym_u8_SQUOTE] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_L_DQUOTE] = ACTIONS(1482), + [anon_sym_u_DQUOTE] = ACTIONS(1482), + [anon_sym_U_DQUOTE] = ACTIONS(1482), + [anon_sym_u8_DQUOTE] = ACTIONS(1482), + [anon_sym_DQUOTE] = ACTIONS(1482), + [sym_true] = ACTIONS(1480), + [sym_false] = ACTIONS(1480), + [anon_sym_NULL] = ACTIONS(1480), + [anon_sym_nullptr] = ACTIONS(1480), [sym_comment] = ACTIONS(3), }, [241] = { - [sym_identifier] = ACTIONS(1232), - [aux_sym_preproc_include_token1] = ACTIONS(1232), - [aux_sym_preproc_def_token1] = ACTIONS(1232), - [aux_sym_preproc_if_token1] = ACTIONS(1232), - [aux_sym_preproc_if_token2] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1232), - [sym_preproc_directive] = ACTIONS(1232), - [anon_sym_LPAREN2] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1234), - [anon_sym_TILDE] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_PLUS] = ACTIONS(1232), - [anon_sym_STAR] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1232), - [anon_sym_extern] = ACTIONS(1232), - [anon_sym___attribute__] = ACTIONS(1232), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1234), - [anon_sym___declspec] = ACTIONS(1232), - [anon_sym___cdecl] = ACTIONS(1232), - [anon_sym___clrcall] = ACTIONS(1232), - [anon_sym___stdcall] = ACTIONS(1232), - [anon_sym___fastcall] = ACTIONS(1232), - [anon_sym___thiscall] = ACTIONS(1232), - [anon_sym___vectorcall] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_signed] = ACTIONS(1232), - [anon_sym_unsigned] = ACTIONS(1232), - [anon_sym_long] = ACTIONS(1232), - [anon_sym_short] = ACTIONS(1232), - [anon_sym_static] = ACTIONS(1232), - [anon_sym_auto] = ACTIONS(1232), - [anon_sym_register] = ACTIONS(1232), - [anon_sym_inline] = ACTIONS(1232), - [anon_sym_thread_local] = ACTIONS(1232), - [anon_sym___thread] = ACTIONS(1232), - [anon_sym_const] = ACTIONS(1232), - [anon_sym_constexpr] = ACTIONS(1232), - [anon_sym_volatile] = ACTIONS(1232), - [anon_sym_restrict] = ACTIONS(1232), - [anon_sym___restrict__] = ACTIONS(1232), - [anon_sym__Atomic] = ACTIONS(1232), - [anon_sym__Noreturn] = ACTIONS(1232), - [anon_sym_noreturn] = ACTIONS(1232), - [sym_primitive_type] = ACTIONS(1232), - [anon_sym_enum] = ACTIONS(1232), - [anon_sym_struct] = ACTIONS(1232), - [anon_sym_union] = ACTIONS(1232), - [anon_sym_if] = ACTIONS(1232), - [anon_sym_else] = ACTIONS(1232), - [anon_sym_switch] = ACTIONS(1232), - [anon_sym_case] = ACTIONS(1232), - [anon_sym_default] = ACTIONS(1232), - [anon_sym_while] = ACTIONS(1232), - [anon_sym_do] = ACTIONS(1232), - [anon_sym_for] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1232), - [anon_sym_break] = ACTIONS(1232), - [anon_sym_continue] = ACTIONS(1232), - [anon_sym_goto] = ACTIONS(1232), - [anon_sym_DASH_DASH] = ACTIONS(1234), - [anon_sym_PLUS_PLUS] = ACTIONS(1234), - [anon_sym_sizeof] = ACTIONS(1232), - [anon_sym_offsetof] = ACTIONS(1232), - [anon_sym__Generic] = ACTIONS(1232), - [anon_sym_asm] = ACTIONS(1232), - [anon_sym___asm__] = ACTIONS(1232), - [sym_number_literal] = ACTIONS(1234), - [anon_sym_L_SQUOTE] = ACTIONS(1234), - [anon_sym_u_SQUOTE] = ACTIONS(1234), - [anon_sym_U_SQUOTE] = ACTIONS(1234), - [anon_sym_u8_SQUOTE] = ACTIONS(1234), - [anon_sym_SQUOTE] = ACTIONS(1234), - [anon_sym_L_DQUOTE] = ACTIONS(1234), - [anon_sym_u_DQUOTE] = ACTIONS(1234), - [anon_sym_U_DQUOTE] = ACTIONS(1234), - [anon_sym_u8_DQUOTE] = ACTIONS(1234), - [anon_sym_DQUOTE] = ACTIONS(1234), - [sym_true] = ACTIONS(1232), - [sym_false] = ACTIONS(1232), - [anon_sym_NULL] = ACTIONS(1232), - [anon_sym_nullptr] = ACTIONS(1232), + [sym_identifier] = ACTIONS(1506), + [aux_sym_preproc_include_token1] = ACTIONS(1506), + [aux_sym_preproc_def_token1] = ACTIONS(1506), + [aux_sym_preproc_if_token1] = ACTIONS(1506), + [aux_sym_preproc_if_token2] = ACTIONS(1506), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1506), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1506), + [aux_sym_preproc_else_token1] = ACTIONS(1506), + [aux_sym_preproc_elif_token1] = ACTIONS(1506), + [sym_preproc_directive] = ACTIONS(1506), + [anon_sym_LPAREN2] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_STAR] = ACTIONS(1508), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym___extension__] = ACTIONS(1506), + [anon_sym_typedef] = ACTIONS(1506), + [anon_sym_extern] = ACTIONS(1506), + [anon_sym___attribute__] = ACTIONS(1506), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1508), + [anon_sym___declspec] = ACTIONS(1506), + [anon_sym___cdecl] = ACTIONS(1506), + [anon_sym___clrcall] = ACTIONS(1506), + [anon_sym___stdcall] = ACTIONS(1506), + [anon_sym___fastcall] = ACTIONS(1506), + [anon_sym___thiscall] = ACTIONS(1506), + [anon_sym___vectorcall] = ACTIONS(1506), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_signed] = ACTIONS(1506), + [anon_sym_unsigned] = ACTIONS(1506), + [anon_sym_long] = ACTIONS(1506), + [anon_sym_short] = ACTIONS(1506), + [anon_sym_static] = ACTIONS(1506), + [anon_sym_auto] = ACTIONS(1506), + [anon_sym_register] = ACTIONS(1506), + [anon_sym_inline] = ACTIONS(1506), + [anon_sym___inline] = ACTIONS(1506), + [anon_sym___inline__] = ACTIONS(1506), + [anon_sym___forceinline] = ACTIONS(1506), + [anon_sym_thread_local] = ACTIONS(1506), + [anon_sym___thread] = ACTIONS(1506), + [anon_sym_const] = ACTIONS(1506), + [anon_sym_constexpr] = ACTIONS(1506), + [anon_sym_volatile] = ACTIONS(1506), + [anon_sym_restrict] = ACTIONS(1506), + [anon_sym___restrict__] = ACTIONS(1506), + [anon_sym__Atomic] = ACTIONS(1506), + [anon_sym__Noreturn] = ACTIONS(1506), + [anon_sym_noreturn] = ACTIONS(1506), + [sym_primitive_type] = ACTIONS(1506), + [anon_sym_enum] = ACTIONS(1506), + [anon_sym_struct] = ACTIONS(1506), + [anon_sym_union] = ACTIONS(1506), + [anon_sym_if] = ACTIONS(1506), + [anon_sym_switch] = ACTIONS(1506), + [anon_sym_case] = ACTIONS(1506), + [anon_sym_default] = ACTIONS(1506), + [anon_sym_while] = ACTIONS(1506), + [anon_sym_do] = ACTIONS(1506), + [anon_sym_for] = ACTIONS(1506), + [anon_sym_return] = ACTIONS(1506), + [anon_sym_break] = ACTIONS(1506), + [anon_sym_continue] = ACTIONS(1506), + [anon_sym_goto] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_sizeof] = ACTIONS(1506), + [anon_sym___alignof__] = ACTIONS(1506), + [anon_sym___alignof] = ACTIONS(1506), + [anon_sym__alignof] = ACTIONS(1506), + [anon_sym_alignof] = ACTIONS(1506), + [anon_sym__Alignof] = ACTIONS(1506), + [anon_sym_offsetof] = ACTIONS(1506), + [anon_sym___builtin_va_arg] = ACTIONS(1506), + [anon_sym__Generic] = ACTIONS(1506), + [anon_sym_asm] = ACTIONS(1506), + [anon_sym___asm__] = ACTIONS(1506), + [sym_number_literal] = ACTIONS(1508), + [anon_sym_L_SQUOTE] = ACTIONS(1508), + [anon_sym_u_SQUOTE] = ACTIONS(1508), + [anon_sym_U_SQUOTE] = ACTIONS(1508), + [anon_sym_u8_SQUOTE] = ACTIONS(1508), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_L_DQUOTE] = ACTIONS(1508), + [anon_sym_u_DQUOTE] = ACTIONS(1508), + [anon_sym_U_DQUOTE] = ACTIONS(1508), + [anon_sym_u8_DQUOTE] = ACTIONS(1508), + [anon_sym_DQUOTE] = ACTIONS(1508), + [sym_true] = ACTIONS(1506), + [sym_false] = ACTIONS(1506), + [anon_sym_NULL] = ACTIONS(1506), + [anon_sym_nullptr] = ACTIONS(1506), [sym_comment] = ACTIONS(3), }, [242] = { - [sym_identifier] = ACTIONS(1228), - [aux_sym_preproc_include_token1] = ACTIONS(1228), - [aux_sym_preproc_def_token1] = ACTIONS(1228), - [aux_sym_preproc_if_token1] = ACTIONS(1228), - [aux_sym_preproc_if_token2] = ACTIONS(1228), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1228), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1228), - [sym_preproc_directive] = ACTIONS(1228), - [anon_sym_LPAREN2] = ACTIONS(1230), - [anon_sym_BANG] = ACTIONS(1230), - [anon_sym_TILDE] = ACTIONS(1230), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1230), - [anon_sym_AMP] = ACTIONS(1230), - [anon_sym_SEMI] = ACTIONS(1230), - [anon_sym_typedef] = ACTIONS(1228), - [anon_sym_extern] = ACTIONS(1228), - [anon_sym___attribute__] = ACTIONS(1228), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1230), - [anon_sym___declspec] = ACTIONS(1228), - [anon_sym___cdecl] = ACTIONS(1228), - [anon_sym___clrcall] = ACTIONS(1228), - [anon_sym___stdcall] = ACTIONS(1228), - [anon_sym___fastcall] = ACTIONS(1228), - [anon_sym___thiscall] = ACTIONS(1228), - [anon_sym___vectorcall] = ACTIONS(1228), - [anon_sym_LBRACE] = ACTIONS(1230), - [anon_sym_signed] = ACTIONS(1228), - [anon_sym_unsigned] = ACTIONS(1228), - [anon_sym_long] = ACTIONS(1228), - [anon_sym_short] = ACTIONS(1228), - [anon_sym_static] = ACTIONS(1228), - [anon_sym_auto] = ACTIONS(1228), - [anon_sym_register] = ACTIONS(1228), - [anon_sym_inline] = ACTIONS(1228), - [anon_sym_thread_local] = ACTIONS(1228), - [anon_sym___thread] = ACTIONS(1228), - [anon_sym_const] = ACTIONS(1228), - [anon_sym_constexpr] = ACTIONS(1228), - [anon_sym_volatile] = ACTIONS(1228), - [anon_sym_restrict] = ACTIONS(1228), - [anon_sym___restrict__] = ACTIONS(1228), - [anon_sym__Atomic] = ACTIONS(1228), - [anon_sym__Noreturn] = ACTIONS(1228), - [anon_sym_noreturn] = ACTIONS(1228), - [sym_primitive_type] = ACTIONS(1228), - [anon_sym_enum] = ACTIONS(1228), - [anon_sym_struct] = ACTIONS(1228), - [anon_sym_union] = ACTIONS(1228), - [anon_sym_if] = ACTIONS(1228), - [anon_sym_else] = ACTIONS(1228), - [anon_sym_switch] = ACTIONS(1228), - [anon_sym_case] = ACTIONS(1228), - [anon_sym_default] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(1228), - [anon_sym_for] = ACTIONS(1228), - [anon_sym_return] = ACTIONS(1228), - [anon_sym_break] = ACTIONS(1228), - [anon_sym_continue] = ACTIONS(1228), - [anon_sym_goto] = ACTIONS(1228), - [anon_sym_DASH_DASH] = ACTIONS(1230), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_sizeof] = ACTIONS(1228), - [anon_sym_offsetof] = ACTIONS(1228), - [anon_sym__Generic] = ACTIONS(1228), - [anon_sym_asm] = ACTIONS(1228), - [anon_sym___asm__] = ACTIONS(1228), - [sym_number_literal] = ACTIONS(1230), - [anon_sym_L_SQUOTE] = ACTIONS(1230), - [anon_sym_u_SQUOTE] = ACTIONS(1230), - [anon_sym_U_SQUOTE] = ACTIONS(1230), - [anon_sym_u8_SQUOTE] = ACTIONS(1230), - [anon_sym_SQUOTE] = ACTIONS(1230), - [anon_sym_L_DQUOTE] = ACTIONS(1230), - [anon_sym_u_DQUOTE] = ACTIONS(1230), - [anon_sym_U_DQUOTE] = ACTIONS(1230), - [anon_sym_u8_DQUOTE] = ACTIONS(1230), - [anon_sym_DQUOTE] = ACTIONS(1230), - [sym_true] = ACTIONS(1228), - [sym_false] = ACTIONS(1228), - [anon_sym_NULL] = ACTIONS(1228), - [anon_sym_nullptr] = ACTIONS(1228), + [sym_identifier] = ACTIONS(1510), + [aux_sym_preproc_include_token1] = ACTIONS(1510), + [aux_sym_preproc_def_token1] = ACTIONS(1510), + [aux_sym_preproc_if_token1] = ACTIONS(1510), + [aux_sym_preproc_if_token2] = ACTIONS(1510), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1510), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1510), + [aux_sym_preproc_else_token1] = ACTIONS(1510), + [aux_sym_preproc_elif_token1] = ACTIONS(1510), + [sym_preproc_directive] = ACTIONS(1510), + [anon_sym_LPAREN2] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1512), + [anon_sym_TILDE] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1510), + [anon_sym_PLUS] = ACTIONS(1510), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_AMP] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym___extension__] = ACTIONS(1510), + [anon_sym_typedef] = ACTIONS(1510), + [anon_sym_extern] = ACTIONS(1510), + [anon_sym___attribute__] = ACTIONS(1510), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1512), + [anon_sym___declspec] = ACTIONS(1510), + [anon_sym___cdecl] = ACTIONS(1510), + [anon_sym___clrcall] = ACTIONS(1510), + [anon_sym___stdcall] = ACTIONS(1510), + [anon_sym___fastcall] = ACTIONS(1510), + [anon_sym___thiscall] = ACTIONS(1510), + [anon_sym___vectorcall] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_signed] = ACTIONS(1510), + [anon_sym_unsigned] = ACTIONS(1510), + [anon_sym_long] = ACTIONS(1510), + [anon_sym_short] = ACTIONS(1510), + [anon_sym_static] = ACTIONS(1510), + [anon_sym_auto] = ACTIONS(1510), + [anon_sym_register] = ACTIONS(1510), + [anon_sym_inline] = ACTIONS(1510), + [anon_sym___inline] = ACTIONS(1510), + [anon_sym___inline__] = ACTIONS(1510), + [anon_sym___forceinline] = ACTIONS(1510), + [anon_sym_thread_local] = ACTIONS(1510), + [anon_sym___thread] = ACTIONS(1510), + [anon_sym_const] = ACTIONS(1510), + [anon_sym_constexpr] = ACTIONS(1510), + [anon_sym_volatile] = ACTIONS(1510), + [anon_sym_restrict] = ACTIONS(1510), + [anon_sym___restrict__] = ACTIONS(1510), + [anon_sym__Atomic] = ACTIONS(1510), + [anon_sym__Noreturn] = ACTIONS(1510), + [anon_sym_noreturn] = ACTIONS(1510), + [sym_primitive_type] = ACTIONS(1510), + [anon_sym_enum] = ACTIONS(1510), + [anon_sym_struct] = ACTIONS(1510), + [anon_sym_union] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_switch] = ACTIONS(1510), + [anon_sym_case] = ACTIONS(1510), + [anon_sym_default] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_do] = ACTIONS(1510), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_goto] = ACTIONS(1510), + [anon_sym_DASH_DASH] = ACTIONS(1512), + [anon_sym_PLUS_PLUS] = ACTIONS(1512), + [anon_sym_sizeof] = ACTIONS(1510), + [anon_sym___alignof__] = ACTIONS(1510), + [anon_sym___alignof] = ACTIONS(1510), + [anon_sym__alignof] = ACTIONS(1510), + [anon_sym_alignof] = ACTIONS(1510), + [anon_sym__Alignof] = ACTIONS(1510), + [anon_sym_offsetof] = ACTIONS(1510), + [anon_sym___builtin_va_arg] = ACTIONS(1510), + [anon_sym__Generic] = ACTIONS(1510), + [anon_sym_asm] = ACTIONS(1510), + [anon_sym___asm__] = ACTIONS(1510), + [sym_number_literal] = ACTIONS(1512), + [anon_sym_L_SQUOTE] = ACTIONS(1512), + [anon_sym_u_SQUOTE] = ACTIONS(1512), + [anon_sym_U_SQUOTE] = ACTIONS(1512), + [anon_sym_u8_SQUOTE] = ACTIONS(1512), + [anon_sym_SQUOTE] = ACTIONS(1512), + [anon_sym_L_DQUOTE] = ACTIONS(1512), + [anon_sym_u_DQUOTE] = ACTIONS(1512), + [anon_sym_U_DQUOTE] = ACTIONS(1512), + [anon_sym_u8_DQUOTE] = ACTIONS(1512), + [anon_sym_DQUOTE] = ACTIONS(1512), + [sym_true] = ACTIONS(1510), + [sym_false] = ACTIONS(1510), + [anon_sym_NULL] = ACTIONS(1510), + [anon_sym_nullptr] = ACTIONS(1510), [sym_comment] = ACTIONS(3), }, [243] = { - [sym_identifier] = ACTIONS(1224), - [aux_sym_preproc_include_token1] = ACTIONS(1224), - [aux_sym_preproc_def_token1] = ACTIONS(1224), - [aux_sym_preproc_if_token1] = ACTIONS(1224), - [aux_sym_preproc_if_token2] = ACTIONS(1224), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1224), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1224), - [sym_preproc_directive] = ACTIONS(1224), - [anon_sym_LPAREN2] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(1226), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_DASH] = ACTIONS(1224), - [anon_sym_PLUS] = ACTIONS(1224), - [anon_sym_STAR] = ACTIONS(1226), - [anon_sym_AMP] = ACTIONS(1226), - [anon_sym_SEMI] = ACTIONS(1226), - [anon_sym_typedef] = ACTIONS(1224), - [anon_sym_extern] = ACTIONS(1224), - [anon_sym___attribute__] = ACTIONS(1224), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1226), - [anon_sym___declspec] = ACTIONS(1224), - [anon_sym___cdecl] = ACTIONS(1224), - [anon_sym___clrcall] = ACTIONS(1224), - [anon_sym___stdcall] = ACTIONS(1224), - [anon_sym___fastcall] = ACTIONS(1224), - [anon_sym___thiscall] = ACTIONS(1224), - [anon_sym___vectorcall] = ACTIONS(1224), - [anon_sym_LBRACE] = ACTIONS(1226), - [anon_sym_signed] = ACTIONS(1224), - [anon_sym_unsigned] = ACTIONS(1224), - [anon_sym_long] = ACTIONS(1224), - [anon_sym_short] = ACTIONS(1224), - [anon_sym_static] = ACTIONS(1224), - [anon_sym_auto] = ACTIONS(1224), - [anon_sym_register] = ACTIONS(1224), - [anon_sym_inline] = ACTIONS(1224), - [anon_sym_thread_local] = ACTIONS(1224), - [anon_sym___thread] = ACTIONS(1224), - [anon_sym_const] = ACTIONS(1224), - [anon_sym_constexpr] = ACTIONS(1224), - [anon_sym_volatile] = ACTIONS(1224), - [anon_sym_restrict] = ACTIONS(1224), - [anon_sym___restrict__] = ACTIONS(1224), - [anon_sym__Atomic] = ACTIONS(1224), - [anon_sym__Noreturn] = ACTIONS(1224), - [anon_sym_noreturn] = ACTIONS(1224), - [sym_primitive_type] = ACTIONS(1224), - [anon_sym_enum] = ACTIONS(1224), - [anon_sym_struct] = ACTIONS(1224), - [anon_sym_union] = ACTIONS(1224), - [anon_sym_if] = ACTIONS(1224), - [anon_sym_else] = ACTIONS(1224), - [anon_sym_switch] = ACTIONS(1224), - [anon_sym_case] = ACTIONS(1224), - [anon_sym_default] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1224), - [anon_sym_do] = ACTIONS(1224), - [anon_sym_for] = ACTIONS(1224), - [anon_sym_return] = ACTIONS(1224), - [anon_sym_break] = ACTIONS(1224), - [anon_sym_continue] = ACTIONS(1224), - [anon_sym_goto] = ACTIONS(1224), - [anon_sym_DASH_DASH] = ACTIONS(1226), - [anon_sym_PLUS_PLUS] = ACTIONS(1226), - [anon_sym_sizeof] = ACTIONS(1224), - [anon_sym_offsetof] = ACTIONS(1224), - [anon_sym__Generic] = ACTIONS(1224), - [anon_sym_asm] = ACTIONS(1224), - [anon_sym___asm__] = ACTIONS(1224), - [sym_number_literal] = ACTIONS(1226), - [anon_sym_L_SQUOTE] = ACTIONS(1226), - [anon_sym_u_SQUOTE] = ACTIONS(1226), - [anon_sym_U_SQUOTE] = ACTIONS(1226), - [anon_sym_u8_SQUOTE] = ACTIONS(1226), - [anon_sym_SQUOTE] = ACTIONS(1226), - [anon_sym_L_DQUOTE] = ACTIONS(1226), - [anon_sym_u_DQUOTE] = ACTIONS(1226), - [anon_sym_U_DQUOTE] = ACTIONS(1226), - [anon_sym_u8_DQUOTE] = ACTIONS(1226), - [anon_sym_DQUOTE] = ACTIONS(1226), - [sym_true] = ACTIONS(1224), - [sym_false] = ACTIONS(1224), - [anon_sym_NULL] = ACTIONS(1224), - [anon_sym_nullptr] = ACTIONS(1224), + [sym_identifier] = ACTIONS(1514), + [aux_sym_preproc_include_token1] = ACTIONS(1514), + [aux_sym_preproc_def_token1] = ACTIONS(1514), + [aux_sym_preproc_if_token1] = ACTIONS(1514), + [aux_sym_preproc_if_token2] = ACTIONS(1514), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1514), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1514), + [aux_sym_preproc_else_token1] = ACTIONS(1514), + [aux_sym_preproc_elif_token1] = ACTIONS(1514), + [sym_preproc_directive] = ACTIONS(1514), + [anon_sym_LPAREN2] = ACTIONS(1516), + [anon_sym_BANG] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1516), + [anon_sym_AMP] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym___extension__] = ACTIONS(1514), + [anon_sym_typedef] = ACTIONS(1514), + [anon_sym_extern] = ACTIONS(1514), + [anon_sym___attribute__] = ACTIONS(1514), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1516), + [anon_sym___declspec] = ACTIONS(1514), + [anon_sym___cdecl] = ACTIONS(1514), + [anon_sym___clrcall] = ACTIONS(1514), + [anon_sym___stdcall] = ACTIONS(1514), + [anon_sym___fastcall] = ACTIONS(1514), + [anon_sym___thiscall] = ACTIONS(1514), + [anon_sym___vectorcall] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_signed] = ACTIONS(1514), + [anon_sym_unsigned] = ACTIONS(1514), + [anon_sym_long] = ACTIONS(1514), + [anon_sym_short] = ACTIONS(1514), + [anon_sym_static] = ACTIONS(1514), + [anon_sym_auto] = ACTIONS(1514), + [anon_sym_register] = ACTIONS(1514), + [anon_sym_inline] = ACTIONS(1514), + [anon_sym___inline] = ACTIONS(1514), + [anon_sym___inline__] = ACTIONS(1514), + [anon_sym___forceinline] = ACTIONS(1514), + [anon_sym_thread_local] = ACTIONS(1514), + [anon_sym___thread] = ACTIONS(1514), + [anon_sym_const] = ACTIONS(1514), + [anon_sym_constexpr] = ACTIONS(1514), + [anon_sym_volatile] = ACTIONS(1514), + [anon_sym_restrict] = ACTIONS(1514), + [anon_sym___restrict__] = ACTIONS(1514), + [anon_sym__Atomic] = ACTIONS(1514), + [anon_sym__Noreturn] = ACTIONS(1514), + [anon_sym_noreturn] = ACTIONS(1514), + [sym_primitive_type] = ACTIONS(1514), + [anon_sym_enum] = ACTIONS(1514), + [anon_sym_struct] = ACTIONS(1514), + [anon_sym_union] = ACTIONS(1514), + [anon_sym_if] = ACTIONS(1514), + [anon_sym_switch] = ACTIONS(1514), + [anon_sym_case] = ACTIONS(1514), + [anon_sym_default] = ACTIONS(1514), + [anon_sym_while] = ACTIONS(1514), + [anon_sym_do] = ACTIONS(1514), + [anon_sym_for] = ACTIONS(1514), + [anon_sym_return] = ACTIONS(1514), + [anon_sym_break] = ACTIONS(1514), + [anon_sym_continue] = ACTIONS(1514), + [anon_sym_goto] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_sizeof] = ACTIONS(1514), + [anon_sym___alignof__] = ACTIONS(1514), + [anon_sym___alignof] = ACTIONS(1514), + [anon_sym__alignof] = ACTIONS(1514), + [anon_sym_alignof] = ACTIONS(1514), + [anon_sym__Alignof] = ACTIONS(1514), + [anon_sym_offsetof] = ACTIONS(1514), + [anon_sym___builtin_va_arg] = ACTIONS(1514), + [anon_sym__Generic] = ACTIONS(1514), + [anon_sym_asm] = ACTIONS(1514), + [anon_sym___asm__] = ACTIONS(1514), + [sym_number_literal] = ACTIONS(1516), + [anon_sym_L_SQUOTE] = ACTIONS(1516), + [anon_sym_u_SQUOTE] = ACTIONS(1516), + [anon_sym_U_SQUOTE] = ACTIONS(1516), + [anon_sym_u8_SQUOTE] = ACTIONS(1516), + [anon_sym_SQUOTE] = ACTIONS(1516), + [anon_sym_L_DQUOTE] = ACTIONS(1516), + [anon_sym_u_DQUOTE] = ACTIONS(1516), + [anon_sym_U_DQUOTE] = ACTIONS(1516), + [anon_sym_u8_DQUOTE] = ACTIONS(1516), + [anon_sym_DQUOTE] = ACTIONS(1516), + [sym_true] = ACTIONS(1514), + [sym_false] = ACTIONS(1514), + [anon_sym_NULL] = ACTIONS(1514), + [anon_sym_nullptr] = ACTIONS(1514), [sym_comment] = ACTIONS(3), }, [244] = { - [ts_builtin_sym_end] = ACTIONS(1274), - [sym_identifier] = ACTIONS(1272), - [aux_sym_preproc_include_token1] = ACTIONS(1272), - [aux_sym_preproc_def_token1] = ACTIONS(1272), - [aux_sym_preproc_if_token1] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1272), - [sym_preproc_directive] = ACTIONS(1272), - [anon_sym_LPAREN2] = ACTIONS(1274), - [anon_sym_BANG] = ACTIONS(1274), - [anon_sym_TILDE] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1274), - [anon_sym_SEMI] = ACTIONS(1274), - [anon_sym_typedef] = ACTIONS(1272), - [anon_sym_extern] = ACTIONS(1272), - [anon_sym___attribute__] = ACTIONS(1272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1274), - [anon_sym___declspec] = ACTIONS(1272), - [anon_sym___cdecl] = ACTIONS(1272), - [anon_sym___clrcall] = ACTIONS(1272), - [anon_sym___stdcall] = ACTIONS(1272), - [anon_sym___fastcall] = ACTIONS(1272), - [anon_sym___thiscall] = ACTIONS(1272), - [anon_sym___vectorcall] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_signed] = ACTIONS(1272), - [anon_sym_unsigned] = ACTIONS(1272), - [anon_sym_long] = ACTIONS(1272), - [anon_sym_short] = ACTIONS(1272), - [anon_sym_static] = ACTIONS(1272), - [anon_sym_auto] = ACTIONS(1272), - [anon_sym_register] = ACTIONS(1272), - [anon_sym_inline] = ACTIONS(1272), - [anon_sym_thread_local] = ACTIONS(1272), - [anon_sym___thread] = ACTIONS(1272), - [anon_sym_const] = ACTIONS(1272), - [anon_sym_constexpr] = ACTIONS(1272), - [anon_sym_volatile] = ACTIONS(1272), - [anon_sym_restrict] = ACTIONS(1272), - [anon_sym___restrict__] = ACTIONS(1272), - [anon_sym__Atomic] = ACTIONS(1272), - [anon_sym__Noreturn] = ACTIONS(1272), - [anon_sym_noreturn] = ACTIONS(1272), - [sym_primitive_type] = ACTIONS(1272), - [anon_sym_enum] = ACTIONS(1272), - [anon_sym_struct] = ACTIONS(1272), - [anon_sym_union] = ACTIONS(1272), - [anon_sym_if] = ACTIONS(1272), - [anon_sym_else] = ACTIONS(1272), - [anon_sym_switch] = ACTIONS(1272), - [anon_sym_case] = ACTIONS(1272), - [anon_sym_default] = ACTIONS(1272), - [anon_sym_while] = ACTIONS(1272), - [anon_sym_do] = ACTIONS(1272), - [anon_sym_for] = ACTIONS(1272), - [anon_sym_return] = ACTIONS(1272), - [anon_sym_break] = ACTIONS(1272), - [anon_sym_continue] = ACTIONS(1272), - [anon_sym_goto] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_sizeof] = ACTIONS(1272), - [anon_sym_offsetof] = ACTIONS(1272), - [anon_sym__Generic] = ACTIONS(1272), - [anon_sym_asm] = ACTIONS(1272), - [anon_sym___asm__] = ACTIONS(1272), - [sym_number_literal] = ACTIONS(1274), - [anon_sym_L_SQUOTE] = ACTIONS(1274), - [anon_sym_u_SQUOTE] = ACTIONS(1274), - [anon_sym_U_SQUOTE] = ACTIONS(1274), - [anon_sym_u8_SQUOTE] = ACTIONS(1274), - [anon_sym_SQUOTE] = ACTIONS(1274), - [anon_sym_L_DQUOTE] = ACTIONS(1274), - [anon_sym_u_DQUOTE] = ACTIONS(1274), - [anon_sym_U_DQUOTE] = ACTIONS(1274), - [anon_sym_u8_DQUOTE] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [anon_sym_NULL] = ACTIONS(1272), - [anon_sym_nullptr] = ACTIONS(1272), + [sym_identifier] = ACTIONS(1542), + [aux_sym_preproc_include_token1] = ACTIONS(1542), + [aux_sym_preproc_def_token1] = ACTIONS(1542), + [aux_sym_preproc_if_token1] = ACTIONS(1542), + [aux_sym_preproc_if_token2] = ACTIONS(1542), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1542), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1542), + [aux_sym_preproc_else_token1] = ACTIONS(1542), + [aux_sym_preproc_elif_token1] = ACTIONS(1542), + [sym_preproc_directive] = ACTIONS(1542), + [anon_sym_LPAREN2] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1544), + [anon_sym_TILDE] = ACTIONS(1544), + [anon_sym_DASH] = ACTIONS(1542), + [anon_sym_PLUS] = ACTIONS(1542), + [anon_sym_STAR] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(1544), + [anon_sym_SEMI] = ACTIONS(1544), + [anon_sym___extension__] = ACTIONS(1542), + [anon_sym_typedef] = ACTIONS(1542), + [anon_sym_extern] = ACTIONS(1542), + [anon_sym___attribute__] = ACTIONS(1542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1544), + [anon_sym___declspec] = ACTIONS(1542), + [anon_sym___cdecl] = ACTIONS(1542), + [anon_sym___clrcall] = ACTIONS(1542), + [anon_sym___stdcall] = ACTIONS(1542), + [anon_sym___fastcall] = ACTIONS(1542), + [anon_sym___thiscall] = ACTIONS(1542), + [anon_sym___vectorcall] = ACTIONS(1542), + [anon_sym_LBRACE] = ACTIONS(1544), + [anon_sym_signed] = ACTIONS(1542), + [anon_sym_unsigned] = ACTIONS(1542), + [anon_sym_long] = ACTIONS(1542), + [anon_sym_short] = ACTIONS(1542), + [anon_sym_static] = ACTIONS(1542), + [anon_sym_auto] = ACTIONS(1542), + [anon_sym_register] = ACTIONS(1542), + [anon_sym_inline] = ACTIONS(1542), + [anon_sym___inline] = ACTIONS(1542), + [anon_sym___inline__] = ACTIONS(1542), + [anon_sym___forceinline] = ACTIONS(1542), + [anon_sym_thread_local] = ACTIONS(1542), + [anon_sym___thread] = ACTIONS(1542), + [anon_sym_const] = ACTIONS(1542), + [anon_sym_constexpr] = ACTIONS(1542), + [anon_sym_volatile] = ACTIONS(1542), + [anon_sym_restrict] = ACTIONS(1542), + [anon_sym___restrict__] = ACTIONS(1542), + [anon_sym__Atomic] = ACTIONS(1542), + [anon_sym__Noreturn] = ACTIONS(1542), + [anon_sym_noreturn] = ACTIONS(1542), + [sym_primitive_type] = ACTIONS(1542), + [anon_sym_enum] = ACTIONS(1542), + [anon_sym_struct] = ACTIONS(1542), + [anon_sym_union] = ACTIONS(1542), + [anon_sym_if] = ACTIONS(1542), + [anon_sym_switch] = ACTIONS(1542), + [anon_sym_case] = ACTIONS(1542), + [anon_sym_default] = ACTIONS(1542), + [anon_sym_while] = ACTIONS(1542), + [anon_sym_do] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1542), + [anon_sym_return] = ACTIONS(1542), + [anon_sym_break] = ACTIONS(1542), + [anon_sym_continue] = ACTIONS(1542), + [anon_sym_goto] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_PLUS_PLUS] = ACTIONS(1544), + [anon_sym_sizeof] = ACTIONS(1542), + [anon_sym___alignof__] = ACTIONS(1542), + [anon_sym___alignof] = ACTIONS(1542), + [anon_sym__alignof] = ACTIONS(1542), + [anon_sym_alignof] = ACTIONS(1542), + [anon_sym__Alignof] = ACTIONS(1542), + [anon_sym_offsetof] = ACTIONS(1542), + [anon_sym___builtin_va_arg] = ACTIONS(1542), + [anon_sym__Generic] = ACTIONS(1542), + [anon_sym_asm] = ACTIONS(1542), + [anon_sym___asm__] = ACTIONS(1542), + [sym_number_literal] = ACTIONS(1544), + [anon_sym_L_SQUOTE] = ACTIONS(1544), + [anon_sym_u_SQUOTE] = ACTIONS(1544), + [anon_sym_U_SQUOTE] = ACTIONS(1544), + [anon_sym_u8_SQUOTE] = ACTIONS(1544), + [anon_sym_SQUOTE] = ACTIONS(1544), + [anon_sym_L_DQUOTE] = ACTIONS(1544), + [anon_sym_u_DQUOTE] = ACTIONS(1544), + [anon_sym_U_DQUOTE] = ACTIONS(1544), + [anon_sym_u8_DQUOTE] = ACTIONS(1544), + [anon_sym_DQUOTE] = ACTIONS(1544), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [anon_sym_NULL] = ACTIONS(1542), + [anon_sym_nullptr] = ACTIONS(1542), [sym_comment] = ACTIONS(3), }, [245] = { - [ts_builtin_sym_end] = ACTIONS(1198), - [sym_identifier] = ACTIONS(1196), - [aux_sym_preproc_include_token1] = ACTIONS(1196), - [aux_sym_preproc_def_token1] = ACTIONS(1196), - [aux_sym_preproc_if_token1] = ACTIONS(1196), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1196), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1196), - [sym_preproc_directive] = ACTIONS(1196), - [anon_sym_LPAREN2] = ACTIONS(1198), - [anon_sym_BANG] = ACTIONS(1198), - [anon_sym_TILDE] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_SEMI] = ACTIONS(1198), - [anon_sym_typedef] = ACTIONS(1196), - [anon_sym_extern] = ACTIONS(1196), - [anon_sym___attribute__] = ACTIONS(1196), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1198), - [anon_sym___declspec] = ACTIONS(1196), - [anon_sym___cdecl] = ACTIONS(1196), - [anon_sym___clrcall] = ACTIONS(1196), - [anon_sym___stdcall] = ACTIONS(1196), - [anon_sym___fastcall] = ACTIONS(1196), - [anon_sym___thiscall] = ACTIONS(1196), - [anon_sym___vectorcall] = ACTIONS(1196), - [anon_sym_LBRACE] = ACTIONS(1198), - [anon_sym_signed] = ACTIONS(1196), - [anon_sym_unsigned] = ACTIONS(1196), - [anon_sym_long] = ACTIONS(1196), - [anon_sym_short] = ACTIONS(1196), - [anon_sym_static] = ACTIONS(1196), - [anon_sym_auto] = ACTIONS(1196), - [anon_sym_register] = ACTIONS(1196), - [anon_sym_inline] = ACTIONS(1196), - [anon_sym_thread_local] = ACTIONS(1196), - [anon_sym___thread] = ACTIONS(1196), - [anon_sym_const] = ACTIONS(1196), - [anon_sym_constexpr] = ACTIONS(1196), - [anon_sym_volatile] = ACTIONS(1196), - [anon_sym_restrict] = ACTIONS(1196), - [anon_sym___restrict__] = ACTIONS(1196), - [anon_sym__Atomic] = ACTIONS(1196), - [anon_sym__Noreturn] = ACTIONS(1196), - [anon_sym_noreturn] = ACTIONS(1196), - [sym_primitive_type] = ACTIONS(1196), - [anon_sym_enum] = ACTIONS(1196), - [anon_sym_struct] = ACTIONS(1196), - [anon_sym_union] = ACTIONS(1196), - [anon_sym_if] = ACTIONS(1196), - [anon_sym_else] = ACTIONS(1196), - [anon_sym_switch] = ACTIONS(1196), - [anon_sym_case] = ACTIONS(1196), - [anon_sym_default] = ACTIONS(1196), - [anon_sym_while] = ACTIONS(1196), - [anon_sym_do] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1196), - [anon_sym_return] = ACTIONS(1196), - [anon_sym_break] = ACTIONS(1196), - [anon_sym_continue] = ACTIONS(1196), - [anon_sym_goto] = ACTIONS(1196), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_sizeof] = ACTIONS(1196), - [anon_sym_offsetof] = ACTIONS(1196), - [anon_sym__Generic] = ACTIONS(1196), - [anon_sym_asm] = ACTIONS(1196), - [anon_sym___asm__] = ACTIONS(1196), - [sym_number_literal] = ACTIONS(1198), - [anon_sym_L_SQUOTE] = ACTIONS(1198), - [anon_sym_u_SQUOTE] = ACTIONS(1198), - [anon_sym_U_SQUOTE] = ACTIONS(1198), - [anon_sym_u8_SQUOTE] = ACTIONS(1198), - [anon_sym_SQUOTE] = ACTIONS(1198), - [anon_sym_L_DQUOTE] = ACTIONS(1198), - [anon_sym_u_DQUOTE] = ACTIONS(1198), - [anon_sym_U_DQUOTE] = ACTIONS(1198), - [anon_sym_u8_DQUOTE] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(1198), - [sym_true] = ACTIONS(1196), - [sym_false] = ACTIONS(1196), - [anon_sym_NULL] = ACTIONS(1196), - [anon_sym_nullptr] = ACTIONS(1196), + [sym_identifier] = ACTIONS(1558), + [aux_sym_preproc_include_token1] = ACTIONS(1558), + [aux_sym_preproc_def_token1] = ACTIONS(1558), + [aux_sym_preproc_if_token1] = ACTIONS(1558), + [aux_sym_preproc_if_token2] = ACTIONS(1558), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1558), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1558), + [aux_sym_preproc_else_token1] = ACTIONS(1558), + [aux_sym_preproc_elif_token1] = ACTIONS(1558), + [sym_preproc_directive] = ACTIONS(1558), + [anon_sym_LPAREN2] = ACTIONS(1560), + [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_DASH] = ACTIONS(1558), + [anon_sym_PLUS] = ACTIONS(1558), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_AMP] = ACTIONS(1560), + [anon_sym_SEMI] = ACTIONS(1560), + [anon_sym___extension__] = ACTIONS(1558), + [anon_sym_typedef] = ACTIONS(1558), + [anon_sym_extern] = ACTIONS(1558), + [anon_sym___attribute__] = ACTIONS(1558), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1560), + [anon_sym___declspec] = ACTIONS(1558), + [anon_sym___cdecl] = ACTIONS(1558), + [anon_sym___clrcall] = ACTIONS(1558), + [anon_sym___stdcall] = ACTIONS(1558), + [anon_sym___fastcall] = ACTIONS(1558), + [anon_sym___thiscall] = ACTIONS(1558), + [anon_sym___vectorcall] = ACTIONS(1558), + [anon_sym_LBRACE] = ACTIONS(1560), + [anon_sym_signed] = ACTIONS(1558), + [anon_sym_unsigned] = ACTIONS(1558), + [anon_sym_long] = ACTIONS(1558), + [anon_sym_short] = ACTIONS(1558), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_auto] = ACTIONS(1558), + [anon_sym_register] = ACTIONS(1558), + [anon_sym_inline] = ACTIONS(1558), + [anon_sym___inline] = ACTIONS(1558), + [anon_sym___inline__] = ACTIONS(1558), + [anon_sym___forceinline] = ACTIONS(1558), + [anon_sym_thread_local] = ACTIONS(1558), + [anon_sym___thread] = ACTIONS(1558), + [anon_sym_const] = ACTIONS(1558), + [anon_sym_constexpr] = ACTIONS(1558), + [anon_sym_volatile] = ACTIONS(1558), + [anon_sym_restrict] = ACTIONS(1558), + [anon_sym___restrict__] = ACTIONS(1558), + [anon_sym__Atomic] = ACTIONS(1558), + [anon_sym__Noreturn] = ACTIONS(1558), + [anon_sym_noreturn] = ACTIONS(1558), + [sym_primitive_type] = ACTIONS(1558), + [anon_sym_enum] = ACTIONS(1558), + [anon_sym_struct] = ACTIONS(1558), + [anon_sym_union] = ACTIONS(1558), + [anon_sym_if] = ACTIONS(1558), + [anon_sym_switch] = ACTIONS(1558), + [anon_sym_case] = ACTIONS(1558), + [anon_sym_default] = ACTIONS(1558), + [anon_sym_while] = ACTIONS(1558), + [anon_sym_do] = ACTIONS(1558), + [anon_sym_for] = ACTIONS(1558), + [anon_sym_return] = ACTIONS(1558), + [anon_sym_break] = ACTIONS(1558), + [anon_sym_continue] = ACTIONS(1558), + [anon_sym_goto] = ACTIONS(1558), + [anon_sym_DASH_DASH] = ACTIONS(1560), + [anon_sym_PLUS_PLUS] = ACTIONS(1560), + [anon_sym_sizeof] = ACTIONS(1558), + [anon_sym___alignof__] = ACTIONS(1558), + [anon_sym___alignof] = ACTIONS(1558), + [anon_sym__alignof] = ACTIONS(1558), + [anon_sym_alignof] = ACTIONS(1558), + [anon_sym__Alignof] = ACTIONS(1558), + [anon_sym_offsetof] = ACTIONS(1558), + [anon_sym___builtin_va_arg] = ACTIONS(1558), + [anon_sym__Generic] = ACTIONS(1558), + [anon_sym_asm] = ACTIONS(1558), + [anon_sym___asm__] = ACTIONS(1558), + [sym_number_literal] = ACTIONS(1560), + [anon_sym_L_SQUOTE] = ACTIONS(1560), + [anon_sym_u_SQUOTE] = ACTIONS(1560), + [anon_sym_U_SQUOTE] = ACTIONS(1560), + [anon_sym_u8_SQUOTE] = ACTIONS(1560), + [anon_sym_SQUOTE] = ACTIONS(1560), + [anon_sym_L_DQUOTE] = ACTIONS(1560), + [anon_sym_u_DQUOTE] = ACTIONS(1560), + [anon_sym_U_DQUOTE] = ACTIONS(1560), + [anon_sym_u8_DQUOTE] = ACTIONS(1560), + [anon_sym_DQUOTE] = ACTIONS(1560), + [sym_true] = ACTIONS(1558), + [sym_false] = ACTIONS(1558), + [anon_sym_NULL] = ACTIONS(1558), + [anon_sym_nullptr] = ACTIONS(1558), [sym_comment] = ACTIONS(3), }, [246] = { - [ts_builtin_sym_end] = ACTIONS(1278), - [sym_identifier] = ACTIONS(1276), - [aux_sym_preproc_include_token1] = ACTIONS(1276), - [aux_sym_preproc_def_token1] = ACTIONS(1276), - [aux_sym_preproc_if_token1] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), - [sym_preproc_directive] = ACTIONS(1276), - [anon_sym_LPAREN2] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1278), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym_typedef] = ACTIONS(1276), - [anon_sym_extern] = ACTIONS(1276), - [anon_sym___attribute__] = ACTIONS(1276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1278), - [anon_sym___declspec] = ACTIONS(1276), - [anon_sym___cdecl] = ACTIONS(1276), - [anon_sym___clrcall] = ACTIONS(1276), - [anon_sym___stdcall] = ACTIONS(1276), - [anon_sym___fastcall] = ACTIONS(1276), - [anon_sym___thiscall] = ACTIONS(1276), - [anon_sym___vectorcall] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_signed] = ACTIONS(1276), - [anon_sym_unsigned] = ACTIONS(1276), - [anon_sym_long] = ACTIONS(1276), - [anon_sym_short] = ACTIONS(1276), - [anon_sym_static] = ACTIONS(1276), - [anon_sym_auto] = ACTIONS(1276), - [anon_sym_register] = ACTIONS(1276), - [anon_sym_inline] = ACTIONS(1276), - [anon_sym_thread_local] = ACTIONS(1276), - [anon_sym___thread] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1276), - [anon_sym_constexpr] = ACTIONS(1276), - [anon_sym_volatile] = ACTIONS(1276), - [anon_sym_restrict] = ACTIONS(1276), - [anon_sym___restrict__] = ACTIONS(1276), - [anon_sym__Atomic] = ACTIONS(1276), - [anon_sym__Noreturn] = ACTIONS(1276), - [anon_sym_noreturn] = ACTIONS(1276), - [sym_primitive_type] = ACTIONS(1276), - [anon_sym_enum] = ACTIONS(1276), - [anon_sym_struct] = ACTIONS(1276), - [anon_sym_union] = ACTIONS(1276), - [anon_sym_if] = ACTIONS(1276), - [anon_sym_else] = ACTIONS(1276), - [anon_sym_switch] = ACTIONS(1276), - [anon_sym_case] = ACTIONS(1276), - [anon_sym_default] = ACTIONS(1276), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(1276), - [anon_sym_for] = ACTIONS(1276), - [anon_sym_return] = ACTIONS(1276), - [anon_sym_break] = ACTIONS(1276), - [anon_sym_continue] = ACTIONS(1276), - [anon_sym_goto] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1278), - [anon_sym_PLUS_PLUS] = ACTIONS(1278), - [anon_sym_sizeof] = ACTIONS(1276), - [anon_sym_offsetof] = ACTIONS(1276), - [anon_sym__Generic] = ACTIONS(1276), - [anon_sym_asm] = ACTIONS(1276), - [anon_sym___asm__] = ACTIONS(1276), - [sym_number_literal] = ACTIONS(1278), - [anon_sym_L_SQUOTE] = ACTIONS(1278), - [anon_sym_u_SQUOTE] = ACTIONS(1278), - [anon_sym_U_SQUOTE] = ACTIONS(1278), - [anon_sym_u8_SQUOTE] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1278), - [anon_sym_L_DQUOTE] = ACTIONS(1278), - [anon_sym_u_DQUOTE] = ACTIONS(1278), - [anon_sym_U_DQUOTE] = ACTIONS(1278), - [anon_sym_u8_DQUOTE] = ACTIONS(1278), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym_true] = ACTIONS(1276), - [sym_false] = ACTIONS(1276), - [anon_sym_NULL] = ACTIONS(1276), - [anon_sym_nullptr] = ACTIONS(1276), + [sym_identifier] = ACTIONS(1546), + [aux_sym_preproc_include_token1] = ACTIONS(1546), + [aux_sym_preproc_def_token1] = ACTIONS(1546), + [aux_sym_preproc_if_token1] = ACTIONS(1546), + [aux_sym_preproc_if_token2] = ACTIONS(1546), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1546), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1546), + [aux_sym_preproc_else_token1] = ACTIONS(1546), + [aux_sym_preproc_elif_token1] = ACTIONS(1546), + [sym_preproc_directive] = ACTIONS(1546), + [anon_sym_LPAREN2] = ACTIONS(1548), + [anon_sym_BANG] = ACTIONS(1548), + [anon_sym_TILDE] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(1548), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_SEMI] = ACTIONS(1548), + [anon_sym___extension__] = ACTIONS(1546), + [anon_sym_typedef] = ACTIONS(1546), + [anon_sym_extern] = ACTIONS(1546), + [anon_sym___attribute__] = ACTIONS(1546), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym___declspec] = ACTIONS(1546), + [anon_sym___cdecl] = ACTIONS(1546), + [anon_sym___clrcall] = ACTIONS(1546), + [anon_sym___stdcall] = ACTIONS(1546), + [anon_sym___fastcall] = ACTIONS(1546), + [anon_sym___thiscall] = ACTIONS(1546), + [anon_sym___vectorcall] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_signed] = ACTIONS(1546), + [anon_sym_unsigned] = ACTIONS(1546), + [anon_sym_long] = ACTIONS(1546), + [anon_sym_short] = ACTIONS(1546), + [anon_sym_static] = ACTIONS(1546), + [anon_sym_auto] = ACTIONS(1546), + [anon_sym_register] = ACTIONS(1546), + [anon_sym_inline] = ACTIONS(1546), + [anon_sym___inline] = ACTIONS(1546), + [anon_sym___inline__] = ACTIONS(1546), + [anon_sym___forceinline] = ACTIONS(1546), + [anon_sym_thread_local] = ACTIONS(1546), + [anon_sym___thread] = ACTIONS(1546), + [anon_sym_const] = ACTIONS(1546), + [anon_sym_constexpr] = ACTIONS(1546), + [anon_sym_volatile] = ACTIONS(1546), + [anon_sym_restrict] = ACTIONS(1546), + [anon_sym___restrict__] = ACTIONS(1546), + [anon_sym__Atomic] = ACTIONS(1546), + [anon_sym__Noreturn] = ACTIONS(1546), + [anon_sym_noreturn] = ACTIONS(1546), + [sym_primitive_type] = ACTIONS(1546), + [anon_sym_enum] = ACTIONS(1546), + [anon_sym_struct] = ACTIONS(1546), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_if] = ACTIONS(1546), + [anon_sym_switch] = ACTIONS(1546), + [anon_sym_case] = ACTIONS(1546), + [anon_sym_default] = ACTIONS(1546), + [anon_sym_while] = ACTIONS(1546), + [anon_sym_do] = ACTIONS(1546), + [anon_sym_for] = ACTIONS(1546), + [anon_sym_return] = ACTIONS(1546), + [anon_sym_break] = ACTIONS(1546), + [anon_sym_continue] = ACTIONS(1546), + [anon_sym_goto] = ACTIONS(1546), + [anon_sym_DASH_DASH] = ACTIONS(1548), + [anon_sym_PLUS_PLUS] = ACTIONS(1548), + [anon_sym_sizeof] = ACTIONS(1546), + [anon_sym___alignof__] = ACTIONS(1546), + [anon_sym___alignof] = ACTIONS(1546), + [anon_sym__alignof] = ACTIONS(1546), + [anon_sym_alignof] = ACTIONS(1546), + [anon_sym__Alignof] = ACTIONS(1546), + [anon_sym_offsetof] = ACTIONS(1546), + [anon_sym___builtin_va_arg] = ACTIONS(1546), + [anon_sym__Generic] = ACTIONS(1546), + [anon_sym_asm] = ACTIONS(1546), + [anon_sym___asm__] = ACTIONS(1546), + [sym_number_literal] = ACTIONS(1548), + [anon_sym_L_SQUOTE] = ACTIONS(1548), + [anon_sym_u_SQUOTE] = ACTIONS(1548), + [anon_sym_U_SQUOTE] = ACTIONS(1548), + [anon_sym_u8_SQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1548), + [anon_sym_L_DQUOTE] = ACTIONS(1548), + [anon_sym_u_DQUOTE] = ACTIONS(1548), + [anon_sym_U_DQUOTE] = ACTIONS(1548), + [anon_sym_u8_DQUOTE] = ACTIONS(1548), + [anon_sym_DQUOTE] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [anon_sym_NULL] = ACTIONS(1546), + [anon_sym_nullptr] = ACTIONS(1546), [sym_comment] = ACTIONS(3), }, [247] = { - [ts_builtin_sym_end] = ACTIONS(1282), - [sym_identifier] = ACTIONS(1280), - [aux_sym_preproc_include_token1] = ACTIONS(1280), - [aux_sym_preproc_def_token1] = ACTIONS(1280), - [aux_sym_preproc_if_token1] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1280), - [sym_preproc_directive] = ACTIONS(1280), - [anon_sym_LPAREN2] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1282), - [anon_sym_TILDE] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1282), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym_typedef] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym___attribute__] = ACTIONS(1280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1282), - [anon_sym___declspec] = ACTIONS(1280), - [anon_sym___cdecl] = ACTIONS(1280), - [anon_sym___clrcall] = ACTIONS(1280), - [anon_sym___stdcall] = ACTIONS(1280), - [anon_sym___fastcall] = ACTIONS(1280), - [anon_sym___thiscall] = ACTIONS(1280), - [anon_sym___vectorcall] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_signed] = ACTIONS(1280), - [anon_sym_unsigned] = ACTIONS(1280), - [anon_sym_long] = ACTIONS(1280), - [anon_sym_short] = ACTIONS(1280), - [anon_sym_static] = ACTIONS(1280), - [anon_sym_auto] = ACTIONS(1280), - [anon_sym_register] = ACTIONS(1280), - [anon_sym_inline] = ACTIONS(1280), - [anon_sym_thread_local] = ACTIONS(1280), - [anon_sym___thread] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_constexpr] = ACTIONS(1280), - [anon_sym_volatile] = ACTIONS(1280), - [anon_sym_restrict] = ACTIONS(1280), - [anon_sym___restrict__] = ACTIONS(1280), - [anon_sym__Atomic] = ACTIONS(1280), - [anon_sym__Noreturn] = ACTIONS(1280), - [anon_sym_noreturn] = ACTIONS(1280), - [sym_primitive_type] = ACTIONS(1280), - [anon_sym_enum] = ACTIONS(1280), - [anon_sym_struct] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_else] = ACTIONS(1280), - [anon_sym_switch] = ACTIONS(1280), - [anon_sym_case] = ACTIONS(1280), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_goto] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1282), - [anon_sym_sizeof] = ACTIONS(1280), - [anon_sym_offsetof] = ACTIONS(1280), - [anon_sym__Generic] = ACTIONS(1280), - [anon_sym_asm] = ACTIONS(1280), - [anon_sym___asm__] = ACTIONS(1280), - [sym_number_literal] = ACTIONS(1282), - [anon_sym_L_SQUOTE] = ACTIONS(1282), - [anon_sym_u_SQUOTE] = ACTIONS(1282), - [anon_sym_U_SQUOTE] = ACTIONS(1282), - [anon_sym_u8_SQUOTE] = ACTIONS(1282), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_L_DQUOTE] = ACTIONS(1282), - [anon_sym_u_DQUOTE] = ACTIONS(1282), - [anon_sym_U_DQUOTE] = ACTIONS(1282), - [anon_sym_u8_DQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym_true] = ACTIONS(1280), - [sym_false] = ACTIONS(1280), - [anon_sym_NULL] = ACTIONS(1280), - [anon_sym_nullptr] = ACTIONS(1280), + [sym_else_clause] = STATE(416), + [sym_identifier] = ACTIONS(1234), + [aux_sym_preproc_include_token1] = ACTIONS(1234), + [aux_sym_preproc_def_token1] = ACTIONS(1234), + [aux_sym_preproc_if_token1] = ACTIONS(1234), + [aux_sym_preproc_if_token2] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), + [sym_preproc_directive] = ACTIONS(1234), + [anon_sym_LPAREN2] = ACTIONS(1236), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(1236), + [anon_sym_SEMI] = ACTIONS(1236), + [anon_sym___extension__] = ACTIONS(1234), + [anon_sym_typedef] = ACTIONS(1234), + [anon_sym_extern] = ACTIONS(1234), + [anon_sym___attribute__] = ACTIONS(1234), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1236), + [anon_sym___declspec] = ACTIONS(1234), + [anon_sym___cdecl] = ACTIONS(1234), + [anon_sym___clrcall] = ACTIONS(1234), + [anon_sym___stdcall] = ACTIONS(1234), + [anon_sym___fastcall] = ACTIONS(1234), + [anon_sym___thiscall] = ACTIONS(1234), + [anon_sym___vectorcall] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(1236), + [anon_sym_signed] = ACTIONS(1234), + [anon_sym_unsigned] = ACTIONS(1234), + [anon_sym_long] = ACTIONS(1234), + [anon_sym_short] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_auto] = ACTIONS(1234), + [anon_sym_register] = ACTIONS(1234), + [anon_sym_inline] = ACTIONS(1234), + [anon_sym___inline] = ACTIONS(1234), + [anon_sym___inline__] = ACTIONS(1234), + [anon_sym___forceinline] = ACTIONS(1234), + [anon_sym_thread_local] = ACTIONS(1234), + [anon_sym___thread] = ACTIONS(1234), + [anon_sym_const] = ACTIONS(1234), + [anon_sym_constexpr] = ACTIONS(1234), + [anon_sym_volatile] = ACTIONS(1234), + [anon_sym_restrict] = ACTIONS(1234), + [anon_sym___restrict__] = ACTIONS(1234), + [anon_sym__Atomic] = ACTIONS(1234), + [anon_sym__Noreturn] = ACTIONS(1234), + [anon_sym_noreturn] = ACTIONS(1234), + [sym_primitive_type] = ACTIONS(1234), + [anon_sym_enum] = ACTIONS(1234), + [anon_sym_struct] = ACTIONS(1234), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_if] = ACTIONS(1234), + [anon_sym_else] = ACTIONS(1574), + [anon_sym_switch] = ACTIONS(1234), + [anon_sym_case] = ACTIONS(1234), + [anon_sym_default] = ACTIONS(1234), + [anon_sym_while] = ACTIONS(1234), + [anon_sym_do] = ACTIONS(1234), + [anon_sym_for] = ACTIONS(1234), + [anon_sym_return] = ACTIONS(1234), + [anon_sym_break] = ACTIONS(1234), + [anon_sym_continue] = ACTIONS(1234), + [anon_sym_goto] = ACTIONS(1234), + [anon_sym_DASH_DASH] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_sizeof] = ACTIONS(1234), + [anon_sym___alignof__] = ACTIONS(1234), + [anon_sym___alignof] = ACTIONS(1234), + [anon_sym__alignof] = ACTIONS(1234), + [anon_sym_alignof] = ACTIONS(1234), + [anon_sym__Alignof] = ACTIONS(1234), + [anon_sym_offsetof] = ACTIONS(1234), + [anon_sym___builtin_va_arg] = ACTIONS(1234), + [anon_sym__Generic] = ACTIONS(1234), + [anon_sym_asm] = ACTIONS(1234), + [anon_sym___asm__] = ACTIONS(1234), + [sym_number_literal] = ACTIONS(1236), + [anon_sym_L_SQUOTE] = ACTIONS(1236), + [anon_sym_u_SQUOTE] = ACTIONS(1236), + [anon_sym_U_SQUOTE] = ACTIONS(1236), + [anon_sym_u8_SQUOTE] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1236), + [anon_sym_L_DQUOTE] = ACTIONS(1236), + [anon_sym_u_DQUOTE] = ACTIONS(1236), + [anon_sym_U_DQUOTE] = ACTIONS(1236), + [anon_sym_u8_DQUOTE] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(1236), + [sym_true] = ACTIONS(1234), + [sym_false] = ACTIONS(1234), + [anon_sym_NULL] = ACTIONS(1234), + [anon_sym_nullptr] = ACTIONS(1234), [sym_comment] = ACTIONS(3), }, [248] = { - [ts_builtin_sym_end] = ACTIONS(1286), - [sym_identifier] = ACTIONS(1284), - [aux_sym_preproc_include_token1] = ACTIONS(1284), - [aux_sym_preproc_def_token1] = ACTIONS(1284), - [aux_sym_preproc_if_token1] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1284), - [sym_preproc_directive] = ACTIONS(1284), - [anon_sym_LPAREN2] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1286), - [anon_sym_TILDE] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1286), - [anon_sym_SEMI] = ACTIONS(1286), - [anon_sym_typedef] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1284), - [anon_sym___attribute__] = ACTIONS(1284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1286), - [anon_sym___declspec] = ACTIONS(1284), - [anon_sym___cdecl] = ACTIONS(1284), - [anon_sym___clrcall] = ACTIONS(1284), - [anon_sym___stdcall] = ACTIONS(1284), - [anon_sym___fastcall] = ACTIONS(1284), - [anon_sym___thiscall] = ACTIONS(1284), - [anon_sym___vectorcall] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_signed] = ACTIONS(1284), - [anon_sym_unsigned] = ACTIONS(1284), - [anon_sym_long] = ACTIONS(1284), - [anon_sym_short] = ACTIONS(1284), - [anon_sym_static] = ACTIONS(1284), - [anon_sym_auto] = ACTIONS(1284), - [anon_sym_register] = ACTIONS(1284), - [anon_sym_inline] = ACTIONS(1284), - [anon_sym_thread_local] = ACTIONS(1284), - [anon_sym___thread] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_constexpr] = ACTIONS(1284), - [anon_sym_volatile] = ACTIONS(1284), - [anon_sym_restrict] = ACTIONS(1284), - [anon_sym___restrict__] = ACTIONS(1284), - [anon_sym__Atomic] = ACTIONS(1284), - [anon_sym__Noreturn] = ACTIONS(1284), - [anon_sym_noreturn] = ACTIONS(1284), - [sym_primitive_type] = ACTIONS(1284), - [anon_sym_enum] = ACTIONS(1284), - [anon_sym_struct] = ACTIONS(1284), - [anon_sym_union] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_else] = ACTIONS(1284), - [anon_sym_switch] = ACTIONS(1284), - [anon_sym_case] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1284), - [anon_sym_while] = ACTIONS(1284), - [anon_sym_do] = ACTIONS(1284), - [anon_sym_for] = ACTIONS(1284), - [anon_sym_return] = ACTIONS(1284), - [anon_sym_break] = ACTIONS(1284), - [anon_sym_continue] = ACTIONS(1284), - [anon_sym_goto] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1286), - [anon_sym_PLUS_PLUS] = ACTIONS(1286), - [anon_sym_sizeof] = ACTIONS(1284), - [anon_sym_offsetof] = ACTIONS(1284), - [anon_sym__Generic] = ACTIONS(1284), - [anon_sym_asm] = ACTIONS(1284), - [anon_sym___asm__] = ACTIONS(1284), - [sym_number_literal] = ACTIONS(1286), - [anon_sym_L_SQUOTE] = ACTIONS(1286), - [anon_sym_u_SQUOTE] = ACTIONS(1286), - [anon_sym_U_SQUOTE] = ACTIONS(1286), - [anon_sym_u8_SQUOTE] = ACTIONS(1286), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_L_DQUOTE] = ACTIONS(1286), - [anon_sym_u_DQUOTE] = ACTIONS(1286), - [anon_sym_U_DQUOTE] = ACTIONS(1286), - [anon_sym_u8_DQUOTE] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym_true] = ACTIONS(1284), - [sym_false] = ACTIONS(1284), - [anon_sym_NULL] = ACTIONS(1284), - [anon_sym_nullptr] = ACTIONS(1284), + [sym_identifier] = ACTIONS(1526), + [aux_sym_preproc_include_token1] = ACTIONS(1526), + [aux_sym_preproc_def_token1] = ACTIONS(1526), + [aux_sym_preproc_if_token1] = ACTIONS(1526), + [aux_sym_preproc_if_token2] = ACTIONS(1526), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1526), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1526), + [aux_sym_preproc_else_token1] = ACTIONS(1526), + [aux_sym_preproc_elif_token1] = ACTIONS(1526), + [sym_preproc_directive] = ACTIONS(1526), + [anon_sym_LPAREN2] = ACTIONS(1528), + [anon_sym_BANG] = ACTIONS(1528), + [anon_sym_TILDE] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_PLUS] = ACTIONS(1526), + [anon_sym_STAR] = ACTIONS(1528), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_typedef] = ACTIONS(1526), + [anon_sym_extern] = ACTIONS(1526), + [anon_sym___attribute__] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym___declspec] = ACTIONS(1526), + [anon_sym___cdecl] = ACTIONS(1526), + [anon_sym___clrcall] = ACTIONS(1526), + [anon_sym___stdcall] = ACTIONS(1526), + [anon_sym___fastcall] = ACTIONS(1526), + [anon_sym___thiscall] = ACTIONS(1526), + [anon_sym___vectorcall] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_signed] = ACTIONS(1526), + [anon_sym_unsigned] = ACTIONS(1526), + [anon_sym_long] = ACTIONS(1526), + [anon_sym_short] = ACTIONS(1526), + [anon_sym_static] = ACTIONS(1526), + [anon_sym_auto] = ACTIONS(1526), + [anon_sym_register] = ACTIONS(1526), + [anon_sym_inline] = ACTIONS(1526), + [anon_sym___inline] = ACTIONS(1526), + [anon_sym___inline__] = ACTIONS(1526), + [anon_sym___forceinline] = ACTIONS(1526), + [anon_sym_thread_local] = ACTIONS(1526), + [anon_sym___thread] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1526), + [anon_sym_constexpr] = ACTIONS(1526), + [anon_sym_volatile] = ACTIONS(1526), + [anon_sym_restrict] = ACTIONS(1526), + [anon_sym___restrict__] = ACTIONS(1526), + [anon_sym__Atomic] = ACTIONS(1526), + [anon_sym__Noreturn] = ACTIONS(1526), + [anon_sym_noreturn] = ACTIONS(1526), + [sym_primitive_type] = ACTIONS(1526), + [anon_sym_enum] = ACTIONS(1526), + [anon_sym_struct] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_switch] = ACTIONS(1526), + [anon_sym_case] = ACTIONS(1526), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1526), + [anon_sym_for] = ACTIONS(1526), + [anon_sym_return] = ACTIONS(1526), + [anon_sym_break] = ACTIONS(1526), + [anon_sym_continue] = ACTIONS(1526), + [anon_sym_goto] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1528), + [anon_sym_PLUS_PLUS] = ACTIONS(1528), + [anon_sym_sizeof] = ACTIONS(1526), + [anon_sym___alignof__] = ACTIONS(1526), + [anon_sym___alignof] = ACTIONS(1526), + [anon_sym__alignof] = ACTIONS(1526), + [anon_sym_alignof] = ACTIONS(1526), + [anon_sym__Alignof] = ACTIONS(1526), + [anon_sym_offsetof] = ACTIONS(1526), + [anon_sym___builtin_va_arg] = ACTIONS(1526), + [anon_sym__Generic] = ACTIONS(1526), + [anon_sym_asm] = ACTIONS(1526), + [anon_sym___asm__] = ACTIONS(1526), + [sym_number_literal] = ACTIONS(1528), + [anon_sym_L_SQUOTE] = ACTIONS(1528), + [anon_sym_u_SQUOTE] = ACTIONS(1528), + [anon_sym_U_SQUOTE] = ACTIONS(1528), + [anon_sym_u8_SQUOTE] = ACTIONS(1528), + [anon_sym_SQUOTE] = ACTIONS(1528), + [anon_sym_L_DQUOTE] = ACTIONS(1528), + [anon_sym_u_DQUOTE] = ACTIONS(1528), + [anon_sym_U_DQUOTE] = ACTIONS(1528), + [anon_sym_u8_DQUOTE] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1528), + [sym_true] = ACTIONS(1526), + [sym_false] = ACTIONS(1526), + [anon_sym_NULL] = ACTIONS(1526), + [anon_sym_nullptr] = ACTIONS(1526), [sym_comment] = ACTIONS(3), }, [249] = { - [sym_identifier] = ACTIONS(1348), - [aux_sym_preproc_include_token1] = ACTIONS(1348), - [aux_sym_preproc_def_token1] = ACTIONS(1348), - [aux_sym_preproc_if_token1] = ACTIONS(1348), - [aux_sym_preproc_if_token2] = ACTIONS(1348), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1348), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1348), - [sym_preproc_directive] = ACTIONS(1348), - [anon_sym_LPAREN2] = ACTIONS(1350), - [anon_sym_BANG] = ACTIONS(1350), - [anon_sym_TILDE] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1348), - [anon_sym_PLUS] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym_typedef] = ACTIONS(1348), - [anon_sym_extern] = ACTIONS(1348), - [anon_sym___attribute__] = ACTIONS(1348), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), - [anon_sym___declspec] = ACTIONS(1348), - [anon_sym___cdecl] = ACTIONS(1348), - [anon_sym___clrcall] = ACTIONS(1348), - [anon_sym___stdcall] = ACTIONS(1348), - [anon_sym___fastcall] = ACTIONS(1348), - [anon_sym___thiscall] = ACTIONS(1348), - [anon_sym___vectorcall] = ACTIONS(1348), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_signed] = ACTIONS(1348), - [anon_sym_unsigned] = ACTIONS(1348), - [anon_sym_long] = ACTIONS(1348), - [anon_sym_short] = ACTIONS(1348), - [anon_sym_static] = ACTIONS(1348), - [anon_sym_auto] = ACTIONS(1348), - [anon_sym_register] = ACTIONS(1348), - [anon_sym_inline] = ACTIONS(1348), - [anon_sym_thread_local] = ACTIONS(1348), - [anon_sym___thread] = ACTIONS(1348), - [anon_sym_const] = ACTIONS(1348), - [anon_sym_constexpr] = ACTIONS(1348), - [anon_sym_volatile] = ACTIONS(1348), - [anon_sym_restrict] = ACTIONS(1348), - [anon_sym___restrict__] = ACTIONS(1348), - [anon_sym__Atomic] = ACTIONS(1348), - [anon_sym__Noreturn] = ACTIONS(1348), - [anon_sym_noreturn] = ACTIONS(1348), - [sym_primitive_type] = ACTIONS(1348), - [anon_sym_enum] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1348), - [anon_sym_union] = ACTIONS(1348), - [anon_sym_if] = ACTIONS(1348), - [anon_sym_else] = ACTIONS(1348), - [anon_sym_switch] = ACTIONS(1348), - [anon_sym_case] = ACTIONS(1348), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_while] = ACTIONS(1348), - [anon_sym_do] = ACTIONS(1348), - [anon_sym_for] = ACTIONS(1348), - [anon_sym_return] = ACTIONS(1348), - [anon_sym_break] = ACTIONS(1348), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1348), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_sizeof] = ACTIONS(1348), - [anon_sym_offsetof] = ACTIONS(1348), - [anon_sym__Generic] = ACTIONS(1348), - [anon_sym_asm] = ACTIONS(1348), - [anon_sym___asm__] = ACTIONS(1348), - [sym_number_literal] = ACTIONS(1350), - [anon_sym_L_SQUOTE] = ACTIONS(1350), - [anon_sym_u_SQUOTE] = ACTIONS(1350), - [anon_sym_U_SQUOTE] = ACTIONS(1350), - [anon_sym_u8_SQUOTE] = ACTIONS(1350), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_L_DQUOTE] = ACTIONS(1350), - [anon_sym_u_DQUOTE] = ACTIONS(1350), - [anon_sym_U_DQUOTE] = ACTIONS(1350), - [anon_sym_u8_DQUOTE] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym_true] = ACTIONS(1348), - [sym_false] = ACTIONS(1348), - [anon_sym_NULL] = ACTIONS(1348), - [anon_sym_nullptr] = ACTIONS(1348), + [sym_identifier] = ACTIONS(1538), + [aux_sym_preproc_include_token1] = ACTIONS(1538), + [aux_sym_preproc_def_token1] = ACTIONS(1538), + [aux_sym_preproc_if_token1] = ACTIONS(1538), + [aux_sym_preproc_if_token2] = ACTIONS(1538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1538), + [aux_sym_preproc_else_token1] = ACTIONS(1538), + [aux_sym_preproc_elif_token1] = ACTIONS(1538), + [sym_preproc_directive] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(1540), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_AMP] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym___extension__] = ACTIONS(1538), + [anon_sym_typedef] = ACTIONS(1538), + [anon_sym_extern] = ACTIONS(1538), + [anon_sym___attribute__] = ACTIONS(1538), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1540), + [anon_sym___declspec] = ACTIONS(1538), + [anon_sym___cdecl] = ACTIONS(1538), + [anon_sym___clrcall] = ACTIONS(1538), + [anon_sym___stdcall] = ACTIONS(1538), + [anon_sym___fastcall] = ACTIONS(1538), + [anon_sym___thiscall] = ACTIONS(1538), + [anon_sym___vectorcall] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_signed] = ACTIONS(1538), + [anon_sym_unsigned] = ACTIONS(1538), + [anon_sym_long] = ACTIONS(1538), + [anon_sym_short] = ACTIONS(1538), + [anon_sym_static] = ACTIONS(1538), + [anon_sym_auto] = ACTIONS(1538), + [anon_sym_register] = ACTIONS(1538), + [anon_sym_inline] = ACTIONS(1538), + [anon_sym___inline] = ACTIONS(1538), + [anon_sym___inline__] = ACTIONS(1538), + [anon_sym___forceinline] = ACTIONS(1538), + [anon_sym_thread_local] = ACTIONS(1538), + [anon_sym___thread] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(1538), + [anon_sym_constexpr] = ACTIONS(1538), + [anon_sym_volatile] = ACTIONS(1538), + [anon_sym_restrict] = ACTIONS(1538), + [anon_sym___restrict__] = ACTIONS(1538), + [anon_sym__Atomic] = ACTIONS(1538), + [anon_sym__Noreturn] = ACTIONS(1538), + [anon_sym_noreturn] = ACTIONS(1538), + [sym_primitive_type] = ACTIONS(1538), + [anon_sym_enum] = ACTIONS(1538), + [anon_sym_struct] = ACTIONS(1538), + [anon_sym_union] = ACTIONS(1538), + [anon_sym_if] = ACTIONS(1538), + [anon_sym_switch] = ACTIONS(1538), + [anon_sym_case] = ACTIONS(1538), + [anon_sym_default] = ACTIONS(1538), + [anon_sym_while] = ACTIONS(1538), + [anon_sym_do] = ACTIONS(1538), + [anon_sym_for] = ACTIONS(1538), + [anon_sym_return] = ACTIONS(1538), + [anon_sym_break] = ACTIONS(1538), + [anon_sym_continue] = ACTIONS(1538), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_DASH_DASH] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1540), + [anon_sym_sizeof] = ACTIONS(1538), + [anon_sym___alignof__] = ACTIONS(1538), + [anon_sym___alignof] = ACTIONS(1538), + [anon_sym__alignof] = ACTIONS(1538), + [anon_sym_alignof] = ACTIONS(1538), + [anon_sym__Alignof] = ACTIONS(1538), + [anon_sym_offsetof] = ACTIONS(1538), + [anon_sym___builtin_va_arg] = ACTIONS(1538), + [anon_sym__Generic] = ACTIONS(1538), + [anon_sym_asm] = ACTIONS(1538), + [anon_sym___asm__] = ACTIONS(1538), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_L_SQUOTE] = ACTIONS(1540), + [anon_sym_u_SQUOTE] = ACTIONS(1540), + [anon_sym_U_SQUOTE] = ACTIONS(1540), + [anon_sym_u8_SQUOTE] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(1540), + [anon_sym_L_DQUOTE] = ACTIONS(1540), + [anon_sym_u_DQUOTE] = ACTIONS(1540), + [anon_sym_U_DQUOTE] = ACTIONS(1540), + [anon_sym_u8_DQUOTE] = ACTIONS(1540), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_true] = ACTIONS(1538), + [sym_false] = ACTIONS(1538), + [anon_sym_NULL] = ACTIONS(1538), + [anon_sym_nullptr] = ACTIONS(1538), [sym_comment] = ACTIONS(3), }, [250] = { - [ts_builtin_sym_end] = ACTIONS(1290), - [sym_identifier] = ACTIONS(1288), - [aux_sym_preproc_include_token1] = ACTIONS(1288), - [aux_sym_preproc_def_token1] = ACTIONS(1288), - [aux_sym_preproc_if_token1] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1288), - [sym_preproc_directive] = ACTIONS(1288), - [anon_sym_LPAREN2] = ACTIONS(1290), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym_typedef] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1288), - [anon_sym___attribute__] = ACTIONS(1288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), - [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(1290), - [anon_sym_signed] = ACTIONS(1288), - [anon_sym_unsigned] = ACTIONS(1288), - [anon_sym_long] = ACTIONS(1288), - [anon_sym_short] = ACTIONS(1288), - [anon_sym_static] = ACTIONS(1288), - [anon_sym_auto] = ACTIONS(1288), - [anon_sym_register] = ACTIONS(1288), - [anon_sym_inline] = ACTIONS(1288), - [anon_sym_thread_local] = ACTIONS(1288), - [anon_sym___thread] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_constexpr] = ACTIONS(1288), - [anon_sym_volatile] = ACTIONS(1288), - [anon_sym_restrict] = ACTIONS(1288), - [anon_sym___restrict__] = ACTIONS(1288), - [anon_sym__Atomic] = ACTIONS(1288), - [anon_sym__Noreturn] = ACTIONS(1288), - [anon_sym_noreturn] = 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(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1290), - [anon_sym_sizeof] = ACTIONS(1288), - [anon_sym_offsetof] = ACTIONS(1288), - [anon_sym__Generic] = ACTIONS(1288), - [anon_sym_asm] = ACTIONS(1288), - [anon_sym___asm__] = ACTIONS(1288), - [sym_number_literal] = ACTIONS(1290), - [anon_sym_L_SQUOTE] = ACTIONS(1290), - [anon_sym_u_SQUOTE] = ACTIONS(1290), - [anon_sym_U_SQUOTE] = ACTIONS(1290), - [anon_sym_u8_SQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1290), - [anon_sym_L_DQUOTE] = ACTIONS(1290), - [anon_sym_u_DQUOTE] = ACTIONS(1290), - [anon_sym_U_DQUOTE] = ACTIONS(1290), - [anon_sym_u8_DQUOTE] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [sym_true] = ACTIONS(1288), - [sym_false] = ACTIONS(1288), - [anon_sym_NULL] = ACTIONS(1288), - [anon_sym_nullptr] = ACTIONS(1288), + [sym_identifier] = ACTIONS(1522), + [aux_sym_preproc_include_token1] = ACTIONS(1522), + [aux_sym_preproc_def_token1] = ACTIONS(1522), + [aux_sym_preproc_if_token1] = ACTIONS(1522), + [aux_sym_preproc_if_token2] = ACTIONS(1522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1522), + [aux_sym_preproc_else_token1] = ACTIONS(1522), + [aux_sym_preproc_elif_token1] = ACTIONS(1522), + [sym_preproc_directive] = ACTIONS(1522), + [anon_sym_LPAREN2] = ACTIONS(1524), + [anon_sym_BANG] = ACTIONS(1524), + [anon_sym_TILDE] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1522), + [anon_sym_PLUS] = ACTIONS(1522), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(1522), + [anon_sym_typedef] = ACTIONS(1522), + [anon_sym_extern] = ACTIONS(1522), + [anon_sym___attribute__] = ACTIONS(1522), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1524), + [anon_sym___declspec] = ACTIONS(1522), + [anon_sym___cdecl] = ACTIONS(1522), + [anon_sym___clrcall] = ACTIONS(1522), + [anon_sym___stdcall] = ACTIONS(1522), + [anon_sym___fastcall] = ACTIONS(1522), + [anon_sym___thiscall] = ACTIONS(1522), + [anon_sym___vectorcall] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_signed] = ACTIONS(1522), + [anon_sym_unsigned] = ACTIONS(1522), + [anon_sym_long] = ACTIONS(1522), + [anon_sym_short] = ACTIONS(1522), + [anon_sym_static] = ACTIONS(1522), + [anon_sym_auto] = ACTIONS(1522), + [anon_sym_register] = ACTIONS(1522), + [anon_sym_inline] = ACTIONS(1522), + [anon_sym___inline] = ACTIONS(1522), + [anon_sym___inline__] = ACTIONS(1522), + [anon_sym___forceinline] = ACTIONS(1522), + [anon_sym_thread_local] = ACTIONS(1522), + [anon_sym___thread] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1522), + [anon_sym_constexpr] = ACTIONS(1522), + [anon_sym_volatile] = ACTIONS(1522), + [anon_sym_restrict] = ACTIONS(1522), + [anon_sym___restrict__] = ACTIONS(1522), + [anon_sym__Atomic] = ACTIONS(1522), + [anon_sym__Noreturn] = ACTIONS(1522), + [anon_sym_noreturn] = ACTIONS(1522), + [sym_primitive_type] = ACTIONS(1522), + [anon_sym_enum] = ACTIONS(1522), + [anon_sym_struct] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_if] = ACTIONS(1522), + [anon_sym_switch] = ACTIONS(1522), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_while] = ACTIONS(1522), + [anon_sym_do] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1522), + [anon_sym_return] = ACTIONS(1522), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_goto] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1524), + [anon_sym_PLUS_PLUS] = ACTIONS(1524), + [anon_sym_sizeof] = ACTIONS(1522), + [anon_sym___alignof__] = ACTIONS(1522), + [anon_sym___alignof] = ACTIONS(1522), + [anon_sym__alignof] = ACTIONS(1522), + [anon_sym_alignof] = ACTIONS(1522), + [anon_sym__Alignof] = ACTIONS(1522), + [anon_sym_offsetof] = ACTIONS(1522), + [anon_sym___builtin_va_arg] = ACTIONS(1522), + [anon_sym__Generic] = ACTIONS(1522), + [anon_sym_asm] = ACTIONS(1522), + [anon_sym___asm__] = ACTIONS(1522), + [sym_number_literal] = ACTIONS(1524), + [anon_sym_L_SQUOTE] = ACTIONS(1524), + [anon_sym_u_SQUOTE] = ACTIONS(1524), + [anon_sym_U_SQUOTE] = ACTIONS(1524), + [anon_sym_u8_SQUOTE] = ACTIONS(1524), + [anon_sym_SQUOTE] = ACTIONS(1524), + [anon_sym_L_DQUOTE] = ACTIONS(1524), + [anon_sym_u_DQUOTE] = ACTIONS(1524), + [anon_sym_U_DQUOTE] = ACTIONS(1524), + [anon_sym_u8_DQUOTE] = ACTIONS(1524), + [anon_sym_DQUOTE] = ACTIONS(1524), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [anon_sym_NULL] = ACTIONS(1522), + [anon_sym_nullptr] = ACTIONS(1522), [sym_comment] = ACTIONS(3), }, [251] = { - [sym_identifier] = ACTIONS(1352), - [aux_sym_preproc_include_token1] = ACTIONS(1352), - [aux_sym_preproc_def_token1] = ACTIONS(1352), - [aux_sym_preproc_if_token1] = ACTIONS(1352), - [aux_sym_preproc_if_token2] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), - [sym_preproc_directive] = ACTIONS(1352), - [anon_sym_LPAREN2] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1354), - [anon_sym_TILDE] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(1352), - [anon_sym_extern] = ACTIONS(1352), - [anon_sym___attribute__] = ACTIONS(1352), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), - [anon_sym___declspec] = ACTIONS(1352), - [anon_sym___cdecl] = ACTIONS(1352), - [anon_sym___clrcall] = ACTIONS(1352), - [anon_sym___stdcall] = ACTIONS(1352), - [anon_sym___fastcall] = ACTIONS(1352), - [anon_sym___thiscall] = ACTIONS(1352), - [anon_sym___vectorcall] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_signed] = ACTIONS(1352), - [anon_sym_unsigned] = ACTIONS(1352), - [anon_sym_long] = ACTIONS(1352), - [anon_sym_short] = ACTIONS(1352), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_auto] = ACTIONS(1352), - [anon_sym_register] = ACTIONS(1352), - [anon_sym_inline] = ACTIONS(1352), - [anon_sym_thread_local] = ACTIONS(1352), - [anon_sym___thread] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1352), - [anon_sym_constexpr] = ACTIONS(1352), - [anon_sym_volatile] = ACTIONS(1352), - [anon_sym_restrict] = ACTIONS(1352), - [anon_sym___restrict__] = ACTIONS(1352), - [anon_sym__Atomic] = ACTIONS(1352), - [anon_sym__Noreturn] = ACTIONS(1352), - [anon_sym_noreturn] = ACTIONS(1352), - [sym_primitive_type] = ACTIONS(1352), - [anon_sym_enum] = ACTIONS(1352), - [anon_sym_struct] = ACTIONS(1352), - [anon_sym_union] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1352), - [anon_sym_else] = ACTIONS(1352), - [anon_sym_switch] = ACTIONS(1352), - [anon_sym_case] = ACTIONS(1352), - [anon_sym_default] = ACTIONS(1352), - [anon_sym_while] = ACTIONS(1352), - [anon_sym_do] = ACTIONS(1352), - [anon_sym_for] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1352), - [anon_sym_break] = ACTIONS(1352), - [anon_sym_continue] = ACTIONS(1352), - [anon_sym_goto] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_sizeof] = ACTIONS(1352), - [anon_sym_offsetof] = ACTIONS(1352), - [anon_sym__Generic] = ACTIONS(1352), - [anon_sym_asm] = ACTIONS(1352), - [anon_sym___asm__] = ACTIONS(1352), - [sym_number_literal] = ACTIONS(1354), - [anon_sym_L_SQUOTE] = ACTIONS(1354), - [anon_sym_u_SQUOTE] = ACTIONS(1354), - [anon_sym_U_SQUOTE] = ACTIONS(1354), - [anon_sym_u8_SQUOTE] = ACTIONS(1354), - [anon_sym_SQUOTE] = ACTIONS(1354), - [anon_sym_L_DQUOTE] = ACTIONS(1354), - [anon_sym_u_DQUOTE] = ACTIONS(1354), - [anon_sym_U_DQUOTE] = ACTIONS(1354), - [anon_sym_u8_DQUOTE] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym_true] = ACTIONS(1352), - [sym_false] = ACTIONS(1352), - [anon_sym_NULL] = ACTIONS(1352), - [anon_sym_nullptr] = ACTIONS(1352), + [sym_identifier] = ACTIONS(1518), + [aux_sym_preproc_include_token1] = ACTIONS(1518), + [aux_sym_preproc_def_token1] = ACTIONS(1518), + [aux_sym_preproc_if_token1] = ACTIONS(1518), + [aux_sym_preproc_if_token2] = ACTIONS(1518), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1518), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1518), + [aux_sym_preproc_else_token1] = ACTIONS(1518), + [aux_sym_preproc_elif_token1] = ACTIONS(1518), + [sym_preproc_directive] = ACTIONS(1518), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_BANG] = ACTIONS(1520), + [anon_sym_TILDE] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_PLUS] = ACTIONS(1518), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_SEMI] = ACTIONS(1520), + [anon_sym___extension__] = ACTIONS(1518), + [anon_sym_typedef] = ACTIONS(1518), + [anon_sym_extern] = ACTIONS(1518), + [anon_sym___attribute__] = ACTIONS(1518), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1520), + [anon_sym___declspec] = ACTIONS(1518), + [anon_sym___cdecl] = ACTIONS(1518), + [anon_sym___clrcall] = ACTIONS(1518), + [anon_sym___stdcall] = ACTIONS(1518), + [anon_sym___fastcall] = ACTIONS(1518), + [anon_sym___thiscall] = ACTIONS(1518), + [anon_sym___vectorcall] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_signed] = ACTIONS(1518), + [anon_sym_unsigned] = ACTIONS(1518), + [anon_sym_long] = ACTIONS(1518), + [anon_sym_short] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_auto] = ACTIONS(1518), + [anon_sym_register] = ACTIONS(1518), + [anon_sym_inline] = ACTIONS(1518), + [anon_sym___inline] = ACTIONS(1518), + [anon_sym___inline__] = ACTIONS(1518), + [anon_sym___forceinline] = ACTIONS(1518), + [anon_sym_thread_local] = ACTIONS(1518), + [anon_sym___thread] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1518), + [anon_sym_constexpr] = ACTIONS(1518), + [anon_sym_volatile] = ACTIONS(1518), + [anon_sym_restrict] = ACTIONS(1518), + [anon_sym___restrict__] = ACTIONS(1518), + [anon_sym__Atomic] = ACTIONS(1518), + [anon_sym__Noreturn] = ACTIONS(1518), + [anon_sym_noreturn] = ACTIONS(1518), + [sym_primitive_type] = ACTIONS(1518), + [anon_sym_enum] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1518), + [anon_sym_union] = ACTIONS(1518), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1518), + [anon_sym_case] = ACTIONS(1518), + [anon_sym_default] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(1518), + [anon_sym_do] = ACTIONS(1518), + [anon_sym_for] = ACTIONS(1518), + [anon_sym_return] = ACTIONS(1518), + [anon_sym_break] = ACTIONS(1518), + [anon_sym_continue] = ACTIONS(1518), + [anon_sym_goto] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1520), + [anon_sym_PLUS_PLUS] = ACTIONS(1520), + [anon_sym_sizeof] = ACTIONS(1518), + [anon_sym___alignof__] = ACTIONS(1518), + [anon_sym___alignof] = ACTIONS(1518), + [anon_sym__alignof] = ACTIONS(1518), + [anon_sym_alignof] = ACTIONS(1518), + [anon_sym__Alignof] = ACTIONS(1518), + [anon_sym_offsetof] = ACTIONS(1518), + [anon_sym___builtin_va_arg] = ACTIONS(1518), + [anon_sym__Generic] = ACTIONS(1518), + [anon_sym_asm] = ACTIONS(1518), + [anon_sym___asm__] = ACTIONS(1518), + [sym_number_literal] = ACTIONS(1520), + [anon_sym_L_SQUOTE] = ACTIONS(1520), + [anon_sym_u_SQUOTE] = ACTIONS(1520), + [anon_sym_U_SQUOTE] = ACTIONS(1520), + [anon_sym_u8_SQUOTE] = ACTIONS(1520), + [anon_sym_SQUOTE] = ACTIONS(1520), + [anon_sym_L_DQUOTE] = ACTIONS(1520), + [anon_sym_u_DQUOTE] = ACTIONS(1520), + [anon_sym_U_DQUOTE] = ACTIONS(1520), + [anon_sym_u8_DQUOTE] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1520), + [sym_true] = ACTIONS(1518), + [sym_false] = ACTIONS(1518), + [anon_sym_NULL] = ACTIONS(1518), + [anon_sym_nullptr] = ACTIONS(1518), [sym_comment] = ACTIONS(3), }, [252] = { - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1292), - [aux_sym_preproc_def_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), - [sym_preproc_directive] = ACTIONS(1292), - [anon_sym_LPAREN2] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_typedef] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym___attribute__] = ACTIONS(1292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), - [anon_sym___declspec] = ACTIONS(1292), - [anon_sym___cdecl] = ACTIONS(1292), - [anon_sym___clrcall] = ACTIONS(1292), - [anon_sym___stdcall] = ACTIONS(1292), - [anon_sym___fastcall] = ACTIONS(1292), - [anon_sym___thiscall] = ACTIONS(1292), - [anon_sym___vectorcall] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym_thread_local] = ACTIONS(1292), - [anon_sym___thread] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_constexpr] = ACTIONS(1292), - [anon_sym_volatile] = ACTIONS(1292), - [anon_sym_restrict] = ACTIONS(1292), - [anon_sym___restrict__] = ACTIONS(1292), - [anon_sym__Atomic] = ACTIONS(1292), - [anon_sym__Noreturn] = ACTIONS(1292), - [anon_sym_noreturn] = ACTIONS(1292), - [sym_primitive_type] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_else] = ACTIONS(1292), - [anon_sym_switch] = ACTIONS(1292), - [anon_sym_case] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_do] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_goto] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_sizeof] = ACTIONS(1292), - [anon_sym_offsetof] = ACTIONS(1292), - [anon_sym__Generic] = ACTIONS(1292), - [anon_sym_asm] = ACTIONS(1292), - [anon_sym___asm__] = ACTIONS(1292), - [sym_number_literal] = ACTIONS(1294), - [anon_sym_L_SQUOTE] = ACTIONS(1294), - [anon_sym_u_SQUOTE] = ACTIONS(1294), - [anon_sym_U_SQUOTE] = ACTIONS(1294), - [anon_sym_u8_SQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1294), - [anon_sym_L_DQUOTE] = ACTIONS(1294), - [anon_sym_u_DQUOTE] = ACTIONS(1294), - [anon_sym_U_DQUOTE] = ACTIONS(1294), - [anon_sym_u8_DQUOTE] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_true] = ACTIONS(1292), - [sym_false] = ACTIONS(1292), - [anon_sym_NULL] = ACTIONS(1292), - [anon_sym_nullptr] = ACTIONS(1292), + [sym_identifier] = ACTIONS(1554), + [aux_sym_preproc_include_token1] = ACTIONS(1554), + [aux_sym_preproc_def_token1] = ACTIONS(1554), + [aux_sym_preproc_if_token1] = ACTIONS(1554), + [aux_sym_preproc_if_token2] = ACTIONS(1554), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1554), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1554), + [aux_sym_preproc_else_token1] = ACTIONS(1554), + [aux_sym_preproc_elif_token1] = ACTIONS(1554), + [sym_preproc_directive] = ACTIONS(1554), + [anon_sym_LPAREN2] = ACTIONS(1556), + [anon_sym_BANG] = ACTIONS(1556), + [anon_sym_TILDE] = ACTIONS(1556), + [anon_sym_DASH] = ACTIONS(1554), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1556), + [anon_sym___extension__] = ACTIONS(1554), + [anon_sym_typedef] = ACTIONS(1554), + [anon_sym_extern] = ACTIONS(1554), + [anon_sym___attribute__] = ACTIONS(1554), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), + [anon_sym___declspec] = ACTIONS(1554), + [anon_sym___cdecl] = ACTIONS(1554), + [anon_sym___clrcall] = ACTIONS(1554), + [anon_sym___stdcall] = ACTIONS(1554), + [anon_sym___fastcall] = ACTIONS(1554), + [anon_sym___thiscall] = ACTIONS(1554), + [anon_sym___vectorcall] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_signed] = ACTIONS(1554), + [anon_sym_unsigned] = ACTIONS(1554), + [anon_sym_long] = ACTIONS(1554), + [anon_sym_short] = ACTIONS(1554), + [anon_sym_static] = ACTIONS(1554), + [anon_sym_auto] = ACTIONS(1554), + [anon_sym_register] = ACTIONS(1554), + [anon_sym_inline] = ACTIONS(1554), + [anon_sym___inline] = ACTIONS(1554), + [anon_sym___inline__] = ACTIONS(1554), + [anon_sym___forceinline] = ACTIONS(1554), + [anon_sym_thread_local] = ACTIONS(1554), + [anon_sym___thread] = ACTIONS(1554), + [anon_sym_const] = ACTIONS(1554), + [anon_sym_constexpr] = ACTIONS(1554), + [anon_sym_volatile] = ACTIONS(1554), + [anon_sym_restrict] = ACTIONS(1554), + [anon_sym___restrict__] = ACTIONS(1554), + [anon_sym__Atomic] = ACTIONS(1554), + [anon_sym__Noreturn] = ACTIONS(1554), + [anon_sym_noreturn] = ACTIONS(1554), + [sym_primitive_type] = ACTIONS(1554), + [anon_sym_enum] = ACTIONS(1554), + [anon_sym_struct] = ACTIONS(1554), + [anon_sym_union] = ACTIONS(1554), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_switch] = ACTIONS(1554), + [anon_sym_case] = ACTIONS(1554), + [anon_sym_default] = ACTIONS(1554), + [anon_sym_while] = ACTIONS(1554), + [anon_sym_do] = ACTIONS(1554), + [anon_sym_for] = ACTIONS(1554), + [anon_sym_return] = ACTIONS(1554), + [anon_sym_break] = ACTIONS(1554), + [anon_sym_continue] = ACTIONS(1554), + [anon_sym_goto] = ACTIONS(1554), + [anon_sym_DASH_DASH] = ACTIONS(1556), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_sizeof] = ACTIONS(1554), + [anon_sym___alignof__] = ACTIONS(1554), + [anon_sym___alignof] = ACTIONS(1554), + [anon_sym__alignof] = ACTIONS(1554), + [anon_sym_alignof] = ACTIONS(1554), + [anon_sym__Alignof] = ACTIONS(1554), + [anon_sym_offsetof] = ACTIONS(1554), + [anon_sym___builtin_va_arg] = ACTIONS(1554), + [anon_sym__Generic] = ACTIONS(1554), + [anon_sym_asm] = ACTIONS(1554), + [anon_sym___asm__] = ACTIONS(1554), + [sym_number_literal] = ACTIONS(1556), + [anon_sym_L_SQUOTE] = ACTIONS(1556), + [anon_sym_u_SQUOTE] = ACTIONS(1556), + [anon_sym_U_SQUOTE] = ACTIONS(1556), + [anon_sym_u8_SQUOTE] = ACTIONS(1556), + [anon_sym_SQUOTE] = ACTIONS(1556), + [anon_sym_L_DQUOTE] = ACTIONS(1556), + [anon_sym_u_DQUOTE] = ACTIONS(1556), + [anon_sym_U_DQUOTE] = ACTIONS(1556), + [anon_sym_u8_DQUOTE] = ACTIONS(1556), + [anon_sym_DQUOTE] = ACTIONS(1556), + [sym_true] = ACTIONS(1554), + [sym_false] = ACTIONS(1554), + [anon_sym_NULL] = ACTIONS(1554), + [anon_sym_nullptr] = ACTIONS(1554), [sym_comment] = ACTIONS(3), }, [253] = { - [ts_builtin_sym_end] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1562), + [aux_sym_preproc_include_token1] = ACTIONS(1562), + [aux_sym_preproc_def_token1] = ACTIONS(1562), + [aux_sym_preproc_if_token1] = ACTIONS(1562), + [aux_sym_preproc_if_token2] = ACTIONS(1562), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1562), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1562), + [aux_sym_preproc_else_token1] = ACTIONS(1562), + [aux_sym_preproc_elif_token1] = ACTIONS(1562), + [sym_preproc_directive] = ACTIONS(1562), + [anon_sym_LPAREN2] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1564), + [anon_sym_TILDE] = ACTIONS(1564), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1564), + [anon_sym_AMP] = ACTIONS(1564), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym___extension__] = ACTIONS(1562), + [anon_sym_typedef] = ACTIONS(1562), + [anon_sym_extern] = ACTIONS(1562), + [anon_sym___attribute__] = ACTIONS(1562), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym___declspec] = ACTIONS(1562), + [anon_sym___cdecl] = ACTIONS(1562), + [anon_sym___clrcall] = ACTIONS(1562), + [anon_sym___stdcall] = ACTIONS(1562), + [anon_sym___fastcall] = ACTIONS(1562), + [anon_sym___thiscall] = ACTIONS(1562), + [anon_sym___vectorcall] = ACTIONS(1562), + [anon_sym_LBRACE] = ACTIONS(1564), + [anon_sym_signed] = ACTIONS(1562), + [anon_sym_unsigned] = ACTIONS(1562), + [anon_sym_long] = ACTIONS(1562), + [anon_sym_short] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1562), + [anon_sym_auto] = ACTIONS(1562), + [anon_sym_register] = ACTIONS(1562), + [anon_sym_inline] = ACTIONS(1562), + [anon_sym___inline] = ACTIONS(1562), + [anon_sym___inline__] = ACTIONS(1562), + [anon_sym___forceinline] = ACTIONS(1562), + [anon_sym_thread_local] = ACTIONS(1562), + [anon_sym___thread] = ACTIONS(1562), + [anon_sym_const] = ACTIONS(1562), + [anon_sym_constexpr] = ACTIONS(1562), + [anon_sym_volatile] = ACTIONS(1562), + [anon_sym_restrict] = ACTIONS(1562), + [anon_sym___restrict__] = ACTIONS(1562), + [anon_sym__Atomic] = ACTIONS(1562), + [anon_sym__Noreturn] = ACTIONS(1562), + [anon_sym_noreturn] = ACTIONS(1562), + [sym_primitive_type] = ACTIONS(1562), + [anon_sym_enum] = ACTIONS(1562), + [anon_sym_struct] = ACTIONS(1562), + [anon_sym_union] = ACTIONS(1562), + [anon_sym_if] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1562), + [anon_sym_case] = ACTIONS(1562), + [anon_sym_default] = ACTIONS(1562), + [anon_sym_while] = ACTIONS(1562), + [anon_sym_do] = ACTIONS(1562), + [anon_sym_for] = ACTIONS(1562), + [anon_sym_return] = ACTIONS(1562), + [anon_sym_break] = ACTIONS(1562), + [anon_sym_continue] = ACTIONS(1562), + [anon_sym_goto] = ACTIONS(1562), + [anon_sym_DASH_DASH] = ACTIONS(1564), + [anon_sym_PLUS_PLUS] = ACTIONS(1564), + [anon_sym_sizeof] = ACTIONS(1562), + [anon_sym___alignof__] = ACTIONS(1562), + [anon_sym___alignof] = ACTIONS(1562), + [anon_sym__alignof] = ACTIONS(1562), + [anon_sym_alignof] = ACTIONS(1562), + [anon_sym__Alignof] = ACTIONS(1562), + [anon_sym_offsetof] = ACTIONS(1562), + [anon_sym___builtin_va_arg] = ACTIONS(1562), + [anon_sym__Generic] = ACTIONS(1562), + [anon_sym_asm] = ACTIONS(1562), + [anon_sym___asm__] = ACTIONS(1562), + [sym_number_literal] = ACTIONS(1564), + [anon_sym_L_SQUOTE] = ACTIONS(1564), + [anon_sym_u_SQUOTE] = ACTIONS(1564), + [anon_sym_U_SQUOTE] = ACTIONS(1564), + [anon_sym_u8_SQUOTE] = ACTIONS(1564), + [anon_sym_SQUOTE] = ACTIONS(1564), + [anon_sym_L_DQUOTE] = ACTIONS(1564), + [anon_sym_u_DQUOTE] = ACTIONS(1564), + [anon_sym_U_DQUOTE] = ACTIONS(1564), + [anon_sym_u8_DQUOTE] = ACTIONS(1564), + [anon_sym_DQUOTE] = ACTIONS(1564), + [sym_true] = ACTIONS(1562), + [sym_false] = ACTIONS(1562), + [anon_sym_NULL] = ACTIONS(1562), + [anon_sym_nullptr] = ACTIONS(1562), + [sym_comment] = ACTIONS(3), + }, + [254] = { + [sym_identifier] = ACTIONS(1566), + [aux_sym_preproc_include_token1] = ACTIONS(1566), + [aux_sym_preproc_def_token1] = ACTIONS(1566), + [aux_sym_preproc_if_token1] = ACTIONS(1566), + [aux_sym_preproc_if_token2] = ACTIONS(1566), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1566), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1566), + [aux_sym_preproc_else_token1] = ACTIONS(1566), + [aux_sym_preproc_elif_token1] = ACTIONS(1566), + [sym_preproc_directive] = ACTIONS(1566), + [anon_sym_LPAREN2] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1568), + [anon_sym_TILDE] = ACTIONS(1568), + [anon_sym_DASH] = ACTIONS(1566), + [anon_sym_PLUS] = ACTIONS(1566), + [anon_sym_STAR] = ACTIONS(1568), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_SEMI] = ACTIONS(1568), + [anon_sym___extension__] = ACTIONS(1566), + [anon_sym_typedef] = ACTIONS(1566), + [anon_sym_extern] = ACTIONS(1566), + [anon_sym___attribute__] = ACTIONS(1566), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), + [anon_sym___declspec] = ACTIONS(1566), + [anon_sym___cdecl] = ACTIONS(1566), + [anon_sym___clrcall] = ACTIONS(1566), + [anon_sym___stdcall] = ACTIONS(1566), + [anon_sym___fastcall] = ACTIONS(1566), + [anon_sym___thiscall] = ACTIONS(1566), + [anon_sym___vectorcall] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_signed] = ACTIONS(1566), + [anon_sym_unsigned] = ACTIONS(1566), + [anon_sym_long] = ACTIONS(1566), + [anon_sym_short] = ACTIONS(1566), + [anon_sym_static] = ACTIONS(1566), + [anon_sym_auto] = ACTIONS(1566), + [anon_sym_register] = ACTIONS(1566), + [anon_sym_inline] = ACTIONS(1566), + [anon_sym___inline] = ACTIONS(1566), + [anon_sym___inline__] = ACTIONS(1566), + [anon_sym___forceinline] = ACTIONS(1566), + [anon_sym_thread_local] = ACTIONS(1566), + [anon_sym___thread] = ACTIONS(1566), + [anon_sym_const] = ACTIONS(1566), + [anon_sym_constexpr] = ACTIONS(1566), + [anon_sym_volatile] = ACTIONS(1566), + [anon_sym_restrict] = ACTIONS(1566), + [anon_sym___restrict__] = ACTIONS(1566), + [anon_sym__Atomic] = ACTIONS(1566), + [anon_sym__Noreturn] = ACTIONS(1566), + [anon_sym_noreturn] = ACTIONS(1566), + [sym_primitive_type] = ACTIONS(1566), + [anon_sym_enum] = ACTIONS(1566), + [anon_sym_struct] = ACTIONS(1566), + [anon_sym_union] = ACTIONS(1566), + [anon_sym_if] = ACTIONS(1566), + [anon_sym_switch] = ACTIONS(1566), + [anon_sym_case] = ACTIONS(1566), + [anon_sym_default] = ACTIONS(1566), + [anon_sym_while] = ACTIONS(1566), + [anon_sym_do] = ACTIONS(1566), + [anon_sym_for] = ACTIONS(1566), + [anon_sym_return] = ACTIONS(1566), + [anon_sym_break] = ACTIONS(1566), + [anon_sym_continue] = ACTIONS(1566), + [anon_sym_goto] = ACTIONS(1566), + [anon_sym_DASH_DASH] = ACTIONS(1568), + [anon_sym_PLUS_PLUS] = ACTIONS(1568), + [anon_sym_sizeof] = ACTIONS(1566), + [anon_sym___alignof__] = ACTIONS(1566), + [anon_sym___alignof] = ACTIONS(1566), + [anon_sym__alignof] = ACTIONS(1566), + [anon_sym_alignof] = ACTIONS(1566), + [anon_sym__Alignof] = ACTIONS(1566), + [anon_sym_offsetof] = ACTIONS(1566), + [anon_sym___builtin_va_arg] = ACTIONS(1566), + [anon_sym__Generic] = ACTIONS(1566), + [anon_sym_asm] = ACTIONS(1566), + [anon_sym___asm__] = ACTIONS(1566), + [sym_number_literal] = ACTIONS(1568), + [anon_sym_L_SQUOTE] = ACTIONS(1568), + [anon_sym_u_SQUOTE] = ACTIONS(1568), + [anon_sym_U_SQUOTE] = ACTIONS(1568), + [anon_sym_u8_SQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1568), + [anon_sym_L_DQUOTE] = ACTIONS(1568), + [anon_sym_u_DQUOTE] = ACTIONS(1568), + [anon_sym_U_DQUOTE] = ACTIONS(1568), + [anon_sym_u8_DQUOTE] = ACTIONS(1568), + [anon_sym_DQUOTE] = ACTIONS(1568), + [sym_true] = ACTIONS(1566), + [sym_false] = ACTIONS(1566), + [anon_sym_NULL] = ACTIONS(1566), + [anon_sym_nullptr] = ACTIONS(1566), + [sym_comment] = ACTIONS(3), + }, + [255] = { + [sym_identifier] = ACTIONS(1472), + [aux_sym_preproc_include_token1] = ACTIONS(1472), + [aux_sym_preproc_def_token1] = ACTIONS(1472), + [aux_sym_preproc_if_token1] = ACTIONS(1472), + [aux_sym_preproc_if_token2] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), + [aux_sym_preproc_else_token1] = ACTIONS(1472), + [aux_sym_preproc_elif_token1] = ACTIONS(1472), + [sym_preproc_directive] = ACTIONS(1472), + [anon_sym_LPAREN2] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym___extension__] = ACTIONS(1472), + [anon_sym_typedef] = ACTIONS(1472), + [anon_sym_extern] = ACTIONS(1472), + [anon_sym___attribute__] = ACTIONS(1472), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), + [anon_sym___declspec] = ACTIONS(1472), + [anon_sym___cdecl] = ACTIONS(1472), + [anon_sym___clrcall] = ACTIONS(1472), + [anon_sym___stdcall] = ACTIONS(1472), + [anon_sym___fastcall] = ACTIONS(1472), + [anon_sym___thiscall] = ACTIONS(1472), + [anon_sym___vectorcall] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_signed] = ACTIONS(1472), + [anon_sym_unsigned] = ACTIONS(1472), + [anon_sym_long] = ACTIONS(1472), + [anon_sym_short] = ACTIONS(1472), + [anon_sym_static] = ACTIONS(1472), + [anon_sym_auto] = ACTIONS(1472), + [anon_sym_register] = ACTIONS(1472), + [anon_sym_inline] = ACTIONS(1472), + [anon_sym___inline] = ACTIONS(1472), + [anon_sym___inline__] = ACTIONS(1472), + [anon_sym___forceinline] = ACTIONS(1472), + [anon_sym_thread_local] = ACTIONS(1472), + [anon_sym___thread] = ACTIONS(1472), + [anon_sym_const] = ACTIONS(1472), + [anon_sym_constexpr] = ACTIONS(1472), + [anon_sym_volatile] = ACTIONS(1472), + [anon_sym_restrict] = ACTIONS(1472), + [anon_sym___restrict__] = ACTIONS(1472), + [anon_sym__Atomic] = ACTIONS(1472), + [anon_sym__Noreturn] = ACTIONS(1472), + [anon_sym_noreturn] = ACTIONS(1472), + [sym_primitive_type] = ACTIONS(1472), + [anon_sym_enum] = ACTIONS(1472), + [anon_sym_struct] = ACTIONS(1472), + [anon_sym_union] = ACTIONS(1472), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_switch] = ACTIONS(1472), + [anon_sym_case] = ACTIONS(1472), + [anon_sym_default] = ACTIONS(1472), + [anon_sym_while] = ACTIONS(1472), + [anon_sym_do] = ACTIONS(1472), + [anon_sym_for] = ACTIONS(1472), + [anon_sym_return] = ACTIONS(1472), + [anon_sym_break] = ACTIONS(1472), + [anon_sym_continue] = ACTIONS(1472), + [anon_sym_goto] = ACTIONS(1472), + [anon_sym_DASH_DASH] = ACTIONS(1474), + [anon_sym_PLUS_PLUS] = ACTIONS(1474), + [anon_sym_sizeof] = ACTIONS(1472), + [anon_sym___alignof__] = ACTIONS(1472), + [anon_sym___alignof] = ACTIONS(1472), + [anon_sym__alignof] = ACTIONS(1472), + [anon_sym_alignof] = ACTIONS(1472), + [anon_sym__Alignof] = ACTIONS(1472), + [anon_sym_offsetof] = ACTIONS(1472), + [anon_sym___builtin_va_arg] = ACTIONS(1472), + [anon_sym__Generic] = ACTIONS(1472), + [anon_sym_asm] = ACTIONS(1472), + [anon_sym___asm__] = ACTIONS(1472), + [sym_number_literal] = ACTIONS(1474), + [anon_sym_L_SQUOTE] = ACTIONS(1474), + [anon_sym_u_SQUOTE] = ACTIONS(1474), + [anon_sym_U_SQUOTE] = ACTIONS(1474), + [anon_sym_u8_SQUOTE] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1474), + [anon_sym_L_DQUOTE] = ACTIONS(1474), + [anon_sym_u_DQUOTE] = ACTIONS(1474), + [anon_sym_U_DQUOTE] = ACTIONS(1474), + [anon_sym_u8_DQUOTE] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [sym_true] = ACTIONS(1472), + [sym_false] = ACTIONS(1472), + [anon_sym_NULL] = ACTIONS(1472), + [anon_sym_nullptr] = ACTIONS(1472), + [sym_comment] = ACTIONS(3), + }, + [256] = { + [ts_builtin_sym_end] = ACTIONS(1418), + [sym_identifier] = ACTIONS(1416), + [aux_sym_preproc_include_token1] = ACTIONS(1416), + [aux_sym_preproc_def_token1] = ACTIONS(1416), + [aux_sym_preproc_if_token1] = ACTIONS(1416), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1416), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1416), + [sym_preproc_directive] = ACTIONS(1416), + [anon_sym_LPAREN2] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(1416), + [anon_sym_typedef] = ACTIONS(1416), + [anon_sym_extern] = ACTIONS(1416), + [anon_sym___attribute__] = ACTIONS(1416), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), + [anon_sym___declspec] = ACTIONS(1416), + [anon_sym___cdecl] = ACTIONS(1416), + [anon_sym___clrcall] = ACTIONS(1416), + [anon_sym___stdcall] = ACTIONS(1416), + [anon_sym___fastcall] = ACTIONS(1416), + [anon_sym___thiscall] = ACTIONS(1416), + [anon_sym___vectorcall] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_signed] = ACTIONS(1416), + [anon_sym_unsigned] = ACTIONS(1416), + [anon_sym_long] = ACTIONS(1416), + [anon_sym_short] = ACTIONS(1416), + [anon_sym_static] = ACTIONS(1416), + [anon_sym_auto] = ACTIONS(1416), + [anon_sym_register] = ACTIONS(1416), + [anon_sym_inline] = ACTIONS(1416), + [anon_sym___inline] = ACTIONS(1416), + [anon_sym___inline__] = ACTIONS(1416), + [anon_sym___forceinline] = ACTIONS(1416), + [anon_sym_thread_local] = ACTIONS(1416), + [anon_sym___thread] = ACTIONS(1416), + [anon_sym_const] = ACTIONS(1416), + [anon_sym_constexpr] = ACTIONS(1416), + [anon_sym_volatile] = ACTIONS(1416), + [anon_sym_restrict] = ACTIONS(1416), + [anon_sym___restrict__] = ACTIONS(1416), + [anon_sym__Atomic] = ACTIONS(1416), + [anon_sym__Noreturn] = ACTIONS(1416), + [anon_sym_noreturn] = ACTIONS(1416), + [sym_primitive_type] = ACTIONS(1416), + [anon_sym_enum] = ACTIONS(1416), + [anon_sym_struct] = ACTIONS(1416), + [anon_sym_union] = ACTIONS(1416), + [anon_sym_if] = ACTIONS(1416), + [anon_sym_else] = ACTIONS(1416), + [anon_sym_switch] = ACTIONS(1416), + [anon_sym_case] = ACTIONS(1416), + [anon_sym_default] = ACTIONS(1416), + [anon_sym_while] = ACTIONS(1416), + [anon_sym_do] = ACTIONS(1416), + [anon_sym_for] = ACTIONS(1416), + [anon_sym_return] = ACTIONS(1416), + [anon_sym_break] = ACTIONS(1416), + [anon_sym_continue] = ACTIONS(1416), + [anon_sym_goto] = ACTIONS(1416), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_sizeof] = ACTIONS(1416), + [anon_sym___alignof__] = ACTIONS(1416), + [anon_sym___alignof] = ACTIONS(1416), + [anon_sym__alignof] = ACTIONS(1416), + [anon_sym_alignof] = ACTIONS(1416), + [anon_sym__Alignof] = ACTIONS(1416), + [anon_sym_offsetof] = ACTIONS(1416), + [anon_sym___builtin_va_arg] = ACTIONS(1416), + [anon_sym__Generic] = ACTIONS(1416), + [anon_sym_asm] = ACTIONS(1416), + [anon_sym___asm__] = ACTIONS(1416), + [sym_number_literal] = ACTIONS(1418), + [anon_sym_L_SQUOTE] = ACTIONS(1418), + [anon_sym_u_SQUOTE] = ACTIONS(1418), + [anon_sym_U_SQUOTE] = ACTIONS(1418), + [anon_sym_u8_SQUOTE] = ACTIONS(1418), + [anon_sym_SQUOTE] = ACTIONS(1418), + [anon_sym_L_DQUOTE] = ACTIONS(1418), + [anon_sym_u_DQUOTE] = ACTIONS(1418), + [anon_sym_U_DQUOTE] = ACTIONS(1418), + [anon_sym_u8_DQUOTE] = ACTIONS(1418), + [anon_sym_DQUOTE] = ACTIONS(1418), + [sym_true] = ACTIONS(1416), + [sym_false] = ACTIONS(1416), + [anon_sym_NULL] = ACTIONS(1416), + [anon_sym_nullptr] = ACTIONS(1416), + [sym_comment] = ACTIONS(3), + }, + [257] = { [sym_identifier] = ACTIONS(1296), [aux_sym_preproc_include_token1] = ACTIONS(1296), [aux_sym_preproc_def_token1] = ACTIONS(1296), @@ -42456,6 +46345,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1298), [anon_sym_AMP] = ACTIONS(1298), [anon_sym_SEMI] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(1296), [anon_sym_typedef] = ACTIONS(1296), [anon_sym_extern] = ACTIONS(1296), [anon_sym___attribute__] = ACTIONS(1296), @@ -42468,6 +46358,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1296), [anon_sym___vectorcall] = ACTIONS(1296), [anon_sym_LBRACE] = ACTIONS(1298), + [anon_sym_RBRACE] = ACTIONS(1298), [anon_sym_signed] = ACTIONS(1296), [anon_sym_unsigned] = ACTIONS(1296), [anon_sym_long] = ACTIONS(1296), @@ -42476,6 +46367,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1296), [anon_sym_register] = ACTIONS(1296), [anon_sym_inline] = ACTIONS(1296), + [anon_sym___inline] = ACTIONS(1296), + [anon_sym___inline__] = ACTIONS(1296), + [anon_sym___forceinline] = ACTIONS(1296), [anon_sym_thread_local] = ACTIONS(1296), [anon_sym___thread] = ACTIONS(1296), [anon_sym_const] = ACTIONS(1296), @@ -42505,7 +46399,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1298), [anon_sym_PLUS_PLUS] = ACTIONS(1298), [anon_sym_sizeof] = ACTIONS(1296), + [anon_sym___alignof__] = ACTIONS(1296), + [anon_sym___alignof] = ACTIONS(1296), + [anon_sym__alignof] = ACTIONS(1296), + [anon_sym_alignof] = ACTIONS(1296), + [anon_sym__Alignof] = ACTIONS(1296), [anon_sym_offsetof] = ACTIONS(1296), + [anon_sym___builtin_va_arg] = ACTIONS(1296), [anon_sym__Generic] = ACTIONS(1296), [anon_sym_asm] = ACTIONS(1296), [anon_sym___asm__] = ACTIONS(1296), @@ -42526,969 +46426,303 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1296), [sym_comment] = ACTIONS(3), }, - [254] = { - [ts_builtin_sym_end] = ACTIONS(1302), - [sym_identifier] = ACTIONS(1300), - [aux_sym_preproc_include_token1] = ACTIONS(1300), - [aux_sym_preproc_def_token1] = ACTIONS(1300), - [aux_sym_preproc_if_token1] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), - [sym_preproc_directive] = ACTIONS(1300), - [anon_sym_LPAREN2] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym_typedef] = ACTIONS(1300), - [anon_sym_extern] = ACTIONS(1300), - [anon_sym___attribute__] = ACTIONS(1300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), - [anon_sym___declspec] = ACTIONS(1300), - [anon_sym___cdecl] = ACTIONS(1300), - [anon_sym___clrcall] = ACTIONS(1300), - [anon_sym___stdcall] = ACTIONS(1300), - [anon_sym___fastcall] = ACTIONS(1300), - [anon_sym___thiscall] = ACTIONS(1300), - [anon_sym___vectorcall] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_signed] = ACTIONS(1300), - [anon_sym_unsigned] = ACTIONS(1300), - [anon_sym_long] = ACTIONS(1300), - [anon_sym_short] = ACTIONS(1300), - [anon_sym_static] = ACTIONS(1300), - [anon_sym_auto] = ACTIONS(1300), - [anon_sym_register] = ACTIONS(1300), - [anon_sym_inline] = ACTIONS(1300), - [anon_sym_thread_local] = ACTIONS(1300), - [anon_sym___thread] = ACTIONS(1300), - [anon_sym_const] = ACTIONS(1300), - [anon_sym_constexpr] = ACTIONS(1300), - [anon_sym_volatile] = ACTIONS(1300), - [anon_sym_restrict] = ACTIONS(1300), - [anon_sym___restrict__] = ACTIONS(1300), - [anon_sym__Atomic] = ACTIONS(1300), - [anon_sym__Noreturn] = ACTIONS(1300), - [anon_sym_noreturn] = ACTIONS(1300), - [sym_primitive_type] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1300), - [anon_sym_struct] = ACTIONS(1300), - [anon_sym_union] = ACTIONS(1300), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_else] = ACTIONS(1300), - [anon_sym_switch] = ACTIONS(1300), - [anon_sym_case] = ACTIONS(1300), - [anon_sym_default] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_do] = ACTIONS(1300), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_goto] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_sizeof] = ACTIONS(1300), - [anon_sym_offsetof] = ACTIONS(1300), - [anon_sym__Generic] = ACTIONS(1300), - [anon_sym_asm] = ACTIONS(1300), - [anon_sym___asm__] = ACTIONS(1300), - [sym_number_literal] = ACTIONS(1302), - [anon_sym_L_SQUOTE] = ACTIONS(1302), - [anon_sym_u_SQUOTE] = ACTIONS(1302), - [anon_sym_U_SQUOTE] = ACTIONS(1302), - [anon_sym_u8_SQUOTE] = ACTIONS(1302), - [anon_sym_SQUOTE] = ACTIONS(1302), - [anon_sym_L_DQUOTE] = ACTIONS(1302), - [anon_sym_u_DQUOTE] = ACTIONS(1302), - [anon_sym_U_DQUOTE] = ACTIONS(1302), - [anon_sym_u8_DQUOTE] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [anon_sym_NULL] = ACTIONS(1300), - [anon_sym_nullptr] = ACTIONS(1300), - [sym_comment] = ACTIONS(3), - }, - [255] = { - [ts_builtin_sym_end] = ACTIONS(1306), - [sym_identifier] = ACTIONS(1304), - [aux_sym_preproc_include_token1] = ACTIONS(1304), - [aux_sym_preproc_def_token1] = ACTIONS(1304), - [aux_sym_preproc_if_token1] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), - [sym_preproc_directive] = ACTIONS(1304), - [anon_sym_LPAREN2] = ACTIONS(1306), - [anon_sym_BANG] = ACTIONS(1306), - [anon_sym_TILDE] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1304), - [anon_sym_extern] = ACTIONS(1304), - [anon_sym___attribute__] = ACTIONS(1304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), - [anon_sym___declspec] = ACTIONS(1304), - [anon_sym___cdecl] = ACTIONS(1304), - [anon_sym___clrcall] = ACTIONS(1304), - [anon_sym___stdcall] = ACTIONS(1304), - [anon_sym___fastcall] = ACTIONS(1304), - [anon_sym___thiscall] = ACTIONS(1304), - [anon_sym___vectorcall] = ACTIONS(1304), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_signed] = ACTIONS(1304), - [anon_sym_unsigned] = ACTIONS(1304), - [anon_sym_long] = ACTIONS(1304), - [anon_sym_short] = ACTIONS(1304), - [anon_sym_static] = ACTIONS(1304), - [anon_sym_auto] = ACTIONS(1304), - [anon_sym_register] = ACTIONS(1304), - [anon_sym_inline] = ACTIONS(1304), - [anon_sym_thread_local] = ACTIONS(1304), - [anon_sym___thread] = ACTIONS(1304), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_constexpr] = ACTIONS(1304), - [anon_sym_volatile] = ACTIONS(1304), - [anon_sym_restrict] = ACTIONS(1304), - [anon_sym___restrict__] = ACTIONS(1304), - [anon_sym__Atomic] = ACTIONS(1304), - [anon_sym__Noreturn] = ACTIONS(1304), - [anon_sym_noreturn] = ACTIONS(1304), - [sym_primitive_type] = ACTIONS(1304), - [anon_sym_enum] = ACTIONS(1304), - [anon_sym_struct] = ACTIONS(1304), - [anon_sym_union] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1304), - [anon_sym_else] = ACTIONS(1304), - [anon_sym_switch] = ACTIONS(1304), - [anon_sym_case] = ACTIONS(1304), - [anon_sym_default] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1304), - [anon_sym_do] = ACTIONS(1304), - [anon_sym_for] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1304), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_goto] = ACTIONS(1304), - [anon_sym_DASH_DASH] = ACTIONS(1306), - [anon_sym_PLUS_PLUS] = ACTIONS(1306), - [anon_sym_sizeof] = ACTIONS(1304), - [anon_sym_offsetof] = ACTIONS(1304), - [anon_sym__Generic] = ACTIONS(1304), - [anon_sym_asm] = ACTIONS(1304), - [anon_sym___asm__] = ACTIONS(1304), - [sym_number_literal] = ACTIONS(1306), - [anon_sym_L_SQUOTE] = ACTIONS(1306), - [anon_sym_u_SQUOTE] = ACTIONS(1306), - [anon_sym_U_SQUOTE] = ACTIONS(1306), - [anon_sym_u8_SQUOTE] = ACTIONS(1306), - [anon_sym_SQUOTE] = ACTIONS(1306), - [anon_sym_L_DQUOTE] = ACTIONS(1306), - [anon_sym_u_DQUOTE] = ACTIONS(1306), - [anon_sym_U_DQUOTE] = ACTIONS(1306), - [anon_sym_u8_DQUOTE] = ACTIONS(1306), - [anon_sym_DQUOTE] = ACTIONS(1306), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [anon_sym_NULL] = ACTIONS(1304), - [anon_sym_nullptr] = ACTIONS(1304), - [sym_comment] = ACTIONS(3), - }, - [256] = { - [ts_builtin_sym_end] = ACTIONS(1254), - [sym_identifier] = ACTIONS(1252), - [aux_sym_preproc_include_token1] = ACTIONS(1252), - [aux_sym_preproc_def_token1] = ACTIONS(1252), - [aux_sym_preproc_if_token1] = ACTIONS(1252), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1252), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1252), - [sym_preproc_directive] = ACTIONS(1252), - [anon_sym_LPAREN2] = ACTIONS(1254), - [anon_sym_BANG] = ACTIONS(1254), - [anon_sym_TILDE] = ACTIONS(1254), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1254), - [anon_sym_typedef] = ACTIONS(1252), - [anon_sym_extern] = ACTIONS(1252), - [anon_sym___attribute__] = ACTIONS(1252), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1254), - [anon_sym___declspec] = ACTIONS(1252), - [anon_sym___cdecl] = ACTIONS(1252), - [anon_sym___clrcall] = ACTIONS(1252), - [anon_sym___stdcall] = ACTIONS(1252), - [anon_sym___fastcall] = ACTIONS(1252), - [anon_sym___thiscall] = ACTIONS(1252), - [anon_sym___vectorcall] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_signed] = ACTIONS(1252), - [anon_sym_unsigned] = ACTIONS(1252), - [anon_sym_long] = ACTIONS(1252), - [anon_sym_short] = ACTIONS(1252), - [anon_sym_static] = ACTIONS(1252), - [anon_sym_auto] = ACTIONS(1252), - [anon_sym_register] = ACTIONS(1252), - [anon_sym_inline] = ACTIONS(1252), - [anon_sym_thread_local] = ACTIONS(1252), - [anon_sym___thread] = ACTIONS(1252), - [anon_sym_const] = ACTIONS(1252), - [anon_sym_constexpr] = ACTIONS(1252), - [anon_sym_volatile] = ACTIONS(1252), - [anon_sym_restrict] = ACTIONS(1252), - [anon_sym___restrict__] = ACTIONS(1252), - [anon_sym__Atomic] = ACTIONS(1252), - [anon_sym__Noreturn] = ACTIONS(1252), - [anon_sym_noreturn] = ACTIONS(1252), - [sym_primitive_type] = ACTIONS(1252), - [anon_sym_enum] = ACTIONS(1252), - [anon_sym_struct] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_else] = ACTIONS(1252), - [anon_sym_switch] = ACTIONS(1252), - [anon_sym_case] = ACTIONS(1252), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_break] = ACTIONS(1252), - [anon_sym_continue] = ACTIONS(1252), - [anon_sym_goto] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1254), - [anon_sym_PLUS_PLUS] = ACTIONS(1254), - [anon_sym_sizeof] = ACTIONS(1252), - [anon_sym_offsetof] = ACTIONS(1252), - [anon_sym__Generic] = ACTIONS(1252), - [anon_sym_asm] = ACTIONS(1252), - [anon_sym___asm__] = ACTIONS(1252), - [sym_number_literal] = ACTIONS(1254), - [anon_sym_L_SQUOTE] = ACTIONS(1254), - [anon_sym_u_SQUOTE] = ACTIONS(1254), - [anon_sym_U_SQUOTE] = ACTIONS(1254), - [anon_sym_u8_SQUOTE] = ACTIONS(1254), - [anon_sym_SQUOTE] = ACTIONS(1254), - [anon_sym_L_DQUOTE] = ACTIONS(1254), - [anon_sym_u_DQUOTE] = ACTIONS(1254), - [anon_sym_U_DQUOTE] = ACTIONS(1254), - [anon_sym_u8_DQUOTE] = ACTIONS(1254), - [anon_sym_DQUOTE] = ACTIONS(1254), - [sym_true] = ACTIONS(1252), - [sym_false] = ACTIONS(1252), - [anon_sym_NULL] = ACTIONS(1252), - [anon_sym_nullptr] = ACTIONS(1252), - [sym_comment] = ACTIONS(3), - }, - [257] = { - [ts_builtin_sym_end] = ACTIONS(1238), - [sym_identifier] = ACTIONS(1236), - [aux_sym_preproc_include_token1] = ACTIONS(1236), - [aux_sym_preproc_def_token1] = ACTIONS(1236), - [aux_sym_preproc_if_token1] = ACTIONS(1236), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1236), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1236), - [sym_preproc_directive] = ACTIONS(1236), - [anon_sym_LPAREN2] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(1238), - [anon_sym_TILDE] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1236), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1238), - [anon_sym_typedef] = ACTIONS(1236), - [anon_sym_extern] = ACTIONS(1236), - [anon_sym___attribute__] = ACTIONS(1236), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1238), - [anon_sym___declspec] = ACTIONS(1236), - [anon_sym___cdecl] = ACTIONS(1236), - [anon_sym___clrcall] = ACTIONS(1236), - [anon_sym___stdcall] = ACTIONS(1236), - [anon_sym___fastcall] = ACTIONS(1236), - [anon_sym___thiscall] = ACTIONS(1236), - [anon_sym___vectorcall] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_signed] = ACTIONS(1236), - [anon_sym_unsigned] = ACTIONS(1236), - [anon_sym_long] = ACTIONS(1236), - [anon_sym_short] = ACTIONS(1236), - [anon_sym_static] = ACTIONS(1236), - [anon_sym_auto] = ACTIONS(1236), - [anon_sym_register] = ACTIONS(1236), - [anon_sym_inline] = ACTIONS(1236), - [anon_sym_thread_local] = ACTIONS(1236), - [anon_sym___thread] = ACTIONS(1236), - [anon_sym_const] = ACTIONS(1236), - [anon_sym_constexpr] = ACTIONS(1236), - [anon_sym_volatile] = ACTIONS(1236), - [anon_sym_restrict] = ACTIONS(1236), - [anon_sym___restrict__] = ACTIONS(1236), - [anon_sym__Atomic] = ACTIONS(1236), - [anon_sym__Noreturn] = ACTIONS(1236), - [anon_sym_noreturn] = ACTIONS(1236), - [sym_primitive_type] = ACTIONS(1236), - [anon_sym_enum] = ACTIONS(1236), - [anon_sym_struct] = ACTIONS(1236), - [anon_sym_union] = ACTIONS(1236), - [anon_sym_if] = ACTIONS(1236), - [anon_sym_else] = ACTIONS(1236), - [anon_sym_switch] = ACTIONS(1236), - [anon_sym_case] = ACTIONS(1236), - [anon_sym_default] = ACTIONS(1236), - [anon_sym_while] = ACTIONS(1236), - [anon_sym_do] = ACTIONS(1236), - [anon_sym_for] = ACTIONS(1236), - [anon_sym_return] = ACTIONS(1236), - [anon_sym_break] = ACTIONS(1236), - [anon_sym_continue] = ACTIONS(1236), - [anon_sym_goto] = ACTIONS(1236), - [anon_sym_DASH_DASH] = ACTIONS(1238), - [anon_sym_PLUS_PLUS] = ACTIONS(1238), - [anon_sym_sizeof] = ACTIONS(1236), - [anon_sym_offsetof] = ACTIONS(1236), - [anon_sym__Generic] = ACTIONS(1236), - [anon_sym_asm] = ACTIONS(1236), - [anon_sym___asm__] = ACTIONS(1236), - [sym_number_literal] = ACTIONS(1238), - [anon_sym_L_SQUOTE] = ACTIONS(1238), - [anon_sym_u_SQUOTE] = ACTIONS(1238), - [anon_sym_U_SQUOTE] = ACTIONS(1238), - [anon_sym_u8_SQUOTE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1238), - [anon_sym_L_DQUOTE] = ACTIONS(1238), - [anon_sym_u_DQUOTE] = ACTIONS(1238), - [anon_sym_U_DQUOTE] = ACTIONS(1238), - [anon_sym_u8_DQUOTE] = ACTIONS(1238), - [anon_sym_DQUOTE] = ACTIONS(1238), - [sym_true] = ACTIONS(1236), - [sym_false] = ACTIONS(1236), - [anon_sym_NULL] = ACTIONS(1236), - [anon_sym_nullptr] = ACTIONS(1236), - [sym_comment] = ACTIONS(3), - }, - [258] = { - [sym_identifier] = ACTIONS(1212), - [aux_sym_preproc_include_token1] = ACTIONS(1212), - [aux_sym_preproc_def_token1] = ACTIONS(1212), - [aux_sym_preproc_if_token1] = ACTIONS(1212), - [aux_sym_preproc_if_token2] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1212), - [sym_preproc_directive] = ACTIONS(1212), - [anon_sym_LPAREN2] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_DASH] = ACTIONS(1212), - [anon_sym_PLUS] = ACTIONS(1212), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_typedef] = ACTIONS(1212), - [anon_sym_extern] = ACTIONS(1212), - [anon_sym___attribute__] = ACTIONS(1212), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), - [anon_sym___declspec] = ACTIONS(1212), - [anon_sym___cdecl] = ACTIONS(1212), - [anon_sym___clrcall] = ACTIONS(1212), - [anon_sym___stdcall] = ACTIONS(1212), - [anon_sym___fastcall] = ACTIONS(1212), - [anon_sym___thiscall] = ACTIONS(1212), - [anon_sym___vectorcall] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_signed] = ACTIONS(1212), - [anon_sym_unsigned] = ACTIONS(1212), - [anon_sym_long] = ACTIONS(1212), - [anon_sym_short] = ACTIONS(1212), - [anon_sym_static] = ACTIONS(1212), - [anon_sym_auto] = ACTIONS(1212), - [anon_sym_register] = ACTIONS(1212), - [anon_sym_inline] = ACTIONS(1212), - [anon_sym_thread_local] = ACTIONS(1212), - [anon_sym___thread] = ACTIONS(1212), - [anon_sym_const] = ACTIONS(1212), - [anon_sym_constexpr] = ACTIONS(1212), - [anon_sym_volatile] = ACTIONS(1212), - [anon_sym_restrict] = ACTIONS(1212), - [anon_sym___restrict__] = ACTIONS(1212), - [anon_sym__Atomic] = ACTIONS(1212), - [anon_sym__Noreturn] = ACTIONS(1212), - [anon_sym_noreturn] = ACTIONS(1212), - [sym_primitive_type] = ACTIONS(1212), - [anon_sym_enum] = ACTIONS(1212), - [anon_sym_struct] = ACTIONS(1212), - [anon_sym_union] = ACTIONS(1212), - [anon_sym_if] = ACTIONS(1212), - [anon_sym_else] = ACTIONS(1212), - [anon_sym_switch] = ACTIONS(1212), - [anon_sym_case] = ACTIONS(1212), - [anon_sym_default] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(1212), - [anon_sym_do] = ACTIONS(1212), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_return] = ACTIONS(1212), - [anon_sym_break] = ACTIONS(1212), - [anon_sym_continue] = ACTIONS(1212), - [anon_sym_goto] = ACTIONS(1212), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_sizeof] = ACTIONS(1212), - [anon_sym_offsetof] = ACTIONS(1212), - [anon_sym__Generic] = ACTIONS(1212), - [anon_sym_asm] = ACTIONS(1212), - [anon_sym___asm__] = ACTIONS(1212), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_L_SQUOTE] = ACTIONS(1214), - [anon_sym_u_SQUOTE] = ACTIONS(1214), - [anon_sym_U_SQUOTE] = ACTIONS(1214), - [anon_sym_u8_SQUOTE] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [anon_sym_L_DQUOTE] = ACTIONS(1214), - [anon_sym_u_DQUOTE] = ACTIONS(1214), - [anon_sym_U_DQUOTE] = ACTIONS(1214), - [anon_sym_u8_DQUOTE] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_true] = ACTIONS(1212), - [sym_false] = ACTIONS(1212), - [anon_sym_NULL] = ACTIONS(1212), - [anon_sym_nullptr] = ACTIONS(1212), + [258] = { + [ts_builtin_sym_end] = ACTIONS(1334), + [sym_identifier] = ACTIONS(1332), + [aux_sym_preproc_include_token1] = ACTIONS(1332), + [aux_sym_preproc_def_token1] = ACTIONS(1332), + [aux_sym_preproc_if_token1] = ACTIONS(1332), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), + [sym_preproc_directive] = ACTIONS(1332), + [anon_sym_LPAREN2] = ACTIONS(1334), + [anon_sym_BANG] = ACTIONS(1334), + [anon_sym_TILDE] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1332), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1334), + [anon_sym___extension__] = ACTIONS(1332), + [anon_sym_typedef] = ACTIONS(1332), + [anon_sym_extern] = ACTIONS(1332), + [anon_sym___attribute__] = ACTIONS(1332), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), + [anon_sym___declspec] = ACTIONS(1332), + [anon_sym___cdecl] = ACTIONS(1332), + [anon_sym___clrcall] = ACTIONS(1332), + [anon_sym___stdcall] = ACTIONS(1332), + [anon_sym___fastcall] = ACTIONS(1332), + [anon_sym___thiscall] = ACTIONS(1332), + [anon_sym___vectorcall] = ACTIONS(1332), + [anon_sym_LBRACE] = ACTIONS(1334), + [anon_sym_signed] = ACTIONS(1332), + [anon_sym_unsigned] = ACTIONS(1332), + [anon_sym_long] = ACTIONS(1332), + [anon_sym_short] = ACTIONS(1332), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_auto] = ACTIONS(1332), + [anon_sym_register] = ACTIONS(1332), + [anon_sym_inline] = ACTIONS(1332), + [anon_sym___inline] = ACTIONS(1332), + [anon_sym___inline__] = ACTIONS(1332), + [anon_sym___forceinline] = ACTIONS(1332), + [anon_sym_thread_local] = ACTIONS(1332), + [anon_sym___thread] = ACTIONS(1332), + [anon_sym_const] = ACTIONS(1332), + [anon_sym_constexpr] = ACTIONS(1332), + [anon_sym_volatile] = ACTIONS(1332), + [anon_sym_restrict] = ACTIONS(1332), + [anon_sym___restrict__] = ACTIONS(1332), + [anon_sym__Atomic] = ACTIONS(1332), + [anon_sym__Noreturn] = ACTIONS(1332), + [anon_sym_noreturn] = ACTIONS(1332), + [sym_primitive_type] = ACTIONS(1332), + [anon_sym_enum] = ACTIONS(1332), + [anon_sym_struct] = ACTIONS(1332), + [anon_sym_union] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(1332), + [anon_sym_else] = ACTIONS(1332), + [anon_sym_switch] = ACTIONS(1332), + [anon_sym_case] = ACTIONS(1332), + [anon_sym_default] = ACTIONS(1332), + [anon_sym_while] = ACTIONS(1332), + [anon_sym_do] = ACTIONS(1332), + [anon_sym_for] = ACTIONS(1332), + [anon_sym_return] = ACTIONS(1332), + [anon_sym_break] = ACTIONS(1332), + [anon_sym_continue] = ACTIONS(1332), + [anon_sym_goto] = ACTIONS(1332), + [anon_sym_DASH_DASH] = ACTIONS(1334), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_sizeof] = ACTIONS(1332), + [anon_sym___alignof__] = ACTIONS(1332), + [anon_sym___alignof] = ACTIONS(1332), + [anon_sym__alignof] = ACTIONS(1332), + [anon_sym_alignof] = ACTIONS(1332), + [anon_sym__Alignof] = ACTIONS(1332), + [anon_sym_offsetof] = ACTIONS(1332), + [anon_sym___builtin_va_arg] = ACTIONS(1332), + [anon_sym__Generic] = ACTIONS(1332), + [anon_sym_asm] = ACTIONS(1332), + [anon_sym___asm__] = ACTIONS(1332), + [sym_number_literal] = ACTIONS(1334), + [anon_sym_L_SQUOTE] = ACTIONS(1334), + [anon_sym_u_SQUOTE] = ACTIONS(1334), + [anon_sym_U_SQUOTE] = ACTIONS(1334), + [anon_sym_u8_SQUOTE] = ACTIONS(1334), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_L_DQUOTE] = ACTIONS(1334), + [anon_sym_u_DQUOTE] = ACTIONS(1334), + [anon_sym_U_DQUOTE] = ACTIONS(1334), + [anon_sym_u8_DQUOTE] = ACTIONS(1334), + [anon_sym_DQUOTE] = ACTIONS(1334), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [anon_sym_NULL] = ACTIONS(1332), + [anon_sym_nullptr] = ACTIONS(1332), [sym_comment] = ACTIONS(3), }, [259] = { - [sym_identifier] = ACTIONS(1216), - [aux_sym_preproc_include_token1] = ACTIONS(1216), - [aux_sym_preproc_def_token1] = ACTIONS(1216), - [aux_sym_preproc_if_token1] = ACTIONS(1216), - [aux_sym_preproc_if_token2] = ACTIONS(1216), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1216), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1216), - [sym_preproc_directive] = ACTIONS(1216), - [anon_sym_LPAREN2] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1218), - [anon_sym_TILDE] = ACTIONS(1218), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_STAR] = ACTIONS(1218), - [anon_sym_AMP] = ACTIONS(1218), - [anon_sym_SEMI] = ACTIONS(1218), - [anon_sym_typedef] = ACTIONS(1216), - [anon_sym_extern] = ACTIONS(1216), - [anon_sym___attribute__] = ACTIONS(1216), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1218), - [anon_sym___declspec] = ACTIONS(1216), - [anon_sym___cdecl] = ACTIONS(1216), - [anon_sym___clrcall] = ACTIONS(1216), - [anon_sym___stdcall] = ACTIONS(1216), - [anon_sym___fastcall] = ACTIONS(1216), - [anon_sym___thiscall] = ACTIONS(1216), - [anon_sym___vectorcall] = ACTIONS(1216), - [anon_sym_LBRACE] = ACTIONS(1218), - [anon_sym_signed] = ACTIONS(1216), - [anon_sym_unsigned] = ACTIONS(1216), - [anon_sym_long] = ACTIONS(1216), - [anon_sym_short] = ACTIONS(1216), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_auto] = ACTIONS(1216), - [anon_sym_register] = ACTIONS(1216), - [anon_sym_inline] = ACTIONS(1216), - [anon_sym_thread_local] = ACTIONS(1216), - [anon_sym___thread] = ACTIONS(1216), - [anon_sym_const] = ACTIONS(1216), - [anon_sym_constexpr] = ACTIONS(1216), - [anon_sym_volatile] = ACTIONS(1216), - [anon_sym_restrict] = ACTIONS(1216), - [anon_sym___restrict__] = ACTIONS(1216), - [anon_sym__Atomic] = ACTIONS(1216), - [anon_sym__Noreturn] = ACTIONS(1216), - [anon_sym_noreturn] = ACTIONS(1216), - [sym_primitive_type] = ACTIONS(1216), - [anon_sym_enum] = ACTIONS(1216), - [anon_sym_struct] = ACTIONS(1216), - [anon_sym_union] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_else] = ACTIONS(1216), - [anon_sym_switch] = ACTIONS(1216), - [anon_sym_case] = ACTIONS(1216), - [anon_sym_default] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_do] = ACTIONS(1216), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_goto] = ACTIONS(1216), - [anon_sym_DASH_DASH] = ACTIONS(1218), - [anon_sym_PLUS_PLUS] = ACTIONS(1218), - [anon_sym_sizeof] = ACTIONS(1216), - [anon_sym_offsetof] = ACTIONS(1216), - [anon_sym__Generic] = ACTIONS(1216), - [anon_sym_asm] = ACTIONS(1216), - [anon_sym___asm__] = ACTIONS(1216), - [sym_number_literal] = ACTIONS(1218), - [anon_sym_L_SQUOTE] = ACTIONS(1218), - [anon_sym_u_SQUOTE] = ACTIONS(1218), - [anon_sym_U_SQUOTE] = ACTIONS(1218), - [anon_sym_u8_SQUOTE] = ACTIONS(1218), - [anon_sym_SQUOTE] = ACTIONS(1218), - [anon_sym_L_DQUOTE] = ACTIONS(1218), - [anon_sym_u_DQUOTE] = ACTIONS(1218), - [anon_sym_U_DQUOTE] = ACTIONS(1218), - [anon_sym_u8_DQUOTE] = ACTIONS(1218), - [anon_sym_DQUOTE] = ACTIONS(1218), - [sym_true] = ACTIONS(1216), - [sym_false] = ACTIONS(1216), - [anon_sym_NULL] = ACTIONS(1216), - [anon_sym_nullptr] = ACTIONS(1216), + [ts_builtin_sym_end] = ACTIONS(1330), + [sym_identifier] = ACTIONS(1328), + [aux_sym_preproc_include_token1] = ACTIONS(1328), + [aux_sym_preproc_def_token1] = ACTIONS(1328), + [aux_sym_preproc_if_token1] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), + [sym_preproc_directive] = ACTIONS(1328), + [anon_sym_LPAREN2] = ACTIONS(1330), + [anon_sym_BANG] = ACTIONS(1330), + [anon_sym_TILDE] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1328), + [anon_sym_STAR] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1330), + [anon_sym_SEMI] = ACTIONS(1330), + [anon_sym___extension__] = ACTIONS(1328), + [anon_sym_typedef] = ACTIONS(1328), + [anon_sym_extern] = ACTIONS(1328), + [anon_sym___attribute__] = ACTIONS(1328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), + [anon_sym___declspec] = ACTIONS(1328), + [anon_sym___cdecl] = ACTIONS(1328), + [anon_sym___clrcall] = ACTIONS(1328), + [anon_sym___stdcall] = ACTIONS(1328), + [anon_sym___fastcall] = ACTIONS(1328), + [anon_sym___thiscall] = ACTIONS(1328), + [anon_sym___vectorcall] = ACTIONS(1328), + [anon_sym_LBRACE] = ACTIONS(1330), + [anon_sym_signed] = ACTIONS(1328), + [anon_sym_unsigned] = ACTIONS(1328), + [anon_sym_long] = ACTIONS(1328), + [anon_sym_short] = ACTIONS(1328), + [anon_sym_static] = ACTIONS(1328), + [anon_sym_auto] = ACTIONS(1328), + [anon_sym_register] = ACTIONS(1328), + [anon_sym_inline] = ACTIONS(1328), + [anon_sym___inline] = ACTIONS(1328), + [anon_sym___inline__] = ACTIONS(1328), + [anon_sym___forceinline] = ACTIONS(1328), + [anon_sym_thread_local] = ACTIONS(1328), + [anon_sym___thread] = ACTIONS(1328), + [anon_sym_const] = ACTIONS(1328), + [anon_sym_constexpr] = ACTIONS(1328), + [anon_sym_volatile] = ACTIONS(1328), + [anon_sym_restrict] = ACTIONS(1328), + [anon_sym___restrict__] = ACTIONS(1328), + [anon_sym__Atomic] = ACTIONS(1328), + [anon_sym__Noreturn] = ACTIONS(1328), + [anon_sym_noreturn] = ACTIONS(1328), + [sym_primitive_type] = ACTIONS(1328), + [anon_sym_enum] = ACTIONS(1328), + [anon_sym_struct] = ACTIONS(1328), + [anon_sym_union] = ACTIONS(1328), + [anon_sym_if] = ACTIONS(1328), + [anon_sym_else] = ACTIONS(1328), + [anon_sym_switch] = ACTIONS(1328), + [anon_sym_case] = ACTIONS(1328), + [anon_sym_default] = ACTIONS(1328), + [anon_sym_while] = ACTIONS(1328), + [anon_sym_do] = ACTIONS(1328), + [anon_sym_for] = ACTIONS(1328), + [anon_sym_return] = ACTIONS(1328), + [anon_sym_break] = ACTIONS(1328), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1328), + [anon_sym_DASH_DASH] = ACTIONS(1330), + [anon_sym_PLUS_PLUS] = ACTIONS(1330), + [anon_sym_sizeof] = ACTIONS(1328), + [anon_sym___alignof__] = ACTIONS(1328), + [anon_sym___alignof] = ACTIONS(1328), + [anon_sym__alignof] = ACTIONS(1328), + [anon_sym_alignof] = ACTIONS(1328), + [anon_sym__Alignof] = ACTIONS(1328), + [anon_sym_offsetof] = ACTIONS(1328), + [anon_sym___builtin_va_arg] = ACTIONS(1328), + [anon_sym__Generic] = ACTIONS(1328), + [anon_sym_asm] = ACTIONS(1328), + [anon_sym___asm__] = ACTIONS(1328), + [sym_number_literal] = ACTIONS(1330), + [anon_sym_L_SQUOTE] = ACTIONS(1330), + [anon_sym_u_SQUOTE] = ACTIONS(1330), + [anon_sym_U_SQUOTE] = ACTIONS(1330), + [anon_sym_u8_SQUOTE] = ACTIONS(1330), + [anon_sym_SQUOTE] = ACTIONS(1330), + [anon_sym_L_DQUOTE] = ACTIONS(1330), + [anon_sym_u_DQUOTE] = ACTIONS(1330), + [anon_sym_U_DQUOTE] = ACTIONS(1330), + [anon_sym_u8_DQUOTE] = ACTIONS(1330), + [anon_sym_DQUOTE] = ACTIONS(1330), + [sym_true] = ACTIONS(1328), + [sym_false] = ACTIONS(1328), + [anon_sym_NULL] = ACTIONS(1328), + [anon_sym_nullptr] = ACTIONS(1328), [sym_comment] = ACTIONS(3), }, [260] = { - [sym_identifier] = ACTIONS(1220), - [aux_sym_preproc_include_token1] = ACTIONS(1220), - [aux_sym_preproc_def_token1] = ACTIONS(1220), - [aux_sym_preproc_if_token1] = ACTIONS(1220), - [aux_sym_preproc_if_token2] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1220), - [sym_preproc_directive] = ACTIONS(1220), - [anon_sym_LPAREN2] = ACTIONS(1222), - [anon_sym_BANG] = ACTIONS(1222), - [anon_sym_TILDE] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_typedef] = ACTIONS(1220), - [anon_sym_extern] = ACTIONS(1220), - [anon_sym___attribute__] = ACTIONS(1220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), - [anon_sym___declspec] = ACTIONS(1220), - [anon_sym___cdecl] = ACTIONS(1220), - [anon_sym___clrcall] = ACTIONS(1220), - [anon_sym___stdcall] = ACTIONS(1220), - [anon_sym___fastcall] = ACTIONS(1220), - [anon_sym___thiscall] = ACTIONS(1220), - [anon_sym___vectorcall] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_signed] = ACTIONS(1220), - [anon_sym_unsigned] = ACTIONS(1220), - [anon_sym_long] = ACTIONS(1220), - [anon_sym_short] = ACTIONS(1220), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_auto] = ACTIONS(1220), - [anon_sym_register] = ACTIONS(1220), - [anon_sym_inline] = ACTIONS(1220), - [anon_sym_thread_local] = ACTIONS(1220), - [anon_sym___thread] = ACTIONS(1220), - [anon_sym_const] = ACTIONS(1220), - [anon_sym_constexpr] = ACTIONS(1220), - [anon_sym_volatile] = ACTIONS(1220), - [anon_sym_restrict] = ACTIONS(1220), - [anon_sym___restrict__] = ACTIONS(1220), - [anon_sym__Atomic] = ACTIONS(1220), - [anon_sym__Noreturn] = ACTIONS(1220), - [anon_sym_noreturn] = ACTIONS(1220), - [sym_primitive_type] = ACTIONS(1220), - [anon_sym_enum] = ACTIONS(1220), - [anon_sym_struct] = ACTIONS(1220), - [anon_sym_union] = ACTIONS(1220), - [anon_sym_if] = ACTIONS(1220), - [anon_sym_else] = ACTIONS(1220), - [anon_sym_switch] = ACTIONS(1220), - [anon_sym_case] = ACTIONS(1220), - [anon_sym_default] = ACTIONS(1220), - [anon_sym_while] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1220), - [anon_sym_for] = ACTIONS(1220), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_break] = ACTIONS(1220), - [anon_sym_continue] = ACTIONS(1220), - [anon_sym_goto] = ACTIONS(1220), - [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_PLUS_PLUS] = ACTIONS(1222), - [anon_sym_sizeof] = ACTIONS(1220), - [anon_sym_offsetof] = ACTIONS(1220), - [anon_sym__Generic] = ACTIONS(1220), - [anon_sym_asm] = ACTIONS(1220), - [anon_sym___asm__] = ACTIONS(1220), - [sym_number_literal] = ACTIONS(1222), - [anon_sym_L_SQUOTE] = ACTIONS(1222), - [anon_sym_u_SQUOTE] = ACTIONS(1222), - [anon_sym_U_SQUOTE] = ACTIONS(1222), - [anon_sym_u8_SQUOTE] = ACTIONS(1222), - [anon_sym_SQUOTE] = ACTIONS(1222), - [anon_sym_L_DQUOTE] = ACTIONS(1222), - [anon_sym_u_DQUOTE] = ACTIONS(1222), - [anon_sym_U_DQUOTE] = ACTIONS(1222), - [anon_sym_u8_DQUOTE] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym_true] = ACTIONS(1220), - [sym_false] = ACTIONS(1220), - [anon_sym_NULL] = ACTIONS(1220), - [anon_sym_nullptr] = ACTIONS(1220), + [ts_builtin_sym_end] = ACTIONS(1346), + [sym_identifier] = ACTIONS(1344), + [aux_sym_preproc_include_token1] = ACTIONS(1344), + [aux_sym_preproc_def_token1] = ACTIONS(1344), + [aux_sym_preproc_if_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), + [sym_preproc_directive] = ACTIONS(1344), + [anon_sym_LPAREN2] = ACTIONS(1346), + [anon_sym_BANG] = ACTIONS(1346), + [anon_sym_TILDE] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1344), + [anon_sym_PLUS] = ACTIONS(1344), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1346), + [anon_sym___extension__] = ACTIONS(1344), + [anon_sym_typedef] = ACTIONS(1344), + [anon_sym_extern] = ACTIONS(1344), + [anon_sym___attribute__] = ACTIONS(1344), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), + [anon_sym___declspec] = ACTIONS(1344), + [anon_sym___cdecl] = ACTIONS(1344), + [anon_sym___clrcall] = ACTIONS(1344), + [anon_sym___stdcall] = ACTIONS(1344), + [anon_sym___fastcall] = ACTIONS(1344), + [anon_sym___thiscall] = ACTIONS(1344), + [anon_sym___vectorcall] = ACTIONS(1344), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_signed] = ACTIONS(1344), + [anon_sym_unsigned] = ACTIONS(1344), + [anon_sym_long] = ACTIONS(1344), + [anon_sym_short] = ACTIONS(1344), + [anon_sym_static] = ACTIONS(1344), + [anon_sym_auto] = ACTIONS(1344), + [anon_sym_register] = ACTIONS(1344), + [anon_sym_inline] = ACTIONS(1344), + [anon_sym___inline] = ACTIONS(1344), + [anon_sym___inline__] = ACTIONS(1344), + [anon_sym___forceinline] = ACTIONS(1344), + [anon_sym_thread_local] = ACTIONS(1344), + [anon_sym___thread] = ACTIONS(1344), + [anon_sym_const] = ACTIONS(1344), + [anon_sym_constexpr] = ACTIONS(1344), + [anon_sym_volatile] = ACTIONS(1344), + [anon_sym_restrict] = ACTIONS(1344), + [anon_sym___restrict__] = ACTIONS(1344), + [anon_sym__Atomic] = ACTIONS(1344), + [anon_sym__Noreturn] = ACTIONS(1344), + [anon_sym_noreturn] = ACTIONS(1344), + [sym_primitive_type] = ACTIONS(1344), + [anon_sym_enum] = ACTIONS(1344), + [anon_sym_struct] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_else] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(1344), + [anon_sym_case] = ACTIONS(1344), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_while] = ACTIONS(1344), + [anon_sym_do] = ACTIONS(1344), + [anon_sym_for] = ACTIONS(1344), + [anon_sym_return] = ACTIONS(1344), + [anon_sym_break] = ACTIONS(1344), + [anon_sym_continue] = ACTIONS(1344), + [anon_sym_goto] = ACTIONS(1344), + [anon_sym_DASH_DASH] = ACTIONS(1346), + [anon_sym_PLUS_PLUS] = ACTIONS(1346), + [anon_sym_sizeof] = ACTIONS(1344), + [anon_sym___alignof__] = ACTIONS(1344), + [anon_sym___alignof] = ACTIONS(1344), + [anon_sym__alignof] = ACTIONS(1344), + [anon_sym_alignof] = ACTIONS(1344), + [anon_sym__Alignof] = ACTIONS(1344), + [anon_sym_offsetof] = ACTIONS(1344), + [anon_sym___builtin_va_arg] = ACTIONS(1344), + [anon_sym__Generic] = ACTIONS(1344), + [anon_sym_asm] = ACTIONS(1344), + [anon_sym___asm__] = ACTIONS(1344), + [sym_number_literal] = ACTIONS(1346), + [anon_sym_L_SQUOTE] = ACTIONS(1346), + [anon_sym_u_SQUOTE] = ACTIONS(1346), + [anon_sym_U_SQUOTE] = ACTIONS(1346), + [anon_sym_u8_SQUOTE] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1346), + [anon_sym_L_DQUOTE] = ACTIONS(1346), + [anon_sym_u_DQUOTE] = ACTIONS(1346), + [anon_sym_U_DQUOTE] = ACTIONS(1346), + [anon_sym_u8_DQUOTE] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1346), + [sym_true] = ACTIONS(1344), + [sym_false] = ACTIONS(1344), + [anon_sym_NULL] = ACTIONS(1344), + [anon_sym_nullptr] = ACTIONS(1344), [sym_comment] = ACTIONS(3), }, [261] = { - [sym_identifier] = ACTIONS(1236), - [aux_sym_preproc_include_token1] = ACTIONS(1236), - [aux_sym_preproc_def_token1] = ACTIONS(1236), - [aux_sym_preproc_if_token1] = ACTIONS(1236), - [aux_sym_preproc_if_token2] = ACTIONS(1236), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1236), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1236), - [sym_preproc_directive] = ACTIONS(1236), - [anon_sym_LPAREN2] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(1238), - [anon_sym_TILDE] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1236), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1238), - [anon_sym_typedef] = ACTIONS(1236), - [anon_sym_extern] = ACTIONS(1236), - [anon_sym___attribute__] = ACTIONS(1236), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1238), - [anon_sym___declspec] = ACTIONS(1236), - [anon_sym___cdecl] = ACTIONS(1236), - [anon_sym___clrcall] = ACTIONS(1236), - [anon_sym___stdcall] = ACTIONS(1236), - [anon_sym___fastcall] = ACTIONS(1236), - [anon_sym___thiscall] = ACTIONS(1236), - [anon_sym___vectorcall] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_signed] = ACTIONS(1236), - [anon_sym_unsigned] = ACTIONS(1236), - [anon_sym_long] = ACTIONS(1236), - [anon_sym_short] = ACTIONS(1236), - [anon_sym_static] = ACTIONS(1236), - [anon_sym_auto] = ACTIONS(1236), - [anon_sym_register] = ACTIONS(1236), - [anon_sym_inline] = ACTIONS(1236), - [anon_sym_thread_local] = ACTIONS(1236), - [anon_sym___thread] = ACTIONS(1236), - [anon_sym_const] = ACTIONS(1236), - [anon_sym_constexpr] = ACTIONS(1236), - [anon_sym_volatile] = ACTIONS(1236), - [anon_sym_restrict] = ACTIONS(1236), - [anon_sym___restrict__] = ACTIONS(1236), - [anon_sym__Atomic] = ACTIONS(1236), - [anon_sym__Noreturn] = ACTIONS(1236), - [anon_sym_noreturn] = ACTIONS(1236), - [sym_primitive_type] = ACTIONS(1236), - [anon_sym_enum] = ACTIONS(1236), - [anon_sym_struct] = ACTIONS(1236), - [anon_sym_union] = ACTIONS(1236), - [anon_sym_if] = ACTIONS(1236), - [anon_sym_else] = ACTIONS(1236), - [anon_sym_switch] = ACTIONS(1236), - [anon_sym_case] = ACTIONS(1236), - [anon_sym_default] = ACTIONS(1236), - [anon_sym_while] = ACTIONS(1236), - [anon_sym_do] = ACTIONS(1236), - [anon_sym_for] = ACTIONS(1236), - [anon_sym_return] = ACTIONS(1236), - [anon_sym_break] = ACTIONS(1236), - [anon_sym_continue] = ACTIONS(1236), - [anon_sym_goto] = ACTIONS(1236), - [anon_sym_DASH_DASH] = ACTIONS(1238), - [anon_sym_PLUS_PLUS] = ACTIONS(1238), - [anon_sym_sizeof] = ACTIONS(1236), - [anon_sym_offsetof] = ACTIONS(1236), - [anon_sym__Generic] = ACTIONS(1236), - [anon_sym_asm] = ACTIONS(1236), - [anon_sym___asm__] = ACTIONS(1236), - [sym_number_literal] = ACTIONS(1238), - [anon_sym_L_SQUOTE] = ACTIONS(1238), - [anon_sym_u_SQUOTE] = ACTIONS(1238), - [anon_sym_U_SQUOTE] = ACTIONS(1238), - [anon_sym_u8_SQUOTE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1238), - [anon_sym_L_DQUOTE] = ACTIONS(1238), - [anon_sym_u_DQUOTE] = ACTIONS(1238), - [anon_sym_U_DQUOTE] = ACTIONS(1238), - [anon_sym_u8_DQUOTE] = ACTIONS(1238), - [anon_sym_DQUOTE] = ACTIONS(1238), - [sym_true] = ACTIONS(1236), - [sym_false] = ACTIONS(1236), - [anon_sym_NULL] = ACTIONS(1236), - [anon_sym_nullptr] = ACTIONS(1236), - [sym_comment] = ACTIONS(3), - }, - [262] = { - [ts_builtin_sym_end] = ACTIONS(1310), - [sym_identifier] = ACTIONS(1308), - [aux_sym_preproc_include_token1] = ACTIONS(1308), - [aux_sym_preproc_def_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), - [sym_preproc_directive] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym___attribute__] = ACTIONS(1308), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), - [anon_sym___declspec] = ACTIONS(1308), - [anon_sym___cdecl] = ACTIONS(1308), - [anon_sym___clrcall] = ACTIONS(1308), - [anon_sym___stdcall] = ACTIONS(1308), - [anon_sym___fastcall] = ACTIONS(1308), - [anon_sym___thiscall] = ACTIONS(1308), - [anon_sym___vectorcall] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_signed] = ACTIONS(1308), - [anon_sym_unsigned] = ACTIONS(1308), - [anon_sym_long] = ACTIONS(1308), - [anon_sym_short] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1308), - [anon_sym_auto] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_inline] = ACTIONS(1308), - [anon_sym_thread_local] = ACTIONS(1308), - [anon_sym___thread] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_constexpr] = ACTIONS(1308), - [anon_sym_volatile] = ACTIONS(1308), - [anon_sym_restrict] = ACTIONS(1308), - [anon_sym___restrict__] = ACTIONS(1308), - [anon_sym__Atomic] = ACTIONS(1308), - [anon_sym__Noreturn] = ACTIONS(1308), - [anon_sym_noreturn] = ACTIONS(1308), - [sym_primitive_type] = ACTIONS(1308), - [anon_sym_enum] = ACTIONS(1308), - [anon_sym_struct] = ACTIONS(1308), - [anon_sym_union] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_else] = ACTIONS(1308), - [anon_sym_switch] = ACTIONS(1308), - [anon_sym_case] = ACTIONS(1308), - [anon_sym_default] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_goto] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_sizeof] = ACTIONS(1308), - [anon_sym_offsetof] = ACTIONS(1308), - [anon_sym__Generic] = ACTIONS(1308), - [anon_sym_asm] = ACTIONS(1308), - [anon_sym___asm__] = ACTIONS(1308), - [sym_number_literal] = ACTIONS(1310), - [anon_sym_L_SQUOTE] = ACTIONS(1310), - [anon_sym_u_SQUOTE] = ACTIONS(1310), - [anon_sym_U_SQUOTE] = ACTIONS(1310), - [anon_sym_u8_SQUOTE] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [anon_sym_L_DQUOTE] = ACTIONS(1310), - [anon_sym_u_DQUOTE] = ACTIONS(1310), - [anon_sym_U_DQUOTE] = ACTIONS(1310), - [anon_sym_u8_DQUOTE] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym_true] = ACTIONS(1308), - [sym_false] = ACTIONS(1308), - [anon_sym_NULL] = ACTIONS(1308), - [anon_sym_nullptr] = ACTIONS(1308), - [sym_comment] = ACTIONS(3), - }, - [263] = { - [ts_builtin_sym_end] = ACTIONS(1222), - [sym_identifier] = ACTIONS(1220), - [aux_sym_preproc_include_token1] = ACTIONS(1220), - [aux_sym_preproc_def_token1] = ACTIONS(1220), - [aux_sym_preproc_if_token1] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1220), - [sym_preproc_directive] = ACTIONS(1220), - [anon_sym_LPAREN2] = ACTIONS(1222), - [anon_sym_BANG] = ACTIONS(1222), - [anon_sym_TILDE] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_typedef] = ACTIONS(1220), - [anon_sym_extern] = ACTIONS(1220), - [anon_sym___attribute__] = ACTIONS(1220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), - [anon_sym___declspec] = ACTIONS(1220), - [anon_sym___cdecl] = ACTIONS(1220), - [anon_sym___clrcall] = ACTIONS(1220), - [anon_sym___stdcall] = ACTIONS(1220), - [anon_sym___fastcall] = ACTIONS(1220), - [anon_sym___thiscall] = ACTIONS(1220), - [anon_sym___vectorcall] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_signed] = ACTIONS(1220), - [anon_sym_unsigned] = ACTIONS(1220), - [anon_sym_long] = ACTIONS(1220), - [anon_sym_short] = ACTIONS(1220), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_auto] = ACTIONS(1220), - [anon_sym_register] = ACTIONS(1220), - [anon_sym_inline] = ACTIONS(1220), - [anon_sym_thread_local] = ACTIONS(1220), - [anon_sym___thread] = ACTIONS(1220), - [anon_sym_const] = ACTIONS(1220), - [anon_sym_constexpr] = ACTIONS(1220), - [anon_sym_volatile] = ACTIONS(1220), - [anon_sym_restrict] = ACTIONS(1220), - [anon_sym___restrict__] = ACTIONS(1220), - [anon_sym__Atomic] = ACTIONS(1220), - [anon_sym__Noreturn] = ACTIONS(1220), - [anon_sym_noreturn] = ACTIONS(1220), - [sym_primitive_type] = ACTIONS(1220), - [anon_sym_enum] = ACTIONS(1220), - [anon_sym_struct] = ACTIONS(1220), - [anon_sym_union] = ACTIONS(1220), - [anon_sym_if] = ACTIONS(1220), - [anon_sym_else] = ACTIONS(1220), - [anon_sym_switch] = ACTIONS(1220), - [anon_sym_case] = ACTIONS(1220), - [anon_sym_default] = ACTIONS(1220), - [anon_sym_while] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1220), - [anon_sym_for] = ACTIONS(1220), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_break] = ACTIONS(1220), - [anon_sym_continue] = ACTIONS(1220), - [anon_sym_goto] = ACTIONS(1220), - [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_PLUS_PLUS] = ACTIONS(1222), - [anon_sym_sizeof] = ACTIONS(1220), - [anon_sym_offsetof] = ACTIONS(1220), - [anon_sym__Generic] = ACTIONS(1220), - [anon_sym_asm] = ACTIONS(1220), - [anon_sym___asm__] = ACTIONS(1220), - [sym_number_literal] = ACTIONS(1222), - [anon_sym_L_SQUOTE] = ACTIONS(1222), - [anon_sym_u_SQUOTE] = ACTIONS(1222), - [anon_sym_U_SQUOTE] = ACTIONS(1222), - [anon_sym_u8_SQUOTE] = ACTIONS(1222), - [anon_sym_SQUOTE] = ACTIONS(1222), - [anon_sym_L_DQUOTE] = ACTIONS(1222), - [anon_sym_u_DQUOTE] = ACTIONS(1222), - [anon_sym_U_DQUOTE] = ACTIONS(1222), - [anon_sym_u8_DQUOTE] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym_true] = ACTIONS(1220), - [sym_false] = ACTIONS(1220), - [anon_sym_NULL] = ACTIONS(1220), - [anon_sym_nullptr] = ACTIONS(1220), - [sym_comment] = ACTIONS(3), - }, - [264] = { - [ts_builtin_sym_end] = ACTIONS(1218), - [sym_identifier] = ACTIONS(1216), - [aux_sym_preproc_include_token1] = ACTIONS(1216), - [aux_sym_preproc_def_token1] = ACTIONS(1216), - [aux_sym_preproc_if_token1] = ACTIONS(1216), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1216), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1216), - [sym_preproc_directive] = ACTIONS(1216), - [anon_sym_LPAREN2] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1218), - [anon_sym_TILDE] = ACTIONS(1218), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_STAR] = ACTIONS(1218), - [anon_sym_AMP] = ACTIONS(1218), - [anon_sym_SEMI] = ACTIONS(1218), - [anon_sym_typedef] = ACTIONS(1216), - [anon_sym_extern] = ACTIONS(1216), - [anon_sym___attribute__] = ACTIONS(1216), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1218), - [anon_sym___declspec] = ACTIONS(1216), - [anon_sym___cdecl] = ACTIONS(1216), - [anon_sym___clrcall] = ACTIONS(1216), - [anon_sym___stdcall] = ACTIONS(1216), - [anon_sym___fastcall] = ACTIONS(1216), - [anon_sym___thiscall] = ACTIONS(1216), - [anon_sym___vectorcall] = ACTIONS(1216), - [anon_sym_LBRACE] = ACTIONS(1218), - [anon_sym_signed] = ACTIONS(1216), - [anon_sym_unsigned] = ACTIONS(1216), - [anon_sym_long] = ACTIONS(1216), - [anon_sym_short] = ACTIONS(1216), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_auto] = ACTIONS(1216), - [anon_sym_register] = ACTIONS(1216), - [anon_sym_inline] = ACTIONS(1216), - [anon_sym_thread_local] = ACTIONS(1216), - [anon_sym___thread] = ACTIONS(1216), - [anon_sym_const] = ACTIONS(1216), - [anon_sym_constexpr] = ACTIONS(1216), - [anon_sym_volatile] = ACTIONS(1216), - [anon_sym_restrict] = ACTIONS(1216), - [anon_sym___restrict__] = ACTIONS(1216), - [anon_sym__Atomic] = ACTIONS(1216), - [anon_sym__Noreturn] = ACTIONS(1216), - [anon_sym_noreturn] = ACTIONS(1216), - [sym_primitive_type] = ACTIONS(1216), - [anon_sym_enum] = ACTIONS(1216), - [anon_sym_struct] = ACTIONS(1216), - [anon_sym_union] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_else] = ACTIONS(1216), - [anon_sym_switch] = ACTIONS(1216), - [anon_sym_case] = ACTIONS(1216), - [anon_sym_default] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_do] = ACTIONS(1216), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_goto] = ACTIONS(1216), - [anon_sym_DASH_DASH] = ACTIONS(1218), - [anon_sym_PLUS_PLUS] = ACTIONS(1218), - [anon_sym_sizeof] = ACTIONS(1216), - [anon_sym_offsetof] = ACTIONS(1216), - [anon_sym__Generic] = ACTIONS(1216), - [anon_sym_asm] = ACTIONS(1216), - [anon_sym___asm__] = ACTIONS(1216), - [sym_number_literal] = ACTIONS(1218), - [anon_sym_L_SQUOTE] = ACTIONS(1218), - [anon_sym_u_SQUOTE] = ACTIONS(1218), - [anon_sym_U_SQUOTE] = ACTIONS(1218), - [anon_sym_u8_SQUOTE] = ACTIONS(1218), - [anon_sym_SQUOTE] = ACTIONS(1218), - [anon_sym_L_DQUOTE] = ACTIONS(1218), - [anon_sym_u_DQUOTE] = ACTIONS(1218), - [anon_sym_U_DQUOTE] = ACTIONS(1218), - [anon_sym_u8_DQUOTE] = ACTIONS(1218), - [anon_sym_DQUOTE] = ACTIONS(1218), - [sym_true] = ACTIONS(1216), - [sym_false] = ACTIONS(1216), - [anon_sym_NULL] = ACTIONS(1216), - [anon_sym_nullptr] = ACTIONS(1216), - [sym_comment] = ACTIONS(3), - }, - [265] = { + [ts_builtin_sym_end] = ACTIONS(1290), [sym_identifier] = ACTIONS(1288), [aux_sym_preproc_include_token1] = ACTIONS(1288), [aux_sym_preproc_def_token1] = ACTIONS(1288), [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), [sym_preproc_directive] = ACTIONS(1288), @@ -43500,6 +46734,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1290), [anon_sym_AMP] = ACTIONS(1290), [anon_sym_SEMI] = ACTIONS(1290), + [anon_sym___extension__] = ACTIONS(1288), [anon_sym_typedef] = ACTIONS(1288), [anon_sym_extern] = ACTIONS(1288), [anon_sym___attribute__] = ACTIONS(1288), @@ -43520,6 +46755,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1288), [anon_sym_register] = ACTIONS(1288), [anon_sym_inline] = ACTIONS(1288), + [anon_sym___inline] = ACTIONS(1288), + [anon_sym___inline__] = ACTIONS(1288), + [anon_sym___forceinline] = ACTIONS(1288), [anon_sym_thread_local] = ACTIONS(1288), [anon_sym___thread] = ACTIONS(1288), [anon_sym_const] = ACTIONS(1288), @@ -43549,7 +46787,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1290), [anon_sym_PLUS_PLUS] = ACTIONS(1290), [anon_sym_sizeof] = ACTIONS(1288), + [anon_sym___alignof__] = ACTIONS(1288), + [anon_sym___alignof] = ACTIONS(1288), + [anon_sym__alignof] = ACTIONS(1288), + [anon_sym_alignof] = ACTIONS(1288), + [anon_sym__Alignof] = ACTIONS(1288), [anon_sym_offsetof] = ACTIONS(1288), + [anon_sym___builtin_va_arg] = ACTIONS(1288), [anon_sym__Generic] = ACTIONS(1288), [anon_sym_asm] = ACTIONS(1288), [anon_sym___asm__] = ACTIONS(1288), @@ -43570,139 +46814,347 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1288), [sym_comment] = ACTIONS(3), }, - [266] = { - [sym_identifier] = ACTIONS(1252), - [aux_sym_preproc_include_token1] = ACTIONS(1252), - [aux_sym_preproc_def_token1] = ACTIONS(1252), - [aux_sym_preproc_if_token1] = ACTIONS(1252), - [aux_sym_preproc_if_token2] = ACTIONS(1252), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1252), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1252), - [sym_preproc_directive] = ACTIONS(1252), - [anon_sym_LPAREN2] = ACTIONS(1254), - [anon_sym_BANG] = ACTIONS(1254), - [anon_sym_TILDE] = ACTIONS(1254), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1254), - [anon_sym_typedef] = ACTIONS(1252), - [anon_sym_extern] = ACTIONS(1252), - [anon_sym___attribute__] = ACTIONS(1252), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1254), - [anon_sym___declspec] = ACTIONS(1252), - [anon_sym___cdecl] = ACTIONS(1252), - [anon_sym___clrcall] = ACTIONS(1252), - [anon_sym___stdcall] = ACTIONS(1252), - [anon_sym___fastcall] = ACTIONS(1252), - [anon_sym___thiscall] = ACTIONS(1252), - [anon_sym___vectorcall] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_signed] = ACTIONS(1252), - [anon_sym_unsigned] = ACTIONS(1252), - [anon_sym_long] = ACTIONS(1252), - [anon_sym_short] = ACTIONS(1252), - [anon_sym_static] = ACTIONS(1252), - [anon_sym_auto] = ACTIONS(1252), - [anon_sym_register] = ACTIONS(1252), - [anon_sym_inline] = ACTIONS(1252), - [anon_sym_thread_local] = ACTIONS(1252), - [anon_sym___thread] = ACTIONS(1252), - [anon_sym_const] = ACTIONS(1252), - [anon_sym_constexpr] = ACTIONS(1252), - [anon_sym_volatile] = ACTIONS(1252), - [anon_sym_restrict] = ACTIONS(1252), - [anon_sym___restrict__] = ACTIONS(1252), - [anon_sym__Atomic] = ACTIONS(1252), - [anon_sym__Noreturn] = ACTIONS(1252), - [anon_sym_noreturn] = ACTIONS(1252), - [sym_primitive_type] = ACTIONS(1252), - [anon_sym_enum] = ACTIONS(1252), - [anon_sym_struct] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_else] = ACTIONS(1252), - [anon_sym_switch] = ACTIONS(1252), - [anon_sym_case] = ACTIONS(1252), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_break] = ACTIONS(1252), - [anon_sym_continue] = ACTIONS(1252), - [anon_sym_goto] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1254), - [anon_sym_PLUS_PLUS] = ACTIONS(1254), - [anon_sym_sizeof] = ACTIONS(1252), - [anon_sym_offsetof] = ACTIONS(1252), - [anon_sym__Generic] = ACTIONS(1252), - [anon_sym_asm] = ACTIONS(1252), - [anon_sym___asm__] = ACTIONS(1252), - [sym_number_literal] = ACTIONS(1254), - [anon_sym_L_SQUOTE] = ACTIONS(1254), - [anon_sym_u_SQUOTE] = ACTIONS(1254), - [anon_sym_U_SQUOTE] = ACTIONS(1254), - [anon_sym_u8_SQUOTE] = ACTIONS(1254), - [anon_sym_SQUOTE] = ACTIONS(1254), - [anon_sym_L_DQUOTE] = ACTIONS(1254), - [anon_sym_u_DQUOTE] = ACTIONS(1254), - [anon_sym_U_DQUOTE] = ACTIONS(1254), - [anon_sym_u8_DQUOTE] = ACTIONS(1254), - [anon_sym_DQUOTE] = ACTIONS(1254), - [sym_true] = ACTIONS(1252), - [sym_false] = ACTIONS(1252), - [anon_sym_NULL] = ACTIONS(1252), - [anon_sym_nullptr] = ACTIONS(1252), - [sym_comment] = ACTIONS(3), - }, - [267] = { - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1292), - [aux_sym_preproc_def_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token2] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), - [sym_preproc_directive] = ACTIONS(1292), - [anon_sym_LPAREN2] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_typedef] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym___attribute__] = ACTIONS(1292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), - [anon_sym___declspec] = ACTIONS(1292), - [anon_sym___cdecl] = ACTIONS(1292), - [anon_sym___clrcall] = ACTIONS(1292), - [anon_sym___stdcall] = ACTIONS(1292), - [anon_sym___fastcall] = ACTIONS(1292), - [anon_sym___thiscall] = ACTIONS(1292), - [anon_sym___vectorcall] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym_thread_local] = ACTIONS(1292), - [anon_sym___thread] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_constexpr] = ACTIONS(1292), - [anon_sym_volatile] = ACTIONS(1292), - [anon_sym_restrict] = ACTIONS(1292), - [anon_sym___restrict__] = ACTIONS(1292), - [anon_sym__Atomic] = ACTIONS(1292), - [anon_sym__Noreturn] = ACTIONS(1292), + [262] = { + [ts_builtin_sym_end] = ACTIONS(1350), + [sym_identifier] = ACTIONS(1348), + [aux_sym_preproc_include_token1] = ACTIONS(1348), + [aux_sym_preproc_def_token1] = ACTIONS(1348), + [aux_sym_preproc_if_token1] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1348), + [sym_preproc_directive] = ACTIONS(1348), + [anon_sym_LPAREN2] = ACTIONS(1350), + [anon_sym_BANG] = ACTIONS(1350), + [anon_sym_TILDE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym___extension__] = ACTIONS(1348), + [anon_sym_typedef] = ACTIONS(1348), + [anon_sym_extern] = ACTIONS(1348), + [anon_sym___attribute__] = ACTIONS(1348), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), + [anon_sym___declspec] = ACTIONS(1348), + [anon_sym___cdecl] = ACTIONS(1348), + [anon_sym___clrcall] = ACTIONS(1348), + [anon_sym___stdcall] = ACTIONS(1348), + [anon_sym___fastcall] = ACTIONS(1348), + [anon_sym___thiscall] = ACTIONS(1348), + [anon_sym___vectorcall] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_signed] = ACTIONS(1348), + [anon_sym_unsigned] = ACTIONS(1348), + [anon_sym_long] = ACTIONS(1348), + [anon_sym_short] = ACTIONS(1348), + [anon_sym_static] = ACTIONS(1348), + [anon_sym_auto] = ACTIONS(1348), + [anon_sym_register] = ACTIONS(1348), + [anon_sym_inline] = ACTIONS(1348), + [anon_sym___inline] = ACTIONS(1348), + [anon_sym___inline__] = ACTIONS(1348), + [anon_sym___forceinline] = ACTIONS(1348), + [anon_sym_thread_local] = ACTIONS(1348), + [anon_sym___thread] = ACTIONS(1348), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_constexpr] = ACTIONS(1348), + [anon_sym_volatile] = ACTIONS(1348), + [anon_sym_restrict] = ACTIONS(1348), + [anon_sym___restrict__] = ACTIONS(1348), + [anon_sym__Atomic] = ACTIONS(1348), + [anon_sym__Noreturn] = ACTIONS(1348), + [anon_sym_noreturn] = ACTIONS(1348), + [sym_primitive_type] = ACTIONS(1348), + [anon_sym_enum] = ACTIONS(1348), + [anon_sym_struct] = ACTIONS(1348), + [anon_sym_union] = ACTIONS(1348), + [anon_sym_if] = ACTIONS(1348), + [anon_sym_else] = ACTIONS(1348), + [anon_sym_switch] = ACTIONS(1348), + [anon_sym_case] = ACTIONS(1348), + [anon_sym_default] = ACTIONS(1348), + [anon_sym_while] = ACTIONS(1348), + [anon_sym_do] = ACTIONS(1348), + [anon_sym_for] = ACTIONS(1348), + [anon_sym_return] = ACTIONS(1348), + [anon_sym_break] = ACTIONS(1348), + [anon_sym_continue] = ACTIONS(1348), + [anon_sym_goto] = ACTIONS(1348), + [anon_sym_DASH_DASH] = ACTIONS(1350), + [anon_sym_PLUS_PLUS] = ACTIONS(1350), + [anon_sym_sizeof] = ACTIONS(1348), + [anon_sym___alignof__] = ACTIONS(1348), + [anon_sym___alignof] = ACTIONS(1348), + [anon_sym__alignof] = ACTIONS(1348), + [anon_sym_alignof] = ACTIONS(1348), + [anon_sym__Alignof] = ACTIONS(1348), + [anon_sym_offsetof] = ACTIONS(1348), + [anon_sym___builtin_va_arg] = ACTIONS(1348), + [anon_sym__Generic] = ACTIONS(1348), + [anon_sym_asm] = ACTIONS(1348), + [anon_sym___asm__] = ACTIONS(1348), + [sym_number_literal] = ACTIONS(1350), + [anon_sym_L_SQUOTE] = ACTIONS(1350), + [anon_sym_u_SQUOTE] = ACTIONS(1350), + [anon_sym_U_SQUOTE] = ACTIONS(1350), + [anon_sym_u8_SQUOTE] = ACTIONS(1350), + [anon_sym_SQUOTE] = ACTIONS(1350), + [anon_sym_L_DQUOTE] = ACTIONS(1350), + [anon_sym_u_DQUOTE] = ACTIONS(1350), + [anon_sym_U_DQUOTE] = ACTIONS(1350), + [anon_sym_u8_DQUOTE] = ACTIONS(1350), + [anon_sym_DQUOTE] = ACTIONS(1350), + [sym_true] = ACTIONS(1348), + [sym_false] = ACTIONS(1348), + [anon_sym_NULL] = ACTIONS(1348), + [anon_sym_nullptr] = ACTIONS(1348), + [sym_comment] = ACTIONS(3), + }, + [263] = { + [ts_builtin_sym_end] = ACTIONS(1326), + [sym_identifier] = ACTIONS(1324), + [aux_sym_preproc_include_token1] = ACTIONS(1324), + [aux_sym_preproc_def_token1] = ACTIONS(1324), + [aux_sym_preproc_if_token1] = ACTIONS(1324), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), + [sym_preproc_directive] = ACTIONS(1324), + [anon_sym_LPAREN2] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1324), + [anon_sym_STAR] = ACTIONS(1326), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_SEMI] = ACTIONS(1326), + [anon_sym___extension__] = ACTIONS(1324), + [anon_sym_typedef] = ACTIONS(1324), + [anon_sym_extern] = ACTIONS(1324), + [anon_sym___attribute__] = ACTIONS(1324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), + [anon_sym___declspec] = ACTIONS(1324), + [anon_sym___cdecl] = ACTIONS(1324), + [anon_sym___clrcall] = ACTIONS(1324), + [anon_sym___stdcall] = ACTIONS(1324), + [anon_sym___fastcall] = ACTIONS(1324), + [anon_sym___thiscall] = ACTIONS(1324), + [anon_sym___vectorcall] = ACTIONS(1324), + [anon_sym_LBRACE] = ACTIONS(1326), + [anon_sym_signed] = ACTIONS(1324), + [anon_sym_unsigned] = ACTIONS(1324), + [anon_sym_long] = ACTIONS(1324), + [anon_sym_short] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(1324), + [anon_sym_auto] = ACTIONS(1324), + [anon_sym_register] = ACTIONS(1324), + [anon_sym_inline] = ACTIONS(1324), + [anon_sym___inline] = ACTIONS(1324), + [anon_sym___inline__] = ACTIONS(1324), + [anon_sym___forceinline] = ACTIONS(1324), + [anon_sym_thread_local] = ACTIONS(1324), + [anon_sym___thread] = ACTIONS(1324), + [anon_sym_const] = ACTIONS(1324), + [anon_sym_constexpr] = ACTIONS(1324), + [anon_sym_volatile] = ACTIONS(1324), + [anon_sym_restrict] = ACTIONS(1324), + [anon_sym___restrict__] = ACTIONS(1324), + [anon_sym__Atomic] = ACTIONS(1324), + [anon_sym__Noreturn] = ACTIONS(1324), + [anon_sym_noreturn] = ACTIONS(1324), + [sym_primitive_type] = ACTIONS(1324), + [anon_sym_enum] = ACTIONS(1324), + [anon_sym_struct] = ACTIONS(1324), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_if] = ACTIONS(1324), + [anon_sym_else] = ACTIONS(1324), + [anon_sym_switch] = ACTIONS(1324), + [anon_sym_case] = ACTIONS(1324), + [anon_sym_default] = ACTIONS(1324), + [anon_sym_while] = ACTIONS(1324), + [anon_sym_do] = ACTIONS(1324), + [anon_sym_for] = ACTIONS(1324), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1324), + [anon_sym_continue] = ACTIONS(1324), + [anon_sym_goto] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1326), + [anon_sym_PLUS_PLUS] = ACTIONS(1326), + [anon_sym_sizeof] = ACTIONS(1324), + [anon_sym___alignof__] = ACTIONS(1324), + [anon_sym___alignof] = ACTIONS(1324), + [anon_sym__alignof] = ACTIONS(1324), + [anon_sym_alignof] = ACTIONS(1324), + [anon_sym__Alignof] = ACTIONS(1324), + [anon_sym_offsetof] = ACTIONS(1324), + [anon_sym___builtin_va_arg] = ACTIONS(1324), + [anon_sym__Generic] = ACTIONS(1324), + [anon_sym_asm] = ACTIONS(1324), + [anon_sym___asm__] = ACTIONS(1324), + [sym_number_literal] = ACTIONS(1326), + [anon_sym_L_SQUOTE] = ACTIONS(1326), + [anon_sym_u_SQUOTE] = ACTIONS(1326), + [anon_sym_U_SQUOTE] = ACTIONS(1326), + [anon_sym_u8_SQUOTE] = ACTIONS(1326), + [anon_sym_SQUOTE] = ACTIONS(1326), + [anon_sym_L_DQUOTE] = ACTIONS(1326), + [anon_sym_u_DQUOTE] = ACTIONS(1326), + [anon_sym_U_DQUOTE] = ACTIONS(1326), + [anon_sym_u8_DQUOTE] = ACTIONS(1326), + [anon_sym_DQUOTE] = ACTIONS(1326), + [sym_true] = ACTIONS(1324), + [sym_false] = ACTIONS(1324), + [anon_sym_NULL] = ACTIONS(1324), + [anon_sym_nullptr] = ACTIONS(1324), + [sym_comment] = ACTIONS(3), + }, + [264] = { + [ts_builtin_sym_end] = ACTIONS(1322), + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym___builtin_va_arg] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), + [sym_comment] = ACTIONS(3), + }, + [265] = { + [ts_builtin_sym_end] = ACTIONS(1294), + [sym_identifier] = ACTIONS(1292), + [aux_sym_preproc_include_token1] = ACTIONS(1292), + [aux_sym_preproc_def_token1] = ACTIONS(1292), + [aux_sym_preproc_if_token1] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), + [sym_preproc_directive] = ACTIONS(1292), + [anon_sym_LPAREN2] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_TILDE] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym___extension__] = ACTIONS(1292), + [anon_sym_typedef] = ACTIONS(1292), + [anon_sym_extern] = ACTIONS(1292), + [anon_sym___attribute__] = ACTIONS(1292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), + [anon_sym___declspec] = ACTIONS(1292), + [anon_sym___cdecl] = ACTIONS(1292), + [anon_sym___clrcall] = ACTIONS(1292), + [anon_sym___stdcall] = ACTIONS(1292), + [anon_sym___fastcall] = ACTIONS(1292), + [anon_sym___thiscall] = ACTIONS(1292), + [anon_sym___vectorcall] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_signed] = ACTIONS(1292), + [anon_sym_unsigned] = ACTIONS(1292), + [anon_sym_long] = ACTIONS(1292), + [anon_sym_short] = ACTIONS(1292), + [anon_sym_static] = ACTIONS(1292), + [anon_sym_auto] = ACTIONS(1292), + [anon_sym_register] = ACTIONS(1292), + [anon_sym_inline] = ACTIONS(1292), + [anon_sym___inline] = ACTIONS(1292), + [anon_sym___inline__] = ACTIONS(1292), + [anon_sym___forceinline] = ACTIONS(1292), + [anon_sym_thread_local] = ACTIONS(1292), + [anon_sym___thread] = ACTIONS(1292), + [anon_sym_const] = ACTIONS(1292), + [anon_sym_constexpr] = ACTIONS(1292), + [anon_sym_volatile] = ACTIONS(1292), + [anon_sym_restrict] = ACTIONS(1292), + [anon_sym___restrict__] = ACTIONS(1292), + [anon_sym__Atomic] = ACTIONS(1292), + [anon_sym__Noreturn] = ACTIONS(1292), [anon_sym_noreturn] = ACTIONS(1292), [sym_primitive_type] = ACTIONS(1292), [anon_sym_enum] = ACTIONS(1292), @@ -43723,7 +47175,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1294), [anon_sym_PLUS_PLUS] = ACTIONS(1294), [anon_sym_sizeof] = ACTIONS(1292), + [anon_sym___alignof__] = ACTIONS(1292), + [anon_sym___alignof] = ACTIONS(1292), + [anon_sym__alignof] = ACTIONS(1292), + [anon_sym_alignof] = ACTIONS(1292), + [anon_sym__Alignof] = ACTIONS(1292), [anon_sym_offsetof] = ACTIONS(1292), + [anon_sym___builtin_va_arg] = ACTIONS(1292), [anon_sym__Generic] = ACTIONS(1292), [anon_sym_asm] = ACTIONS(1292), [anon_sym___asm__] = ACTIONS(1292), @@ -43744,12 +47202,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1292), [sym_comment] = ACTIONS(3), }, - [268] = { + [266] = { + [ts_builtin_sym_end] = ACTIONS(1318), [sym_identifier] = ACTIONS(1316), [aux_sym_preproc_include_token1] = ACTIONS(1316), [aux_sym_preproc_def_token1] = ACTIONS(1316), [aux_sym_preproc_if_token1] = ACTIONS(1316), - [aux_sym_preproc_if_token2] = ACTIONS(1316), [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), [sym_preproc_directive] = ACTIONS(1316), @@ -43761,6 +47219,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1318), [anon_sym_AMP] = ACTIONS(1318), [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym___extension__] = ACTIONS(1316), [anon_sym_typedef] = ACTIONS(1316), [anon_sym_extern] = ACTIONS(1316), [anon_sym___attribute__] = ACTIONS(1316), @@ -43781,6 +47240,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1316), [anon_sym_register] = ACTIONS(1316), [anon_sym_inline] = ACTIONS(1316), + [anon_sym___inline] = ACTIONS(1316), + [anon_sym___inline__] = ACTIONS(1316), + [anon_sym___forceinline] = ACTIONS(1316), [anon_sym_thread_local] = ACTIONS(1316), [anon_sym___thread] = ACTIONS(1316), [anon_sym_const] = ACTIONS(1316), @@ -43810,7 +47272,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1318), [anon_sym_PLUS_PLUS] = ACTIONS(1318), [anon_sym_sizeof] = ACTIONS(1316), + [anon_sym___alignof__] = ACTIONS(1316), + [anon_sym___alignof] = ACTIONS(1316), + [anon_sym__alignof] = ACTIONS(1316), + [anon_sym_alignof] = ACTIONS(1316), + [anon_sym__Alignof] = ACTIONS(1316), [anon_sym_offsetof] = ACTIONS(1316), + [anon_sym___builtin_va_arg] = ACTIONS(1316), [anon_sym__Generic] = ACTIONS(1316), [anon_sym_asm] = ACTIONS(1316), [anon_sym___asm__] = ACTIONS(1316), @@ -43831,94 +47299,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1316), [sym_comment] = ACTIONS(3), }, - [269] = { - [sym_identifier] = ACTIONS(1336), - [aux_sym_preproc_include_token1] = ACTIONS(1336), - [aux_sym_preproc_def_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token2] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(1336), - [anon_sym_LPAREN2] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym___attribute__] = ACTIONS(1336), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), - [anon_sym___declspec] = ACTIONS(1336), - [anon_sym___cdecl] = ACTIONS(1336), - [anon_sym___clrcall] = ACTIONS(1336), - [anon_sym___stdcall] = ACTIONS(1336), - [anon_sym___fastcall] = ACTIONS(1336), - [anon_sym___thiscall] = ACTIONS(1336), - [anon_sym___vectorcall] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_auto] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_inline] = ACTIONS(1336), - [anon_sym_thread_local] = ACTIONS(1336), - [anon_sym___thread] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_constexpr] = ACTIONS(1336), - [anon_sym_volatile] = ACTIONS(1336), - [anon_sym_restrict] = ACTIONS(1336), - [anon_sym___restrict__] = ACTIONS(1336), - [anon_sym__Atomic] = ACTIONS(1336), - [anon_sym__Noreturn] = ACTIONS(1336), - [anon_sym_noreturn] = ACTIONS(1336), - [sym_primitive_type] = ACTIONS(1336), - [anon_sym_enum] = ACTIONS(1336), - [anon_sym_struct] = ACTIONS(1336), - [anon_sym_union] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_else] = ACTIONS(1336), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1336), - [anon_sym_default] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_do] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_goto] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_sizeof] = ACTIONS(1336), - [anon_sym_offsetof] = ACTIONS(1336), - [anon_sym__Generic] = ACTIONS(1336), - [anon_sym_asm] = ACTIONS(1336), - [anon_sym___asm__] = ACTIONS(1336), - [sym_number_literal] = ACTIONS(1338), - [anon_sym_L_SQUOTE] = ACTIONS(1338), - [anon_sym_u_SQUOTE] = ACTIONS(1338), - [anon_sym_U_SQUOTE] = ACTIONS(1338), - [anon_sym_u8_SQUOTE] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1338), - [anon_sym_L_DQUOTE] = ACTIONS(1338), - [anon_sym_u_DQUOTE] = ACTIONS(1338), - [anon_sym_U_DQUOTE] = ACTIONS(1338), - [anon_sym_u8_DQUOTE] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym_true] = ACTIONS(1336), - [sym_false] = ACTIONS(1336), - [anon_sym_NULL] = ACTIONS(1336), - [anon_sym_nullptr] = ACTIONS(1336), + [267] = { + [ts_builtin_sym_end] = ACTIONS(1314), + [sym_identifier] = ACTIONS(1312), + [aux_sym_preproc_include_token1] = ACTIONS(1312), + [aux_sym_preproc_def_token1] = ACTIONS(1312), + [aux_sym_preproc_if_token1] = ACTIONS(1312), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), + [sym_preproc_directive] = ACTIONS(1312), + [anon_sym_LPAREN2] = ACTIONS(1314), + [anon_sym_BANG] = ACTIONS(1314), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1314), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_SEMI] = ACTIONS(1314), + [anon_sym___extension__] = ACTIONS(1312), + [anon_sym_typedef] = ACTIONS(1312), + [anon_sym_extern] = ACTIONS(1312), + [anon_sym___attribute__] = ACTIONS(1312), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), + [anon_sym___declspec] = ACTIONS(1312), + [anon_sym___cdecl] = ACTIONS(1312), + [anon_sym___clrcall] = ACTIONS(1312), + [anon_sym___stdcall] = ACTIONS(1312), + [anon_sym___fastcall] = ACTIONS(1312), + [anon_sym___thiscall] = ACTIONS(1312), + [anon_sym___vectorcall] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(1314), + [anon_sym_signed] = ACTIONS(1312), + [anon_sym_unsigned] = ACTIONS(1312), + [anon_sym_long] = ACTIONS(1312), + [anon_sym_short] = ACTIONS(1312), + [anon_sym_static] = ACTIONS(1312), + [anon_sym_auto] = ACTIONS(1312), + [anon_sym_register] = ACTIONS(1312), + [anon_sym_inline] = ACTIONS(1312), + [anon_sym___inline] = ACTIONS(1312), + [anon_sym___inline__] = ACTIONS(1312), + [anon_sym___forceinline] = ACTIONS(1312), + [anon_sym_thread_local] = ACTIONS(1312), + [anon_sym___thread] = ACTIONS(1312), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_constexpr] = ACTIONS(1312), + [anon_sym_volatile] = ACTIONS(1312), + [anon_sym_restrict] = ACTIONS(1312), + [anon_sym___restrict__] = ACTIONS(1312), + [anon_sym__Atomic] = ACTIONS(1312), + [anon_sym__Noreturn] = ACTIONS(1312), + [anon_sym_noreturn] = ACTIONS(1312), + [sym_primitive_type] = ACTIONS(1312), + [anon_sym_enum] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1312), + [anon_sym_union] = ACTIONS(1312), + [anon_sym_if] = ACTIONS(1312), + [anon_sym_else] = ACTIONS(1312), + [anon_sym_switch] = ACTIONS(1312), + [anon_sym_case] = ACTIONS(1312), + [anon_sym_default] = ACTIONS(1312), + [anon_sym_while] = ACTIONS(1312), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_for] = ACTIONS(1312), + [anon_sym_return] = ACTIONS(1312), + [anon_sym_break] = ACTIONS(1312), + [anon_sym_continue] = ACTIONS(1312), + [anon_sym_goto] = ACTIONS(1312), + [anon_sym_DASH_DASH] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1314), + [anon_sym_sizeof] = ACTIONS(1312), + [anon_sym___alignof__] = ACTIONS(1312), + [anon_sym___alignof] = ACTIONS(1312), + [anon_sym__alignof] = ACTIONS(1312), + [anon_sym_alignof] = ACTIONS(1312), + [anon_sym__Alignof] = ACTIONS(1312), + [anon_sym_offsetof] = ACTIONS(1312), + [anon_sym___builtin_va_arg] = ACTIONS(1312), + [anon_sym__Generic] = ACTIONS(1312), + [anon_sym_asm] = ACTIONS(1312), + [anon_sym___asm__] = ACTIONS(1312), + [sym_number_literal] = ACTIONS(1314), + [anon_sym_L_SQUOTE] = ACTIONS(1314), + [anon_sym_u_SQUOTE] = ACTIONS(1314), + [anon_sym_U_SQUOTE] = ACTIONS(1314), + [anon_sym_u8_SQUOTE] = ACTIONS(1314), + [anon_sym_SQUOTE] = ACTIONS(1314), + [anon_sym_L_DQUOTE] = ACTIONS(1314), + [anon_sym_u_DQUOTE] = ACTIONS(1314), + [anon_sym_U_DQUOTE] = ACTIONS(1314), + [anon_sym_u8_DQUOTE] = ACTIONS(1314), + [anon_sym_DQUOTE] = ACTIONS(1314), + [sym_true] = ACTIONS(1312), + [sym_false] = ACTIONS(1312), + [anon_sym_NULL] = ACTIONS(1312), + [anon_sym_nullptr] = ACTIONS(1312), [sym_comment] = ACTIONS(3), }, - [270] = { + [268] = { [ts_builtin_sym_end] = ACTIONS(1246), [sym_identifier] = ACTIONS(1244), [aux_sym_preproc_include_token1] = ACTIONS(1244), @@ -43935,6 +47413,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1246), [anon_sym_AMP] = ACTIONS(1246), [anon_sym_SEMI] = ACTIONS(1246), + [anon_sym___extension__] = ACTIONS(1244), [anon_sym_typedef] = ACTIONS(1244), [anon_sym_extern] = ACTIONS(1244), [anon_sym___attribute__] = ACTIONS(1244), @@ -43955,6 +47434,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1244), [anon_sym_register] = ACTIONS(1244), [anon_sym_inline] = ACTIONS(1244), + [anon_sym___inline] = ACTIONS(1244), + [anon_sym___inline__] = ACTIONS(1244), + [anon_sym___forceinline] = ACTIONS(1244), [anon_sym_thread_local] = ACTIONS(1244), [anon_sym___thread] = ACTIONS(1244), [anon_sym_const] = ACTIONS(1244), @@ -43984,7 +47466,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1246), [anon_sym_PLUS_PLUS] = ACTIONS(1246), [anon_sym_sizeof] = ACTIONS(1244), + [anon_sym___alignof__] = ACTIONS(1244), + [anon_sym___alignof] = ACTIONS(1244), + [anon_sym__alignof] = ACTIONS(1244), + [anon_sym_alignof] = ACTIONS(1244), + [anon_sym__Alignof] = ACTIONS(1244), [anon_sym_offsetof] = ACTIONS(1244), + [anon_sym___builtin_va_arg] = ACTIONS(1244), [anon_sym__Generic] = ACTIONS(1244), [anon_sym_asm] = ACTIONS(1244), [anon_sym___asm__] = ACTIONS(1244), @@ -44005,35 +47493,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1244), [sym_comment] = ACTIONS(3), }, - [271] = { - [sym_identifier] = ACTIONS(1296), - [aux_sym_preproc_include_token1] = ACTIONS(1296), - [aux_sym_preproc_def_token1] = ACTIONS(1296), - [aux_sym_preproc_if_token1] = ACTIONS(1296), - [aux_sym_preproc_if_token2] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), - [sym_preproc_directive] = ACTIONS(1296), - [anon_sym_LPAREN2] = ACTIONS(1298), - [anon_sym_BANG] = ACTIONS(1298), - [anon_sym_TILDE] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1296), - [anon_sym_extern] = ACTIONS(1296), - [anon_sym___attribute__] = ACTIONS(1296), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), - [anon_sym___declspec] = ACTIONS(1296), - [anon_sym___cdecl] = ACTIONS(1296), - [anon_sym___clrcall] = ACTIONS(1296), - [anon_sym___stdcall] = ACTIONS(1296), - [anon_sym___fastcall] = ACTIONS(1296), - [anon_sym___thiscall] = ACTIONS(1296), - [anon_sym___vectorcall] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1298), + [269] = { + [ts_builtin_sym_end] = ACTIONS(1378), + [sym_identifier] = ACTIONS(1376), + [aux_sym_preproc_include_token1] = ACTIONS(1376), + [aux_sym_preproc_def_token1] = ACTIONS(1376), + [aux_sym_preproc_if_token1] = ACTIONS(1376), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1376), + [sym_preproc_directive] = ACTIONS(1376), + [anon_sym_LPAREN2] = ACTIONS(1378), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_TILDE] = ACTIONS(1378), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_AMP] = ACTIONS(1378), + [anon_sym_SEMI] = ACTIONS(1378), + [anon_sym___extension__] = ACTIONS(1376), + [anon_sym_typedef] = ACTIONS(1376), + [anon_sym_extern] = ACTIONS(1376), + [anon_sym___attribute__] = ACTIONS(1376), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1378), + [anon_sym___declspec] = ACTIONS(1376), + [anon_sym___cdecl] = ACTIONS(1376), + [anon_sym___clrcall] = ACTIONS(1376), + [anon_sym___stdcall] = ACTIONS(1376), + [anon_sym___fastcall] = ACTIONS(1376), + [anon_sym___thiscall] = ACTIONS(1376), + [anon_sym___vectorcall] = ACTIONS(1376), + [anon_sym_LBRACE] = ACTIONS(1378), + [anon_sym_signed] = ACTIONS(1376), + [anon_sym_unsigned] = ACTIONS(1376), + [anon_sym_long] = ACTIONS(1376), + [anon_sym_short] = ACTIONS(1376), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_auto] = ACTIONS(1376), + [anon_sym_register] = ACTIONS(1376), + [anon_sym_inline] = ACTIONS(1376), + [anon_sym___inline] = ACTIONS(1376), + [anon_sym___inline__] = ACTIONS(1376), + [anon_sym___forceinline] = ACTIONS(1376), + [anon_sym_thread_local] = ACTIONS(1376), + [anon_sym___thread] = ACTIONS(1376), + [anon_sym_const] = ACTIONS(1376), + [anon_sym_constexpr] = ACTIONS(1376), + [anon_sym_volatile] = ACTIONS(1376), + [anon_sym_restrict] = ACTIONS(1376), + [anon_sym___restrict__] = ACTIONS(1376), + [anon_sym__Atomic] = ACTIONS(1376), + [anon_sym__Noreturn] = ACTIONS(1376), + [anon_sym_noreturn] = ACTIONS(1376), + [sym_primitive_type] = ACTIONS(1376), + [anon_sym_enum] = ACTIONS(1376), + [anon_sym_struct] = ACTIONS(1376), + [anon_sym_union] = ACTIONS(1376), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_else] = ACTIONS(1376), + [anon_sym_switch] = ACTIONS(1376), + [anon_sym_case] = ACTIONS(1376), + [anon_sym_default] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(1376), + [anon_sym_do] = ACTIONS(1376), + [anon_sym_for] = ACTIONS(1376), + [anon_sym_return] = ACTIONS(1376), + [anon_sym_break] = ACTIONS(1376), + [anon_sym_continue] = ACTIONS(1376), + [anon_sym_goto] = ACTIONS(1376), + [anon_sym_DASH_DASH] = ACTIONS(1378), + [anon_sym_PLUS_PLUS] = ACTIONS(1378), + [anon_sym_sizeof] = ACTIONS(1376), + [anon_sym___alignof__] = ACTIONS(1376), + [anon_sym___alignof] = ACTIONS(1376), + [anon_sym__alignof] = ACTIONS(1376), + [anon_sym_alignof] = ACTIONS(1376), + [anon_sym__Alignof] = ACTIONS(1376), + [anon_sym_offsetof] = ACTIONS(1376), + [anon_sym___builtin_va_arg] = ACTIONS(1376), + [anon_sym__Generic] = ACTIONS(1376), + [anon_sym_asm] = ACTIONS(1376), + [anon_sym___asm__] = ACTIONS(1376), + [sym_number_literal] = ACTIONS(1378), + [anon_sym_L_SQUOTE] = ACTIONS(1378), + [anon_sym_u_SQUOTE] = ACTIONS(1378), + [anon_sym_U_SQUOTE] = ACTIONS(1378), + [anon_sym_u8_SQUOTE] = ACTIONS(1378), + [anon_sym_SQUOTE] = ACTIONS(1378), + [anon_sym_L_DQUOTE] = ACTIONS(1378), + [anon_sym_u_DQUOTE] = ACTIONS(1378), + [anon_sym_U_DQUOTE] = ACTIONS(1378), + [anon_sym_u8_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE] = ACTIONS(1378), + [sym_true] = ACTIONS(1376), + [sym_false] = ACTIONS(1376), + [anon_sym_NULL] = ACTIONS(1376), + [anon_sym_nullptr] = ACTIONS(1376), + [sym_comment] = ACTIONS(3), + }, + [270] = { + [ts_builtin_sym_end] = ACTIONS(1386), + [sym_identifier] = ACTIONS(1384), + [aux_sym_preproc_include_token1] = ACTIONS(1384), + [aux_sym_preproc_def_token1] = ACTIONS(1384), + [aux_sym_preproc_if_token1] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1384), + [sym_preproc_directive] = ACTIONS(1384), + [anon_sym_LPAREN2] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1386), + [anon_sym_SEMI] = ACTIONS(1386), + [anon_sym___extension__] = ACTIONS(1384), + [anon_sym_typedef] = ACTIONS(1384), + [anon_sym_extern] = ACTIONS(1384), + [anon_sym___attribute__] = ACTIONS(1384), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1386), + [anon_sym___declspec] = ACTIONS(1384), + [anon_sym___cdecl] = ACTIONS(1384), + [anon_sym___clrcall] = ACTIONS(1384), + [anon_sym___stdcall] = ACTIONS(1384), + [anon_sym___fastcall] = ACTIONS(1384), + [anon_sym___thiscall] = ACTIONS(1384), + [anon_sym___vectorcall] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_long] = ACTIONS(1384), + [anon_sym_short] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1384), + [anon_sym_auto] = ACTIONS(1384), + [anon_sym_register] = ACTIONS(1384), + [anon_sym_inline] = ACTIONS(1384), + [anon_sym___inline] = ACTIONS(1384), + [anon_sym___inline__] = ACTIONS(1384), + [anon_sym___forceinline] = ACTIONS(1384), + [anon_sym_thread_local] = ACTIONS(1384), + [anon_sym___thread] = ACTIONS(1384), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_constexpr] = ACTIONS(1384), + [anon_sym_volatile] = ACTIONS(1384), + [anon_sym_restrict] = ACTIONS(1384), + [anon_sym___restrict__] = ACTIONS(1384), + [anon_sym__Atomic] = ACTIONS(1384), + [anon_sym__Noreturn] = ACTIONS(1384), + [anon_sym_noreturn] = ACTIONS(1384), + [sym_primitive_type] = ACTIONS(1384), + [anon_sym_enum] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_union] = ACTIONS(1384), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_else] = ACTIONS(1384), + [anon_sym_switch] = ACTIONS(1384), + [anon_sym_case] = ACTIONS(1384), + [anon_sym_default] = ACTIONS(1384), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_do] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_return] = ACTIONS(1384), + [anon_sym_break] = ACTIONS(1384), + [anon_sym_continue] = ACTIONS(1384), + [anon_sym_goto] = ACTIONS(1384), + [anon_sym_DASH_DASH] = ACTIONS(1386), + [anon_sym_PLUS_PLUS] = ACTIONS(1386), + [anon_sym_sizeof] = ACTIONS(1384), + [anon_sym___alignof__] = ACTIONS(1384), + [anon_sym___alignof] = ACTIONS(1384), + [anon_sym__alignof] = ACTIONS(1384), + [anon_sym_alignof] = ACTIONS(1384), + [anon_sym__Alignof] = ACTIONS(1384), + [anon_sym_offsetof] = ACTIONS(1384), + [anon_sym___builtin_va_arg] = ACTIONS(1384), + [anon_sym__Generic] = ACTIONS(1384), + [anon_sym_asm] = ACTIONS(1384), + [anon_sym___asm__] = ACTIONS(1384), + [sym_number_literal] = ACTIONS(1386), + [anon_sym_L_SQUOTE] = ACTIONS(1386), + [anon_sym_u_SQUOTE] = ACTIONS(1386), + [anon_sym_U_SQUOTE] = ACTIONS(1386), + [anon_sym_u8_SQUOTE] = ACTIONS(1386), + [anon_sym_SQUOTE] = ACTIONS(1386), + [anon_sym_L_DQUOTE] = ACTIONS(1386), + [anon_sym_u_DQUOTE] = ACTIONS(1386), + [anon_sym_U_DQUOTE] = ACTIONS(1386), + [anon_sym_u8_DQUOTE] = ACTIONS(1386), + [anon_sym_DQUOTE] = ACTIONS(1386), + [sym_true] = ACTIONS(1384), + [sym_false] = ACTIONS(1384), + [anon_sym_NULL] = ACTIONS(1384), + [anon_sym_nullptr] = ACTIONS(1384), + [sym_comment] = ACTIONS(3), + }, + [271] = { + [ts_builtin_sym_end] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1296), + [aux_sym_preproc_include_token1] = ACTIONS(1296), + [aux_sym_preproc_def_token1] = ACTIONS(1296), + [aux_sym_preproc_if_token1] = ACTIONS(1296), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1296), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), + [sym_preproc_directive] = ACTIONS(1296), + [anon_sym_LPAREN2] = ACTIONS(1298), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(1296), + [anon_sym_typedef] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1296), + [anon_sym___attribute__] = ACTIONS(1296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), + [anon_sym___declspec] = ACTIONS(1296), + [anon_sym___cdecl] = ACTIONS(1296), + [anon_sym___clrcall] = ACTIONS(1296), + [anon_sym___stdcall] = ACTIONS(1296), + [anon_sym___fastcall] = ACTIONS(1296), + [anon_sym___thiscall] = ACTIONS(1296), + [anon_sym___vectorcall] = ACTIONS(1296), + [anon_sym_LBRACE] = ACTIONS(1298), [anon_sym_signed] = ACTIONS(1296), [anon_sym_unsigned] = ACTIONS(1296), [anon_sym_long] = ACTIONS(1296), @@ -44042,6 +47725,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1296), [anon_sym_register] = ACTIONS(1296), [anon_sym_inline] = ACTIONS(1296), + [anon_sym___inline] = ACTIONS(1296), + [anon_sym___inline__] = ACTIONS(1296), + [anon_sym___forceinline] = ACTIONS(1296), [anon_sym_thread_local] = ACTIONS(1296), [anon_sym___thread] = ACTIONS(1296), [anon_sym_const] = ACTIONS(1296), @@ -44071,7 +47757,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1298), [anon_sym_PLUS_PLUS] = ACTIONS(1298), [anon_sym_sizeof] = ACTIONS(1296), + [anon_sym___alignof__] = ACTIONS(1296), + [anon_sym___alignof] = ACTIONS(1296), + [anon_sym__alignof] = ACTIONS(1296), + [anon_sym_alignof] = ACTIONS(1296), + [anon_sym__Alignof] = ACTIONS(1296), [anon_sym_offsetof] = ACTIONS(1296), + [anon_sym___builtin_va_arg] = ACTIONS(1296), [anon_sym__Generic] = ACTIONS(1296), [anon_sym_asm] = ACTIONS(1296), [anon_sym___asm__] = ACTIONS(1296), @@ -44093,98 +47785,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [272] = { - [ts_builtin_sym_end] = ACTIONS(1242), - [sym_identifier] = ACTIONS(1240), - [aux_sym_preproc_include_token1] = ACTIONS(1240), - [aux_sym_preproc_def_token1] = ACTIONS(1240), - [aux_sym_preproc_if_token1] = ACTIONS(1240), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1240), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1240), - [sym_preproc_directive] = ACTIONS(1240), - [anon_sym_LPAREN2] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1240), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_typedef] = ACTIONS(1240), - [anon_sym_extern] = ACTIONS(1240), - [anon_sym___attribute__] = ACTIONS(1240), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1242), - [anon_sym___declspec] = ACTIONS(1240), - [anon_sym___cdecl] = ACTIONS(1240), - [anon_sym___clrcall] = ACTIONS(1240), - [anon_sym___stdcall] = ACTIONS(1240), - [anon_sym___fastcall] = ACTIONS(1240), - [anon_sym___thiscall] = ACTIONS(1240), - [anon_sym___vectorcall] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_signed] = ACTIONS(1240), - [anon_sym_unsigned] = ACTIONS(1240), - [anon_sym_long] = ACTIONS(1240), - [anon_sym_short] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1240), - [anon_sym_auto] = ACTIONS(1240), - [anon_sym_register] = ACTIONS(1240), - [anon_sym_inline] = ACTIONS(1240), - [anon_sym_thread_local] = ACTIONS(1240), - [anon_sym___thread] = ACTIONS(1240), - [anon_sym_const] = ACTIONS(1240), - [anon_sym_constexpr] = ACTIONS(1240), - [anon_sym_volatile] = ACTIONS(1240), - [anon_sym_restrict] = ACTIONS(1240), - [anon_sym___restrict__] = ACTIONS(1240), - [anon_sym__Atomic] = ACTIONS(1240), - [anon_sym__Noreturn] = ACTIONS(1240), - [anon_sym_noreturn] = ACTIONS(1240), - [sym_primitive_type] = ACTIONS(1240), - [anon_sym_enum] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_else] = ACTIONS(1240), - [anon_sym_switch] = ACTIONS(1240), - [anon_sym_case] = ACTIONS(1240), - [anon_sym_default] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1240), - [anon_sym_do] = ACTIONS(1240), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1240), - [anon_sym_goto] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1242), - [anon_sym_sizeof] = ACTIONS(1240), - [anon_sym_offsetof] = ACTIONS(1240), - [anon_sym__Generic] = ACTIONS(1240), - [anon_sym_asm] = ACTIONS(1240), - [anon_sym___asm__] = ACTIONS(1240), - [sym_number_literal] = ACTIONS(1242), - [anon_sym_L_SQUOTE] = ACTIONS(1242), - [anon_sym_u_SQUOTE] = ACTIONS(1242), - [anon_sym_U_SQUOTE] = ACTIONS(1242), - [anon_sym_u8_SQUOTE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1242), - [anon_sym_L_DQUOTE] = ACTIONS(1242), - [anon_sym_u_DQUOTE] = ACTIONS(1242), - [anon_sym_U_DQUOTE] = ACTIONS(1242), - [anon_sym_u8_DQUOTE] = ACTIONS(1242), - [anon_sym_DQUOTE] = ACTIONS(1242), - [sym_true] = ACTIONS(1240), - [sym_false] = ACTIONS(1240), - [anon_sym_NULL] = ACTIONS(1240), - [anon_sym_nullptr] = ACTIONS(1240), - [sym_comment] = ACTIONS(3), - }, - [273] = { + [ts_builtin_sym_end] = ACTIONS(1302), [sym_identifier] = ACTIONS(1300), [aux_sym_preproc_include_token1] = ACTIONS(1300), [aux_sym_preproc_def_token1] = ACTIONS(1300), [aux_sym_preproc_if_token1] = ACTIONS(1300), - [aux_sym_preproc_if_token2] = ACTIONS(1300), [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), [sym_preproc_directive] = ACTIONS(1300), @@ -44196,6 +47801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1302), [anon_sym_AMP] = ACTIONS(1302), [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym___extension__] = ACTIONS(1300), [anon_sym_typedef] = ACTIONS(1300), [anon_sym_extern] = ACTIONS(1300), [anon_sym___attribute__] = ACTIONS(1300), @@ -44216,6 +47822,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1300), [anon_sym_register] = ACTIONS(1300), [anon_sym_inline] = ACTIONS(1300), + [anon_sym___inline] = ACTIONS(1300), + [anon_sym___inline__] = ACTIONS(1300), + [anon_sym___forceinline] = ACTIONS(1300), [anon_sym_thread_local] = ACTIONS(1300), [anon_sym___thread] = ACTIONS(1300), [anon_sym_const] = ACTIONS(1300), @@ -44245,7 +47854,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1302), [anon_sym_PLUS_PLUS] = ACTIONS(1302), [anon_sym_sizeof] = ACTIONS(1300), + [anon_sym___alignof__] = ACTIONS(1300), + [anon_sym___alignof] = ACTIONS(1300), + [anon_sym__alignof] = ACTIONS(1300), + [anon_sym_alignof] = ACTIONS(1300), + [anon_sym__Alignof] = ACTIONS(1300), [anon_sym_offsetof] = ACTIONS(1300), + [anon_sym___builtin_va_arg] = ACTIONS(1300), [anon_sym__Generic] = ACTIONS(1300), [anon_sym_asm] = ACTIONS(1300), [anon_sym___asm__] = ACTIONS(1300), @@ -44266,621 +47881,1467 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1300), [sym_comment] = ACTIONS(3), }, + [273] = { + [ts_builtin_sym_end] = ACTIONS(1390), + [sym_identifier] = ACTIONS(1388), + [aux_sym_preproc_include_token1] = ACTIONS(1388), + [aux_sym_preproc_def_token1] = ACTIONS(1388), + [aux_sym_preproc_if_token1] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1388), + [sym_preproc_directive] = ACTIONS(1388), + [anon_sym_LPAREN2] = ACTIONS(1390), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1390), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_SEMI] = ACTIONS(1390), + [anon_sym___extension__] = ACTIONS(1388), + [anon_sym_typedef] = ACTIONS(1388), + [anon_sym_extern] = ACTIONS(1388), + [anon_sym___attribute__] = ACTIONS(1388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1390), + [anon_sym___declspec] = ACTIONS(1388), + [anon_sym___cdecl] = ACTIONS(1388), + [anon_sym___clrcall] = ACTIONS(1388), + [anon_sym___stdcall] = ACTIONS(1388), + [anon_sym___fastcall] = ACTIONS(1388), + [anon_sym___thiscall] = ACTIONS(1388), + [anon_sym___vectorcall] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_signed] = ACTIONS(1388), + [anon_sym_unsigned] = ACTIONS(1388), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_short] = ACTIONS(1388), + [anon_sym_static] = ACTIONS(1388), + [anon_sym_auto] = ACTIONS(1388), + [anon_sym_register] = ACTIONS(1388), + [anon_sym_inline] = ACTIONS(1388), + [anon_sym___inline] = ACTIONS(1388), + [anon_sym___inline__] = ACTIONS(1388), + [anon_sym___forceinline] = ACTIONS(1388), + [anon_sym_thread_local] = ACTIONS(1388), + [anon_sym___thread] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1388), + [anon_sym_constexpr] = ACTIONS(1388), + [anon_sym_volatile] = ACTIONS(1388), + [anon_sym_restrict] = ACTIONS(1388), + [anon_sym___restrict__] = ACTIONS(1388), + [anon_sym__Atomic] = ACTIONS(1388), + [anon_sym__Noreturn] = ACTIONS(1388), + [anon_sym_noreturn] = ACTIONS(1388), + [sym_primitive_type] = ACTIONS(1388), + [anon_sym_enum] = ACTIONS(1388), + [anon_sym_struct] = ACTIONS(1388), + [anon_sym_union] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(1388), + [anon_sym_else] = ACTIONS(1388), + [anon_sym_switch] = ACTIONS(1388), + [anon_sym_case] = ACTIONS(1388), + [anon_sym_default] = ACTIONS(1388), + [anon_sym_while] = ACTIONS(1388), + [anon_sym_do] = ACTIONS(1388), + [anon_sym_for] = ACTIONS(1388), + [anon_sym_return] = ACTIONS(1388), + [anon_sym_break] = ACTIONS(1388), + [anon_sym_continue] = ACTIONS(1388), + [anon_sym_goto] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_PLUS_PLUS] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1388), + [anon_sym___alignof__] = ACTIONS(1388), + [anon_sym___alignof] = ACTIONS(1388), + [anon_sym__alignof] = ACTIONS(1388), + [anon_sym_alignof] = ACTIONS(1388), + [anon_sym__Alignof] = ACTIONS(1388), + [anon_sym_offsetof] = ACTIONS(1388), + [anon_sym___builtin_va_arg] = ACTIONS(1388), + [anon_sym__Generic] = ACTIONS(1388), + [anon_sym_asm] = ACTIONS(1388), + [anon_sym___asm__] = ACTIONS(1388), + [sym_number_literal] = ACTIONS(1390), + [anon_sym_L_SQUOTE] = ACTIONS(1390), + [anon_sym_u_SQUOTE] = ACTIONS(1390), + [anon_sym_U_SQUOTE] = ACTIONS(1390), + [anon_sym_u8_SQUOTE] = ACTIONS(1390), + [anon_sym_SQUOTE] = ACTIONS(1390), + [anon_sym_L_DQUOTE] = ACTIONS(1390), + [anon_sym_u_DQUOTE] = ACTIONS(1390), + [anon_sym_U_DQUOTE] = ACTIONS(1390), + [anon_sym_u8_DQUOTE] = ACTIONS(1390), + [anon_sym_DQUOTE] = ACTIONS(1390), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [anon_sym_NULL] = ACTIONS(1388), + [anon_sym_nullptr] = ACTIONS(1388), + [sym_comment] = ACTIONS(3), + }, [274] = { - [ts_builtin_sym_end] = ACTIONS(1314), - [sym_identifier] = ACTIONS(1312), - [aux_sym_preproc_include_token1] = ACTIONS(1312), - [aux_sym_preproc_def_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), - [sym_preproc_directive] = ACTIONS(1312), - [anon_sym_LPAREN2] = ACTIONS(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_TILDE] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym_typedef] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym___attribute__] = ACTIONS(1312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), - [anon_sym___declspec] = ACTIONS(1312), - [anon_sym___cdecl] = ACTIONS(1312), - [anon_sym___clrcall] = ACTIONS(1312), - [anon_sym___stdcall] = ACTIONS(1312), - [anon_sym___fastcall] = ACTIONS(1312), - [anon_sym___thiscall] = ACTIONS(1312), - [anon_sym___vectorcall] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_signed] = ACTIONS(1312), - [anon_sym_unsigned] = ACTIONS(1312), - [anon_sym_long] = ACTIONS(1312), - [anon_sym_short] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_auto] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_inline] = ACTIONS(1312), - [anon_sym_thread_local] = ACTIONS(1312), - [anon_sym___thread] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_constexpr] = ACTIONS(1312), - [anon_sym_volatile] = ACTIONS(1312), - [anon_sym_restrict] = ACTIONS(1312), - [anon_sym___restrict__] = ACTIONS(1312), - [anon_sym__Atomic] = ACTIONS(1312), - [anon_sym__Noreturn] = ACTIONS(1312), - [anon_sym_noreturn] = ACTIONS(1312), - [sym_primitive_type] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_goto] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [anon_sym_sizeof] = ACTIONS(1312), - [anon_sym_offsetof] = ACTIONS(1312), - [anon_sym__Generic] = ACTIONS(1312), - [anon_sym_asm] = ACTIONS(1312), - [anon_sym___asm__] = ACTIONS(1312), - [sym_number_literal] = ACTIONS(1314), - [anon_sym_L_SQUOTE] = ACTIONS(1314), - [anon_sym_u_SQUOTE] = ACTIONS(1314), - [anon_sym_U_SQUOTE] = ACTIONS(1314), - [anon_sym_u8_SQUOTE] = ACTIONS(1314), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_L_DQUOTE] = ACTIONS(1314), - [anon_sym_u_DQUOTE] = ACTIONS(1314), - [anon_sym_U_DQUOTE] = ACTIONS(1314), - [anon_sym_u8_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1314), - [sym_true] = ACTIONS(1312), - [sym_false] = ACTIONS(1312), - [anon_sym_NULL] = ACTIONS(1312), - [anon_sym_nullptr] = ACTIONS(1312), + [ts_builtin_sym_end] = ACTIONS(1462), + [sym_identifier] = ACTIONS(1460), + [aux_sym_preproc_include_token1] = ACTIONS(1460), + [aux_sym_preproc_def_token1] = ACTIONS(1460), + [aux_sym_preproc_if_token1] = ACTIONS(1460), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1460), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1460), + [sym_preproc_directive] = ACTIONS(1460), + [anon_sym_LPAREN2] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1460), + [anon_sym_STAR] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym___extension__] = ACTIONS(1460), + [anon_sym_typedef] = ACTIONS(1460), + [anon_sym_extern] = ACTIONS(1460), + [anon_sym___attribute__] = ACTIONS(1460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), + [anon_sym___declspec] = ACTIONS(1460), + [anon_sym___cdecl] = ACTIONS(1460), + [anon_sym___clrcall] = ACTIONS(1460), + [anon_sym___stdcall] = ACTIONS(1460), + [anon_sym___fastcall] = ACTIONS(1460), + [anon_sym___thiscall] = ACTIONS(1460), + [anon_sym___vectorcall] = ACTIONS(1460), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_signed] = ACTIONS(1460), + [anon_sym_unsigned] = ACTIONS(1460), + [anon_sym_long] = ACTIONS(1460), + [anon_sym_short] = ACTIONS(1460), + [anon_sym_static] = ACTIONS(1460), + [anon_sym_auto] = ACTIONS(1460), + [anon_sym_register] = ACTIONS(1460), + [anon_sym_inline] = ACTIONS(1460), + [anon_sym___inline] = ACTIONS(1460), + [anon_sym___inline__] = ACTIONS(1460), + [anon_sym___forceinline] = ACTIONS(1460), + [anon_sym_thread_local] = ACTIONS(1460), + [anon_sym___thread] = ACTIONS(1460), + [anon_sym_const] = ACTIONS(1460), + [anon_sym_constexpr] = ACTIONS(1460), + [anon_sym_volatile] = ACTIONS(1460), + [anon_sym_restrict] = ACTIONS(1460), + [anon_sym___restrict__] = ACTIONS(1460), + [anon_sym__Atomic] = ACTIONS(1460), + [anon_sym__Noreturn] = ACTIONS(1460), + [anon_sym_noreturn] = ACTIONS(1460), + [sym_primitive_type] = ACTIONS(1460), + [anon_sym_enum] = ACTIONS(1460), + [anon_sym_struct] = ACTIONS(1460), + [anon_sym_union] = ACTIONS(1460), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_else] = ACTIONS(1460), + [anon_sym_switch] = ACTIONS(1460), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(1460), + [anon_sym_do] = ACTIONS(1460), + [anon_sym_for] = ACTIONS(1460), + [anon_sym_return] = ACTIONS(1460), + [anon_sym_break] = ACTIONS(1460), + [anon_sym_continue] = ACTIONS(1460), + [anon_sym_goto] = ACTIONS(1460), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_sizeof] = ACTIONS(1460), + [anon_sym___alignof__] = ACTIONS(1460), + [anon_sym___alignof] = ACTIONS(1460), + [anon_sym__alignof] = ACTIONS(1460), + [anon_sym_alignof] = ACTIONS(1460), + [anon_sym__Alignof] = ACTIONS(1460), + [anon_sym_offsetof] = ACTIONS(1460), + [anon_sym___builtin_va_arg] = ACTIONS(1460), + [anon_sym__Generic] = ACTIONS(1460), + [anon_sym_asm] = ACTIONS(1460), + [anon_sym___asm__] = ACTIONS(1460), + [sym_number_literal] = ACTIONS(1462), + [anon_sym_L_SQUOTE] = ACTIONS(1462), + [anon_sym_u_SQUOTE] = ACTIONS(1462), + [anon_sym_U_SQUOTE] = ACTIONS(1462), + [anon_sym_u8_SQUOTE] = ACTIONS(1462), + [anon_sym_SQUOTE] = ACTIONS(1462), + [anon_sym_L_DQUOTE] = ACTIONS(1462), + [anon_sym_u_DQUOTE] = ACTIONS(1462), + [anon_sym_U_DQUOTE] = ACTIONS(1462), + [anon_sym_u8_DQUOTE] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1462), + [sym_true] = ACTIONS(1460), + [sym_false] = ACTIONS(1460), + [anon_sym_NULL] = ACTIONS(1460), + [anon_sym_nullptr] = ACTIONS(1460), [sym_comment] = ACTIONS(3), }, [275] = { - [sym_identifier] = ACTIONS(1344), - [aux_sym_preproc_include_token1] = ACTIONS(1344), - [aux_sym_preproc_def_token1] = ACTIONS(1344), - [aux_sym_preproc_if_token1] = ACTIONS(1344), - [aux_sym_preproc_if_token2] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), - [sym_preproc_directive] = ACTIONS(1344), - [anon_sym_LPAREN2] = ACTIONS(1346), - [anon_sym_BANG] = ACTIONS(1346), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1344), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1344), - [anon_sym_extern] = ACTIONS(1344), - [anon_sym___attribute__] = ACTIONS(1344), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), - [anon_sym___declspec] = ACTIONS(1344), - [anon_sym___cdecl] = ACTIONS(1344), - [anon_sym___clrcall] = ACTIONS(1344), - [anon_sym___stdcall] = ACTIONS(1344), - [anon_sym___fastcall] = ACTIONS(1344), - [anon_sym___thiscall] = ACTIONS(1344), - [anon_sym___vectorcall] = ACTIONS(1344), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_signed] = ACTIONS(1344), - [anon_sym_unsigned] = ACTIONS(1344), - [anon_sym_long] = ACTIONS(1344), - [anon_sym_short] = ACTIONS(1344), - [anon_sym_static] = ACTIONS(1344), - [anon_sym_auto] = ACTIONS(1344), - [anon_sym_register] = ACTIONS(1344), - [anon_sym_inline] = ACTIONS(1344), - [anon_sym_thread_local] = ACTIONS(1344), - [anon_sym___thread] = ACTIONS(1344), - [anon_sym_const] = ACTIONS(1344), - [anon_sym_constexpr] = ACTIONS(1344), - [anon_sym_volatile] = ACTIONS(1344), - [anon_sym_restrict] = ACTIONS(1344), - [anon_sym___restrict__] = ACTIONS(1344), - [anon_sym__Atomic] = ACTIONS(1344), - [anon_sym__Noreturn] = ACTIONS(1344), - [anon_sym_noreturn] = ACTIONS(1344), - [sym_primitive_type] = ACTIONS(1344), - [anon_sym_enum] = ACTIONS(1344), - [anon_sym_struct] = ACTIONS(1344), - [anon_sym_union] = ACTIONS(1344), - [anon_sym_if] = ACTIONS(1344), - [anon_sym_else] = ACTIONS(1344), - [anon_sym_switch] = ACTIONS(1344), - [anon_sym_case] = ACTIONS(1344), - [anon_sym_default] = ACTIONS(1344), - [anon_sym_while] = ACTIONS(1344), - [anon_sym_do] = ACTIONS(1344), - [anon_sym_for] = ACTIONS(1344), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1344), - [anon_sym_continue] = ACTIONS(1344), - [anon_sym_goto] = ACTIONS(1344), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_sizeof] = ACTIONS(1344), - [anon_sym_offsetof] = ACTIONS(1344), - [anon_sym__Generic] = ACTIONS(1344), - [anon_sym_asm] = ACTIONS(1344), - [anon_sym___asm__] = ACTIONS(1344), - [sym_number_literal] = ACTIONS(1346), - [anon_sym_L_SQUOTE] = ACTIONS(1346), - [anon_sym_u_SQUOTE] = ACTIONS(1346), - [anon_sym_U_SQUOTE] = ACTIONS(1346), - [anon_sym_u8_SQUOTE] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1346), - [anon_sym_L_DQUOTE] = ACTIONS(1346), - [anon_sym_u_DQUOTE] = ACTIONS(1346), - [anon_sym_U_DQUOTE] = ACTIONS(1346), - [anon_sym_u8_DQUOTE] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym_true] = ACTIONS(1344), - [sym_false] = ACTIONS(1344), - [anon_sym_NULL] = ACTIONS(1344), - [anon_sym_nullptr] = ACTIONS(1344), + [ts_builtin_sym_end] = ACTIONS(1458), + [sym_identifier] = ACTIONS(1456), + [aux_sym_preproc_include_token1] = ACTIONS(1456), + [aux_sym_preproc_def_token1] = ACTIONS(1456), + [aux_sym_preproc_if_token1] = ACTIONS(1456), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1456), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1456), + [sym_preproc_directive] = ACTIONS(1456), + [anon_sym_LPAREN2] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_TILDE] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1456), + [anon_sym_PLUS] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym___extension__] = ACTIONS(1456), + [anon_sym_typedef] = ACTIONS(1456), + [anon_sym_extern] = ACTIONS(1456), + [anon_sym___attribute__] = ACTIONS(1456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1458), + [anon_sym___declspec] = ACTIONS(1456), + [anon_sym___cdecl] = ACTIONS(1456), + [anon_sym___clrcall] = ACTIONS(1456), + [anon_sym___stdcall] = ACTIONS(1456), + [anon_sym___fastcall] = ACTIONS(1456), + [anon_sym___thiscall] = ACTIONS(1456), + [anon_sym___vectorcall] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_signed] = ACTIONS(1456), + [anon_sym_unsigned] = ACTIONS(1456), + [anon_sym_long] = ACTIONS(1456), + [anon_sym_short] = ACTIONS(1456), + [anon_sym_static] = ACTIONS(1456), + [anon_sym_auto] = ACTIONS(1456), + [anon_sym_register] = ACTIONS(1456), + [anon_sym_inline] = ACTIONS(1456), + [anon_sym___inline] = ACTIONS(1456), + [anon_sym___inline__] = ACTIONS(1456), + [anon_sym___forceinline] = ACTIONS(1456), + [anon_sym_thread_local] = ACTIONS(1456), + [anon_sym___thread] = ACTIONS(1456), + [anon_sym_const] = ACTIONS(1456), + [anon_sym_constexpr] = ACTIONS(1456), + [anon_sym_volatile] = ACTIONS(1456), + [anon_sym_restrict] = ACTIONS(1456), + [anon_sym___restrict__] = ACTIONS(1456), + [anon_sym__Atomic] = ACTIONS(1456), + [anon_sym__Noreturn] = ACTIONS(1456), + [anon_sym_noreturn] = ACTIONS(1456), + [sym_primitive_type] = ACTIONS(1456), + [anon_sym_enum] = ACTIONS(1456), + [anon_sym_struct] = ACTIONS(1456), + [anon_sym_union] = ACTIONS(1456), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_else] = ACTIONS(1456), + [anon_sym_switch] = ACTIONS(1456), + [anon_sym_case] = ACTIONS(1456), + [anon_sym_default] = ACTIONS(1456), + [anon_sym_while] = ACTIONS(1456), + [anon_sym_do] = ACTIONS(1456), + [anon_sym_for] = ACTIONS(1456), + [anon_sym_return] = ACTIONS(1456), + [anon_sym_break] = ACTIONS(1456), + [anon_sym_continue] = ACTIONS(1456), + [anon_sym_goto] = ACTIONS(1456), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_sizeof] = ACTIONS(1456), + [anon_sym___alignof__] = ACTIONS(1456), + [anon_sym___alignof] = ACTIONS(1456), + [anon_sym__alignof] = ACTIONS(1456), + [anon_sym_alignof] = ACTIONS(1456), + [anon_sym__Alignof] = ACTIONS(1456), + [anon_sym_offsetof] = ACTIONS(1456), + [anon_sym___builtin_va_arg] = ACTIONS(1456), + [anon_sym__Generic] = ACTIONS(1456), + [anon_sym_asm] = ACTIONS(1456), + [anon_sym___asm__] = ACTIONS(1456), + [sym_number_literal] = ACTIONS(1458), + [anon_sym_L_SQUOTE] = ACTIONS(1458), + [anon_sym_u_SQUOTE] = ACTIONS(1458), + [anon_sym_U_SQUOTE] = ACTIONS(1458), + [anon_sym_u8_SQUOTE] = ACTIONS(1458), + [anon_sym_SQUOTE] = ACTIONS(1458), + [anon_sym_L_DQUOTE] = ACTIONS(1458), + [anon_sym_u_DQUOTE] = ACTIONS(1458), + [anon_sym_U_DQUOTE] = ACTIONS(1458), + [anon_sym_u8_DQUOTE] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [sym_true] = ACTIONS(1456), + [sym_false] = ACTIONS(1456), + [anon_sym_NULL] = ACTIONS(1456), + [anon_sym_nullptr] = ACTIONS(1456), [sym_comment] = ACTIONS(3), }, [276] = { - [ts_builtin_sym_end] = ACTIONS(1202), - [sym_identifier] = ACTIONS(1200), - [aux_sym_preproc_include_token1] = ACTIONS(1200), - [aux_sym_preproc_def_token1] = ACTIONS(1200), - [aux_sym_preproc_if_token1] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1200), - [sym_preproc_directive] = ACTIONS(1200), - [anon_sym_LPAREN2] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1202), - [anon_sym_TILDE] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(1200), - [anon_sym_STAR] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1202), - [anon_sym_typedef] = ACTIONS(1200), - [anon_sym_extern] = ACTIONS(1200), - [anon_sym___attribute__] = ACTIONS(1200), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1202), - [anon_sym___declspec] = ACTIONS(1200), - [anon_sym___cdecl] = ACTIONS(1200), - [anon_sym___clrcall] = ACTIONS(1200), - [anon_sym___stdcall] = ACTIONS(1200), - [anon_sym___fastcall] = ACTIONS(1200), - [anon_sym___thiscall] = ACTIONS(1200), - [anon_sym___vectorcall] = ACTIONS(1200), - [anon_sym_LBRACE] = ACTIONS(1202), - [anon_sym_signed] = ACTIONS(1200), - [anon_sym_unsigned] = ACTIONS(1200), - [anon_sym_long] = ACTIONS(1200), - [anon_sym_short] = ACTIONS(1200), - [anon_sym_static] = ACTIONS(1200), - [anon_sym_auto] = ACTIONS(1200), - [anon_sym_register] = ACTIONS(1200), - [anon_sym_inline] = ACTIONS(1200), - [anon_sym_thread_local] = ACTIONS(1200), - [anon_sym___thread] = ACTIONS(1200), - [anon_sym_const] = ACTIONS(1200), - [anon_sym_constexpr] = ACTIONS(1200), - [anon_sym_volatile] = ACTIONS(1200), - [anon_sym_restrict] = ACTIONS(1200), - [anon_sym___restrict__] = ACTIONS(1200), - [anon_sym__Atomic] = ACTIONS(1200), - [anon_sym__Noreturn] = ACTIONS(1200), - [anon_sym_noreturn] = ACTIONS(1200), - [sym_primitive_type] = ACTIONS(1200), - [anon_sym_enum] = ACTIONS(1200), - [anon_sym_struct] = ACTIONS(1200), - [anon_sym_union] = ACTIONS(1200), - [anon_sym_if] = ACTIONS(1200), - [anon_sym_else] = ACTIONS(1200), - [anon_sym_switch] = ACTIONS(1200), - [anon_sym_case] = ACTIONS(1200), - [anon_sym_default] = ACTIONS(1200), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_do] = ACTIONS(1200), - [anon_sym_for] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1200), - [anon_sym_continue] = ACTIONS(1200), - [anon_sym_goto] = ACTIONS(1200), - [anon_sym_DASH_DASH] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1202), - [anon_sym_sizeof] = ACTIONS(1200), - [anon_sym_offsetof] = ACTIONS(1200), - [anon_sym__Generic] = ACTIONS(1200), - [anon_sym_asm] = ACTIONS(1200), - [anon_sym___asm__] = ACTIONS(1200), - [sym_number_literal] = ACTIONS(1202), - [anon_sym_L_SQUOTE] = ACTIONS(1202), - [anon_sym_u_SQUOTE] = ACTIONS(1202), - [anon_sym_U_SQUOTE] = ACTIONS(1202), - [anon_sym_u8_SQUOTE] = ACTIONS(1202), - [anon_sym_SQUOTE] = ACTIONS(1202), - [anon_sym_L_DQUOTE] = ACTIONS(1202), - [anon_sym_u_DQUOTE] = ACTIONS(1202), - [anon_sym_U_DQUOTE] = ACTIONS(1202), - [anon_sym_u8_DQUOTE] = ACTIONS(1202), - [anon_sym_DQUOTE] = ACTIONS(1202), - [sym_true] = ACTIONS(1200), - [sym_false] = ACTIONS(1200), - [anon_sym_NULL] = ACTIONS(1200), - [anon_sym_nullptr] = ACTIONS(1200), + [ts_builtin_sym_end] = ACTIONS(1454), + [sym_identifier] = ACTIONS(1452), + [aux_sym_preproc_include_token1] = ACTIONS(1452), + [aux_sym_preproc_def_token1] = ACTIONS(1452), + [aux_sym_preproc_if_token1] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), + [sym_preproc_directive] = ACTIONS(1452), + [anon_sym_LPAREN2] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_TILDE] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym___extension__] = ACTIONS(1452), + [anon_sym_typedef] = ACTIONS(1452), + [anon_sym_extern] = ACTIONS(1452), + [anon_sym___attribute__] = ACTIONS(1452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym___declspec] = ACTIONS(1452), + [anon_sym___cdecl] = ACTIONS(1452), + [anon_sym___clrcall] = ACTIONS(1452), + [anon_sym___stdcall] = ACTIONS(1452), + [anon_sym___fastcall] = ACTIONS(1452), + [anon_sym___thiscall] = ACTIONS(1452), + [anon_sym___vectorcall] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_signed] = ACTIONS(1452), + [anon_sym_unsigned] = ACTIONS(1452), + [anon_sym_long] = ACTIONS(1452), + [anon_sym_short] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1452), + [anon_sym_auto] = ACTIONS(1452), + [anon_sym_register] = ACTIONS(1452), + [anon_sym_inline] = ACTIONS(1452), + [anon_sym___inline] = ACTIONS(1452), + [anon_sym___inline__] = ACTIONS(1452), + [anon_sym___forceinline] = ACTIONS(1452), + [anon_sym_thread_local] = ACTIONS(1452), + [anon_sym___thread] = ACTIONS(1452), + [anon_sym_const] = ACTIONS(1452), + [anon_sym_constexpr] = ACTIONS(1452), + [anon_sym_volatile] = ACTIONS(1452), + [anon_sym_restrict] = ACTIONS(1452), + [anon_sym___restrict__] = ACTIONS(1452), + [anon_sym__Atomic] = ACTIONS(1452), + [anon_sym__Noreturn] = ACTIONS(1452), + [anon_sym_noreturn] = ACTIONS(1452), + [sym_primitive_type] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1452), + [anon_sym_union] = ACTIONS(1452), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_else] = ACTIONS(1452), + [anon_sym_switch] = ACTIONS(1452), + [anon_sym_case] = ACTIONS(1452), + [anon_sym_default] = ACTIONS(1452), + [anon_sym_while] = ACTIONS(1452), + [anon_sym_do] = ACTIONS(1452), + [anon_sym_for] = ACTIONS(1452), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_goto] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_sizeof] = ACTIONS(1452), + [anon_sym___alignof__] = ACTIONS(1452), + [anon_sym___alignof] = ACTIONS(1452), + [anon_sym__alignof] = ACTIONS(1452), + [anon_sym_alignof] = ACTIONS(1452), + [anon_sym__Alignof] = ACTIONS(1452), + [anon_sym_offsetof] = ACTIONS(1452), + [anon_sym___builtin_va_arg] = ACTIONS(1452), + [anon_sym__Generic] = ACTIONS(1452), + [anon_sym_asm] = ACTIONS(1452), + [anon_sym___asm__] = ACTIONS(1452), + [sym_number_literal] = ACTIONS(1454), + [anon_sym_L_SQUOTE] = ACTIONS(1454), + [anon_sym_u_SQUOTE] = ACTIONS(1454), + [anon_sym_U_SQUOTE] = ACTIONS(1454), + [anon_sym_u8_SQUOTE] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_L_DQUOTE] = ACTIONS(1454), + [anon_sym_u_DQUOTE] = ACTIONS(1454), + [anon_sym_U_DQUOTE] = ACTIONS(1454), + [anon_sym_u8_DQUOTE] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [sym_true] = ACTIONS(1452), + [sym_false] = ACTIONS(1452), + [anon_sym_NULL] = ACTIONS(1452), + [anon_sym_nullptr] = ACTIONS(1452), [sym_comment] = ACTIONS(3), }, [277] = { - [ts_builtin_sym_end] = ACTIONS(1214), - [sym_identifier] = ACTIONS(1212), - [aux_sym_preproc_include_token1] = ACTIONS(1212), - [aux_sym_preproc_def_token1] = ACTIONS(1212), - [aux_sym_preproc_if_token1] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1212), - [sym_preproc_directive] = ACTIONS(1212), - [anon_sym_LPAREN2] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_DASH] = ACTIONS(1212), - [anon_sym_PLUS] = ACTIONS(1212), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_typedef] = ACTIONS(1212), - [anon_sym_extern] = ACTIONS(1212), - [anon_sym___attribute__] = ACTIONS(1212), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), - [anon_sym___declspec] = ACTIONS(1212), - [anon_sym___cdecl] = ACTIONS(1212), - [anon_sym___clrcall] = ACTIONS(1212), - [anon_sym___stdcall] = ACTIONS(1212), - [anon_sym___fastcall] = ACTIONS(1212), - [anon_sym___thiscall] = ACTIONS(1212), - [anon_sym___vectorcall] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_signed] = ACTIONS(1212), - [anon_sym_unsigned] = ACTIONS(1212), - [anon_sym_long] = ACTIONS(1212), - [anon_sym_short] = ACTIONS(1212), - [anon_sym_static] = ACTIONS(1212), - [anon_sym_auto] = ACTIONS(1212), - [anon_sym_register] = ACTIONS(1212), - [anon_sym_inline] = ACTIONS(1212), - [anon_sym_thread_local] = ACTIONS(1212), - [anon_sym___thread] = ACTIONS(1212), - [anon_sym_const] = ACTIONS(1212), - [anon_sym_constexpr] = ACTIONS(1212), - [anon_sym_volatile] = ACTIONS(1212), - [anon_sym_restrict] = ACTIONS(1212), - [anon_sym___restrict__] = ACTIONS(1212), - [anon_sym__Atomic] = ACTIONS(1212), - [anon_sym__Noreturn] = ACTIONS(1212), - [anon_sym_noreturn] = ACTIONS(1212), - [sym_primitive_type] = ACTIONS(1212), - [anon_sym_enum] = ACTIONS(1212), - [anon_sym_struct] = ACTIONS(1212), - [anon_sym_union] = ACTIONS(1212), - [anon_sym_if] = ACTIONS(1212), - [anon_sym_else] = ACTIONS(1212), - [anon_sym_switch] = ACTIONS(1212), - [anon_sym_case] = ACTIONS(1212), - [anon_sym_default] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(1212), - [anon_sym_do] = ACTIONS(1212), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_return] = ACTIONS(1212), - [anon_sym_break] = ACTIONS(1212), - [anon_sym_continue] = ACTIONS(1212), - [anon_sym_goto] = ACTIONS(1212), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_sizeof] = ACTIONS(1212), - [anon_sym_offsetof] = ACTIONS(1212), - [anon_sym__Generic] = ACTIONS(1212), - [anon_sym_asm] = ACTIONS(1212), - [anon_sym___asm__] = ACTIONS(1212), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_L_SQUOTE] = ACTIONS(1214), - [anon_sym_u_SQUOTE] = ACTIONS(1214), - [anon_sym_U_SQUOTE] = ACTIONS(1214), - [anon_sym_u8_SQUOTE] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [anon_sym_L_DQUOTE] = ACTIONS(1214), - [anon_sym_u_DQUOTE] = ACTIONS(1214), - [anon_sym_U_DQUOTE] = ACTIONS(1214), - [anon_sym_u8_DQUOTE] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_true] = ACTIONS(1212), - [sym_false] = ACTIONS(1212), - [anon_sym_NULL] = ACTIONS(1212), - [anon_sym_nullptr] = ACTIONS(1212), + [ts_builtin_sym_end] = ACTIONS(1450), + [sym_identifier] = ACTIONS(1448), + [aux_sym_preproc_include_token1] = ACTIONS(1448), + [aux_sym_preproc_def_token1] = ACTIONS(1448), + [aux_sym_preproc_if_token1] = ACTIONS(1448), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1448), + [sym_preproc_directive] = ACTIONS(1448), + [anon_sym_LPAREN2] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym___extension__] = ACTIONS(1448), + [anon_sym_typedef] = ACTIONS(1448), + [anon_sym_extern] = ACTIONS(1448), + [anon_sym___attribute__] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), + [anon_sym___declspec] = ACTIONS(1448), + [anon_sym___cdecl] = ACTIONS(1448), + [anon_sym___clrcall] = ACTIONS(1448), + [anon_sym___stdcall] = ACTIONS(1448), + [anon_sym___fastcall] = ACTIONS(1448), + [anon_sym___thiscall] = ACTIONS(1448), + [anon_sym___vectorcall] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_signed] = ACTIONS(1448), + [anon_sym_unsigned] = ACTIONS(1448), + [anon_sym_long] = ACTIONS(1448), + [anon_sym_short] = ACTIONS(1448), + [anon_sym_static] = ACTIONS(1448), + [anon_sym_auto] = ACTIONS(1448), + [anon_sym_register] = ACTIONS(1448), + [anon_sym_inline] = ACTIONS(1448), + [anon_sym___inline] = ACTIONS(1448), + [anon_sym___inline__] = ACTIONS(1448), + [anon_sym___forceinline] = ACTIONS(1448), + [anon_sym_thread_local] = ACTIONS(1448), + [anon_sym___thread] = ACTIONS(1448), + [anon_sym_const] = ACTIONS(1448), + [anon_sym_constexpr] = ACTIONS(1448), + [anon_sym_volatile] = ACTIONS(1448), + [anon_sym_restrict] = ACTIONS(1448), + [anon_sym___restrict__] = ACTIONS(1448), + [anon_sym__Atomic] = ACTIONS(1448), + [anon_sym__Noreturn] = ACTIONS(1448), + [anon_sym_noreturn] = ACTIONS(1448), + [sym_primitive_type] = ACTIONS(1448), + [anon_sym_enum] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1448), + [anon_sym_union] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_else] = ACTIONS(1448), + [anon_sym_switch] = ACTIONS(1448), + [anon_sym_case] = ACTIONS(1448), + [anon_sym_default] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_do] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_return] = ACTIONS(1448), + [anon_sym_break] = ACTIONS(1448), + [anon_sym_continue] = ACTIONS(1448), + [anon_sym_goto] = ACTIONS(1448), + [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_PLUS_PLUS] = ACTIONS(1450), + [anon_sym_sizeof] = ACTIONS(1448), + [anon_sym___alignof__] = ACTIONS(1448), + [anon_sym___alignof] = ACTIONS(1448), + [anon_sym__alignof] = ACTIONS(1448), + [anon_sym_alignof] = ACTIONS(1448), + [anon_sym__Alignof] = ACTIONS(1448), + [anon_sym_offsetof] = ACTIONS(1448), + [anon_sym___builtin_va_arg] = ACTIONS(1448), + [anon_sym__Generic] = ACTIONS(1448), + [anon_sym_asm] = ACTIONS(1448), + [anon_sym___asm__] = ACTIONS(1448), + [sym_number_literal] = ACTIONS(1450), + [anon_sym_L_SQUOTE] = ACTIONS(1450), + [anon_sym_u_SQUOTE] = ACTIONS(1450), + [anon_sym_U_SQUOTE] = ACTIONS(1450), + [anon_sym_u8_SQUOTE] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1450), + [anon_sym_L_DQUOTE] = ACTIONS(1450), + [anon_sym_u_DQUOTE] = ACTIONS(1450), + [anon_sym_U_DQUOTE] = ACTIONS(1450), + [anon_sym_u8_DQUOTE] = ACTIONS(1450), + [anon_sym_DQUOTE] = ACTIONS(1450), + [sym_true] = ACTIONS(1448), + [sym_false] = ACTIONS(1448), + [anon_sym_NULL] = ACTIONS(1448), + [anon_sym_nullptr] = ACTIONS(1448), [sym_comment] = ACTIONS(3), }, [278] = { - [sym_identifier] = ACTIONS(1332), - [aux_sym_preproc_include_token1] = ACTIONS(1332), - [aux_sym_preproc_def_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token2] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), - [sym_preproc_directive] = ACTIONS(1332), - [anon_sym_LPAREN2] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym___attribute__] = ACTIONS(1332), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), - [anon_sym___declspec] = ACTIONS(1332), - [anon_sym___cdecl] = ACTIONS(1332), - [anon_sym___clrcall] = ACTIONS(1332), - [anon_sym___stdcall] = ACTIONS(1332), - [anon_sym___fastcall] = ACTIONS(1332), - [anon_sym___thiscall] = ACTIONS(1332), - [anon_sym___vectorcall] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_signed] = ACTIONS(1332), - [anon_sym_unsigned] = ACTIONS(1332), - [anon_sym_long] = ACTIONS(1332), - [anon_sym_short] = ACTIONS(1332), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_auto] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_inline] = ACTIONS(1332), - [anon_sym_thread_local] = ACTIONS(1332), - [anon_sym___thread] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_constexpr] = ACTIONS(1332), - [anon_sym_volatile] = ACTIONS(1332), - [anon_sym_restrict] = ACTIONS(1332), - [anon_sym___restrict__] = ACTIONS(1332), - [anon_sym__Atomic] = ACTIONS(1332), - [anon_sym__Noreturn] = ACTIONS(1332), - [anon_sym_noreturn] = ACTIONS(1332), - [sym_primitive_type] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1332), - [anon_sym_struct] = ACTIONS(1332), - [anon_sym_union] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_else] = ACTIONS(1332), - [anon_sym_switch] = ACTIONS(1332), - [anon_sym_case] = ACTIONS(1332), - [anon_sym_default] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_goto] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_sizeof] = ACTIONS(1332), - [anon_sym_offsetof] = ACTIONS(1332), - [anon_sym__Generic] = ACTIONS(1332), - [anon_sym_asm] = ACTIONS(1332), - [anon_sym___asm__] = ACTIONS(1332), - [sym_number_literal] = ACTIONS(1334), - [anon_sym_L_SQUOTE] = ACTIONS(1334), - [anon_sym_u_SQUOTE] = ACTIONS(1334), - [anon_sym_U_SQUOTE] = ACTIONS(1334), - [anon_sym_u8_SQUOTE] = ACTIONS(1334), - [anon_sym_SQUOTE] = ACTIONS(1334), - [anon_sym_L_DQUOTE] = ACTIONS(1334), - [anon_sym_u_DQUOTE] = ACTIONS(1334), - [anon_sym_U_DQUOTE] = ACTIONS(1334), - [anon_sym_u8_DQUOTE] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1334), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [anon_sym_NULL] = ACTIONS(1332), - [anon_sym_nullptr] = ACTIONS(1332), + [ts_builtin_sym_end] = ACTIONS(1446), + [sym_identifier] = ACTIONS(1444), + [aux_sym_preproc_include_token1] = ACTIONS(1444), + [aux_sym_preproc_def_token1] = ACTIONS(1444), + [aux_sym_preproc_if_token1] = ACTIONS(1444), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1444), + [sym_preproc_directive] = ACTIONS(1444), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [anon_sym_TILDE] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym___extension__] = ACTIONS(1444), + [anon_sym_typedef] = ACTIONS(1444), + [anon_sym_extern] = ACTIONS(1444), + [anon_sym___attribute__] = ACTIONS(1444), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), + [anon_sym___declspec] = ACTIONS(1444), + [anon_sym___cdecl] = ACTIONS(1444), + [anon_sym___clrcall] = ACTIONS(1444), + [anon_sym___stdcall] = ACTIONS(1444), + [anon_sym___fastcall] = ACTIONS(1444), + [anon_sym___thiscall] = ACTIONS(1444), + [anon_sym___vectorcall] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_signed] = ACTIONS(1444), + [anon_sym_unsigned] = ACTIONS(1444), + [anon_sym_long] = ACTIONS(1444), + [anon_sym_short] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_auto] = ACTIONS(1444), + [anon_sym_register] = ACTIONS(1444), + [anon_sym_inline] = ACTIONS(1444), + [anon_sym___inline] = ACTIONS(1444), + [anon_sym___inline__] = ACTIONS(1444), + [anon_sym___forceinline] = ACTIONS(1444), + [anon_sym_thread_local] = ACTIONS(1444), + [anon_sym___thread] = ACTIONS(1444), + [anon_sym_const] = ACTIONS(1444), + [anon_sym_constexpr] = ACTIONS(1444), + [anon_sym_volatile] = ACTIONS(1444), + [anon_sym_restrict] = ACTIONS(1444), + [anon_sym___restrict__] = ACTIONS(1444), + [anon_sym__Atomic] = ACTIONS(1444), + [anon_sym__Noreturn] = ACTIONS(1444), + [anon_sym_noreturn] = ACTIONS(1444), + [sym_primitive_type] = ACTIONS(1444), + [anon_sym_enum] = ACTIONS(1444), + [anon_sym_struct] = ACTIONS(1444), + [anon_sym_union] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_else] = ACTIONS(1444), + [anon_sym_switch] = ACTIONS(1444), + [anon_sym_case] = ACTIONS(1444), + [anon_sym_default] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_do] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_goto] = ACTIONS(1444), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_sizeof] = ACTIONS(1444), + [anon_sym___alignof__] = ACTIONS(1444), + [anon_sym___alignof] = ACTIONS(1444), + [anon_sym__alignof] = ACTIONS(1444), + [anon_sym_alignof] = ACTIONS(1444), + [anon_sym__Alignof] = ACTIONS(1444), + [anon_sym_offsetof] = ACTIONS(1444), + [anon_sym___builtin_va_arg] = ACTIONS(1444), + [anon_sym__Generic] = ACTIONS(1444), + [anon_sym_asm] = ACTIONS(1444), + [anon_sym___asm__] = ACTIONS(1444), + [sym_number_literal] = ACTIONS(1446), + [anon_sym_L_SQUOTE] = ACTIONS(1446), + [anon_sym_u_SQUOTE] = ACTIONS(1446), + [anon_sym_U_SQUOTE] = ACTIONS(1446), + [anon_sym_u8_SQUOTE] = ACTIONS(1446), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_L_DQUOTE] = ACTIONS(1446), + [anon_sym_u_DQUOTE] = ACTIONS(1446), + [anon_sym_U_DQUOTE] = ACTIONS(1446), + [anon_sym_u8_DQUOTE] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1446), + [sym_true] = ACTIONS(1444), + [sym_false] = ACTIONS(1444), + [anon_sym_NULL] = ACTIONS(1444), + [anon_sym_nullptr] = ACTIONS(1444), [sym_comment] = ACTIONS(3), }, [279] = { - [sym_identifier] = ACTIONS(1328), - [aux_sym_preproc_include_token1] = ACTIONS(1328), - [aux_sym_preproc_def_token1] = ACTIONS(1328), - [aux_sym_preproc_if_token1] = ACTIONS(1328), - [aux_sym_preproc_if_token2] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), - [sym_preproc_directive] = ACTIONS(1328), - [anon_sym_LPAREN2] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(1330), - [anon_sym_TILDE] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1328), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_SEMI] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1328), - [anon_sym_extern] = ACTIONS(1328), - [anon_sym___attribute__] = ACTIONS(1328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), - [anon_sym___declspec] = ACTIONS(1328), - [anon_sym___cdecl] = ACTIONS(1328), - [anon_sym___clrcall] = ACTIONS(1328), - [anon_sym___stdcall] = ACTIONS(1328), - [anon_sym___fastcall] = ACTIONS(1328), - [anon_sym___thiscall] = ACTIONS(1328), - [anon_sym___vectorcall] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_signed] = ACTIONS(1328), - [anon_sym_unsigned] = ACTIONS(1328), - [anon_sym_long] = ACTIONS(1328), - [anon_sym_short] = ACTIONS(1328), - [anon_sym_static] = ACTIONS(1328), - [anon_sym_auto] = ACTIONS(1328), - [anon_sym_register] = ACTIONS(1328), - [anon_sym_inline] = ACTIONS(1328), - [anon_sym_thread_local] = ACTIONS(1328), - [anon_sym___thread] = ACTIONS(1328), - [anon_sym_const] = ACTIONS(1328), - [anon_sym_constexpr] = ACTIONS(1328), - [anon_sym_volatile] = ACTIONS(1328), - [anon_sym_restrict] = ACTIONS(1328), - [anon_sym___restrict__] = ACTIONS(1328), - [anon_sym__Atomic] = ACTIONS(1328), - [anon_sym__Noreturn] = ACTIONS(1328), - [anon_sym_noreturn] = ACTIONS(1328), - [sym_primitive_type] = ACTIONS(1328), - [anon_sym_enum] = ACTIONS(1328), - [anon_sym_struct] = ACTIONS(1328), - [anon_sym_union] = ACTIONS(1328), - [anon_sym_if] = ACTIONS(1328), - [anon_sym_else] = ACTIONS(1328), - [anon_sym_switch] = ACTIONS(1328), - [anon_sym_case] = ACTIONS(1328), - [anon_sym_default] = ACTIONS(1328), - [anon_sym_while] = ACTIONS(1328), - [anon_sym_do] = ACTIONS(1328), - [anon_sym_for] = ACTIONS(1328), - [anon_sym_return] = ACTIONS(1328), - [anon_sym_break] = ACTIONS(1328), - [anon_sym_continue] = ACTIONS(1328), - [anon_sym_goto] = ACTIONS(1328), - [anon_sym_DASH_DASH] = ACTIONS(1330), - [anon_sym_PLUS_PLUS] = ACTIONS(1330), - [anon_sym_sizeof] = ACTIONS(1328), - [anon_sym_offsetof] = ACTIONS(1328), - [anon_sym__Generic] = ACTIONS(1328), - [anon_sym_asm] = ACTIONS(1328), - [anon_sym___asm__] = ACTIONS(1328), - [sym_number_literal] = ACTIONS(1330), - [anon_sym_L_SQUOTE] = ACTIONS(1330), - [anon_sym_u_SQUOTE] = ACTIONS(1330), - [anon_sym_U_SQUOTE] = ACTIONS(1330), - [anon_sym_u8_SQUOTE] = ACTIONS(1330), - [anon_sym_SQUOTE] = ACTIONS(1330), - [anon_sym_L_DQUOTE] = ACTIONS(1330), - [anon_sym_u_DQUOTE] = ACTIONS(1330), - [anon_sym_U_DQUOTE] = ACTIONS(1330), - [anon_sym_u8_DQUOTE] = ACTIONS(1330), - [anon_sym_DQUOTE] = ACTIONS(1330), - [sym_true] = ACTIONS(1328), - [sym_false] = ACTIONS(1328), - [anon_sym_NULL] = ACTIONS(1328), - [anon_sym_nullptr] = ACTIONS(1328), + [ts_builtin_sym_end] = ACTIONS(1442), + [sym_identifier] = ACTIONS(1440), + [aux_sym_preproc_include_token1] = ACTIONS(1440), + [aux_sym_preproc_def_token1] = ACTIONS(1440), + [aux_sym_preproc_if_token1] = ACTIONS(1440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1440), + [sym_preproc_directive] = ACTIONS(1440), + [anon_sym_LPAREN2] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym___extension__] = ACTIONS(1440), + [anon_sym_typedef] = ACTIONS(1440), + [anon_sym_extern] = ACTIONS(1440), + [anon_sym___attribute__] = ACTIONS(1440), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1442), + [anon_sym___declspec] = ACTIONS(1440), + [anon_sym___cdecl] = ACTIONS(1440), + [anon_sym___clrcall] = ACTIONS(1440), + [anon_sym___stdcall] = ACTIONS(1440), + [anon_sym___fastcall] = ACTIONS(1440), + [anon_sym___thiscall] = ACTIONS(1440), + [anon_sym___vectorcall] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_signed] = ACTIONS(1440), + [anon_sym_unsigned] = ACTIONS(1440), + [anon_sym_long] = ACTIONS(1440), + [anon_sym_short] = ACTIONS(1440), + [anon_sym_static] = ACTIONS(1440), + [anon_sym_auto] = ACTIONS(1440), + [anon_sym_register] = ACTIONS(1440), + [anon_sym_inline] = ACTIONS(1440), + [anon_sym___inline] = ACTIONS(1440), + [anon_sym___inline__] = ACTIONS(1440), + [anon_sym___forceinline] = ACTIONS(1440), + [anon_sym_thread_local] = ACTIONS(1440), + [anon_sym___thread] = ACTIONS(1440), + [anon_sym_const] = ACTIONS(1440), + [anon_sym_constexpr] = ACTIONS(1440), + [anon_sym_volatile] = ACTIONS(1440), + [anon_sym_restrict] = ACTIONS(1440), + [anon_sym___restrict__] = ACTIONS(1440), + [anon_sym__Atomic] = ACTIONS(1440), + [anon_sym__Noreturn] = ACTIONS(1440), + [anon_sym_noreturn] = ACTIONS(1440), + [sym_primitive_type] = ACTIONS(1440), + [anon_sym_enum] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_union] = ACTIONS(1440), + [anon_sym_if] = ACTIONS(1440), + [anon_sym_else] = ACTIONS(1440), + [anon_sym_switch] = ACTIONS(1440), + [anon_sym_case] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1440), + [anon_sym_while] = ACTIONS(1440), + [anon_sym_do] = ACTIONS(1440), + [anon_sym_for] = ACTIONS(1440), + [anon_sym_return] = ACTIONS(1440), + [anon_sym_break] = ACTIONS(1440), + [anon_sym_continue] = ACTIONS(1440), + [anon_sym_goto] = ACTIONS(1440), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_sizeof] = ACTIONS(1440), + [anon_sym___alignof__] = ACTIONS(1440), + [anon_sym___alignof] = ACTIONS(1440), + [anon_sym__alignof] = ACTIONS(1440), + [anon_sym_alignof] = ACTIONS(1440), + [anon_sym__Alignof] = ACTIONS(1440), + [anon_sym_offsetof] = ACTIONS(1440), + [anon_sym___builtin_va_arg] = ACTIONS(1440), + [anon_sym__Generic] = ACTIONS(1440), + [anon_sym_asm] = ACTIONS(1440), + [anon_sym___asm__] = ACTIONS(1440), + [sym_number_literal] = ACTIONS(1442), + [anon_sym_L_SQUOTE] = ACTIONS(1442), + [anon_sym_u_SQUOTE] = ACTIONS(1442), + [anon_sym_U_SQUOTE] = ACTIONS(1442), + [anon_sym_u8_SQUOTE] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_L_DQUOTE] = ACTIONS(1442), + [anon_sym_u_DQUOTE] = ACTIONS(1442), + [anon_sym_U_DQUOTE] = ACTIONS(1442), + [anon_sym_u8_DQUOTE] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [sym_true] = ACTIONS(1440), + [sym_false] = ACTIONS(1440), + [anon_sym_NULL] = ACTIONS(1440), + [anon_sym_nullptr] = ACTIONS(1440), [sym_comment] = ACTIONS(3), }, [280] = { - [sym_identifier] = ACTIONS(1324), - [aux_sym_preproc_include_token1] = ACTIONS(1324), - [aux_sym_preproc_def_token1] = ACTIONS(1324), - [aux_sym_preproc_if_token1] = ACTIONS(1324), - [aux_sym_preproc_if_token2] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), - [sym_preproc_directive] = ACTIONS(1324), - [anon_sym_LPAREN2] = ACTIONS(1326), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1324), - [anon_sym_extern] = ACTIONS(1324), - [anon_sym___attribute__] = ACTIONS(1324), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), - [anon_sym___declspec] = ACTIONS(1324), - [anon_sym___cdecl] = ACTIONS(1324), - [anon_sym___clrcall] = ACTIONS(1324), - [anon_sym___stdcall] = ACTIONS(1324), - [anon_sym___fastcall] = ACTIONS(1324), - [anon_sym___thiscall] = ACTIONS(1324), - [anon_sym___vectorcall] = ACTIONS(1324), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_signed] = ACTIONS(1324), - [anon_sym_unsigned] = ACTIONS(1324), - [anon_sym_long] = ACTIONS(1324), - [anon_sym_short] = ACTIONS(1324), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_auto] = ACTIONS(1324), - [anon_sym_register] = ACTIONS(1324), - [anon_sym_inline] = ACTIONS(1324), - [anon_sym_thread_local] = ACTIONS(1324), - [anon_sym___thread] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1324), - [anon_sym_constexpr] = ACTIONS(1324), - [anon_sym_volatile] = ACTIONS(1324), - [anon_sym_restrict] = ACTIONS(1324), - [anon_sym___restrict__] = ACTIONS(1324), - [anon_sym__Atomic] = ACTIONS(1324), - [anon_sym__Noreturn] = ACTIONS(1324), - [anon_sym_noreturn] = ACTIONS(1324), - [sym_primitive_type] = ACTIONS(1324), - [anon_sym_enum] = ACTIONS(1324), - [anon_sym_struct] = ACTIONS(1324), - [anon_sym_union] = ACTIONS(1324), - [anon_sym_if] = ACTIONS(1324), - [anon_sym_else] = ACTIONS(1324), - [anon_sym_switch] = ACTIONS(1324), - [anon_sym_case] = ACTIONS(1324), - [anon_sym_default] = ACTIONS(1324), - [anon_sym_while] = ACTIONS(1324), - [anon_sym_do] = ACTIONS(1324), - [anon_sym_for] = ACTIONS(1324), - [anon_sym_return] = ACTIONS(1324), - [anon_sym_break] = ACTIONS(1324), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1324), - [anon_sym_DASH_DASH] = ACTIONS(1326), - [anon_sym_PLUS_PLUS] = ACTIONS(1326), - [anon_sym_sizeof] = ACTIONS(1324), - [anon_sym_offsetof] = ACTIONS(1324), - [anon_sym__Generic] = ACTIONS(1324), - [anon_sym_asm] = ACTIONS(1324), - [anon_sym___asm__] = ACTIONS(1324), - [sym_number_literal] = ACTIONS(1326), - [anon_sym_L_SQUOTE] = ACTIONS(1326), - [anon_sym_u_SQUOTE] = ACTIONS(1326), - [anon_sym_U_SQUOTE] = ACTIONS(1326), - [anon_sym_u8_SQUOTE] = ACTIONS(1326), - [anon_sym_SQUOTE] = ACTIONS(1326), - [anon_sym_L_DQUOTE] = ACTIONS(1326), - [anon_sym_u_DQUOTE] = ACTIONS(1326), - [anon_sym_U_DQUOTE] = ACTIONS(1326), - [anon_sym_u8_DQUOTE] = ACTIONS(1326), - [anon_sym_DQUOTE] = ACTIONS(1326), - [sym_true] = ACTIONS(1324), - [sym_false] = ACTIONS(1324), - [anon_sym_NULL] = ACTIONS(1324), - [anon_sym_nullptr] = ACTIONS(1324), + [ts_builtin_sym_end] = ACTIONS(1438), + [sym_identifier] = ACTIONS(1436), + [aux_sym_preproc_include_token1] = ACTIONS(1436), + [aux_sym_preproc_def_token1] = ACTIONS(1436), + [aux_sym_preproc_if_token1] = ACTIONS(1436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1436), + [sym_preproc_directive] = ACTIONS(1436), + [anon_sym_LPAREN2] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym___extension__] = ACTIONS(1436), + [anon_sym_typedef] = ACTIONS(1436), + [anon_sym_extern] = ACTIONS(1436), + [anon_sym___attribute__] = ACTIONS(1436), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1438), + [anon_sym___declspec] = ACTIONS(1436), + [anon_sym___cdecl] = ACTIONS(1436), + [anon_sym___clrcall] = ACTIONS(1436), + [anon_sym___stdcall] = ACTIONS(1436), + [anon_sym___fastcall] = ACTIONS(1436), + [anon_sym___thiscall] = ACTIONS(1436), + [anon_sym___vectorcall] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_signed] = ACTIONS(1436), + [anon_sym_unsigned] = ACTIONS(1436), + [anon_sym_long] = ACTIONS(1436), + [anon_sym_short] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_auto] = ACTIONS(1436), + [anon_sym_register] = ACTIONS(1436), + [anon_sym_inline] = ACTIONS(1436), + [anon_sym___inline] = ACTIONS(1436), + [anon_sym___inline__] = ACTIONS(1436), + [anon_sym___forceinline] = ACTIONS(1436), + [anon_sym_thread_local] = ACTIONS(1436), + [anon_sym___thread] = ACTIONS(1436), + [anon_sym_const] = ACTIONS(1436), + [anon_sym_constexpr] = ACTIONS(1436), + [anon_sym_volatile] = ACTIONS(1436), + [anon_sym_restrict] = ACTIONS(1436), + [anon_sym___restrict__] = ACTIONS(1436), + [anon_sym__Atomic] = ACTIONS(1436), + [anon_sym__Noreturn] = ACTIONS(1436), + [anon_sym_noreturn] = ACTIONS(1436), + [sym_primitive_type] = ACTIONS(1436), + [anon_sym_enum] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1436), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_else] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1436), + [anon_sym_case] = ACTIONS(1436), + [anon_sym_default] = ACTIONS(1436), + [anon_sym_while] = ACTIONS(1436), + [anon_sym_do] = ACTIONS(1436), + [anon_sym_for] = ACTIONS(1436), + [anon_sym_return] = ACTIONS(1436), + [anon_sym_break] = ACTIONS(1436), + [anon_sym_continue] = ACTIONS(1436), + [anon_sym_goto] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1438), + [anon_sym_PLUS_PLUS] = ACTIONS(1438), + [anon_sym_sizeof] = ACTIONS(1436), + [anon_sym___alignof__] = ACTIONS(1436), + [anon_sym___alignof] = ACTIONS(1436), + [anon_sym__alignof] = ACTIONS(1436), + [anon_sym_alignof] = ACTIONS(1436), + [anon_sym__Alignof] = ACTIONS(1436), + [anon_sym_offsetof] = ACTIONS(1436), + [anon_sym___builtin_va_arg] = ACTIONS(1436), + [anon_sym__Generic] = ACTIONS(1436), + [anon_sym_asm] = ACTIONS(1436), + [anon_sym___asm__] = ACTIONS(1436), + [sym_number_literal] = ACTIONS(1438), + [anon_sym_L_SQUOTE] = ACTIONS(1438), + [anon_sym_u_SQUOTE] = ACTIONS(1438), + [anon_sym_U_SQUOTE] = ACTIONS(1438), + [anon_sym_u8_SQUOTE] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_L_DQUOTE] = ACTIONS(1438), + [anon_sym_u_DQUOTE] = ACTIONS(1438), + [anon_sym_U_DQUOTE] = ACTIONS(1438), + [anon_sym_u8_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [sym_true] = ACTIONS(1436), + [sym_false] = ACTIONS(1436), + [anon_sym_NULL] = ACTIONS(1436), + [anon_sym_nullptr] = ACTIONS(1436), [sym_comment] = ACTIONS(3), }, [281] = { + [ts_builtin_sym_end] = ACTIONS(1434), + [sym_identifier] = ACTIONS(1432), + [aux_sym_preproc_include_token1] = ACTIONS(1432), + [aux_sym_preproc_def_token1] = ACTIONS(1432), + [aux_sym_preproc_if_token1] = ACTIONS(1432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), + [sym_preproc_directive] = ACTIONS(1432), + [anon_sym_LPAREN2] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym___extension__] = ACTIONS(1432), + [anon_sym_typedef] = ACTIONS(1432), + [anon_sym_extern] = ACTIONS(1432), + [anon_sym___attribute__] = ACTIONS(1432), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1434), + [anon_sym___declspec] = ACTIONS(1432), + [anon_sym___cdecl] = ACTIONS(1432), + [anon_sym___clrcall] = ACTIONS(1432), + [anon_sym___stdcall] = ACTIONS(1432), + [anon_sym___fastcall] = ACTIONS(1432), + [anon_sym___thiscall] = ACTIONS(1432), + [anon_sym___vectorcall] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_signed] = ACTIONS(1432), + [anon_sym_unsigned] = ACTIONS(1432), + [anon_sym_long] = ACTIONS(1432), + [anon_sym_short] = ACTIONS(1432), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_auto] = ACTIONS(1432), + [anon_sym_register] = ACTIONS(1432), + [anon_sym_inline] = ACTIONS(1432), + [anon_sym___inline] = ACTIONS(1432), + [anon_sym___inline__] = ACTIONS(1432), + [anon_sym___forceinline] = ACTIONS(1432), + [anon_sym_thread_local] = ACTIONS(1432), + [anon_sym___thread] = ACTIONS(1432), + [anon_sym_const] = ACTIONS(1432), + [anon_sym_constexpr] = ACTIONS(1432), + [anon_sym_volatile] = ACTIONS(1432), + [anon_sym_restrict] = ACTIONS(1432), + [anon_sym___restrict__] = ACTIONS(1432), + [anon_sym__Atomic] = ACTIONS(1432), + [anon_sym__Noreturn] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [sym_primitive_type] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [anon_sym_struct] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(1432), + [anon_sym_switch] = ACTIONS(1432), + [anon_sym_case] = ACTIONS(1432), + [anon_sym_default] = ACTIONS(1432), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_do] = ACTIONS(1432), + [anon_sym_for] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_break] = ACTIONS(1432), + [anon_sym_continue] = ACTIONS(1432), + [anon_sym_goto] = ACTIONS(1432), + [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_PLUS_PLUS] = ACTIONS(1434), + [anon_sym_sizeof] = ACTIONS(1432), + [anon_sym___alignof__] = ACTIONS(1432), + [anon_sym___alignof] = ACTIONS(1432), + [anon_sym__alignof] = ACTIONS(1432), + [anon_sym_alignof] = ACTIONS(1432), + [anon_sym__Alignof] = ACTIONS(1432), + [anon_sym_offsetof] = ACTIONS(1432), + [anon_sym___builtin_va_arg] = ACTIONS(1432), + [anon_sym__Generic] = ACTIONS(1432), + [anon_sym_asm] = ACTIONS(1432), + [anon_sym___asm__] = ACTIONS(1432), + [sym_number_literal] = ACTIONS(1434), + [anon_sym_L_SQUOTE] = ACTIONS(1434), + [anon_sym_u_SQUOTE] = ACTIONS(1434), + [anon_sym_U_SQUOTE] = ACTIONS(1434), + [anon_sym_u8_SQUOTE] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(1434), + [anon_sym_L_DQUOTE] = ACTIONS(1434), + [anon_sym_u_DQUOTE] = ACTIONS(1434), + [anon_sym_U_DQUOTE] = ACTIONS(1434), + [anon_sym_u8_DQUOTE] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(1434), + [sym_true] = ACTIONS(1432), + [sym_false] = ACTIONS(1432), + [anon_sym_NULL] = ACTIONS(1432), + [anon_sym_nullptr] = ACTIONS(1432), + [sym_comment] = ACTIONS(3), + }, + [282] = { + [ts_builtin_sym_end] = ACTIONS(1430), + [sym_identifier] = ACTIONS(1428), + [aux_sym_preproc_include_token1] = ACTIONS(1428), + [aux_sym_preproc_def_token1] = ACTIONS(1428), + [aux_sym_preproc_if_token1] = ACTIONS(1428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1428), + [sym_preproc_directive] = ACTIONS(1428), + [anon_sym_LPAREN2] = ACTIONS(1430), + [anon_sym_BANG] = ACTIONS(1430), + [anon_sym_TILDE] = ACTIONS(1430), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym___extension__] = ACTIONS(1428), + [anon_sym_typedef] = ACTIONS(1428), + [anon_sym_extern] = ACTIONS(1428), + [anon_sym___attribute__] = ACTIONS(1428), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1430), + [anon_sym___declspec] = ACTIONS(1428), + [anon_sym___cdecl] = ACTIONS(1428), + [anon_sym___clrcall] = ACTIONS(1428), + [anon_sym___stdcall] = ACTIONS(1428), + [anon_sym___fastcall] = ACTIONS(1428), + [anon_sym___thiscall] = ACTIONS(1428), + [anon_sym___vectorcall] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_signed] = ACTIONS(1428), + [anon_sym_unsigned] = ACTIONS(1428), + [anon_sym_long] = ACTIONS(1428), + [anon_sym_short] = ACTIONS(1428), + [anon_sym_static] = ACTIONS(1428), + [anon_sym_auto] = ACTIONS(1428), + [anon_sym_register] = ACTIONS(1428), + [anon_sym_inline] = ACTIONS(1428), + [anon_sym___inline] = ACTIONS(1428), + [anon_sym___inline__] = ACTIONS(1428), + [anon_sym___forceinline] = ACTIONS(1428), + [anon_sym_thread_local] = ACTIONS(1428), + [anon_sym___thread] = ACTIONS(1428), + [anon_sym_const] = ACTIONS(1428), + [anon_sym_constexpr] = ACTIONS(1428), + [anon_sym_volatile] = ACTIONS(1428), + [anon_sym_restrict] = ACTIONS(1428), + [anon_sym___restrict__] = ACTIONS(1428), + [anon_sym__Atomic] = ACTIONS(1428), + [anon_sym__Noreturn] = ACTIONS(1428), + [anon_sym_noreturn] = ACTIONS(1428), + [sym_primitive_type] = ACTIONS(1428), + [anon_sym_enum] = ACTIONS(1428), + [anon_sym_struct] = ACTIONS(1428), + [anon_sym_union] = ACTIONS(1428), + [anon_sym_if] = ACTIONS(1428), + [anon_sym_else] = ACTIONS(1428), + [anon_sym_switch] = ACTIONS(1428), + [anon_sym_case] = ACTIONS(1428), + [anon_sym_default] = ACTIONS(1428), + [anon_sym_while] = ACTIONS(1428), + [anon_sym_do] = ACTIONS(1428), + [anon_sym_for] = ACTIONS(1428), + [anon_sym_return] = ACTIONS(1428), + [anon_sym_break] = ACTIONS(1428), + [anon_sym_continue] = ACTIONS(1428), + [anon_sym_goto] = ACTIONS(1428), + [anon_sym_DASH_DASH] = ACTIONS(1430), + [anon_sym_PLUS_PLUS] = ACTIONS(1430), + [anon_sym_sizeof] = ACTIONS(1428), + [anon_sym___alignof__] = ACTIONS(1428), + [anon_sym___alignof] = ACTIONS(1428), + [anon_sym__alignof] = ACTIONS(1428), + [anon_sym_alignof] = ACTIONS(1428), + [anon_sym__Alignof] = ACTIONS(1428), + [anon_sym_offsetof] = ACTIONS(1428), + [anon_sym___builtin_va_arg] = ACTIONS(1428), + [anon_sym__Generic] = ACTIONS(1428), + [anon_sym_asm] = ACTIONS(1428), + [anon_sym___asm__] = ACTIONS(1428), + [sym_number_literal] = ACTIONS(1430), + [anon_sym_L_SQUOTE] = ACTIONS(1430), + [anon_sym_u_SQUOTE] = ACTIONS(1430), + [anon_sym_U_SQUOTE] = ACTIONS(1430), + [anon_sym_u8_SQUOTE] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(1430), + [anon_sym_L_DQUOTE] = ACTIONS(1430), + [anon_sym_u_DQUOTE] = ACTIONS(1430), + [anon_sym_U_DQUOTE] = ACTIONS(1430), + [anon_sym_u8_DQUOTE] = ACTIONS(1430), + [anon_sym_DQUOTE] = ACTIONS(1430), + [sym_true] = ACTIONS(1428), + [sym_false] = ACTIONS(1428), + [anon_sym_NULL] = ACTIONS(1428), + [anon_sym_nullptr] = ACTIONS(1428), + [sym_comment] = ACTIONS(3), + }, + [283] = { + [ts_builtin_sym_end] = ACTIONS(1426), + [sym_identifier] = ACTIONS(1424), + [aux_sym_preproc_include_token1] = ACTIONS(1424), + [aux_sym_preproc_def_token1] = ACTIONS(1424), + [aux_sym_preproc_if_token1] = ACTIONS(1424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), + [sym_preproc_directive] = ACTIONS(1424), + [anon_sym_LPAREN2] = ACTIONS(1426), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym___extension__] = ACTIONS(1424), + [anon_sym_typedef] = ACTIONS(1424), + [anon_sym_extern] = ACTIONS(1424), + [anon_sym___attribute__] = ACTIONS(1424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1426), + [anon_sym___declspec] = ACTIONS(1424), + [anon_sym___cdecl] = ACTIONS(1424), + [anon_sym___clrcall] = ACTIONS(1424), + [anon_sym___stdcall] = ACTIONS(1424), + [anon_sym___fastcall] = ACTIONS(1424), + [anon_sym___thiscall] = ACTIONS(1424), + [anon_sym___vectorcall] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_signed] = ACTIONS(1424), + [anon_sym_unsigned] = ACTIONS(1424), + [anon_sym_long] = ACTIONS(1424), + [anon_sym_short] = ACTIONS(1424), + [anon_sym_static] = ACTIONS(1424), + [anon_sym_auto] = ACTIONS(1424), + [anon_sym_register] = ACTIONS(1424), + [anon_sym_inline] = ACTIONS(1424), + [anon_sym___inline] = ACTIONS(1424), + [anon_sym___inline__] = ACTIONS(1424), + [anon_sym___forceinline] = ACTIONS(1424), + [anon_sym_thread_local] = ACTIONS(1424), + [anon_sym___thread] = ACTIONS(1424), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_constexpr] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_restrict] = ACTIONS(1424), + [anon_sym___restrict__] = ACTIONS(1424), + [anon_sym__Atomic] = ACTIONS(1424), + [anon_sym__Noreturn] = ACTIONS(1424), + [anon_sym_noreturn] = ACTIONS(1424), + [sym_primitive_type] = ACTIONS(1424), + [anon_sym_enum] = ACTIONS(1424), + [anon_sym_struct] = ACTIONS(1424), + [anon_sym_union] = ACTIONS(1424), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_else] = ACTIONS(1424), + [anon_sym_switch] = ACTIONS(1424), + [anon_sym_case] = ACTIONS(1424), + [anon_sym_default] = ACTIONS(1424), + [anon_sym_while] = ACTIONS(1424), + [anon_sym_do] = ACTIONS(1424), + [anon_sym_for] = ACTIONS(1424), + [anon_sym_return] = ACTIONS(1424), + [anon_sym_break] = ACTIONS(1424), + [anon_sym_continue] = ACTIONS(1424), + [anon_sym_goto] = ACTIONS(1424), + [anon_sym_DASH_DASH] = ACTIONS(1426), + [anon_sym_PLUS_PLUS] = ACTIONS(1426), + [anon_sym_sizeof] = ACTIONS(1424), + [anon_sym___alignof__] = ACTIONS(1424), + [anon_sym___alignof] = ACTIONS(1424), + [anon_sym__alignof] = ACTIONS(1424), + [anon_sym_alignof] = ACTIONS(1424), + [anon_sym__Alignof] = ACTIONS(1424), + [anon_sym_offsetof] = ACTIONS(1424), + [anon_sym___builtin_va_arg] = ACTIONS(1424), + [anon_sym__Generic] = ACTIONS(1424), + [anon_sym_asm] = ACTIONS(1424), + [anon_sym___asm__] = ACTIONS(1424), + [sym_number_literal] = ACTIONS(1426), + [anon_sym_L_SQUOTE] = ACTIONS(1426), + [anon_sym_u_SQUOTE] = ACTIONS(1426), + [anon_sym_U_SQUOTE] = ACTIONS(1426), + [anon_sym_u8_SQUOTE] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1426), + [anon_sym_L_DQUOTE] = ACTIONS(1426), + [anon_sym_u_DQUOTE] = ACTIONS(1426), + [anon_sym_U_DQUOTE] = ACTIONS(1426), + [anon_sym_u8_DQUOTE] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [sym_true] = ACTIONS(1424), + [sym_false] = ACTIONS(1424), + [anon_sym_NULL] = ACTIONS(1424), + [anon_sym_nullptr] = ACTIONS(1424), + [sym_comment] = ACTIONS(3), + }, + [284] = { + [ts_builtin_sym_end] = ACTIONS(1422), + [sym_identifier] = ACTIONS(1420), + [aux_sym_preproc_include_token1] = ACTIONS(1420), + [aux_sym_preproc_def_token1] = ACTIONS(1420), + [aux_sym_preproc_if_token1] = ACTIONS(1420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1420), + [sym_preproc_directive] = ACTIONS(1420), + [anon_sym_LPAREN2] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_DASH] = ACTIONS(1420), + [anon_sym_PLUS] = ACTIONS(1420), + [anon_sym_STAR] = ACTIONS(1422), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_SEMI] = ACTIONS(1422), + [anon_sym___extension__] = ACTIONS(1420), + [anon_sym_typedef] = ACTIONS(1420), + [anon_sym_extern] = ACTIONS(1420), + [anon_sym___attribute__] = ACTIONS(1420), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1422), + [anon_sym___declspec] = ACTIONS(1420), + [anon_sym___cdecl] = ACTIONS(1420), + [anon_sym___clrcall] = ACTIONS(1420), + [anon_sym___stdcall] = ACTIONS(1420), + [anon_sym___fastcall] = ACTIONS(1420), + [anon_sym___thiscall] = ACTIONS(1420), + [anon_sym___vectorcall] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1422), + [anon_sym_signed] = ACTIONS(1420), + [anon_sym_unsigned] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_static] = ACTIONS(1420), + [anon_sym_auto] = ACTIONS(1420), + [anon_sym_register] = ACTIONS(1420), + [anon_sym_inline] = ACTIONS(1420), + [anon_sym___inline] = ACTIONS(1420), + [anon_sym___inline__] = ACTIONS(1420), + [anon_sym___forceinline] = ACTIONS(1420), + [anon_sym_thread_local] = ACTIONS(1420), + [anon_sym___thread] = ACTIONS(1420), + [anon_sym_const] = ACTIONS(1420), + [anon_sym_constexpr] = ACTIONS(1420), + [anon_sym_volatile] = ACTIONS(1420), + [anon_sym_restrict] = ACTIONS(1420), + [anon_sym___restrict__] = ACTIONS(1420), + [anon_sym__Atomic] = ACTIONS(1420), + [anon_sym__Noreturn] = ACTIONS(1420), + [anon_sym_noreturn] = ACTIONS(1420), + [sym_primitive_type] = ACTIONS(1420), + [anon_sym_enum] = ACTIONS(1420), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_union] = ACTIONS(1420), + [anon_sym_if] = ACTIONS(1420), + [anon_sym_else] = ACTIONS(1420), + [anon_sym_switch] = ACTIONS(1420), + [anon_sym_case] = ACTIONS(1420), + [anon_sym_default] = ACTIONS(1420), + [anon_sym_while] = ACTIONS(1420), + [anon_sym_do] = ACTIONS(1420), + [anon_sym_for] = ACTIONS(1420), + [anon_sym_return] = ACTIONS(1420), + [anon_sym_break] = ACTIONS(1420), + [anon_sym_continue] = ACTIONS(1420), + [anon_sym_goto] = ACTIONS(1420), + [anon_sym_DASH_DASH] = ACTIONS(1422), + [anon_sym_PLUS_PLUS] = ACTIONS(1422), + [anon_sym_sizeof] = ACTIONS(1420), + [anon_sym___alignof__] = ACTIONS(1420), + [anon_sym___alignof] = ACTIONS(1420), + [anon_sym__alignof] = ACTIONS(1420), + [anon_sym_alignof] = ACTIONS(1420), + [anon_sym__Alignof] = ACTIONS(1420), + [anon_sym_offsetof] = ACTIONS(1420), + [anon_sym___builtin_va_arg] = ACTIONS(1420), + [anon_sym__Generic] = ACTIONS(1420), + [anon_sym_asm] = ACTIONS(1420), + [anon_sym___asm__] = ACTIONS(1420), + [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(1420), + [sym_false] = ACTIONS(1420), + [anon_sym_NULL] = ACTIONS(1420), + [anon_sym_nullptr] = ACTIONS(1420), + [sym_comment] = ACTIONS(3), + }, + [285] = { + [ts_builtin_sym_end] = ACTIONS(1414), + [sym_identifier] = ACTIONS(1412), + [aux_sym_preproc_include_token1] = ACTIONS(1412), + [aux_sym_preproc_def_token1] = ACTIONS(1412), + [aux_sym_preproc_if_token1] = ACTIONS(1412), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1412), + [sym_preproc_directive] = ACTIONS(1412), + [anon_sym_LPAREN2] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1414), + [anon_sym_TILDE] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_AMP] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1414), + [anon_sym___extension__] = ACTIONS(1412), + [anon_sym_typedef] = ACTIONS(1412), + [anon_sym_extern] = ACTIONS(1412), + [anon_sym___attribute__] = ACTIONS(1412), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1414), + [anon_sym___declspec] = ACTIONS(1412), + [anon_sym___cdecl] = ACTIONS(1412), + [anon_sym___clrcall] = ACTIONS(1412), + [anon_sym___stdcall] = ACTIONS(1412), + [anon_sym___fastcall] = ACTIONS(1412), + [anon_sym___thiscall] = ACTIONS(1412), + [anon_sym___vectorcall] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_signed] = ACTIONS(1412), + [anon_sym_unsigned] = ACTIONS(1412), + [anon_sym_long] = ACTIONS(1412), + [anon_sym_short] = ACTIONS(1412), + [anon_sym_static] = ACTIONS(1412), + [anon_sym_auto] = ACTIONS(1412), + [anon_sym_register] = ACTIONS(1412), + [anon_sym_inline] = ACTIONS(1412), + [anon_sym___inline] = ACTIONS(1412), + [anon_sym___inline__] = ACTIONS(1412), + [anon_sym___forceinline] = ACTIONS(1412), + [anon_sym_thread_local] = ACTIONS(1412), + [anon_sym___thread] = ACTIONS(1412), + [anon_sym_const] = ACTIONS(1412), + [anon_sym_constexpr] = ACTIONS(1412), + [anon_sym_volatile] = ACTIONS(1412), + [anon_sym_restrict] = ACTIONS(1412), + [anon_sym___restrict__] = ACTIONS(1412), + [anon_sym__Atomic] = ACTIONS(1412), + [anon_sym__Noreturn] = ACTIONS(1412), + [anon_sym_noreturn] = ACTIONS(1412), + [sym_primitive_type] = ACTIONS(1412), + [anon_sym_enum] = ACTIONS(1412), + [anon_sym_struct] = ACTIONS(1412), + [anon_sym_union] = ACTIONS(1412), + [anon_sym_if] = ACTIONS(1412), + [anon_sym_else] = ACTIONS(1412), + [anon_sym_switch] = ACTIONS(1412), + [anon_sym_case] = ACTIONS(1412), + [anon_sym_default] = ACTIONS(1412), + [anon_sym_while] = ACTIONS(1412), + [anon_sym_do] = ACTIONS(1412), + [anon_sym_for] = ACTIONS(1412), + [anon_sym_return] = ACTIONS(1412), + [anon_sym_break] = ACTIONS(1412), + [anon_sym_continue] = ACTIONS(1412), + [anon_sym_goto] = ACTIONS(1412), + [anon_sym_DASH_DASH] = ACTIONS(1414), + [anon_sym_PLUS_PLUS] = ACTIONS(1414), + [anon_sym_sizeof] = ACTIONS(1412), + [anon_sym___alignof__] = ACTIONS(1412), + [anon_sym___alignof] = ACTIONS(1412), + [anon_sym__alignof] = ACTIONS(1412), + [anon_sym_alignof] = ACTIONS(1412), + [anon_sym__Alignof] = ACTIONS(1412), + [anon_sym_offsetof] = ACTIONS(1412), + [anon_sym___builtin_va_arg] = ACTIONS(1412), + [anon_sym__Generic] = ACTIONS(1412), + [anon_sym_asm] = ACTIONS(1412), + [anon_sym___asm__] = ACTIONS(1412), + [sym_number_literal] = ACTIONS(1414), + [anon_sym_L_SQUOTE] = ACTIONS(1414), + [anon_sym_u_SQUOTE] = ACTIONS(1414), + [anon_sym_U_SQUOTE] = ACTIONS(1414), + [anon_sym_u8_SQUOTE] = ACTIONS(1414), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_L_DQUOTE] = ACTIONS(1414), + [anon_sym_u_DQUOTE] = ACTIONS(1414), + [anon_sym_U_DQUOTE] = ACTIONS(1414), + [anon_sym_u8_DQUOTE] = ACTIONS(1414), + [anon_sym_DQUOTE] = ACTIONS(1414), + [sym_true] = ACTIONS(1412), + [sym_false] = ACTIONS(1412), + [anon_sym_NULL] = ACTIONS(1412), + [anon_sym_nullptr] = ACTIONS(1412), + [sym_comment] = ACTIONS(3), + }, + [286] = { + [ts_builtin_sym_end] = ACTIONS(1410), + [sym_identifier] = ACTIONS(1408), + [aux_sym_preproc_include_token1] = ACTIONS(1408), + [aux_sym_preproc_def_token1] = ACTIONS(1408), + [aux_sym_preproc_if_token1] = ACTIONS(1408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1408), + [sym_preproc_directive] = ACTIONS(1408), + [anon_sym_LPAREN2] = ACTIONS(1410), + [anon_sym_BANG] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1410), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_STAR] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym___extension__] = ACTIONS(1408), + [anon_sym_typedef] = ACTIONS(1408), + [anon_sym_extern] = ACTIONS(1408), + [anon_sym___attribute__] = ACTIONS(1408), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1410), + [anon_sym___declspec] = ACTIONS(1408), + [anon_sym___cdecl] = ACTIONS(1408), + [anon_sym___clrcall] = ACTIONS(1408), + [anon_sym___stdcall] = ACTIONS(1408), + [anon_sym___fastcall] = ACTIONS(1408), + [anon_sym___thiscall] = ACTIONS(1408), + [anon_sym___vectorcall] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(1410), + [anon_sym_signed] = ACTIONS(1408), + [anon_sym_unsigned] = ACTIONS(1408), + [anon_sym_long] = ACTIONS(1408), + [anon_sym_short] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_auto] = ACTIONS(1408), + [anon_sym_register] = ACTIONS(1408), + [anon_sym_inline] = ACTIONS(1408), + [anon_sym___inline] = ACTIONS(1408), + [anon_sym___inline__] = ACTIONS(1408), + [anon_sym___forceinline] = ACTIONS(1408), + [anon_sym_thread_local] = ACTIONS(1408), + [anon_sym___thread] = ACTIONS(1408), + [anon_sym_const] = ACTIONS(1408), + [anon_sym_constexpr] = ACTIONS(1408), + [anon_sym_volatile] = ACTIONS(1408), + [anon_sym_restrict] = ACTIONS(1408), + [anon_sym___restrict__] = ACTIONS(1408), + [anon_sym__Atomic] = ACTIONS(1408), + [anon_sym__Noreturn] = ACTIONS(1408), + [anon_sym_noreturn] = ACTIONS(1408), + [sym_primitive_type] = ACTIONS(1408), + [anon_sym_enum] = ACTIONS(1408), + [anon_sym_struct] = ACTIONS(1408), + [anon_sym_union] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1408), + [anon_sym_else] = ACTIONS(1408), + [anon_sym_switch] = ACTIONS(1408), + [anon_sym_case] = ACTIONS(1408), + [anon_sym_default] = ACTIONS(1408), + [anon_sym_while] = ACTIONS(1408), + [anon_sym_do] = ACTIONS(1408), + [anon_sym_for] = ACTIONS(1408), + [anon_sym_return] = ACTIONS(1408), + [anon_sym_break] = ACTIONS(1408), + [anon_sym_continue] = ACTIONS(1408), + [anon_sym_goto] = ACTIONS(1408), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_sizeof] = ACTIONS(1408), + [anon_sym___alignof__] = ACTIONS(1408), + [anon_sym___alignof] = ACTIONS(1408), + [anon_sym__alignof] = ACTIONS(1408), + [anon_sym_alignof] = ACTIONS(1408), + [anon_sym__Alignof] = ACTIONS(1408), + [anon_sym_offsetof] = ACTIONS(1408), + [anon_sym___builtin_va_arg] = ACTIONS(1408), + [anon_sym__Generic] = ACTIONS(1408), + [anon_sym_asm] = ACTIONS(1408), + [anon_sym___asm__] = ACTIONS(1408), + [sym_number_literal] = ACTIONS(1410), + [anon_sym_L_SQUOTE] = ACTIONS(1410), + [anon_sym_u_SQUOTE] = ACTIONS(1410), + [anon_sym_U_SQUOTE] = ACTIONS(1410), + [anon_sym_u8_SQUOTE] = ACTIONS(1410), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_L_DQUOTE] = ACTIONS(1410), + [anon_sym_u_DQUOTE] = ACTIONS(1410), + [anon_sym_U_DQUOTE] = ACTIONS(1410), + [anon_sym_u8_DQUOTE] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1410), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [anon_sym_NULL] = ACTIONS(1408), + [anon_sym_nullptr] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + }, + [287] = { + [ts_builtin_sym_end] = ACTIONS(1406), + [sym_identifier] = ACTIONS(1404), + [aux_sym_preproc_include_token1] = ACTIONS(1404), + [aux_sym_preproc_def_token1] = ACTIONS(1404), + [aux_sym_preproc_if_token1] = ACTIONS(1404), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1404), + [sym_preproc_directive] = ACTIONS(1404), + [anon_sym_LPAREN2] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1406), + [anon_sym_TILDE] = ACTIONS(1406), + [anon_sym_DASH] = ACTIONS(1404), + [anon_sym_PLUS] = ACTIONS(1404), + [anon_sym_STAR] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1406), + [anon_sym_SEMI] = ACTIONS(1406), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_typedef] = ACTIONS(1404), + [anon_sym_extern] = ACTIONS(1404), + [anon_sym___attribute__] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), + [anon_sym___declspec] = ACTIONS(1404), + [anon_sym___cdecl] = ACTIONS(1404), + [anon_sym___clrcall] = ACTIONS(1404), + [anon_sym___stdcall] = ACTIONS(1404), + [anon_sym___fastcall] = ACTIONS(1404), + [anon_sym___thiscall] = ACTIONS(1404), + [anon_sym___vectorcall] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_signed] = ACTIONS(1404), + [anon_sym_unsigned] = ACTIONS(1404), + [anon_sym_long] = ACTIONS(1404), + [anon_sym_short] = ACTIONS(1404), + [anon_sym_static] = ACTIONS(1404), + [anon_sym_auto] = ACTIONS(1404), + [anon_sym_register] = ACTIONS(1404), + [anon_sym_inline] = ACTIONS(1404), + [anon_sym___inline] = ACTIONS(1404), + [anon_sym___inline__] = ACTIONS(1404), + [anon_sym___forceinline] = ACTIONS(1404), + [anon_sym_thread_local] = ACTIONS(1404), + [anon_sym___thread] = ACTIONS(1404), + [anon_sym_const] = ACTIONS(1404), + [anon_sym_constexpr] = ACTIONS(1404), + [anon_sym_volatile] = ACTIONS(1404), + [anon_sym_restrict] = ACTIONS(1404), + [anon_sym___restrict__] = ACTIONS(1404), + [anon_sym__Atomic] = ACTIONS(1404), + [anon_sym__Noreturn] = ACTIONS(1404), + [anon_sym_noreturn] = ACTIONS(1404), + [sym_primitive_type] = ACTIONS(1404), + [anon_sym_enum] = ACTIONS(1404), + [anon_sym_struct] = ACTIONS(1404), + [anon_sym_union] = ACTIONS(1404), + [anon_sym_if] = ACTIONS(1404), + [anon_sym_else] = ACTIONS(1404), + [anon_sym_switch] = ACTIONS(1404), + [anon_sym_case] = ACTIONS(1404), + [anon_sym_default] = ACTIONS(1404), + [anon_sym_while] = ACTIONS(1404), + [anon_sym_do] = ACTIONS(1404), + [anon_sym_for] = ACTIONS(1404), + [anon_sym_return] = ACTIONS(1404), + [anon_sym_break] = ACTIONS(1404), + [anon_sym_continue] = ACTIONS(1404), + [anon_sym_goto] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1406), + [anon_sym_PLUS_PLUS] = ACTIONS(1406), + [anon_sym_sizeof] = ACTIONS(1404), + [anon_sym___alignof__] = ACTIONS(1404), + [anon_sym___alignof] = ACTIONS(1404), + [anon_sym__alignof] = ACTIONS(1404), + [anon_sym_alignof] = ACTIONS(1404), + [anon_sym__Alignof] = ACTIONS(1404), + [anon_sym_offsetof] = ACTIONS(1404), + [anon_sym___builtin_va_arg] = ACTIONS(1404), + [anon_sym__Generic] = ACTIONS(1404), + [anon_sym_asm] = ACTIONS(1404), + [anon_sym___asm__] = ACTIONS(1404), + [sym_number_literal] = ACTIONS(1406), + [anon_sym_L_SQUOTE] = ACTIONS(1406), + [anon_sym_u_SQUOTE] = ACTIONS(1406), + [anon_sym_U_SQUOTE] = ACTIONS(1406), + [anon_sym_u8_SQUOTE] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1406), + [anon_sym_L_DQUOTE] = ACTIONS(1406), + [anon_sym_u_DQUOTE] = ACTIONS(1406), + [anon_sym_U_DQUOTE] = ACTIONS(1406), + [anon_sym_u8_DQUOTE] = ACTIONS(1406), + [anon_sym_DQUOTE] = ACTIONS(1406), + [sym_true] = ACTIONS(1404), + [sym_false] = ACTIONS(1404), + [anon_sym_NULL] = ACTIONS(1404), + [anon_sym_nullptr] = ACTIONS(1404), + [sym_comment] = ACTIONS(3), + }, + [288] = { + [ts_builtin_sym_end] = ACTIONS(1306), [sym_identifier] = ACTIONS(1304), [aux_sym_preproc_include_token1] = ACTIONS(1304), [aux_sym_preproc_def_token1] = ACTIONS(1304), [aux_sym_preproc_if_token1] = ACTIONS(1304), - [aux_sym_preproc_if_token2] = ACTIONS(1304), [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), [sym_preproc_directive] = ACTIONS(1304), @@ -44892,6 +49353,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1306), [anon_sym_AMP] = ACTIONS(1306), [anon_sym_SEMI] = ACTIONS(1306), + [anon_sym___extension__] = ACTIONS(1304), [anon_sym_typedef] = ACTIONS(1304), [anon_sym_extern] = ACTIONS(1304), [anon_sym___attribute__] = ACTIONS(1304), @@ -44912,6 +49374,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1304), [anon_sym_register] = ACTIONS(1304), [anon_sym_inline] = ACTIONS(1304), + [anon_sym___inline] = ACTIONS(1304), + [anon_sym___inline__] = ACTIONS(1304), + [anon_sym___forceinline] = ACTIONS(1304), [anon_sym_thread_local] = ACTIONS(1304), [anon_sym___thread] = ACTIONS(1304), [anon_sym_const] = ACTIONS(1304), @@ -44941,7 +49406,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1306), [anon_sym_PLUS_PLUS] = ACTIONS(1306), [anon_sym_sizeof] = ACTIONS(1304), + [anon_sym___alignof__] = ACTIONS(1304), + [anon_sym___alignof] = ACTIONS(1304), + [anon_sym__alignof] = ACTIONS(1304), + [anon_sym_alignof] = ACTIONS(1304), + [anon_sym__Alignof] = ACTIONS(1304), [anon_sym_offsetof] = ACTIONS(1304), + [anon_sym___builtin_va_arg] = ACTIONS(1304), [anon_sym__Generic] = ACTIONS(1304), [anon_sym_asm] = ACTIONS(1304), [anon_sym___asm__] = ACTIONS(1304), @@ -44962,2013 +49433,1175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1304), [sym_comment] = ACTIONS(3), }, - [282] = { - [sym_identifier] = ACTIONS(1320), - [aux_sym_preproc_include_token1] = ACTIONS(1320), - [aux_sym_preproc_def_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token2] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), - [sym_preproc_directive] = ACTIONS(1320), - [anon_sym_LPAREN2] = ACTIONS(1322), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_TILDE] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_typedef] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym___attribute__] = ACTIONS(1320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), - [anon_sym___declspec] = ACTIONS(1320), - [anon_sym___cdecl] = ACTIONS(1320), - [anon_sym___clrcall] = ACTIONS(1320), - [anon_sym___stdcall] = ACTIONS(1320), - [anon_sym___fastcall] = ACTIONS(1320), - [anon_sym___thiscall] = ACTIONS(1320), - [anon_sym___vectorcall] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_signed] = ACTIONS(1320), - [anon_sym_unsigned] = ACTIONS(1320), - [anon_sym_long] = ACTIONS(1320), - [anon_sym_short] = ACTIONS(1320), - [anon_sym_static] = ACTIONS(1320), - [anon_sym_auto] = ACTIONS(1320), - [anon_sym_register] = ACTIONS(1320), - [anon_sym_inline] = ACTIONS(1320), - [anon_sym_thread_local] = ACTIONS(1320), - [anon_sym___thread] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_constexpr] = ACTIONS(1320), - [anon_sym_volatile] = ACTIONS(1320), - [anon_sym_restrict] = ACTIONS(1320), - [anon_sym___restrict__] = ACTIONS(1320), - [anon_sym__Atomic] = ACTIONS(1320), - [anon_sym__Noreturn] = ACTIONS(1320), - [anon_sym_noreturn] = ACTIONS(1320), - [sym_primitive_type] = ACTIONS(1320), - [anon_sym_enum] = ACTIONS(1320), - [anon_sym_struct] = ACTIONS(1320), - [anon_sym_union] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_else] = ACTIONS(1320), - [anon_sym_switch] = ACTIONS(1320), - [anon_sym_case] = ACTIONS(1320), - [anon_sym_default] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_do] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_goto] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1322), - [anon_sym_PLUS_PLUS] = ACTIONS(1322), - [anon_sym_sizeof] = ACTIONS(1320), - [anon_sym_offsetof] = ACTIONS(1320), - [anon_sym__Generic] = ACTIONS(1320), - [anon_sym_asm] = ACTIONS(1320), - [anon_sym___asm__] = ACTIONS(1320), - [sym_number_literal] = ACTIONS(1322), - [anon_sym_L_SQUOTE] = ACTIONS(1322), - [anon_sym_u_SQUOTE] = ACTIONS(1322), - [anon_sym_U_SQUOTE] = ACTIONS(1322), - [anon_sym_u8_SQUOTE] = ACTIONS(1322), - [anon_sym_SQUOTE] = ACTIONS(1322), - [anon_sym_L_DQUOTE] = ACTIONS(1322), - [anon_sym_u_DQUOTE] = ACTIONS(1322), - [anon_sym_U_DQUOTE] = ACTIONS(1322), - [anon_sym_u8_DQUOTE] = ACTIONS(1322), - [anon_sym_DQUOTE] = ACTIONS(1322), - [sym_true] = ACTIONS(1320), - [sym_false] = ACTIONS(1320), - [anon_sym_NULL] = ACTIONS(1320), - [anon_sym_nullptr] = ACTIONS(1320), + [289] = { + [ts_builtin_sym_end] = ACTIONS(1402), + [sym_identifier] = ACTIONS(1400), + [aux_sym_preproc_include_token1] = ACTIONS(1400), + [aux_sym_preproc_def_token1] = ACTIONS(1400), + [aux_sym_preproc_if_token1] = ACTIONS(1400), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1400), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1400), + [sym_preproc_directive] = ACTIONS(1400), + [anon_sym_LPAREN2] = ACTIONS(1402), + [anon_sym_BANG] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1402), + [anon_sym_AMP] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym___extension__] = ACTIONS(1400), + [anon_sym_typedef] = ACTIONS(1400), + [anon_sym_extern] = ACTIONS(1400), + [anon_sym___attribute__] = ACTIONS(1400), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1402), + [anon_sym___declspec] = ACTIONS(1400), + [anon_sym___cdecl] = ACTIONS(1400), + [anon_sym___clrcall] = ACTIONS(1400), + [anon_sym___stdcall] = ACTIONS(1400), + [anon_sym___fastcall] = ACTIONS(1400), + [anon_sym___thiscall] = ACTIONS(1400), + [anon_sym___vectorcall] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_signed] = ACTIONS(1400), + [anon_sym_unsigned] = ACTIONS(1400), + [anon_sym_long] = ACTIONS(1400), + [anon_sym_short] = ACTIONS(1400), + [anon_sym_static] = ACTIONS(1400), + [anon_sym_auto] = ACTIONS(1400), + [anon_sym_register] = ACTIONS(1400), + [anon_sym_inline] = ACTIONS(1400), + [anon_sym___inline] = ACTIONS(1400), + [anon_sym___inline__] = ACTIONS(1400), + [anon_sym___forceinline] = ACTIONS(1400), + [anon_sym_thread_local] = ACTIONS(1400), + [anon_sym___thread] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_constexpr] = ACTIONS(1400), + [anon_sym_volatile] = ACTIONS(1400), + [anon_sym_restrict] = ACTIONS(1400), + [anon_sym___restrict__] = ACTIONS(1400), + [anon_sym__Atomic] = ACTIONS(1400), + [anon_sym__Noreturn] = ACTIONS(1400), + [anon_sym_noreturn] = ACTIONS(1400), + [sym_primitive_type] = ACTIONS(1400), + [anon_sym_enum] = ACTIONS(1400), + [anon_sym_struct] = ACTIONS(1400), + [anon_sym_union] = ACTIONS(1400), + [anon_sym_if] = ACTIONS(1400), + [anon_sym_else] = ACTIONS(1400), + [anon_sym_switch] = ACTIONS(1400), + [anon_sym_case] = ACTIONS(1400), + [anon_sym_default] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1400), + [anon_sym_do] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [anon_sym_goto] = ACTIONS(1400), + [anon_sym_DASH_DASH] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1402), + [anon_sym_sizeof] = ACTIONS(1400), + [anon_sym___alignof__] = ACTIONS(1400), + [anon_sym___alignof] = ACTIONS(1400), + [anon_sym__alignof] = ACTIONS(1400), + [anon_sym_alignof] = ACTIONS(1400), + [anon_sym__Alignof] = ACTIONS(1400), + [anon_sym_offsetof] = ACTIONS(1400), + [anon_sym___builtin_va_arg] = ACTIONS(1400), + [anon_sym__Generic] = ACTIONS(1400), + [anon_sym_asm] = ACTIONS(1400), + [anon_sym___asm__] = ACTIONS(1400), + [sym_number_literal] = ACTIONS(1402), + [anon_sym_L_SQUOTE] = ACTIONS(1402), + [anon_sym_u_SQUOTE] = ACTIONS(1402), + [anon_sym_U_SQUOTE] = ACTIONS(1402), + [anon_sym_u8_SQUOTE] = ACTIONS(1402), + [anon_sym_SQUOTE] = ACTIONS(1402), + [anon_sym_L_DQUOTE] = ACTIONS(1402), + [anon_sym_u_DQUOTE] = ACTIONS(1402), + [anon_sym_U_DQUOTE] = ACTIONS(1402), + [anon_sym_u8_DQUOTE] = ACTIONS(1402), + [anon_sym_DQUOTE] = ACTIONS(1402), + [sym_true] = ACTIONS(1400), + [sym_false] = ACTIONS(1400), + [anon_sym_NULL] = ACTIONS(1400), + [anon_sym_nullptr] = ACTIONS(1400), [sym_comment] = ACTIONS(3), }, - [283] = { - [sym_identifier] = ACTIONS(1200), - [aux_sym_preproc_include_token1] = ACTIONS(1200), - [aux_sym_preproc_def_token1] = ACTIONS(1200), - [aux_sym_preproc_if_token1] = ACTIONS(1200), - [aux_sym_preproc_if_token2] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1200), - [sym_preproc_directive] = ACTIONS(1200), - [anon_sym_LPAREN2] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1202), - [anon_sym_TILDE] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(1200), - [anon_sym_STAR] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1202), - [anon_sym_typedef] = ACTIONS(1200), - [anon_sym_extern] = ACTIONS(1200), - [anon_sym___attribute__] = ACTIONS(1200), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1202), - [anon_sym___declspec] = ACTIONS(1200), - [anon_sym___cdecl] = ACTIONS(1200), - [anon_sym___clrcall] = ACTIONS(1200), - [anon_sym___stdcall] = ACTIONS(1200), - [anon_sym___fastcall] = ACTIONS(1200), - [anon_sym___thiscall] = ACTIONS(1200), - [anon_sym___vectorcall] = ACTIONS(1200), - [anon_sym_LBRACE] = ACTIONS(1202), - [anon_sym_signed] = ACTIONS(1200), - [anon_sym_unsigned] = ACTIONS(1200), - [anon_sym_long] = ACTIONS(1200), - [anon_sym_short] = ACTIONS(1200), - [anon_sym_static] = ACTIONS(1200), - [anon_sym_auto] = ACTIONS(1200), - [anon_sym_register] = ACTIONS(1200), - [anon_sym_inline] = ACTIONS(1200), - [anon_sym_thread_local] = ACTIONS(1200), - [anon_sym___thread] = ACTIONS(1200), - [anon_sym_const] = ACTIONS(1200), - [anon_sym_constexpr] = ACTIONS(1200), - [anon_sym_volatile] = ACTIONS(1200), - [anon_sym_restrict] = ACTIONS(1200), - [anon_sym___restrict__] = ACTIONS(1200), - [anon_sym__Atomic] = ACTIONS(1200), - [anon_sym__Noreturn] = ACTIONS(1200), - [anon_sym_noreturn] = ACTIONS(1200), - [sym_primitive_type] = ACTIONS(1200), - [anon_sym_enum] = ACTIONS(1200), - [anon_sym_struct] = ACTIONS(1200), - [anon_sym_union] = ACTIONS(1200), - [anon_sym_if] = ACTIONS(1200), - [anon_sym_else] = ACTIONS(1200), - [anon_sym_switch] = ACTIONS(1200), - [anon_sym_case] = ACTIONS(1200), - [anon_sym_default] = ACTIONS(1200), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_do] = ACTIONS(1200), - [anon_sym_for] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1200), - [anon_sym_continue] = ACTIONS(1200), - [anon_sym_goto] = ACTIONS(1200), - [anon_sym_DASH_DASH] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1202), - [anon_sym_sizeof] = ACTIONS(1200), - [anon_sym_offsetof] = ACTIONS(1200), - [anon_sym__Generic] = ACTIONS(1200), - [anon_sym_asm] = ACTIONS(1200), - [anon_sym___asm__] = ACTIONS(1200), - [sym_number_literal] = ACTIONS(1202), - [anon_sym_L_SQUOTE] = ACTIONS(1202), - [anon_sym_u_SQUOTE] = ACTIONS(1202), - [anon_sym_U_SQUOTE] = ACTIONS(1202), - [anon_sym_u8_SQUOTE] = ACTIONS(1202), - [anon_sym_SQUOTE] = ACTIONS(1202), - [anon_sym_L_DQUOTE] = ACTIONS(1202), - [anon_sym_u_DQUOTE] = ACTIONS(1202), - [anon_sym_U_DQUOTE] = ACTIONS(1202), - [anon_sym_u8_DQUOTE] = ACTIONS(1202), - [anon_sym_DQUOTE] = ACTIONS(1202), - [sym_true] = ACTIONS(1200), - [sym_false] = ACTIONS(1200), - [anon_sym_NULL] = ACTIONS(1200), - [anon_sym_nullptr] = ACTIONS(1200), + [290] = { + [ts_builtin_sym_end] = ACTIONS(1282), + [sym_identifier] = ACTIONS(1280), + [aux_sym_preproc_include_token1] = ACTIONS(1280), + [aux_sym_preproc_def_token1] = ACTIONS(1280), + [aux_sym_preproc_if_token1] = ACTIONS(1280), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1280), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1280), + [sym_preproc_directive] = ACTIONS(1280), + [anon_sym_LPAREN2] = ACTIONS(1282), + [anon_sym_BANG] = ACTIONS(1282), + [anon_sym_TILDE] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1280), + [anon_sym_PLUS] = ACTIONS(1280), + [anon_sym_STAR] = ACTIONS(1282), + [anon_sym_AMP] = ACTIONS(1282), + [anon_sym_SEMI] = ACTIONS(1282), + [anon_sym___extension__] = ACTIONS(1280), + [anon_sym_typedef] = ACTIONS(1280), + [anon_sym_extern] = ACTIONS(1280), + [anon_sym___attribute__] = ACTIONS(1280), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1282), + [anon_sym___declspec] = ACTIONS(1280), + [anon_sym___cdecl] = ACTIONS(1280), + [anon_sym___clrcall] = ACTIONS(1280), + [anon_sym___stdcall] = ACTIONS(1280), + [anon_sym___fastcall] = ACTIONS(1280), + [anon_sym___thiscall] = ACTIONS(1280), + [anon_sym___vectorcall] = ACTIONS(1280), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_signed] = ACTIONS(1280), + [anon_sym_unsigned] = ACTIONS(1280), + [anon_sym_long] = ACTIONS(1280), + [anon_sym_short] = ACTIONS(1280), + [anon_sym_static] = ACTIONS(1280), + [anon_sym_auto] = ACTIONS(1280), + [anon_sym_register] = ACTIONS(1280), + [anon_sym_inline] = ACTIONS(1280), + [anon_sym___inline] = ACTIONS(1280), + [anon_sym___inline__] = ACTIONS(1280), + [anon_sym___forceinline] = ACTIONS(1280), + [anon_sym_thread_local] = ACTIONS(1280), + [anon_sym___thread] = ACTIONS(1280), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_constexpr] = ACTIONS(1280), + [anon_sym_volatile] = ACTIONS(1280), + [anon_sym_restrict] = ACTIONS(1280), + [anon_sym___restrict__] = ACTIONS(1280), + [anon_sym__Atomic] = ACTIONS(1280), + [anon_sym__Noreturn] = ACTIONS(1280), + [anon_sym_noreturn] = ACTIONS(1280), + [sym_primitive_type] = ACTIONS(1280), + [anon_sym_enum] = ACTIONS(1280), + [anon_sym_struct] = ACTIONS(1280), + [anon_sym_union] = ACTIONS(1280), + [anon_sym_if] = ACTIONS(1280), + [anon_sym_else] = ACTIONS(1280), + [anon_sym_switch] = ACTIONS(1280), + [anon_sym_case] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1280), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_do] = ACTIONS(1280), + [anon_sym_for] = ACTIONS(1280), + [anon_sym_return] = ACTIONS(1280), + [anon_sym_break] = ACTIONS(1280), + [anon_sym_continue] = ACTIONS(1280), + [anon_sym_goto] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1282), + [anon_sym_PLUS_PLUS] = ACTIONS(1282), + [anon_sym_sizeof] = ACTIONS(1280), + [anon_sym___alignof__] = ACTIONS(1280), + [anon_sym___alignof] = ACTIONS(1280), + [anon_sym__alignof] = ACTIONS(1280), + [anon_sym_alignof] = ACTIONS(1280), + [anon_sym__Alignof] = ACTIONS(1280), + [anon_sym_offsetof] = ACTIONS(1280), + [anon_sym___builtin_va_arg] = ACTIONS(1280), + [anon_sym__Generic] = ACTIONS(1280), + [anon_sym_asm] = ACTIONS(1280), + [anon_sym___asm__] = ACTIONS(1280), + [sym_number_literal] = ACTIONS(1282), + [anon_sym_L_SQUOTE] = ACTIONS(1282), + [anon_sym_u_SQUOTE] = ACTIONS(1282), + [anon_sym_U_SQUOTE] = ACTIONS(1282), + [anon_sym_u8_SQUOTE] = ACTIONS(1282), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_L_DQUOTE] = ACTIONS(1282), + [anon_sym_u_DQUOTE] = ACTIONS(1282), + [anon_sym_U_DQUOTE] = ACTIONS(1282), + [anon_sym_u8_DQUOTE] = ACTIONS(1282), + [anon_sym_DQUOTE] = ACTIONS(1282), + [sym_true] = ACTIONS(1280), + [sym_false] = ACTIONS(1280), + [anon_sym_NULL] = ACTIONS(1280), + [anon_sym_nullptr] = ACTIONS(1280), [sym_comment] = ACTIONS(3), }, - [284] = { - [sym_identifier] = ACTIONS(1308), - [aux_sym_preproc_include_token1] = ACTIONS(1308), - [aux_sym_preproc_def_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token2] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), - [sym_preproc_directive] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym___attribute__] = ACTIONS(1308), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), - [anon_sym___declspec] = ACTIONS(1308), - [anon_sym___cdecl] = ACTIONS(1308), - [anon_sym___clrcall] = ACTIONS(1308), - [anon_sym___stdcall] = ACTIONS(1308), - [anon_sym___fastcall] = ACTIONS(1308), - [anon_sym___thiscall] = ACTIONS(1308), - [anon_sym___vectorcall] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_signed] = ACTIONS(1308), - [anon_sym_unsigned] = ACTIONS(1308), - [anon_sym_long] = ACTIONS(1308), - [anon_sym_short] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1308), - [anon_sym_auto] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_inline] = ACTIONS(1308), - [anon_sym_thread_local] = ACTIONS(1308), - [anon_sym___thread] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_constexpr] = ACTIONS(1308), - [anon_sym_volatile] = ACTIONS(1308), - [anon_sym_restrict] = ACTIONS(1308), - [anon_sym___restrict__] = ACTIONS(1308), - [anon_sym__Atomic] = ACTIONS(1308), - [anon_sym__Noreturn] = ACTIONS(1308), - [anon_sym_noreturn] = ACTIONS(1308), - [sym_primitive_type] = ACTIONS(1308), - [anon_sym_enum] = ACTIONS(1308), - [anon_sym_struct] = ACTIONS(1308), - [anon_sym_union] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_else] = ACTIONS(1308), - [anon_sym_switch] = ACTIONS(1308), - [anon_sym_case] = ACTIONS(1308), - [anon_sym_default] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_goto] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_sizeof] = ACTIONS(1308), - [anon_sym_offsetof] = ACTIONS(1308), - [anon_sym__Generic] = ACTIONS(1308), - [anon_sym_asm] = ACTIONS(1308), - [anon_sym___asm__] = ACTIONS(1308), - [sym_number_literal] = ACTIONS(1310), - [anon_sym_L_SQUOTE] = ACTIONS(1310), - [anon_sym_u_SQUOTE] = ACTIONS(1310), - [anon_sym_U_SQUOTE] = ACTIONS(1310), - [anon_sym_u8_SQUOTE] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [anon_sym_L_DQUOTE] = ACTIONS(1310), - [anon_sym_u_DQUOTE] = ACTIONS(1310), - [anon_sym_U_DQUOTE] = ACTIONS(1310), - [anon_sym_u8_DQUOTE] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym_true] = ACTIONS(1308), - [sym_false] = ACTIONS(1308), - [anon_sym_NULL] = ACTIONS(1308), - [anon_sym_nullptr] = ACTIONS(1308), - [sym_comment] = ACTIONS(3), - }, - [285] = { - [sym_identifier] = ACTIONS(1312), - [aux_sym_preproc_include_token1] = ACTIONS(1312), - [aux_sym_preproc_def_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token2] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), - [sym_preproc_directive] = ACTIONS(1312), - [anon_sym_LPAREN2] = ACTIONS(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_TILDE] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym_typedef] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym___attribute__] = ACTIONS(1312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), - [anon_sym___declspec] = ACTIONS(1312), - [anon_sym___cdecl] = ACTIONS(1312), - [anon_sym___clrcall] = ACTIONS(1312), - [anon_sym___stdcall] = ACTIONS(1312), - [anon_sym___fastcall] = ACTIONS(1312), - [anon_sym___thiscall] = ACTIONS(1312), - [anon_sym___vectorcall] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_signed] = ACTIONS(1312), - [anon_sym_unsigned] = ACTIONS(1312), - [anon_sym_long] = ACTIONS(1312), - [anon_sym_short] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_auto] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_inline] = ACTIONS(1312), - [anon_sym_thread_local] = ACTIONS(1312), - [anon_sym___thread] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_constexpr] = ACTIONS(1312), - [anon_sym_volatile] = ACTIONS(1312), - [anon_sym_restrict] = ACTIONS(1312), - [anon_sym___restrict__] = ACTIONS(1312), - [anon_sym__Atomic] = ACTIONS(1312), - [anon_sym__Noreturn] = ACTIONS(1312), - [anon_sym_noreturn] = ACTIONS(1312), - [sym_primitive_type] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_goto] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [anon_sym_sizeof] = ACTIONS(1312), - [anon_sym_offsetof] = ACTIONS(1312), - [anon_sym__Generic] = ACTIONS(1312), - [anon_sym_asm] = ACTIONS(1312), - [anon_sym___asm__] = ACTIONS(1312), - [sym_number_literal] = ACTIONS(1314), - [anon_sym_L_SQUOTE] = ACTIONS(1314), - [anon_sym_u_SQUOTE] = ACTIONS(1314), - [anon_sym_U_SQUOTE] = ACTIONS(1314), - [anon_sym_u8_SQUOTE] = ACTIONS(1314), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_L_DQUOTE] = ACTIONS(1314), - [anon_sym_u_DQUOTE] = ACTIONS(1314), - [anon_sym_U_DQUOTE] = ACTIONS(1314), - [anon_sym_u8_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1314), - [sym_true] = ACTIONS(1312), - [sym_false] = ACTIONS(1312), - [anon_sym_NULL] = ACTIONS(1312), - [anon_sym_nullptr] = ACTIONS(1312), - [sym_comment] = ACTIONS(3), - }, - [286] = { - [sym_identifier] = ACTIONS(1320), - [aux_sym_preproc_include_token1] = ACTIONS(1320), - [aux_sym_preproc_def_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), - [sym_preproc_directive] = ACTIONS(1320), - [anon_sym_LPAREN2] = ACTIONS(1322), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_TILDE] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_typedef] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym___attribute__] = ACTIONS(1320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), - [anon_sym___declspec] = ACTIONS(1320), - [anon_sym___cdecl] = ACTIONS(1320), - [anon_sym___clrcall] = ACTIONS(1320), - [anon_sym___stdcall] = ACTIONS(1320), - [anon_sym___fastcall] = ACTIONS(1320), - [anon_sym___thiscall] = ACTIONS(1320), - [anon_sym___vectorcall] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_signed] = ACTIONS(1320), - [anon_sym_unsigned] = ACTIONS(1320), - [anon_sym_long] = ACTIONS(1320), - [anon_sym_short] = ACTIONS(1320), - [anon_sym_static] = ACTIONS(1320), - [anon_sym_auto] = ACTIONS(1320), - [anon_sym_register] = ACTIONS(1320), - [anon_sym_inline] = ACTIONS(1320), - [anon_sym_thread_local] = ACTIONS(1320), - [anon_sym___thread] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_constexpr] = ACTIONS(1320), - [anon_sym_volatile] = ACTIONS(1320), - [anon_sym_restrict] = ACTIONS(1320), - [anon_sym___restrict__] = ACTIONS(1320), - [anon_sym__Atomic] = ACTIONS(1320), - [anon_sym__Noreturn] = ACTIONS(1320), - [anon_sym_noreturn] = ACTIONS(1320), - [sym_primitive_type] = ACTIONS(1320), - [anon_sym_enum] = ACTIONS(1320), - [anon_sym_struct] = ACTIONS(1320), - [anon_sym_union] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_else] = ACTIONS(1320), - [anon_sym_switch] = ACTIONS(1320), - [anon_sym_case] = ACTIONS(1320), - [anon_sym_default] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_do] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_goto] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1322), - [anon_sym_PLUS_PLUS] = ACTIONS(1322), - [anon_sym_sizeof] = ACTIONS(1320), - [anon_sym_offsetof] = ACTIONS(1320), - [anon_sym__Generic] = ACTIONS(1320), - [anon_sym_asm] = ACTIONS(1320), - [anon_sym___asm__] = ACTIONS(1320), - [sym_number_literal] = ACTIONS(1322), - [anon_sym_L_SQUOTE] = ACTIONS(1322), - [anon_sym_u_SQUOTE] = ACTIONS(1322), - [anon_sym_U_SQUOTE] = ACTIONS(1322), - [anon_sym_u8_SQUOTE] = ACTIONS(1322), - [anon_sym_SQUOTE] = ACTIONS(1322), - [anon_sym_L_DQUOTE] = ACTIONS(1322), - [anon_sym_u_DQUOTE] = ACTIONS(1322), - [anon_sym_U_DQUOTE] = ACTIONS(1322), - [anon_sym_u8_DQUOTE] = ACTIONS(1322), - [anon_sym_DQUOTE] = ACTIONS(1322), - [sym_true] = ACTIONS(1320), - [sym_false] = ACTIONS(1320), - [anon_sym_NULL] = ACTIONS(1320), - [anon_sym_nullptr] = ACTIONS(1320), + [291] = { + [ts_builtin_sym_end] = ACTIONS(1398), + [sym_identifier] = ACTIONS(1396), + [aux_sym_preproc_include_token1] = ACTIONS(1396), + [aux_sym_preproc_def_token1] = ACTIONS(1396), + [aux_sym_preproc_if_token1] = ACTIONS(1396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1396), + [anon_sym_LPAREN2] = ACTIONS(1398), + [anon_sym_BANG] = ACTIONS(1398), + [anon_sym_TILDE] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_PLUS] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym___extension__] = ACTIONS(1396), + [anon_sym_typedef] = ACTIONS(1396), + [anon_sym_extern] = ACTIONS(1396), + [anon_sym___attribute__] = ACTIONS(1396), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1398), + [anon_sym___declspec] = ACTIONS(1396), + [anon_sym___cdecl] = ACTIONS(1396), + [anon_sym___clrcall] = ACTIONS(1396), + [anon_sym___stdcall] = ACTIONS(1396), + [anon_sym___fastcall] = ACTIONS(1396), + [anon_sym___thiscall] = ACTIONS(1396), + [anon_sym___vectorcall] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(1398), + [anon_sym_signed] = ACTIONS(1396), + [anon_sym_unsigned] = ACTIONS(1396), + [anon_sym_long] = ACTIONS(1396), + [anon_sym_short] = ACTIONS(1396), + [anon_sym_static] = ACTIONS(1396), + [anon_sym_auto] = ACTIONS(1396), + [anon_sym_register] = ACTIONS(1396), + [anon_sym_inline] = ACTIONS(1396), + [anon_sym___inline] = ACTIONS(1396), + [anon_sym___inline__] = ACTIONS(1396), + [anon_sym___forceinline] = ACTIONS(1396), + [anon_sym_thread_local] = ACTIONS(1396), + [anon_sym___thread] = ACTIONS(1396), + [anon_sym_const] = ACTIONS(1396), + [anon_sym_constexpr] = ACTIONS(1396), + [anon_sym_volatile] = ACTIONS(1396), + [anon_sym_restrict] = ACTIONS(1396), + [anon_sym___restrict__] = ACTIONS(1396), + [anon_sym__Atomic] = ACTIONS(1396), + [anon_sym__Noreturn] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [sym_primitive_type] = ACTIONS(1396), + [anon_sym_enum] = ACTIONS(1396), + [anon_sym_struct] = ACTIONS(1396), + [anon_sym_union] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1396), + [anon_sym_else] = ACTIONS(1396), + [anon_sym_switch] = ACTIONS(1396), + [anon_sym_case] = ACTIONS(1396), + [anon_sym_default] = ACTIONS(1396), + [anon_sym_while] = ACTIONS(1396), + [anon_sym_do] = ACTIONS(1396), + [anon_sym_for] = ACTIONS(1396), + [anon_sym_return] = ACTIONS(1396), + [anon_sym_break] = ACTIONS(1396), + [anon_sym_continue] = ACTIONS(1396), + [anon_sym_goto] = ACTIONS(1396), + [anon_sym_DASH_DASH] = ACTIONS(1398), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_sizeof] = ACTIONS(1396), + [anon_sym___alignof__] = ACTIONS(1396), + [anon_sym___alignof] = ACTIONS(1396), + [anon_sym__alignof] = ACTIONS(1396), + [anon_sym_alignof] = ACTIONS(1396), + [anon_sym__Alignof] = ACTIONS(1396), + [anon_sym_offsetof] = ACTIONS(1396), + [anon_sym___builtin_va_arg] = ACTIONS(1396), + [anon_sym__Generic] = ACTIONS(1396), + [anon_sym_asm] = ACTIONS(1396), + [anon_sym___asm__] = ACTIONS(1396), + [sym_number_literal] = ACTIONS(1398), + [anon_sym_L_SQUOTE] = ACTIONS(1398), + [anon_sym_u_SQUOTE] = ACTIONS(1398), + [anon_sym_U_SQUOTE] = ACTIONS(1398), + [anon_sym_u8_SQUOTE] = ACTIONS(1398), + [anon_sym_SQUOTE] = ACTIONS(1398), + [anon_sym_L_DQUOTE] = ACTIONS(1398), + [anon_sym_u_DQUOTE] = ACTIONS(1398), + [anon_sym_U_DQUOTE] = ACTIONS(1398), + [anon_sym_u8_DQUOTE] = ACTIONS(1398), + [anon_sym_DQUOTE] = ACTIONS(1398), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [anon_sym_NULL] = ACTIONS(1396), + [anon_sym_nullptr] = ACTIONS(1396), [sym_comment] = ACTIONS(3), }, - [287] = { - [sym_identifier] = ACTIONS(1324), - [aux_sym_preproc_include_token1] = ACTIONS(1324), - [aux_sym_preproc_def_token1] = ACTIONS(1324), - [aux_sym_preproc_if_token1] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), - [sym_preproc_directive] = ACTIONS(1324), - [anon_sym_LPAREN2] = ACTIONS(1326), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1324), - [anon_sym_extern] = ACTIONS(1324), - [anon_sym___attribute__] = ACTIONS(1324), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), - [anon_sym___declspec] = ACTIONS(1324), - [anon_sym___cdecl] = ACTIONS(1324), - [anon_sym___clrcall] = ACTIONS(1324), - [anon_sym___stdcall] = ACTIONS(1324), - [anon_sym___fastcall] = ACTIONS(1324), - [anon_sym___thiscall] = ACTIONS(1324), - [anon_sym___vectorcall] = ACTIONS(1324), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_RBRACE] = ACTIONS(1326), - [anon_sym_signed] = ACTIONS(1324), - [anon_sym_unsigned] = ACTIONS(1324), - [anon_sym_long] = ACTIONS(1324), - [anon_sym_short] = ACTIONS(1324), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_auto] = ACTIONS(1324), - [anon_sym_register] = ACTIONS(1324), - [anon_sym_inline] = ACTIONS(1324), - [anon_sym_thread_local] = ACTIONS(1324), - [anon_sym___thread] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1324), - [anon_sym_constexpr] = ACTIONS(1324), - [anon_sym_volatile] = ACTIONS(1324), - [anon_sym_restrict] = ACTIONS(1324), - [anon_sym___restrict__] = ACTIONS(1324), - [anon_sym__Atomic] = ACTIONS(1324), - [anon_sym__Noreturn] = ACTIONS(1324), - [anon_sym_noreturn] = ACTIONS(1324), - [sym_primitive_type] = ACTIONS(1324), - [anon_sym_enum] = ACTIONS(1324), - [anon_sym_struct] = ACTIONS(1324), - [anon_sym_union] = ACTIONS(1324), - [anon_sym_if] = ACTIONS(1324), - [anon_sym_else] = ACTIONS(1324), - [anon_sym_switch] = ACTIONS(1324), - [anon_sym_case] = ACTIONS(1324), - [anon_sym_default] = ACTIONS(1324), - [anon_sym_while] = ACTIONS(1324), - [anon_sym_do] = ACTIONS(1324), - [anon_sym_for] = ACTIONS(1324), - [anon_sym_return] = ACTIONS(1324), - [anon_sym_break] = ACTIONS(1324), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1324), - [anon_sym_DASH_DASH] = ACTIONS(1326), - [anon_sym_PLUS_PLUS] = ACTIONS(1326), - [anon_sym_sizeof] = ACTIONS(1324), - [anon_sym_offsetof] = ACTIONS(1324), - [anon_sym__Generic] = ACTIONS(1324), - [anon_sym_asm] = ACTIONS(1324), - [anon_sym___asm__] = ACTIONS(1324), - [sym_number_literal] = ACTIONS(1326), - [anon_sym_L_SQUOTE] = ACTIONS(1326), - [anon_sym_u_SQUOTE] = ACTIONS(1326), - [anon_sym_U_SQUOTE] = ACTIONS(1326), - [anon_sym_u8_SQUOTE] = ACTIONS(1326), - [anon_sym_SQUOTE] = ACTIONS(1326), - [anon_sym_L_DQUOTE] = ACTIONS(1326), - [anon_sym_u_DQUOTE] = ACTIONS(1326), - [anon_sym_U_DQUOTE] = ACTIONS(1326), - [anon_sym_u8_DQUOTE] = ACTIONS(1326), - [anon_sym_DQUOTE] = ACTIONS(1326), - [sym_true] = ACTIONS(1324), - [sym_false] = ACTIONS(1324), - [anon_sym_NULL] = ACTIONS(1324), - [anon_sym_nullptr] = ACTIONS(1324), + [292] = { + [ts_builtin_sym_end] = ACTIONS(1394), + [sym_identifier] = ACTIONS(1392), + [aux_sym_preproc_include_token1] = ACTIONS(1392), + [aux_sym_preproc_def_token1] = ACTIONS(1392), + [aux_sym_preproc_if_token1] = ACTIONS(1392), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1392), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1392), + [sym_preproc_directive] = ACTIONS(1392), + [anon_sym_LPAREN2] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_TILDE] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_STAR] = ACTIONS(1394), + [anon_sym_AMP] = ACTIONS(1394), + [anon_sym_SEMI] = ACTIONS(1394), + [anon_sym___extension__] = ACTIONS(1392), + [anon_sym_typedef] = ACTIONS(1392), + [anon_sym_extern] = ACTIONS(1392), + [anon_sym___attribute__] = ACTIONS(1392), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1394), + [anon_sym___declspec] = ACTIONS(1392), + [anon_sym___cdecl] = ACTIONS(1392), + [anon_sym___clrcall] = ACTIONS(1392), + [anon_sym___stdcall] = ACTIONS(1392), + [anon_sym___fastcall] = ACTIONS(1392), + [anon_sym___thiscall] = ACTIONS(1392), + [anon_sym___vectorcall] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_signed] = ACTIONS(1392), + [anon_sym_unsigned] = ACTIONS(1392), + [anon_sym_long] = ACTIONS(1392), + [anon_sym_short] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_auto] = ACTIONS(1392), + [anon_sym_register] = ACTIONS(1392), + [anon_sym_inline] = ACTIONS(1392), + [anon_sym___inline] = ACTIONS(1392), + [anon_sym___inline__] = ACTIONS(1392), + [anon_sym___forceinline] = ACTIONS(1392), + [anon_sym_thread_local] = ACTIONS(1392), + [anon_sym___thread] = ACTIONS(1392), + [anon_sym_const] = ACTIONS(1392), + [anon_sym_constexpr] = ACTIONS(1392), + [anon_sym_volatile] = ACTIONS(1392), + [anon_sym_restrict] = ACTIONS(1392), + [anon_sym___restrict__] = ACTIONS(1392), + [anon_sym__Atomic] = ACTIONS(1392), + [anon_sym__Noreturn] = ACTIONS(1392), + [anon_sym_noreturn] = ACTIONS(1392), + [sym_primitive_type] = ACTIONS(1392), + [anon_sym_enum] = ACTIONS(1392), + [anon_sym_struct] = ACTIONS(1392), + [anon_sym_union] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1392), + [anon_sym_else] = ACTIONS(1392), + [anon_sym_switch] = ACTIONS(1392), + [anon_sym_case] = ACTIONS(1392), + [anon_sym_default] = ACTIONS(1392), + [anon_sym_while] = ACTIONS(1392), + [anon_sym_do] = ACTIONS(1392), + [anon_sym_for] = ACTIONS(1392), + [anon_sym_return] = ACTIONS(1392), + [anon_sym_break] = ACTIONS(1392), + [anon_sym_continue] = ACTIONS(1392), + [anon_sym_goto] = ACTIONS(1392), + [anon_sym_DASH_DASH] = ACTIONS(1394), + [anon_sym_PLUS_PLUS] = ACTIONS(1394), + [anon_sym_sizeof] = ACTIONS(1392), + [anon_sym___alignof__] = ACTIONS(1392), + [anon_sym___alignof] = ACTIONS(1392), + [anon_sym__alignof] = ACTIONS(1392), + [anon_sym_alignof] = ACTIONS(1392), + [anon_sym__Alignof] = ACTIONS(1392), + [anon_sym_offsetof] = ACTIONS(1392), + [anon_sym___builtin_va_arg] = ACTIONS(1392), + [anon_sym__Generic] = ACTIONS(1392), + [anon_sym_asm] = ACTIONS(1392), + [anon_sym___asm__] = ACTIONS(1392), + [sym_number_literal] = ACTIONS(1394), + [anon_sym_L_SQUOTE] = ACTIONS(1394), + [anon_sym_u_SQUOTE] = ACTIONS(1394), + [anon_sym_U_SQUOTE] = ACTIONS(1394), + [anon_sym_u8_SQUOTE] = ACTIONS(1394), + [anon_sym_SQUOTE] = ACTIONS(1394), + [anon_sym_L_DQUOTE] = ACTIONS(1394), + [anon_sym_u_DQUOTE] = ACTIONS(1394), + [anon_sym_U_DQUOTE] = ACTIONS(1394), + [anon_sym_u8_DQUOTE] = ACTIONS(1394), + [anon_sym_DQUOTE] = ACTIONS(1394), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [anon_sym_NULL] = ACTIONS(1392), + [anon_sym_nullptr] = ACTIONS(1392), [sym_comment] = ACTIONS(3), }, - [288] = { - [ts_builtin_sym_end] = ACTIONS(1210), - [sym_identifier] = ACTIONS(1208), - [aux_sym_preproc_include_token1] = ACTIONS(1208), - [aux_sym_preproc_def_token1] = ACTIONS(1208), - [aux_sym_preproc_if_token1] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1208), - [sym_preproc_directive] = ACTIONS(1208), - [anon_sym_LPAREN2] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1210), - [anon_sym_AMP] = ACTIONS(1210), - [anon_sym_SEMI] = ACTIONS(1210), - [anon_sym_typedef] = ACTIONS(1208), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym___attribute__] = ACTIONS(1208), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(1208), - [anon_sym___cdecl] = ACTIONS(1208), - [anon_sym___clrcall] = ACTIONS(1208), - [anon_sym___stdcall] = ACTIONS(1208), - [anon_sym___fastcall] = ACTIONS(1208), - [anon_sym___thiscall] = ACTIONS(1208), - [anon_sym___vectorcall] = ACTIONS(1208), - [anon_sym_LBRACE] = ACTIONS(1210), - [anon_sym_signed] = ACTIONS(1208), - [anon_sym_unsigned] = ACTIONS(1208), - [anon_sym_long] = ACTIONS(1208), - [anon_sym_short] = ACTIONS(1208), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_auto] = ACTIONS(1208), - [anon_sym_register] = ACTIONS(1208), - [anon_sym_inline] = ACTIONS(1208), - [anon_sym_thread_local] = ACTIONS(1208), - [anon_sym___thread] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_constexpr] = ACTIONS(1208), - [anon_sym_volatile] = ACTIONS(1208), - [anon_sym_restrict] = ACTIONS(1208), - [anon_sym___restrict__] = ACTIONS(1208), - [anon_sym__Atomic] = ACTIONS(1208), - [anon_sym__Noreturn] = ACTIONS(1208), - [anon_sym_noreturn] = ACTIONS(1208), - [sym_primitive_type] = ACTIONS(1208), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_struct] = ACTIONS(1208), - [anon_sym_union] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_else] = ACTIONS(1208), - [anon_sym_switch] = ACTIONS(1208), - [anon_sym_case] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_do] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_goto] = ACTIONS(1208), - [anon_sym_DASH_DASH] = ACTIONS(1210), - [anon_sym_PLUS_PLUS] = ACTIONS(1210), - [anon_sym_sizeof] = ACTIONS(1208), - [anon_sym_offsetof] = ACTIONS(1208), - [anon_sym__Generic] = ACTIONS(1208), - [anon_sym_asm] = ACTIONS(1208), - [anon_sym___asm__] = ACTIONS(1208), - [sym_number_literal] = ACTIONS(1210), - [anon_sym_L_SQUOTE] = ACTIONS(1210), - [anon_sym_u_SQUOTE] = ACTIONS(1210), - [anon_sym_U_SQUOTE] = ACTIONS(1210), - [anon_sym_u8_SQUOTE] = ACTIONS(1210), - [anon_sym_SQUOTE] = ACTIONS(1210), - [anon_sym_L_DQUOTE] = ACTIONS(1210), - [anon_sym_u_DQUOTE] = ACTIONS(1210), - [anon_sym_U_DQUOTE] = ACTIONS(1210), - [anon_sym_u8_DQUOTE] = ACTIONS(1210), - [anon_sym_DQUOTE] = ACTIONS(1210), - [sym_true] = ACTIONS(1208), - [sym_false] = ACTIONS(1208), - [anon_sym_NULL] = ACTIONS(1208), - [anon_sym_nullptr] = ACTIONS(1208), + [293] = { + [sym_identifier] = ACTIONS(1240), + [aux_sym_preproc_include_token1] = ACTIONS(1240), + [aux_sym_preproc_def_token1] = ACTIONS(1240), + [aux_sym_preproc_if_token1] = ACTIONS(1240), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1240), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1240), + [sym_preproc_directive] = ACTIONS(1240), + [anon_sym_LPAREN2] = ACTIONS(1242), + [anon_sym_BANG] = ACTIONS(1242), + [anon_sym_TILDE] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(1240), + [anon_sym_STAR] = ACTIONS(1242), + [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym___extension__] = ACTIONS(1240), + [anon_sym_typedef] = ACTIONS(1240), + [anon_sym_extern] = ACTIONS(1240), + [anon_sym___attribute__] = ACTIONS(1240), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1242), + [anon_sym___declspec] = ACTIONS(1240), + [anon_sym___cdecl] = ACTIONS(1240), + [anon_sym___clrcall] = ACTIONS(1240), + [anon_sym___stdcall] = ACTIONS(1240), + [anon_sym___fastcall] = ACTIONS(1240), + [anon_sym___thiscall] = ACTIONS(1240), + [anon_sym___vectorcall] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(1242), + [anon_sym_RBRACE] = ACTIONS(1242), + [anon_sym_signed] = ACTIONS(1240), + [anon_sym_unsigned] = ACTIONS(1240), + [anon_sym_long] = ACTIONS(1240), + [anon_sym_short] = ACTIONS(1240), + [anon_sym_static] = ACTIONS(1240), + [anon_sym_auto] = ACTIONS(1240), + [anon_sym_register] = ACTIONS(1240), + [anon_sym_inline] = ACTIONS(1240), + [anon_sym___inline] = ACTIONS(1240), + [anon_sym___inline__] = ACTIONS(1240), + [anon_sym___forceinline] = ACTIONS(1240), + [anon_sym_thread_local] = ACTIONS(1240), + [anon_sym___thread] = ACTIONS(1240), + [anon_sym_const] = ACTIONS(1240), + [anon_sym_constexpr] = ACTIONS(1240), + [anon_sym_volatile] = ACTIONS(1240), + [anon_sym_restrict] = ACTIONS(1240), + [anon_sym___restrict__] = ACTIONS(1240), + [anon_sym__Atomic] = ACTIONS(1240), + [anon_sym__Noreturn] = ACTIONS(1240), + [anon_sym_noreturn] = ACTIONS(1240), + [sym_primitive_type] = ACTIONS(1240), + [anon_sym_enum] = ACTIONS(1240), + [anon_sym_struct] = ACTIONS(1240), + [anon_sym_union] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(1240), + [anon_sym_else] = ACTIONS(1240), + [anon_sym_switch] = ACTIONS(1240), + [anon_sym_case] = ACTIONS(1240), + [anon_sym_default] = ACTIONS(1240), + [anon_sym_while] = ACTIONS(1240), + [anon_sym_do] = ACTIONS(1240), + [anon_sym_for] = ACTIONS(1240), + [anon_sym_return] = ACTIONS(1240), + [anon_sym_break] = ACTIONS(1240), + [anon_sym_continue] = ACTIONS(1240), + [anon_sym_goto] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1242), + [anon_sym_PLUS_PLUS] = ACTIONS(1242), + [anon_sym_sizeof] = ACTIONS(1240), + [anon_sym___alignof__] = ACTIONS(1240), + [anon_sym___alignof] = ACTIONS(1240), + [anon_sym__alignof] = ACTIONS(1240), + [anon_sym_alignof] = ACTIONS(1240), + [anon_sym__Alignof] = ACTIONS(1240), + [anon_sym_offsetof] = ACTIONS(1240), + [anon_sym___builtin_va_arg] = ACTIONS(1240), + [anon_sym__Generic] = ACTIONS(1240), + [anon_sym_asm] = ACTIONS(1240), + [anon_sym___asm__] = ACTIONS(1240), + [sym_number_literal] = ACTIONS(1242), + [anon_sym_L_SQUOTE] = ACTIONS(1242), + [anon_sym_u_SQUOTE] = ACTIONS(1242), + [anon_sym_U_SQUOTE] = ACTIONS(1242), + [anon_sym_u8_SQUOTE] = ACTIONS(1242), + [anon_sym_SQUOTE] = ACTIONS(1242), + [anon_sym_L_DQUOTE] = ACTIONS(1242), + [anon_sym_u_DQUOTE] = ACTIONS(1242), + [anon_sym_U_DQUOTE] = ACTIONS(1242), + [anon_sym_u8_DQUOTE] = ACTIONS(1242), + [anon_sym_DQUOTE] = ACTIONS(1242), + [sym_true] = ACTIONS(1240), + [sym_false] = ACTIONS(1240), + [anon_sym_NULL] = ACTIONS(1240), + [anon_sym_nullptr] = ACTIONS(1240), [sym_comment] = ACTIONS(3), }, - [289] = { - [sym_identifier] = ACTIONS(1328), - [aux_sym_preproc_include_token1] = ACTIONS(1328), - [aux_sym_preproc_def_token1] = ACTIONS(1328), - [aux_sym_preproc_if_token1] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), - [sym_preproc_directive] = ACTIONS(1328), - [anon_sym_LPAREN2] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(1330), - [anon_sym_TILDE] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1328), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_SEMI] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1328), - [anon_sym_extern] = ACTIONS(1328), - [anon_sym___attribute__] = ACTIONS(1328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), - [anon_sym___declspec] = ACTIONS(1328), - [anon_sym___cdecl] = ACTIONS(1328), - [anon_sym___clrcall] = ACTIONS(1328), - [anon_sym___stdcall] = ACTIONS(1328), - [anon_sym___fastcall] = ACTIONS(1328), - [anon_sym___thiscall] = ACTIONS(1328), - [anon_sym___vectorcall] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_RBRACE] = ACTIONS(1330), - [anon_sym_signed] = ACTIONS(1328), - [anon_sym_unsigned] = ACTIONS(1328), - [anon_sym_long] = ACTIONS(1328), - [anon_sym_short] = ACTIONS(1328), - [anon_sym_static] = ACTIONS(1328), - [anon_sym_auto] = ACTIONS(1328), - [anon_sym_register] = ACTIONS(1328), - [anon_sym_inline] = ACTIONS(1328), - [anon_sym_thread_local] = ACTIONS(1328), - [anon_sym___thread] = ACTIONS(1328), - [anon_sym_const] = ACTIONS(1328), - [anon_sym_constexpr] = ACTIONS(1328), - [anon_sym_volatile] = ACTIONS(1328), - [anon_sym_restrict] = ACTIONS(1328), - [anon_sym___restrict__] = ACTIONS(1328), - [anon_sym__Atomic] = ACTIONS(1328), - [anon_sym__Noreturn] = ACTIONS(1328), - [anon_sym_noreturn] = ACTIONS(1328), - [sym_primitive_type] = ACTIONS(1328), - [anon_sym_enum] = ACTIONS(1328), - [anon_sym_struct] = ACTIONS(1328), - [anon_sym_union] = ACTIONS(1328), - [anon_sym_if] = ACTIONS(1328), - [anon_sym_else] = ACTIONS(1328), - [anon_sym_switch] = ACTIONS(1328), - [anon_sym_case] = ACTIONS(1328), - [anon_sym_default] = ACTIONS(1328), - [anon_sym_while] = ACTIONS(1328), - [anon_sym_do] = ACTIONS(1328), - [anon_sym_for] = ACTIONS(1328), - [anon_sym_return] = ACTIONS(1328), - [anon_sym_break] = ACTIONS(1328), - [anon_sym_continue] = ACTIONS(1328), - [anon_sym_goto] = ACTIONS(1328), - [anon_sym_DASH_DASH] = ACTIONS(1330), - [anon_sym_PLUS_PLUS] = ACTIONS(1330), - [anon_sym_sizeof] = ACTIONS(1328), - [anon_sym_offsetof] = ACTIONS(1328), - [anon_sym__Generic] = ACTIONS(1328), - [anon_sym_asm] = ACTIONS(1328), - [anon_sym___asm__] = ACTIONS(1328), - [sym_number_literal] = ACTIONS(1330), - [anon_sym_L_SQUOTE] = ACTIONS(1330), - [anon_sym_u_SQUOTE] = ACTIONS(1330), - [anon_sym_U_SQUOTE] = ACTIONS(1330), - [anon_sym_u8_SQUOTE] = ACTIONS(1330), - [anon_sym_SQUOTE] = ACTIONS(1330), - [anon_sym_L_DQUOTE] = ACTIONS(1330), - [anon_sym_u_DQUOTE] = ACTIONS(1330), - [anon_sym_U_DQUOTE] = ACTIONS(1330), - [anon_sym_u8_DQUOTE] = ACTIONS(1330), - [anon_sym_DQUOTE] = ACTIONS(1330), - [sym_true] = ACTIONS(1328), - [sym_false] = ACTIONS(1328), - [anon_sym_NULL] = ACTIONS(1328), - [anon_sym_nullptr] = ACTIONS(1328), + [294] = { + [ts_builtin_sym_end] = ACTIONS(1382), + [sym_identifier] = ACTIONS(1380), + [aux_sym_preproc_include_token1] = ACTIONS(1380), + [aux_sym_preproc_def_token1] = ACTIONS(1380), + [aux_sym_preproc_if_token1] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), + [sym_preproc_directive] = ACTIONS(1380), + [anon_sym_LPAREN2] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_STAR] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym___extension__] = ACTIONS(1380), + [anon_sym_typedef] = ACTIONS(1380), + [anon_sym_extern] = ACTIONS(1380), + [anon_sym___attribute__] = ACTIONS(1380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym___declspec] = ACTIONS(1380), + [anon_sym___cdecl] = ACTIONS(1380), + [anon_sym___clrcall] = ACTIONS(1380), + [anon_sym___stdcall] = ACTIONS(1380), + [anon_sym___fastcall] = ACTIONS(1380), + [anon_sym___thiscall] = ACTIONS(1380), + [anon_sym___vectorcall] = ACTIONS(1380), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_signed] = ACTIONS(1380), + [anon_sym_unsigned] = ACTIONS(1380), + [anon_sym_long] = ACTIONS(1380), + [anon_sym_short] = ACTIONS(1380), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_auto] = ACTIONS(1380), + [anon_sym_register] = ACTIONS(1380), + [anon_sym_inline] = ACTIONS(1380), + [anon_sym___inline] = ACTIONS(1380), + [anon_sym___inline__] = ACTIONS(1380), + [anon_sym___forceinline] = ACTIONS(1380), + [anon_sym_thread_local] = ACTIONS(1380), + [anon_sym___thread] = ACTIONS(1380), + [anon_sym_const] = ACTIONS(1380), + [anon_sym_constexpr] = ACTIONS(1380), + [anon_sym_volatile] = ACTIONS(1380), + [anon_sym_restrict] = ACTIONS(1380), + [anon_sym___restrict__] = ACTIONS(1380), + [anon_sym__Atomic] = ACTIONS(1380), + [anon_sym__Noreturn] = ACTIONS(1380), + [anon_sym_noreturn] = ACTIONS(1380), + [sym_primitive_type] = ACTIONS(1380), + [anon_sym_enum] = ACTIONS(1380), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_union] = ACTIONS(1380), + [anon_sym_if] = ACTIONS(1380), + [anon_sym_else] = ACTIONS(1380), + [anon_sym_switch] = ACTIONS(1380), + [anon_sym_case] = ACTIONS(1380), + [anon_sym_default] = ACTIONS(1380), + [anon_sym_while] = ACTIONS(1380), + [anon_sym_do] = ACTIONS(1380), + [anon_sym_for] = ACTIONS(1380), + [anon_sym_return] = ACTIONS(1380), + [anon_sym_break] = ACTIONS(1380), + [anon_sym_continue] = ACTIONS(1380), + [anon_sym_goto] = ACTIONS(1380), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1380), + [anon_sym___alignof__] = ACTIONS(1380), + [anon_sym___alignof] = ACTIONS(1380), + [anon_sym__alignof] = ACTIONS(1380), + [anon_sym_alignof] = ACTIONS(1380), + [anon_sym__Alignof] = ACTIONS(1380), + [anon_sym_offsetof] = ACTIONS(1380), + [anon_sym___builtin_va_arg] = ACTIONS(1380), + [anon_sym__Generic] = ACTIONS(1380), + [anon_sym_asm] = ACTIONS(1380), + [anon_sym___asm__] = ACTIONS(1380), + [sym_number_literal] = ACTIONS(1382), + [anon_sym_L_SQUOTE] = ACTIONS(1382), + [anon_sym_u_SQUOTE] = ACTIONS(1382), + [anon_sym_U_SQUOTE] = ACTIONS(1382), + [anon_sym_u8_SQUOTE] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [anon_sym_L_DQUOTE] = ACTIONS(1382), + [anon_sym_u_DQUOTE] = ACTIONS(1382), + [anon_sym_U_DQUOTE] = ACTIONS(1382), + [anon_sym_u8_DQUOTE] = ACTIONS(1382), + [anon_sym_DQUOTE] = ACTIONS(1382), + [sym_true] = ACTIONS(1380), + [sym_false] = ACTIONS(1380), + [anon_sym_NULL] = ACTIONS(1380), + [anon_sym_nullptr] = ACTIONS(1380), [sym_comment] = ACTIONS(3), }, - [290] = { - [sym_identifier] = ACTIONS(1332), - [aux_sym_preproc_include_token1] = ACTIONS(1332), - [aux_sym_preproc_def_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token1] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), - [sym_preproc_directive] = ACTIONS(1332), - [anon_sym_LPAREN2] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym___attribute__] = ACTIONS(1332), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), - [anon_sym___declspec] = ACTIONS(1332), - [anon_sym___cdecl] = ACTIONS(1332), - [anon_sym___clrcall] = ACTIONS(1332), - [anon_sym___stdcall] = ACTIONS(1332), - [anon_sym___fastcall] = ACTIONS(1332), - [anon_sym___thiscall] = ACTIONS(1332), - [anon_sym___vectorcall] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_RBRACE] = ACTIONS(1334), - [anon_sym_signed] = ACTIONS(1332), - [anon_sym_unsigned] = ACTIONS(1332), - [anon_sym_long] = ACTIONS(1332), - [anon_sym_short] = ACTIONS(1332), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_auto] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_inline] = ACTIONS(1332), - [anon_sym_thread_local] = ACTIONS(1332), - [anon_sym___thread] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_constexpr] = ACTIONS(1332), - [anon_sym_volatile] = ACTIONS(1332), - [anon_sym_restrict] = ACTIONS(1332), - [anon_sym___restrict__] = ACTIONS(1332), - [anon_sym__Atomic] = ACTIONS(1332), - [anon_sym__Noreturn] = ACTIONS(1332), - [anon_sym_noreturn] = ACTIONS(1332), - [sym_primitive_type] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1332), - [anon_sym_struct] = ACTIONS(1332), - [anon_sym_union] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_else] = ACTIONS(1332), - [anon_sym_switch] = ACTIONS(1332), - [anon_sym_case] = ACTIONS(1332), - [anon_sym_default] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_goto] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_sizeof] = ACTIONS(1332), - [anon_sym_offsetof] = ACTIONS(1332), - [anon_sym__Generic] = ACTIONS(1332), - [anon_sym_asm] = ACTIONS(1332), - [anon_sym___asm__] = ACTIONS(1332), - [sym_number_literal] = ACTIONS(1334), - [anon_sym_L_SQUOTE] = ACTIONS(1334), - [anon_sym_u_SQUOTE] = ACTIONS(1334), - [anon_sym_U_SQUOTE] = ACTIONS(1334), - [anon_sym_u8_SQUOTE] = ACTIONS(1334), - [anon_sym_SQUOTE] = ACTIONS(1334), - [anon_sym_L_DQUOTE] = ACTIONS(1334), - [anon_sym_u_DQUOTE] = ACTIONS(1334), - [anon_sym_U_DQUOTE] = ACTIONS(1334), - [anon_sym_u8_DQUOTE] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1334), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [anon_sym_NULL] = ACTIONS(1332), - [anon_sym_nullptr] = ACTIONS(1332), + [295] = { + [sym_identifier] = ACTIONS(1360), + [aux_sym_preproc_include_token1] = ACTIONS(1360), + [aux_sym_preproc_def_token1] = ACTIONS(1360), + [aux_sym_preproc_if_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), + [sym_preproc_directive] = ACTIONS(1360), + [anon_sym_LPAREN2] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [anon_sym_TILDE] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym___extension__] = ACTIONS(1360), + [anon_sym_typedef] = ACTIONS(1360), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym___attribute__] = ACTIONS(1360), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), + [anon_sym___declspec] = ACTIONS(1360), + [anon_sym___cdecl] = ACTIONS(1360), + [anon_sym___clrcall] = ACTIONS(1360), + [anon_sym___stdcall] = ACTIONS(1360), + [anon_sym___fastcall] = ACTIONS(1360), + [anon_sym___thiscall] = ACTIONS(1360), + [anon_sym___vectorcall] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_RBRACE] = ACTIONS(1362), + [anon_sym_signed] = ACTIONS(1360), + [anon_sym_unsigned] = ACTIONS(1360), + [anon_sym_long] = ACTIONS(1360), + [anon_sym_short] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_auto] = ACTIONS(1360), + [anon_sym_register] = ACTIONS(1360), + [anon_sym_inline] = ACTIONS(1360), + [anon_sym___inline] = ACTIONS(1360), + [anon_sym___inline__] = ACTIONS(1360), + [anon_sym___forceinline] = ACTIONS(1360), + [anon_sym_thread_local] = ACTIONS(1360), + [anon_sym___thread] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_constexpr] = ACTIONS(1360), + [anon_sym_volatile] = ACTIONS(1360), + [anon_sym_restrict] = ACTIONS(1360), + [anon_sym___restrict__] = ACTIONS(1360), + [anon_sym__Atomic] = ACTIONS(1360), + [anon_sym__Noreturn] = ACTIONS(1360), + [anon_sym_noreturn] = ACTIONS(1360), + [sym_primitive_type] = ACTIONS(1360), + [anon_sym_enum] = ACTIONS(1360), + [anon_sym_struct] = ACTIONS(1360), + [anon_sym_union] = ACTIONS(1360), + [anon_sym_if] = ACTIONS(1360), + [anon_sym_else] = ACTIONS(1360), + [anon_sym_switch] = ACTIONS(1360), + [anon_sym_case] = ACTIONS(1360), + [anon_sym_default] = ACTIONS(1360), + [anon_sym_while] = ACTIONS(1360), + [anon_sym_do] = ACTIONS(1360), + [anon_sym_for] = ACTIONS(1360), + [anon_sym_return] = ACTIONS(1360), + [anon_sym_break] = ACTIONS(1360), + [anon_sym_continue] = ACTIONS(1360), + [anon_sym_goto] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1362), + [anon_sym_PLUS_PLUS] = ACTIONS(1362), + [anon_sym_sizeof] = ACTIONS(1360), + [anon_sym___alignof__] = ACTIONS(1360), + [anon_sym___alignof] = ACTIONS(1360), + [anon_sym__alignof] = ACTIONS(1360), + [anon_sym_alignof] = ACTIONS(1360), + [anon_sym__Alignof] = ACTIONS(1360), + [anon_sym_offsetof] = ACTIONS(1360), + [anon_sym___builtin_va_arg] = ACTIONS(1360), + [anon_sym__Generic] = ACTIONS(1360), + [anon_sym_asm] = ACTIONS(1360), + [anon_sym___asm__] = ACTIONS(1360), + [sym_number_literal] = ACTIONS(1362), + [anon_sym_L_SQUOTE] = ACTIONS(1362), + [anon_sym_u_SQUOTE] = ACTIONS(1362), + [anon_sym_U_SQUOTE] = ACTIONS(1362), + [anon_sym_u8_SQUOTE] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_L_DQUOTE] = ACTIONS(1362), + [anon_sym_u_DQUOTE] = ACTIONS(1362), + [anon_sym_U_DQUOTE] = ACTIONS(1362), + [anon_sym_u8_DQUOTE] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym_true] = ACTIONS(1360), + [sym_false] = ACTIONS(1360), + [anon_sym_NULL] = ACTIONS(1360), + [anon_sym_nullptr] = ACTIONS(1360), [sym_comment] = ACTIONS(3), }, - [291] = { - [sym_identifier] = ACTIONS(1344), - [aux_sym_preproc_include_token1] = ACTIONS(1344), - [aux_sym_preproc_def_token1] = ACTIONS(1344), - [aux_sym_preproc_if_token1] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), - [sym_preproc_directive] = ACTIONS(1344), - [anon_sym_LPAREN2] = ACTIONS(1346), - [anon_sym_BANG] = ACTIONS(1346), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1344), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1344), - [anon_sym_extern] = ACTIONS(1344), - [anon_sym___attribute__] = ACTIONS(1344), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), - [anon_sym___declspec] = ACTIONS(1344), - [anon_sym___cdecl] = ACTIONS(1344), - [anon_sym___clrcall] = ACTIONS(1344), - [anon_sym___stdcall] = ACTIONS(1344), - [anon_sym___fastcall] = ACTIONS(1344), - [anon_sym___thiscall] = ACTIONS(1344), - [anon_sym___vectorcall] = ACTIONS(1344), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_RBRACE] = ACTIONS(1346), - [anon_sym_signed] = ACTIONS(1344), - [anon_sym_unsigned] = ACTIONS(1344), - [anon_sym_long] = ACTIONS(1344), - [anon_sym_short] = ACTIONS(1344), - [anon_sym_static] = ACTIONS(1344), - [anon_sym_auto] = ACTIONS(1344), - [anon_sym_register] = ACTIONS(1344), - [anon_sym_inline] = ACTIONS(1344), - [anon_sym_thread_local] = ACTIONS(1344), - [anon_sym___thread] = ACTIONS(1344), - [anon_sym_const] = ACTIONS(1344), - [anon_sym_constexpr] = ACTIONS(1344), - [anon_sym_volatile] = ACTIONS(1344), - [anon_sym_restrict] = ACTIONS(1344), - [anon_sym___restrict__] = ACTIONS(1344), - [anon_sym__Atomic] = ACTIONS(1344), - [anon_sym__Noreturn] = ACTIONS(1344), - [anon_sym_noreturn] = ACTIONS(1344), - [sym_primitive_type] = ACTIONS(1344), - [anon_sym_enum] = ACTIONS(1344), - [anon_sym_struct] = ACTIONS(1344), - [anon_sym_union] = ACTIONS(1344), - [anon_sym_if] = ACTIONS(1344), - [anon_sym_else] = ACTIONS(1344), - [anon_sym_switch] = ACTIONS(1344), - [anon_sym_case] = ACTIONS(1344), - [anon_sym_default] = ACTIONS(1344), - [anon_sym_while] = ACTIONS(1344), - [anon_sym_do] = ACTIONS(1344), - [anon_sym_for] = ACTIONS(1344), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1344), - [anon_sym_continue] = ACTIONS(1344), - [anon_sym_goto] = ACTIONS(1344), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_sizeof] = ACTIONS(1344), - [anon_sym_offsetof] = ACTIONS(1344), - [anon_sym__Generic] = ACTIONS(1344), - [anon_sym_asm] = ACTIONS(1344), - [anon_sym___asm__] = ACTIONS(1344), - [sym_number_literal] = ACTIONS(1346), - [anon_sym_L_SQUOTE] = ACTIONS(1346), - [anon_sym_u_SQUOTE] = ACTIONS(1346), - [anon_sym_U_SQUOTE] = ACTIONS(1346), - [anon_sym_u8_SQUOTE] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1346), - [anon_sym_L_DQUOTE] = ACTIONS(1346), - [anon_sym_u_DQUOTE] = ACTIONS(1346), - [anon_sym_U_DQUOTE] = ACTIONS(1346), - [anon_sym_u8_DQUOTE] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym_true] = ACTIONS(1344), - [sym_false] = ACTIONS(1344), - [anon_sym_NULL] = ACTIONS(1344), - [anon_sym_nullptr] = ACTIONS(1344), - [sym_comment] = ACTIONS(3), - }, - [292] = { - [ts_builtin_sym_end] = ACTIONS(1338), - [sym_identifier] = ACTIONS(1336), - [aux_sym_preproc_include_token1] = ACTIONS(1336), - [aux_sym_preproc_def_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(1336), - [anon_sym_LPAREN2] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym___attribute__] = ACTIONS(1336), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), - [anon_sym___declspec] = ACTIONS(1336), - [anon_sym___cdecl] = ACTIONS(1336), - [anon_sym___clrcall] = ACTIONS(1336), - [anon_sym___stdcall] = ACTIONS(1336), - [anon_sym___fastcall] = ACTIONS(1336), - [anon_sym___thiscall] = ACTIONS(1336), - [anon_sym___vectorcall] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_auto] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_inline] = ACTIONS(1336), - [anon_sym_thread_local] = ACTIONS(1336), - [anon_sym___thread] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_constexpr] = ACTIONS(1336), - [anon_sym_volatile] = ACTIONS(1336), - [anon_sym_restrict] = ACTIONS(1336), - [anon_sym___restrict__] = ACTIONS(1336), - [anon_sym__Atomic] = ACTIONS(1336), - [anon_sym__Noreturn] = ACTIONS(1336), - [anon_sym_noreturn] = ACTIONS(1336), - [sym_primitive_type] = ACTIONS(1336), - [anon_sym_enum] = ACTIONS(1336), - [anon_sym_struct] = ACTIONS(1336), - [anon_sym_union] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_else] = ACTIONS(1336), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1336), - [anon_sym_default] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_do] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_goto] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_sizeof] = ACTIONS(1336), - [anon_sym_offsetof] = ACTIONS(1336), - [anon_sym__Generic] = ACTIONS(1336), - [anon_sym_asm] = ACTIONS(1336), - [anon_sym___asm__] = ACTIONS(1336), - [sym_number_literal] = ACTIONS(1338), - [anon_sym_L_SQUOTE] = ACTIONS(1338), - [anon_sym_u_SQUOTE] = ACTIONS(1338), - [anon_sym_U_SQUOTE] = ACTIONS(1338), - [anon_sym_u8_SQUOTE] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1338), - [anon_sym_L_DQUOTE] = ACTIONS(1338), - [anon_sym_u_DQUOTE] = ACTIONS(1338), - [anon_sym_U_DQUOTE] = ACTIONS(1338), - [anon_sym_u8_DQUOTE] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym_true] = ACTIONS(1336), - [sym_false] = ACTIONS(1336), - [anon_sym_NULL] = ACTIONS(1336), - [anon_sym_nullptr] = ACTIONS(1336), - [sym_comment] = ACTIONS(3), - }, - [293] = { - [sym_identifier] = ACTIONS(1208), - [aux_sym_preproc_include_token1] = ACTIONS(1208), - [aux_sym_preproc_def_token1] = ACTIONS(1208), - [aux_sym_preproc_if_token1] = ACTIONS(1208), - [aux_sym_preproc_if_token2] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1208), - [sym_preproc_directive] = ACTIONS(1208), - [anon_sym_LPAREN2] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1210), - [anon_sym_AMP] = ACTIONS(1210), - [anon_sym_SEMI] = ACTIONS(1210), - [anon_sym_typedef] = ACTIONS(1208), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym___attribute__] = ACTIONS(1208), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(1208), - [anon_sym___cdecl] = ACTIONS(1208), - [anon_sym___clrcall] = ACTIONS(1208), - [anon_sym___stdcall] = ACTIONS(1208), - [anon_sym___fastcall] = ACTIONS(1208), - [anon_sym___thiscall] = ACTIONS(1208), - [anon_sym___vectorcall] = ACTIONS(1208), - [anon_sym_LBRACE] = ACTIONS(1210), - [anon_sym_signed] = ACTIONS(1208), - [anon_sym_unsigned] = ACTIONS(1208), - [anon_sym_long] = ACTIONS(1208), - [anon_sym_short] = ACTIONS(1208), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_auto] = ACTIONS(1208), - [anon_sym_register] = ACTIONS(1208), - [anon_sym_inline] = ACTIONS(1208), - [anon_sym_thread_local] = ACTIONS(1208), - [anon_sym___thread] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_constexpr] = ACTIONS(1208), - [anon_sym_volatile] = ACTIONS(1208), - [anon_sym_restrict] = ACTIONS(1208), - [anon_sym___restrict__] = ACTIONS(1208), - [anon_sym__Atomic] = ACTIONS(1208), - [anon_sym__Noreturn] = ACTIONS(1208), - [anon_sym_noreturn] = ACTIONS(1208), - [sym_primitive_type] = ACTIONS(1208), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_struct] = ACTIONS(1208), - [anon_sym_union] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_else] = ACTIONS(1208), - [anon_sym_switch] = ACTIONS(1208), - [anon_sym_case] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_do] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_goto] = ACTIONS(1208), - [anon_sym_DASH_DASH] = ACTIONS(1210), - [anon_sym_PLUS_PLUS] = ACTIONS(1210), - [anon_sym_sizeof] = ACTIONS(1208), - [anon_sym_offsetof] = ACTIONS(1208), - [anon_sym__Generic] = ACTIONS(1208), - [anon_sym_asm] = ACTIONS(1208), - [anon_sym___asm__] = ACTIONS(1208), - [sym_number_literal] = ACTIONS(1210), - [anon_sym_L_SQUOTE] = ACTIONS(1210), - [anon_sym_u_SQUOTE] = ACTIONS(1210), - [anon_sym_U_SQUOTE] = ACTIONS(1210), - [anon_sym_u8_SQUOTE] = ACTIONS(1210), - [anon_sym_SQUOTE] = ACTIONS(1210), - [anon_sym_L_DQUOTE] = ACTIONS(1210), - [anon_sym_u_DQUOTE] = ACTIONS(1210), - [anon_sym_U_DQUOTE] = ACTIONS(1210), - [anon_sym_u8_DQUOTE] = ACTIONS(1210), - [anon_sym_DQUOTE] = ACTIONS(1210), - [sym_true] = ACTIONS(1208), - [sym_false] = ACTIONS(1208), - [anon_sym_NULL] = ACTIONS(1208), - [anon_sym_nullptr] = ACTIONS(1208), - [sym_comment] = ACTIONS(3), - }, - [294] = { - [sym_identifier] = ACTIONS(1316), - [aux_sym_preproc_include_token1] = ACTIONS(1316), - [aux_sym_preproc_def_token1] = ACTIONS(1316), - [aux_sym_preproc_if_token1] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), - [sym_preproc_directive] = ACTIONS(1316), - [anon_sym_LPAREN2] = ACTIONS(1318), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_TILDE] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym_typedef] = ACTIONS(1316), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym___attribute__] = ACTIONS(1316), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), - [anon_sym___declspec] = ACTIONS(1316), - [anon_sym___cdecl] = ACTIONS(1316), - [anon_sym___clrcall] = ACTIONS(1316), - [anon_sym___stdcall] = ACTIONS(1316), - [anon_sym___fastcall] = ACTIONS(1316), - [anon_sym___thiscall] = ACTIONS(1316), - [anon_sym___vectorcall] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_signed] = ACTIONS(1316), - [anon_sym_unsigned] = ACTIONS(1316), - [anon_sym_long] = ACTIONS(1316), - [anon_sym_short] = ACTIONS(1316), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_auto] = ACTIONS(1316), - [anon_sym_register] = ACTIONS(1316), - [anon_sym_inline] = ACTIONS(1316), - [anon_sym_thread_local] = ACTIONS(1316), - [anon_sym___thread] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [anon_sym_constexpr] = ACTIONS(1316), - [anon_sym_volatile] = ACTIONS(1316), - [anon_sym_restrict] = ACTIONS(1316), - [anon_sym___restrict__] = ACTIONS(1316), - [anon_sym__Atomic] = ACTIONS(1316), - [anon_sym__Noreturn] = ACTIONS(1316), - [anon_sym_noreturn] = ACTIONS(1316), - [sym_primitive_type] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1316), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_union] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_else] = ACTIONS(1316), - [anon_sym_switch] = ACTIONS(1316), - [anon_sym_case] = ACTIONS(1316), - [anon_sym_default] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_goto] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1318), - [anon_sym_sizeof] = ACTIONS(1316), - [anon_sym_offsetof] = ACTIONS(1316), - [anon_sym__Generic] = ACTIONS(1316), - [anon_sym_asm] = ACTIONS(1316), - [anon_sym___asm__] = ACTIONS(1316), - [sym_number_literal] = ACTIONS(1318), - [anon_sym_L_SQUOTE] = ACTIONS(1318), - [anon_sym_u_SQUOTE] = ACTIONS(1318), - [anon_sym_U_SQUOTE] = ACTIONS(1318), - [anon_sym_u8_SQUOTE] = ACTIONS(1318), - [anon_sym_SQUOTE] = ACTIONS(1318), - [anon_sym_L_DQUOTE] = ACTIONS(1318), - [anon_sym_u_DQUOTE] = ACTIONS(1318), - [anon_sym_U_DQUOTE] = ACTIONS(1318), - [anon_sym_u8_DQUOTE] = ACTIONS(1318), - [anon_sym_DQUOTE] = ACTIONS(1318), - [sym_true] = ACTIONS(1316), - [sym_false] = ACTIONS(1316), - [anon_sym_NULL] = ACTIONS(1316), - [anon_sym_nullptr] = ACTIONS(1316), - [sym_comment] = ACTIONS(3), - }, - [295] = { - [sym_identifier] = ACTIONS(1252), - [aux_sym_preproc_include_token1] = ACTIONS(1252), - [aux_sym_preproc_def_token1] = ACTIONS(1252), - [aux_sym_preproc_if_token1] = ACTIONS(1252), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1252), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1252), - [sym_preproc_directive] = ACTIONS(1252), - [anon_sym_LPAREN2] = ACTIONS(1254), - [anon_sym_BANG] = ACTIONS(1254), - [anon_sym_TILDE] = ACTIONS(1254), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1254), - [anon_sym_typedef] = ACTIONS(1252), - [anon_sym_extern] = ACTIONS(1252), - [anon_sym___attribute__] = ACTIONS(1252), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1254), - [anon_sym___declspec] = ACTIONS(1252), - [anon_sym___cdecl] = ACTIONS(1252), - [anon_sym___clrcall] = ACTIONS(1252), - [anon_sym___stdcall] = ACTIONS(1252), - [anon_sym___fastcall] = ACTIONS(1252), - [anon_sym___thiscall] = ACTIONS(1252), - [anon_sym___vectorcall] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_RBRACE] = ACTIONS(1254), - [anon_sym_signed] = ACTIONS(1252), - [anon_sym_unsigned] = ACTIONS(1252), - [anon_sym_long] = ACTIONS(1252), - [anon_sym_short] = ACTIONS(1252), - [anon_sym_static] = ACTIONS(1252), - [anon_sym_auto] = ACTIONS(1252), - [anon_sym_register] = ACTIONS(1252), - [anon_sym_inline] = ACTIONS(1252), - [anon_sym_thread_local] = ACTIONS(1252), - [anon_sym___thread] = ACTIONS(1252), - [anon_sym_const] = ACTIONS(1252), - [anon_sym_constexpr] = ACTIONS(1252), - [anon_sym_volatile] = ACTIONS(1252), - [anon_sym_restrict] = ACTIONS(1252), - [anon_sym___restrict__] = ACTIONS(1252), - [anon_sym__Atomic] = ACTIONS(1252), - [anon_sym__Noreturn] = ACTIONS(1252), - [anon_sym_noreturn] = ACTIONS(1252), - [sym_primitive_type] = ACTIONS(1252), - [anon_sym_enum] = ACTIONS(1252), - [anon_sym_struct] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_else] = ACTIONS(1252), - [anon_sym_switch] = ACTIONS(1252), - [anon_sym_case] = ACTIONS(1252), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_break] = ACTIONS(1252), - [anon_sym_continue] = ACTIONS(1252), - [anon_sym_goto] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1254), - [anon_sym_PLUS_PLUS] = ACTIONS(1254), - [anon_sym_sizeof] = ACTIONS(1252), - [anon_sym_offsetof] = ACTIONS(1252), - [anon_sym__Generic] = ACTIONS(1252), - [anon_sym_asm] = ACTIONS(1252), - [anon_sym___asm__] = ACTIONS(1252), - [sym_number_literal] = ACTIONS(1254), - [anon_sym_L_SQUOTE] = ACTIONS(1254), - [anon_sym_u_SQUOTE] = ACTIONS(1254), - [anon_sym_U_SQUOTE] = ACTIONS(1254), - [anon_sym_u8_SQUOTE] = ACTIONS(1254), - [anon_sym_SQUOTE] = ACTIONS(1254), - [anon_sym_L_DQUOTE] = ACTIONS(1254), - [anon_sym_u_DQUOTE] = ACTIONS(1254), - [anon_sym_U_DQUOTE] = ACTIONS(1254), - [anon_sym_u8_DQUOTE] = ACTIONS(1254), - [anon_sym_DQUOTE] = ACTIONS(1254), - [sym_true] = ACTIONS(1252), - [sym_false] = ACTIONS(1252), - [anon_sym_NULL] = ACTIONS(1252), - [anon_sym_nullptr] = ACTIONS(1252), - [sym_comment] = ACTIONS(3), - }, - [296] = { - [ts_builtin_sym_end] = ACTIONS(1210), - [sym_identifier] = ACTIONS(1208), - [aux_sym_preproc_include_token1] = ACTIONS(1208), - [aux_sym_preproc_def_token1] = ACTIONS(1208), - [aux_sym_preproc_if_token1] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1208), - [sym_preproc_directive] = ACTIONS(1208), - [anon_sym_LPAREN2] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1210), - [anon_sym_AMP] = ACTIONS(1210), - [anon_sym_SEMI] = ACTIONS(1210), - [anon_sym_typedef] = ACTIONS(1208), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym___attribute__] = ACTIONS(1208), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(1208), - [anon_sym___cdecl] = ACTIONS(1208), - [anon_sym___clrcall] = ACTIONS(1208), - [anon_sym___stdcall] = ACTIONS(1208), - [anon_sym___fastcall] = ACTIONS(1208), - [anon_sym___thiscall] = ACTIONS(1208), - [anon_sym___vectorcall] = ACTIONS(1208), - [anon_sym_LBRACE] = ACTIONS(1210), - [anon_sym_signed] = ACTIONS(1208), - [anon_sym_unsigned] = ACTIONS(1208), - [anon_sym_long] = ACTIONS(1208), - [anon_sym_short] = ACTIONS(1208), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_auto] = ACTIONS(1208), - [anon_sym_register] = ACTIONS(1208), - [anon_sym_inline] = ACTIONS(1208), - [anon_sym_thread_local] = ACTIONS(1208), - [anon_sym___thread] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_constexpr] = ACTIONS(1208), - [anon_sym_volatile] = ACTIONS(1208), - [anon_sym_restrict] = ACTIONS(1208), - [anon_sym___restrict__] = ACTIONS(1208), - [anon_sym__Atomic] = ACTIONS(1208), - [anon_sym__Noreturn] = ACTIONS(1208), - [anon_sym_noreturn] = ACTIONS(1208), - [sym_primitive_type] = ACTIONS(1208), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_struct] = ACTIONS(1208), - [anon_sym_union] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_else] = ACTIONS(1208), - [anon_sym_switch] = ACTIONS(1208), - [anon_sym_case] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_do] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_goto] = ACTIONS(1208), - [anon_sym_DASH_DASH] = ACTIONS(1210), - [anon_sym_PLUS_PLUS] = ACTIONS(1210), - [anon_sym_sizeof] = ACTIONS(1208), - [anon_sym_offsetof] = ACTIONS(1208), - [anon_sym__Generic] = ACTIONS(1208), - [anon_sym_asm] = ACTIONS(1208), - [anon_sym___asm__] = ACTIONS(1208), - [sym_number_literal] = ACTIONS(1210), - [anon_sym_L_SQUOTE] = ACTIONS(1210), - [anon_sym_u_SQUOTE] = ACTIONS(1210), - [anon_sym_U_SQUOTE] = ACTIONS(1210), - [anon_sym_u8_SQUOTE] = ACTIONS(1210), - [anon_sym_SQUOTE] = ACTIONS(1210), - [anon_sym_L_DQUOTE] = ACTIONS(1210), - [anon_sym_u_DQUOTE] = ACTIONS(1210), - [anon_sym_U_DQUOTE] = ACTIONS(1210), - [anon_sym_u8_DQUOTE] = ACTIONS(1210), - [anon_sym_DQUOTE] = ACTIONS(1210), - [sym_true] = ACTIONS(1208), - [sym_false] = ACTIONS(1208), - [anon_sym_NULL] = ACTIONS(1208), - [anon_sym_nullptr] = ACTIONS(1208), + [296] = { + [sym_identifier] = ACTIONS(1356), + [aux_sym_preproc_include_token1] = ACTIONS(1356), + [aux_sym_preproc_def_token1] = ACTIONS(1356), + [aux_sym_preproc_if_token1] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), + [sym_preproc_directive] = ACTIONS(1356), + [anon_sym_LPAREN2] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym___extension__] = ACTIONS(1356), + [anon_sym_typedef] = ACTIONS(1356), + [anon_sym_extern] = ACTIONS(1356), + [anon_sym___attribute__] = ACTIONS(1356), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1358), + [anon_sym___declspec] = ACTIONS(1356), + [anon_sym___cdecl] = ACTIONS(1356), + [anon_sym___clrcall] = ACTIONS(1356), + [anon_sym___stdcall] = ACTIONS(1356), + [anon_sym___fastcall] = ACTIONS(1356), + [anon_sym___thiscall] = ACTIONS(1356), + [anon_sym___vectorcall] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_RBRACE] = ACTIONS(1358), + [anon_sym_signed] = ACTIONS(1356), + [anon_sym_unsigned] = ACTIONS(1356), + [anon_sym_long] = ACTIONS(1356), + [anon_sym_short] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1356), + [anon_sym_auto] = ACTIONS(1356), + [anon_sym_register] = ACTIONS(1356), + [anon_sym_inline] = ACTIONS(1356), + [anon_sym___inline] = ACTIONS(1356), + [anon_sym___inline__] = ACTIONS(1356), + [anon_sym___forceinline] = ACTIONS(1356), + [anon_sym_thread_local] = ACTIONS(1356), + [anon_sym___thread] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1356), + [anon_sym_constexpr] = ACTIONS(1356), + [anon_sym_volatile] = ACTIONS(1356), + [anon_sym_restrict] = ACTIONS(1356), + [anon_sym___restrict__] = ACTIONS(1356), + [anon_sym__Atomic] = ACTIONS(1356), + [anon_sym__Noreturn] = ACTIONS(1356), + [anon_sym_noreturn] = ACTIONS(1356), + [sym_primitive_type] = ACTIONS(1356), + [anon_sym_enum] = ACTIONS(1356), + [anon_sym_struct] = ACTIONS(1356), + [anon_sym_union] = ACTIONS(1356), + [anon_sym_if] = ACTIONS(1356), + [anon_sym_else] = ACTIONS(1356), + [anon_sym_switch] = ACTIONS(1356), + [anon_sym_case] = ACTIONS(1356), + [anon_sym_default] = ACTIONS(1356), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_do] = ACTIONS(1356), + [anon_sym_for] = ACTIONS(1356), + [anon_sym_return] = ACTIONS(1356), + [anon_sym_break] = ACTIONS(1356), + [anon_sym_continue] = ACTIONS(1356), + [anon_sym_goto] = ACTIONS(1356), + [anon_sym_DASH_DASH] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1358), + [anon_sym_sizeof] = ACTIONS(1356), + [anon_sym___alignof__] = ACTIONS(1356), + [anon_sym___alignof] = ACTIONS(1356), + [anon_sym__alignof] = ACTIONS(1356), + [anon_sym_alignof] = ACTIONS(1356), + [anon_sym__Alignof] = ACTIONS(1356), + [anon_sym_offsetof] = ACTIONS(1356), + [anon_sym___builtin_va_arg] = ACTIONS(1356), + [anon_sym__Generic] = ACTIONS(1356), + [anon_sym_asm] = ACTIONS(1356), + [anon_sym___asm__] = ACTIONS(1356), + [sym_number_literal] = ACTIONS(1358), + [anon_sym_L_SQUOTE] = ACTIONS(1358), + [anon_sym_u_SQUOTE] = ACTIONS(1358), + [anon_sym_U_SQUOTE] = ACTIONS(1358), + [anon_sym_u8_SQUOTE] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), + [anon_sym_L_DQUOTE] = ACTIONS(1358), + [anon_sym_u_DQUOTE] = ACTIONS(1358), + [anon_sym_U_DQUOTE] = ACTIONS(1358), + [anon_sym_u8_DQUOTE] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [sym_true] = ACTIONS(1356), + [sym_false] = ACTIONS(1356), + [anon_sym_NULL] = ACTIONS(1356), + [anon_sym_nullptr] = ACTIONS(1356), [sym_comment] = ACTIONS(3), }, [297] = { - [sym_identifier] = ACTIONS(1208), - [aux_sym_preproc_include_token1] = ACTIONS(1208), - [aux_sym_preproc_def_token1] = ACTIONS(1208), - [aux_sym_preproc_if_token1] = ACTIONS(1208), - [aux_sym_preproc_if_token2] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1208), - [sym_preproc_directive] = ACTIONS(1208), - [anon_sym_LPAREN2] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1210), - [anon_sym_AMP] = ACTIONS(1210), - [anon_sym_SEMI] = ACTIONS(1210), - [anon_sym_typedef] = ACTIONS(1208), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym___attribute__] = ACTIONS(1208), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(1208), - [anon_sym___cdecl] = ACTIONS(1208), - [anon_sym___clrcall] = ACTIONS(1208), - [anon_sym___stdcall] = ACTIONS(1208), - [anon_sym___fastcall] = ACTIONS(1208), - [anon_sym___thiscall] = ACTIONS(1208), - [anon_sym___vectorcall] = ACTIONS(1208), - [anon_sym_LBRACE] = ACTIONS(1210), - [anon_sym_signed] = ACTIONS(1208), - [anon_sym_unsigned] = ACTIONS(1208), - [anon_sym_long] = ACTIONS(1208), - [anon_sym_short] = ACTIONS(1208), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_auto] = ACTIONS(1208), - [anon_sym_register] = ACTIONS(1208), - [anon_sym_inline] = ACTIONS(1208), - [anon_sym_thread_local] = ACTIONS(1208), - [anon_sym___thread] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_constexpr] = ACTIONS(1208), - [anon_sym_volatile] = ACTIONS(1208), - [anon_sym_restrict] = ACTIONS(1208), - [anon_sym___restrict__] = ACTIONS(1208), - [anon_sym__Atomic] = ACTIONS(1208), - [anon_sym__Noreturn] = ACTIONS(1208), - [anon_sym_noreturn] = ACTIONS(1208), - [sym_primitive_type] = ACTIONS(1208), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_struct] = ACTIONS(1208), - [anon_sym_union] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_else] = ACTIONS(1208), - [anon_sym_switch] = ACTIONS(1208), - [anon_sym_case] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_do] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_goto] = ACTIONS(1208), - [anon_sym_DASH_DASH] = ACTIONS(1210), - [anon_sym_PLUS_PLUS] = ACTIONS(1210), - [anon_sym_sizeof] = ACTIONS(1208), - [anon_sym_offsetof] = ACTIONS(1208), - [anon_sym__Generic] = ACTIONS(1208), - [anon_sym_asm] = ACTIONS(1208), - [anon_sym___asm__] = ACTIONS(1208), - [sym_number_literal] = ACTIONS(1210), - [anon_sym_L_SQUOTE] = ACTIONS(1210), - [anon_sym_u_SQUOTE] = ACTIONS(1210), - [anon_sym_U_SQUOTE] = ACTIONS(1210), - [anon_sym_u8_SQUOTE] = ACTIONS(1210), - [anon_sym_SQUOTE] = ACTIONS(1210), - [anon_sym_L_DQUOTE] = ACTIONS(1210), - [anon_sym_u_DQUOTE] = ACTIONS(1210), - [anon_sym_U_DQUOTE] = ACTIONS(1210), - [anon_sym_u8_DQUOTE] = ACTIONS(1210), - [anon_sym_DQUOTE] = ACTIONS(1210), - [sym_true] = ACTIONS(1208), - [sym_false] = ACTIONS(1208), - [anon_sym_NULL] = ACTIONS(1208), - [anon_sym_nullptr] = ACTIONS(1208), + [sym_identifier] = ACTIONS(1372), + [aux_sym_preproc_include_token1] = ACTIONS(1372), + [aux_sym_preproc_def_token1] = ACTIONS(1372), + [aux_sym_preproc_if_token1] = ACTIONS(1372), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), + [sym_preproc_directive] = ACTIONS(1372), + [anon_sym_LPAREN2] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_TILDE] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_STAR] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym___extension__] = ACTIONS(1372), + [anon_sym_typedef] = ACTIONS(1372), + [anon_sym_extern] = ACTIONS(1372), + [anon_sym___attribute__] = ACTIONS(1372), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), + [anon_sym___declspec] = ACTIONS(1372), + [anon_sym___cdecl] = ACTIONS(1372), + [anon_sym___clrcall] = ACTIONS(1372), + [anon_sym___stdcall] = ACTIONS(1372), + [anon_sym___fastcall] = ACTIONS(1372), + [anon_sym___thiscall] = ACTIONS(1372), + [anon_sym___vectorcall] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_RBRACE] = ACTIONS(1374), + [anon_sym_signed] = ACTIONS(1372), + [anon_sym_unsigned] = ACTIONS(1372), + [anon_sym_long] = ACTIONS(1372), + [anon_sym_short] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_auto] = ACTIONS(1372), + [anon_sym_register] = ACTIONS(1372), + [anon_sym_inline] = ACTIONS(1372), + [anon_sym___inline] = ACTIONS(1372), + [anon_sym___inline__] = ACTIONS(1372), + [anon_sym___forceinline] = ACTIONS(1372), + [anon_sym_thread_local] = ACTIONS(1372), + [anon_sym___thread] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1372), + [anon_sym_constexpr] = ACTIONS(1372), + [anon_sym_volatile] = ACTIONS(1372), + [anon_sym_restrict] = ACTIONS(1372), + [anon_sym___restrict__] = ACTIONS(1372), + [anon_sym__Atomic] = ACTIONS(1372), + [anon_sym__Noreturn] = ACTIONS(1372), + [anon_sym_noreturn] = ACTIONS(1372), + [sym_primitive_type] = ACTIONS(1372), + [anon_sym_enum] = ACTIONS(1372), + [anon_sym_struct] = ACTIONS(1372), + [anon_sym_union] = ACTIONS(1372), + [anon_sym_if] = ACTIONS(1372), + [anon_sym_else] = ACTIONS(1372), + [anon_sym_switch] = ACTIONS(1372), + [anon_sym_case] = ACTIONS(1372), + [anon_sym_default] = ACTIONS(1372), + [anon_sym_while] = ACTIONS(1372), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_for] = ACTIONS(1372), + [anon_sym_return] = ACTIONS(1372), + [anon_sym_break] = ACTIONS(1372), + [anon_sym_continue] = ACTIONS(1372), + [anon_sym_goto] = ACTIONS(1372), + [anon_sym_DASH_DASH] = ACTIONS(1374), + [anon_sym_PLUS_PLUS] = ACTIONS(1374), + [anon_sym_sizeof] = ACTIONS(1372), + [anon_sym___alignof__] = ACTIONS(1372), + [anon_sym___alignof] = ACTIONS(1372), + [anon_sym__alignof] = ACTIONS(1372), + [anon_sym_alignof] = ACTIONS(1372), + [anon_sym__Alignof] = ACTIONS(1372), + [anon_sym_offsetof] = ACTIONS(1372), + [anon_sym___builtin_va_arg] = ACTIONS(1372), + [anon_sym__Generic] = ACTIONS(1372), + [anon_sym_asm] = ACTIONS(1372), + [anon_sym___asm__] = ACTIONS(1372), + [sym_number_literal] = ACTIONS(1374), + [anon_sym_L_SQUOTE] = ACTIONS(1374), + [anon_sym_u_SQUOTE] = ACTIONS(1374), + [anon_sym_U_SQUOTE] = ACTIONS(1374), + [anon_sym_u8_SQUOTE] = ACTIONS(1374), + [anon_sym_SQUOTE] = ACTIONS(1374), + [anon_sym_L_DQUOTE] = ACTIONS(1374), + [anon_sym_u_DQUOTE] = ACTIONS(1374), + [anon_sym_U_DQUOTE] = ACTIONS(1374), + [anon_sym_u8_DQUOTE] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_true] = ACTIONS(1372), + [sym_false] = ACTIONS(1372), + [anon_sym_NULL] = ACTIONS(1372), + [anon_sym_nullptr] = ACTIONS(1372), [sym_comment] = ACTIONS(3), }, [298] = { - [sym_identifier] = ACTIONS(1236), - [aux_sym_preproc_include_token1] = ACTIONS(1236), - [aux_sym_preproc_def_token1] = ACTIONS(1236), - [aux_sym_preproc_if_token1] = ACTIONS(1236), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1236), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1236), - [sym_preproc_directive] = ACTIONS(1236), - [anon_sym_LPAREN2] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(1238), - [anon_sym_TILDE] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1236), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1238), - [anon_sym_typedef] = ACTIONS(1236), - [anon_sym_extern] = ACTIONS(1236), - [anon_sym___attribute__] = ACTIONS(1236), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1238), - [anon_sym___declspec] = ACTIONS(1236), - [anon_sym___cdecl] = ACTIONS(1236), - [anon_sym___clrcall] = ACTIONS(1236), - [anon_sym___stdcall] = ACTIONS(1236), - [anon_sym___fastcall] = ACTIONS(1236), - [anon_sym___thiscall] = ACTIONS(1236), - [anon_sym___vectorcall] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_RBRACE] = ACTIONS(1238), - [anon_sym_signed] = ACTIONS(1236), - [anon_sym_unsigned] = ACTIONS(1236), - [anon_sym_long] = ACTIONS(1236), - [anon_sym_short] = ACTIONS(1236), - [anon_sym_static] = ACTIONS(1236), - [anon_sym_auto] = ACTIONS(1236), - [anon_sym_register] = ACTIONS(1236), - [anon_sym_inline] = ACTIONS(1236), - [anon_sym_thread_local] = ACTIONS(1236), - [anon_sym___thread] = ACTIONS(1236), - [anon_sym_const] = ACTIONS(1236), - [anon_sym_constexpr] = ACTIONS(1236), - [anon_sym_volatile] = ACTIONS(1236), - [anon_sym_restrict] = ACTIONS(1236), - [anon_sym___restrict__] = ACTIONS(1236), - [anon_sym__Atomic] = ACTIONS(1236), - [anon_sym__Noreturn] = ACTIONS(1236), - [anon_sym_noreturn] = ACTIONS(1236), - [sym_primitive_type] = ACTIONS(1236), - [anon_sym_enum] = ACTIONS(1236), - [anon_sym_struct] = ACTIONS(1236), - [anon_sym_union] = ACTIONS(1236), - [anon_sym_if] = ACTIONS(1236), - [anon_sym_else] = ACTIONS(1236), - [anon_sym_switch] = ACTIONS(1236), - [anon_sym_case] = ACTIONS(1236), - [anon_sym_default] = ACTIONS(1236), - [anon_sym_while] = ACTIONS(1236), - [anon_sym_do] = ACTIONS(1236), - [anon_sym_for] = ACTIONS(1236), - [anon_sym_return] = ACTIONS(1236), - [anon_sym_break] = ACTIONS(1236), - [anon_sym_continue] = ACTIONS(1236), - [anon_sym_goto] = ACTIONS(1236), - [anon_sym_DASH_DASH] = ACTIONS(1238), - [anon_sym_PLUS_PLUS] = ACTIONS(1238), - [anon_sym_sizeof] = ACTIONS(1236), - [anon_sym_offsetof] = ACTIONS(1236), - [anon_sym__Generic] = ACTIONS(1236), - [anon_sym_asm] = ACTIONS(1236), - [anon_sym___asm__] = ACTIONS(1236), - [sym_number_literal] = ACTIONS(1238), - [anon_sym_L_SQUOTE] = ACTIONS(1238), - [anon_sym_u_SQUOTE] = ACTIONS(1238), - [anon_sym_U_SQUOTE] = ACTIONS(1238), - [anon_sym_u8_SQUOTE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1238), - [anon_sym_L_DQUOTE] = ACTIONS(1238), - [anon_sym_u_DQUOTE] = ACTIONS(1238), - [anon_sym_U_DQUOTE] = ACTIONS(1238), - [anon_sym_u8_DQUOTE] = ACTIONS(1238), - [anon_sym_DQUOTE] = ACTIONS(1238), - [sym_true] = ACTIONS(1236), - [sym_false] = ACTIONS(1236), - [anon_sym_NULL] = ACTIONS(1236), - [anon_sym_nullptr] = ACTIONS(1236), + [ts_builtin_sym_end] = ACTIONS(1278), + [sym_identifier] = ACTIONS(1276), + [aux_sym_preproc_include_token1] = ACTIONS(1276), + [aux_sym_preproc_def_token1] = ACTIONS(1276), + [aux_sym_preproc_if_token1] = ACTIONS(1276), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), + [sym_preproc_directive] = ACTIONS(1276), + [anon_sym_LPAREN2] = ACTIONS(1278), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_DASH] = ACTIONS(1276), + [anon_sym_PLUS] = ACTIONS(1276), + [anon_sym_STAR] = ACTIONS(1278), + [anon_sym_AMP] = ACTIONS(1278), + [anon_sym_SEMI] = ACTIONS(1278), + [anon_sym___extension__] = ACTIONS(1276), + [anon_sym_typedef] = ACTIONS(1276), + [anon_sym_extern] = ACTIONS(1276), + [anon_sym___attribute__] = ACTIONS(1276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1278), + [anon_sym___declspec] = ACTIONS(1276), + [anon_sym___cdecl] = ACTIONS(1276), + [anon_sym___clrcall] = ACTIONS(1276), + [anon_sym___stdcall] = ACTIONS(1276), + [anon_sym___fastcall] = ACTIONS(1276), + [anon_sym___thiscall] = ACTIONS(1276), + [anon_sym___vectorcall] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(1278), + [anon_sym_signed] = ACTIONS(1276), + [anon_sym_unsigned] = ACTIONS(1276), + [anon_sym_long] = ACTIONS(1276), + [anon_sym_short] = ACTIONS(1276), + [anon_sym_static] = ACTIONS(1276), + [anon_sym_auto] = ACTIONS(1276), + [anon_sym_register] = ACTIONS(1276), + [anon_sym_inline] = ACTIONS(1276), + [anon_sym___inline] = ACTIONS(1276), + [anon_sym___inline__] = ACTIONS(1276), + [anon_sym___forceinline] = ACTIONS(1276), + [anon_sym_thread_local] = ACTIONS(1276), + [anon_sym___thread] = ACTIONS(1276), + [anon_sym_const] = ACTIONS(1276), + [anon_sym_constexpr] = ACTIONS(1276), + [anon_sym_volatile] = ACTIONS(1276), + [anon_sym_restrict] = ACTIONS(1276), + [anon_sym___restrict__] = ACTIONS(1276), + [anon_sym__Atomic] = ACTIONS(1276), + [anon_sym__Noreturn] = ACTIONS(1276), + [anon_sym_noreturn] = ACTIONS(1276), + [sym_primitive_type] = ACTIONS(1276), + [anon_sym_enum] = ACTIONS(1276), + [anon_sym_struct] = ACTIONS(1276), + [anon_sym_union] = ACTIONS(1276), + [anon_sym_if] = ACTIONS(1276), + [anon_sym_else] = ACTIONS(1276), + [anon_sym_switch] = ACTIONS(1276), + [anon_sym_case] = ACTIONS(1276), + [anon_sym_default] = ACTIONS(1276), + [anon_sym_while] = ACTIONS(1276), + [anon_sym_do] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1276), + [anon_sym_return] = ACTIONS(1276), + [anon_sym_break] = ACTIONS(1276), + [anon_sym_continue] = ACTIONS(1276), + [anon_sym_goto] = ACTIONS(1276), + [anon_sym_DASH_DASH] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1278), + [anon_sym_sizeof] = ACTIONS(1276), + [anon_sym___alignof__] = ACTIONS(1276), + [anon_sym___alignof] = ACTIONS(1276), + [anon_sym__alignof] = ACTIONS(1276), + [anon_sym_alignof] = ACTIONS(1276), + [anon_sym__Alignof] = ACTIONS(1276), + [anon_sym_offsetof] = ACTIONS(1276), + [anon_sym___builtin_va_arg] = ACTIONS(1276), + [anon_sym__Generic] = ACTIONS(1276), + [anon_sym_asm] = ACTIONS(1276), + [anon_sym___asm__] = ACTIONS(1276), + [sym_number_literal] = ACTIONS(1278), + [anon_sym_L_SQUOTE] = ACTIONS(1278), + [anon_sym_u_SQUOTE] = ACTIONS(1278), + [anon_sym_U_SQUOTE] = ACTIONS(1278), + [anon_sym_u8_SQUOTE] = ACTIONS(1278), + [anon_sym_SQUOTE] = ACTIONS(1278), + [anon_sym_L_DQUOTE] = ACTIONS(1278), + [anon_sym_u_DQUOTE] = ACTIONS(1278), + [anon_sym_U_DQUOTE] = ACTIONS(1278), + [anon_sym_u8_DQUOTE] = ACTIONS(1278), + [anon_sym_DQUOTE] = ACTIONS(1278), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [anon_sym_NULL] = ACTIONS(1276), + [anon_sym_nullptr] = ACTIONS(1276), [sym_comment] = ACTIONS(3), }, [299] = { - [sym_identifier] = ACTIONS(1220), - [aux_sym_preproc_include_token1] = ACTIONS(1220), - [aux_sym_preproc_def_token1] = ACTIONS(1220), - [aux_sym_preproc_if_token1] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1220), - [sym_preproc_directive] = ACTIONS(1220), - [anon_sym_LPAREN2] = ACTIONS(1222), - [anon_sym_BANG] = ACTIONS(1222), - [anon_sym_TILDE] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_typedef] = ACTIONS(1220), - [anon_sym_extern] = ACTIONS(1220), - [anon_sym___attribute__] = ACTIONS(1220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), - [anon_sym___declspec] = ACTIONS(1220), - [anon_sym___cdecl] = ACTIONS(1220), - [anon_sym___clrcall] = ACTIONS(1220), - [anon_sym___stdcall] = ACTIONS(1220), - [anon_sym___fastcall] = ACTIONS(1220), - [anon_sym___thiscall] = ACTIONS(1220), - [anon_sym___vectorcall] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_RBRACE] = ACTIONS(1222), - [anon_sym_signed] = ACTIONS(1220), - [anon_sym_unsigned] = ACTIONS(1220), - [anon_sym_long] = ACTIONS(1220), - [anon_sym_short] = ACTIONS(1220), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_auto] = ACTIONS(1220), - [anon_sym_register] = ACTIONS(1220), - [anon_sym_inline] = ACTIONS(1220), - [anon_sym_thread_local] = ACTIONS(1220), - [anon_sym___thread] = ACTIONS(1220), - [anon_sym_const] = ACTIONS(1220), - [anon_sym_constexpr] = ACTIONS(1220), - [anon_sym_volatile] = ACTIONS(1220), - [anon_sym_restrict] = ACTIONS(1220), - [anon_sym___restrict__] = ACTIONS(1220), - [anon_sym__Atomic] = ACTIONS(1220), - [anon_sym__Noreturn] = ACTIONS(1220), - [anon_sym_noreturn] = ACTIONS(1220), - [sym_primitive_type] = ACTIONS(1220), - [anon_sym_enum] = ACTIONS(1220), - [anon_sym_struct] = ACTIONS(1220), - [anon_sym_union] = ACTIONS(1220), - [anon_sym_if] = ACTIONS(1220), - [anon_sym_else] = ACTIONS(1220), - [anon_sym_switch] = ACTIONS(1220), - [anon_sym_case] = ACTIONS(1220), - [anon_sym_default] = ACTIONS(1220), - [anon_sym_while] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1220), - [anon_sym_for] = ACTIONS(1220), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_break] = ACTIONS(1220), - [anon_sym_continue] = ACTIONS(1220), - [anon_sym_goto] = ACTIONS(1220), - [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_PLUS_PLUS] = ACTIONS(1222), - [anon_sym_sizeof] = ACTIONS(1220), - [anon_sym_offsetof] = ACTIONS(1220), - [anon_sym__Generic] = ACTIONS(1220), - [anon_sym_asm] = ACTIONS(1220), - [anon_sym___asm__] = ACTIONS(1220), - [sym_number_literal] = ACTIONS(1222), - [anon_sym_L_SQUOTE] = ACTIONS(1222), - [anon_sym_u_SQUOTE] = ACTIONS(1222), - [anon_sym_U_SQUOTE] = ACTIONS(1222), - [anon_sym_u8_SQUOTE] = ACTIONS(1222), - [anon_sym_SQUOTE] = ACTIONS(1222), - [anon_sym_L_DQUOTE] = ACTIONS(1222), - [anon_sym_u_DQUOTE] = ACTIONS(1222), - [anon_sym_U_DQUOTE] = ACTIONS(1222), - [anon_sym_u8_DQUOTE] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym_true] = ACTIONS(1220), - [sym_false] = ACTIONS(1220), - [anon_sym_NULL] = ACTIONS(1220), - [anon_sym_nullptr] = ACTIONS(1220), + [ts_builtin_sym_end] = ACTIONS(1274), + [sym_identifier] = ACTIONS(1272), + [aux_sym_preproc_include_token1] = ACTIONS(1272), + [aux_sym_preproc_def_token1] = ACTIONS(1272), + [aux_sym_preproc_if_token1] = ACTIONS(1272), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1272), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1272), + [sym_preproc_directive] = ACTIONS(1272), + [anon_sym_LPAREN2] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1274), + [anon_sym_TILDE] = ACTIONS(1274), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_STAR] = ACTIONS(1274), + [anon_sym_AMP] = ACTIONS(1274), + [anon_sym_SEMI] = ACTIONS(1274), + [anon_sym___extension__] = ACTIONS(1272), + [anon_sym_typedef] = ACTIONS(1272), + [anon_sym_extern] = ACTIONS(1272), + [anon_sym___attribute__] = ACTIONS(1272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1274), + [anon_sym___declspec] = ACTIONS(1272), + [anon_sym___cdecl] = ACTIONS(1272), + [anon_sym___clrcall] = ACTIONS(1272), + [anon_sym___stdcall] = ACTIONS(1272), + [anon_sym___fastcall] = ACTIONS(1272), + [anon_sym___thiscall] = ACTIONS(1272), + [anon_sym___vectorcall] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1274), + [anon_sym_signed] = ACTIONS(1272), + [anon_sym_unsigned] = ACTIONS(1272), + [anon_sym_long] = ACTIONS(1272), + [anon_sym_short] = ACTIONS(1272), + [anon_sym_static] = ACTIONS(1272), + [anon_sym_auto] = ACTIONS(1272), + [anon_sym_register] = ACTIONS(1272), + [anon_sym_inline] = ACTIONS(1272), + [anon_sym___inline] = ACTIONS(1272), + [anon_sym___inline__] = ACTIONS(1272), + [anon_sym___forceinline] = ACTIONS(1272), + [anon_sym_thread_local] = ACTIONS(1272), + [anon_sym___thread] = ACTIONS(1272), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_constexpr] = ACTIONS(1272), + [anon_sym_volatile] = ACTIONS(1272), + [anon_sym_restrict] = ACTIONS(1272), + [anon_sym___restrict__] = ACTIONS(1272), + [anon_sym__Atomic] = ACTIONS(1272), + [anon_sym__Noreturn] = ACTIONS(1272), + [anon_sym_noreturn] = ACTIONS(1272), + [sym_primitive_type] = ACTIONS(1272), + [anon_sym_enum] = ACTIONS(1272), + [anon_sym_struct] = ACTIONS(1272), + [anon_sym_union] = ACTIONS(1272), + [anon_sym_if] = ACTIONS(1272), + [anon_sym_else] = ACTIONS(1272), + [anon_sym_switch] = ACTIONS(1272), + [anon_sym_case] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1272), + [anon_sym_while] = ACTIONS(1272), + [anon_sym_do] = ACTIONS(1272), + [anon_sym_for] = ACTIONS(1272), + [anon_sym_return] = ACTIONS(1272), + [anon_sym_break] = ACTIONS(1272), + [anon_sym_continue] = ACTIONS(1272), + [anon_sym_goto] = ACTIONS(1272), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_sizeof] = ACTIONS(1272), + [anon_sym___alignof__] = ACTIONS(1272), + [anon_sym___alignof] = ACTIONS(1272), + [anon_sym__alignof] = ACTIONS(1272), + [anon_sym_alignof] = ACTIONS(1272), + [anon_sym__Alignof] = ACTIONS(1272), + [anon_sym_offsetof] = ACTIONS(1272), + [anon_sym___builtin_va_arg] = ACTIONS(1272), + [anon_sym__Generic] = ACTIONS(1272), + [anon_sym_asm] = ACTIONS(1272), + [anon_sym___asm__] = ACTIONS(1272), + [sym_number_literal] = ACTIONS(1274), + [anon_sym_L_SQUOTE] = ACTIONS(1274), + [anon_sym_u_SQUOTE] = ACTIONS(1274), + [anon_sym_U_SQUOTE] = ACTIONS(1274), + [anon_sym_u8_SQUOTE] = ACTIONS(1274), + [anon_sym_SQUOTE] = ACTIONS(1274), + [anon_sym_L_DQUOTE] = ACTIONS(1274), + [anon_sym_u_DQUOTE] = ACTIONS(1274), + [anon_sym_U_DQUOTE] = ACTIONS(1274), + [anon_sym_u8_DQUOTE] = ACTIONS(1274), + [anon_sym_DQUOTE] = ACTIONS(1274), + [sym_true] = ACTIONS(1272), + [sym_false] = ACTIONS(1272), + [anon_sym_NULL] = ACTIONS(1272), + [anon_sym_nullptr] = ACTIONS(1272), [sym_comment] = ACTIONS(3), }, [300] = { - [sym_identifier] = ACTIONS(1216), - [aux_sym_preproc_include_token1] = ACTIONS(1216), - [aux_sym_preproc_def_token1] = ACTIONS(1216), - [aux_sym_preproc_if_token1] = ACTIONS(1216), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1216), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1216), - [sym_preproc_directive] = ACTIONS(1216), - [anon_sym_LPAREN2] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1218), - [anon_sym_TILDE] = ACTIONS(1218), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_STAR] = ACTIONS(1218), - [anon_sym_AMP] = ACTIONS(1218), - [anon_sym_SEMI] = ACTIONS(1218), - [anon_sym_typedef] = ACTIONS(1216), - [anon_sym_extern] = ACTIONS(1216), - [anon_sym___attribute__] = ACTIONS(1216), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1218), - [anon_sym___declspec] = ACTIONS(1216), - [anon_sym___cdecl] = ACTIONS(1216), - [anon_sym___clrcall] = ACTIONS(1216), - [anon_sym___stdcall] = ACTIONS(1216), - [anon_sym___fastcall] = ACTIONS(1216), - [anon_sym___thiscall] = ACTIONS(1216), - [anon_sym___vectorcall] = ACTIONS(1216), - [anon_sym_LBRACE] = ACTIONS(1218), - [anon_sym_RBRACE] = ACTIONS(1218), - [anon_sym_signed] = ACTIONS(1216), - [anon_sym_unsigned] = ACTIONS(1216), - [anon_sym_long] = ACTIONS(1216), - [anon_sym_short] = ACTIONS(1216), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_auto] = ACTIONS(1216), - [anon_sym_register] = ACTIONS(1216), - [anon_sym_inline] = ACTIONS(1216), - [anon_sym_thread_local] = ACTIONS(1216), - [anon_sym___thread] = ACTIONS(1216), - [anon_sym_const] = ACTIONS(1216), - [anon_sym_constexpr] = ACTIONS(1216), - [anon_sym_volatile] = ACTIONS(1216), - [anon_sym_restrict] = ACTIONS(1216), - [anon_sym___restrict__] = ACTIONS(1216), - [anon_sym__Atomic] = ACTIONS(1216), - [anon_sym__Noreturn] = ACTIONS(1216), - [anon_sym_noreturn] = ACTIONS(1216), - [sym_primitive_type] = ACTIONS(1216), - [anon_sym_enum] = ACTIONS(1216), - [anon_sym_struct] = ACTIONS(1216), - [anon_sym_union] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_else] = ACTIONS(1216), - [anon_sym_switch] = ACTIONS(1216), - [anon_sym_case] = ACTIONS(1216), - [anon_sym_default] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_do] = ACTIONS(1216), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_goto] = ACTIONS(1216), - [anon_sym_DASH_DASH] = ACTIONS(1218), - [anon_sym_PLUS_PLUS] = ACTIONS(1218), - [anon_sym_sizeof] = ACTIONS(1216), - [anon_sym_offsetof] = ACTIONS(1216), - [anon_sym__Generic] = ACTIONS(1216), - [anon_sym_asm] = ACTIONS(1216), - [anon_sym___asm__] = ACTIONS(1216), - [sym_number_literal] = ACTIONS(1218), - [anon_sym_L_SQUOTE] = ACTIONS(1218), - [anon_sym_u_SQUOTE] = ACTIONS(1218), - [anon_sym_U_SQUOTE] = ACTIONS(1218), - [anon_sym_u8_SQUOTE] = ACTIONS(1218), - [anon_sym_SQUOTE] = ACTIONS(1218), - [anon_sym_L_DQUOTE] = ACTIONS(1218), - [anon_sym_u_DQUOTE] = ACTIONS(1218), - [anon_sym_U_DQUOTE] = ACTIONS(1218), - [anon_sym_u8_DQUOTE] = ACTIONS(1218), - [anon_sym_DQUOTE] = ACTIONS(1218), - [sym_true] = ACTIONS(1216), - [sym_false] = ACTIONS(1216), - [anon_sym_NULL] = ACTIONS(1216), - [anon_sym_nullptr] = ACTIONS(1216), - [sym_comment] = ACTIONS(3), - }, - [301] = { - [sym_identifier] = ACTIONS(1340), - [aux_sym_preproc_include_token1] = ACTIONS(1340), - [aux_sym_preproc_def_token1] = ACTIONS(1340), - [aux_sym_preproc_if_token1] = ACTIONS(1340), - [aux_sym_preproc_if_token2] = ACTIONS(1340), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), - [sym_preproc_directive] = ACTIONS(1340), - [anon_sym_LPAREN2] = ACTIONS(1342), - [anon_sym_BANG] = ACTIONS(1342), - [anon_sym_TILDE] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_typedef] = ACTIONS(1340), - [anon_sym_extern] = ACTIONS(1340), - [anon_sym___attribute__] = ACTIONS(1340), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), - [anon_sym___declspec] = ACTIONS(1340), - [anon_sym___cdecl] = ACTIONS(1340), - [anon_sym___clrcall] = ACTIONS(1340), - [anon_sym___stdcall] = ACTIONS(1340), - [anon_sym___fastcall] = ACTIONS(1340), - [anon_sym___thiscall] = ACTIONS(1340), - [anon_sym___vectorcall] = ACTIONS(1340), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_signed] = ACTIONS(1340), - [anon_sym_unsigned] = ACTIONS(1340), - [anon_sym_long] = ACTIONS(1340), - [anon_sym_short] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1340), - [anon_sym_auto] = ACTIONS(1340), - [anon_sym_register] = ACTIONS(1340), - [anon_sym_inline] = ACTIONS(1340), - [anon_sym_thread_local] = ACTIONS(1340), - [anon_sym___thread] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_constexpr] = ACTIONS(1340), - [anon_sym_volatile] = ACTIONS(1340), - [anon_sym_restrict] = ACTIONS(1340), - [anon_sym___restrict__] = ACTIONS(1340), - [anon_sym__Atomic] = ACTIONS(1340), - [anon_sym__Noreturn] = ACTIONS(1340), - [anon_sym_noreturn] = ACTIONS(1340), - [sym_primitive_type] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_struct] = ACTIONS(1340), - [anon_sym_union] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_else] = ACTIONS(1340), - [anon_sym_switch] = ACTIONS(1340), - [anon_sym_case] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_goto] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_sizeof] = ACTIONS(1340), - [anon_sym_offsetof] = ACTIONS(1340), - [anon_sym__Generic] = ACTIONS(1340), - [anon_sym_asm] = ACTIONS(1340), - [anon_sym___asm__] = ACTIONS(1340), - [sym_number_literal] = ACTIONS(1342), - [anon_sym_L_SQUOTE] = ACTIONS(1342), - [anon_sym_u_SQUOTE] = ACTIONS(1342), - [anon_sym_U_SQUOTE] = ACTIONS(1342), - [anon_sym_u8_SQUOTE] = ACTIONS(1342), - [anon_sym_SQUOTE] = ACTIONS(1342), - [anon_sym_L_DQUOTE] = ACTIONS(1342), - [anon_sym_u_DQUOTE] = ACTIONS(1342), - [anon_sym_U_DQUOTE] = ACTIONS(1342), - [anon_sym_u8_DQUOTE] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym_true] = ACTIONS(1340), - [sym_false] = ACTIONS(1340), - [anon_sym_NULL] = ACTIONS(1340), - [anon_sym_nullptr] = ACTIONS(1340), - [sym_comment] = ACTIONS(3), - }, - [302] = { - [sym_identifier] = ACTIONS(1204), - [aux_sym_preproc_include_token1] = ACTIONS(1204), - [aux_sym_preproc_def_token1] = ACTIONS(1204), - [aux_sym_preproc_if_token1] = ACTIONS(1204), - [aux_sym_preproc_if_token2] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1204), - [sym_preproc_directive] = ACTIONS(1204), - [anon_sym_LPAREN2] = ACTIONS(1206), - [anon_sym_BANG] = ACTIONS(1206), - [anon_sym_TILDE] = ACTIONS(1206), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_STAR] = ACTIONS(1206), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_SEMI] = ACTIONS(1206), - [anon_sym_typedef] = ACTIONS(1204), - [anon_sym_extern] = ACTIONS(1204), - [anon_sym___attribute__] = ACTIONS(1204), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1206), - [anon_sym___declspec] = ACTIONS(1204), - [anon_sym___cdecl] = ACTIONS(1204), - [anon_sym___clrcall] = ACTIONS(1204), - [anon_sym___stdcall] = ACTIONS(1204), - [anon_sym___fastcall] = ACTIONS(1204), - [anon_sym___thiscall] = ACTIONS(1204), - [anon_sym___vectorcall] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_signed] = ACTIONS(1204), - [anon_sym_unsigned] = ACTIONS(1204), - [anon_sym_long] = ACTIONS(1204), - [anon_sym_short] = ACTIONS(1204), - [anon_sym_static] = ACTIONS(1204), - [anon_sym_auto] = ACTIONS(1204), - [anon_sym_register] = ACTIONS(1204), - [anon_sym_inline] = ACTIONS(1204), - [anon_sym_thread_local] = ACTIONS(1204), - [anon_sym___thread] = ACTIONS(1204), - [anon_sym_const] = ACTIONS(1204), - [anon_sym_constexpr] = ACTIONS(1204), - [anon_sym_volatile] = ACTIONS(1204), - [anon_sym_restrict] = ACTIONS(1204), - [anon_sym___restrict__] = ACTIONS(1204), - [anon_sym__Atomic] = ACTIONS(1204), - [anon_sym__Noreturn] = ACTIONS(1204), - [anon_sym_noreturn] = ACTIONS(1204), - [sym_primitive_type] = ACTIONS(1204), - [anon_sym_enum] = ACTIONS(1204), - [anon_sym_struct] = ACTIONS(1204), - [anon_sym_union] = ACTIONS(1204), - [anon_sym_if] = ACTIONS(1204), - [anon_sym_else] = ACTIONS(1204), - [anon_sym_switch] = ACTIONS(1204), - [anon_sym_case] = ACTIONS(1204), - [anon_sym_default] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1204), - [anon_sym_do] = ACTIONS(1204), - [anon_sym_for] = ACTIONS(1204), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_break] = ACTIONS(1204), - [anon_sym_continue] = ACTIONS(1204), - [anon_sym_goto] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_sizeof] = ACTIONS(1204), - [anon_sym_offsetof] = ACTIONS(1204), - [anon_sym__Generic] = ACTIONS(1204), - [anon_sym_asm] = ACTIONS(1204), - [anon_sym___asm__] = ACTIONS(1204), - [sym_number_literal] = ACTIONS(1206), - [anon_sym_L_SQUOTE] = ACTIONS(1206), - [anon_sym_u_SQUOTE] = ACTIONS(1206), - [anon_sym_U_SQUOTE] = ACTIONS(1206), - [anon_sym_u8_SQUOTE] = ACTIONS(1206), - [anon_sym_SQUOTE] = ACTIONS(1206), - [anon_sym_L_DQUOTE] = ACTIONS(1206), - [anon_sym_u_DQUOTE] = ACTIONS(1206), - [anon_sym_U_DQUOTE] = ACTIONS(1206), - [anon_sym_u8_DQUOTE] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(1206), - [sym_true] = ACTIONS(1204), - [sym_false] = ACTIONS(1204), - [anon_sym_NULL] = ACTIONS(1204), - [anon_sym_nullptr] = ACTIONS(1204), - [sym_comment] = ACTIONS(3), - }, - [303] = { - [sym_identifier] = ACTIONS(1204), - [aux_sym_preproc_include_token1] = ACTIONS(1204), - [aux_sym_preproc_def_token1] = ACTIONS(1204), - [aux_sym_preproc_if_token1] = ACTIONS(1204), - [aux_sym_preproc_if_token2] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1204), - [sym_preproc_directive] = ACTIONS(1204), - [anon_sym_LPAREN2] = ACTIONS(1206), - [anon_sym_BANG] = ACTIONS(1206), - [anon_sym_TILDE] = ACTIONS(1206), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_STAR] = ACTIONS(1206), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_SEMI] = ACTIONS(1206), - [anon_sym_typedef] = ACTIONS(1204), - [anon_sym_extern] = ACTIONS(1204), - [anon_sym___attribute__] = ACTIONS(1204), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1206), - [anon_sym___declspec] = ACTIONS(1204), - [anon_sym___cdecl] = ACTIONS(1204), - [anon_sym___clrcall] = ACTIONS(1204), - [anon_sym___stdcall] = ACTIONS(1204), - [anon_sym___fastcall] = ACTIONS(1204), - [anon_sym___thiscall] = ACTIONS(1204), - [anon_sym___vectorcall] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_signed] = ACTIONS(1204), - [anon_sym_unsigned] = ACTIONS(1204), - [anon_sym_long] = ACTIONS(1204), - [anon_sym_short] = ACTIONS(1204), - [anon_sym_static] = ACTIONS(1204), - [anon_sym_auto] = ACTIONS(1204), - [anon_sym_register] = ACTIONS(1204), - [anon_sym_inline] = ACTIONS(1204), - [anon_sym_thread_local] = ACTIONS(1204), - [anon_sym___thread] = ACTIONS(1204), - [anon_sym_const] = ACTIONS(1204), - [anon_sym_constexpr] = ACTIONS(1204), - [anon_sym_volatile] = ACTIONS(1204), - [anon_sym_restrict] = ACTIONS(1204), - [anon_sym___restrict__] = ACTIONS(1204), - [anon_sym__Atomic] = ACTIONS(1204), - [anon_sym__Noreturn] = ACTIONS(1204), - [anon_sym_noreturn] = ACTIONS(1204), - [sym_primitive_type] = ACTIONS(1204), - [anon_sym_enum] = ACTIONS(1204), - [anon_sym_struct] = ACTIONS(1204), - [anon_sym_union] = ACTIONS(1204), - [anon_sym_if] = ACTIONS(1204), - [anon_sym_else] = ACTIONS(1204), - [anon_sym_switch] = ACTIONS(1204), - [anon_sym_case] = ACTIONS(1204), - [anon_sym_default] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1204), - [anon_sym_do] = ACTIONS(1204), - [anon_sym_for] = ACTIONS(1204), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_break] = ACTIONS(1204), - [anon_sym_continue] = ACTIONS(1204), - [anon_sym_goto] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_sizeof] = ACTIONS(1204), - [anon_sym_offsetof] = ACTIONS(1204), - [anon_sym__Generic] = ACTIONS(1204), - [anon_sym_asm] = ACTIONS(1204), - [anon_sym___asm__] = ACTIONS(1204), - [sym_number_literal] = ACTIONS(1206), - [anon_sym_L_SQUOTE] = ACTIONS(1206), - [anon_sym_u_SQUOTE] = ACTIONS(1206), - [anon_sym_U_SQUOTE] = ACTIONS(1206), - [anon_sym_u8_SQUOTE] = ACTIONS(1206), - [anon_sym_SQUOTE] = ACTIONS(1206), - [anon_sym_L_DQUOTE] = ACTIONS(1206), - [anon_sym_u_DQUOTE] = ACTIONS(1206), - [anon_sym_U_DQUOTE] = ACTIONS(1206), - [anon_sym_u8_DQUOTE] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(1206), - [sym_true] = ACTIONS(1204), - [sym_false] = ACTIONS(1204), - [anon_sym_NULL] = ACTIONS(1204), - [anon_sym_nullptr] = ACTIONS(1204), - [sym_comment] = ACTIONS(3), - }, - [304] = { - [sym_identifier] = ACTIONS(1212), - [aux_sym_preproc_include_token1] = ACTIONS(1212), - [aux_sym_preproc_def_token1] = ACTIONS(1212), - [aux_sym_preproc_if_token1] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1212), - [sym_preproc_directive] = ACTIONS(1212), - [anon_sym_LPAREN2] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_DASH] = ACTIONS(1212), - [anon_sym_PLUS] = ACTIONS(1212), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_typedef] = ACTIONS(1212), - [anon_sym_extern] = ACTIONS(1212), - [anon_sym___attribute__] = ACTIONS(1212), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), - [anon_sym___declspec] = ACTIONS(1212), - [anon_sym___cdecl] = ACTIONS(1212), - [anon_sym___clrcall] = ACTIONS(1212), - [anon_sym___stdcall] = ACTIONS(1212), - [anon_sym___fastcall] = ACTIONS(1212), - [anon_sym___thiscall] = ACTIONS(1212), - [anon_sym___vectorcall] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_RBRACE] = ACTIONS(1214), - [anon_sym_signed] = ACTIONS(1212), - [anon_sym_unsigned] = ACTIONS(1212), - [anon_sym_long] = ACTIONS(1212), - [anon_sym_short] = ACTIONS(1212), - [anon_sym_static] = ACTIONS(1212), - [anon_sym_auto] = ACTIONS(1212), - [anon_sym_register] = ACTIONS(1212), - [anon_sym_inline] = ACTIONS(1212), - [anon_sym_thread_local] = ACTIONS(1212), - [anon_sym___thread] = ACTIONS(1212), - [anon_sym_const] = ACTIONS(1212), - [anon_sym_constexpr] = ACTIONS(1212), - [anon_sym_volatile] = ACTIONS(1212), - [anon_sym_restrict] = ACTIONS(1212), - [anon_sym___restrict__] = ACTIONS(1212), - [anon_sym__Atomic] = ACTIONS(1212), - [anon_sym__Noreturn] = ACTIONS(1212), - [anon_sym_noreturn] = ACTIONS(1212), - [sym_primitive_type] = ACTIONS(1212), - [anon_sym_enum] = ACTIONS(1212), - [anon_sym_struct] = ACTIONS(1212), - [anon_sym_union] = ACTIONS(1212), - [anon_sym_if] = ACTIONS(1212), - [anon_sym_else] = ACTIONS(1212), - [anon_sym_switch] = ACTIONS(1212), - [anon_sym_case] = ACTIONS(1212), - [anon_sym_default] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(1212), - [anon_sym_do] = ACTIONS(1212), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_return] = ACTIONS(1212), - [anon_sym_break] = ACTIONS(1212), - [anon_sym_continue] = ACTIONS(1212), - [anon_sym_goto] = ACTIONS(1212), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_sizeof] = ACTIONS(1212), - [anon_sym_offsetof] = ACTIONS(1212), - [anon_sym__Generic] = ACTIONS(1212), - [anon_sym_asm] = ACTIONS(1212), - [anon_sym___asm__] = ACTIONS(1212), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_L_SQUOTE] = ACTIONS(1214), - [anon_sym_u_SQUOTE] = ACTIONS(1214), - [anon_sym_U_SQUOTE] = ACTIONS(1214), - [anon_sym_u8_SQUOTE] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [anon_sym_L_DQUOTE] = ACTIONS(1214), - [anon_sym_u_DQUOTE] = ACTIONS(1214), - [anon_sym_U_DQUOTE] = ACTIONS(1214), - [anon_sym_u8_DQUOTE] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_true] = ACTIONS(1212), - [sym_false] = ACTIONS(1212), - [anon_sym_NULL] = ACTIONS(1212), - [anon_sym_nullptr] = ACTIONS(1212), + [ts_builtin_sym_end] = ACTIONS(1310), + [sym_identifier] = ACTIONS(1308), + [aux_sym_preproc_include_token1] = ACTIONS(1308), + [aux_sym_preproc_def_token1] = ACTIONS(1308), + [aux_sym_preproc_if_token1] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), + [sym_preproc_directive] = ACTIONS(1308), + [anon_sym_LPAREN2] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym___extension__] = ACTIONS(1308), + [anon_sym_typedef] = ACTIONS(1308), + [anon_sym_extern] = ACTIONS(1308), + [anon_sym___attribute__] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), + [anon_sym___declspec] = ACTIONS(1308), + [anon_sym___cdecl] = ACTIONS(1308), + [anon_sym___clrcall] = ACTIONS(1308), + [anon_sym___stdcall] = ACTIONS(1308), + [anon_sym___fastcall] = ACTIONS(1308), + [anon_sym___thiscall] = ACTIONS(1308), + [anon_sym___vectorcall] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_signed] = ACTIONS(1308), + [anon_sym_unsigned] = ACTIONS(1308), + [anon_sym_long] = ACTIONS(1308), + [anon_sym_short] = ACTIONS(1308), + [anon_sym_static] = ACTIONS(1308), + [anon_sym_auto] = ACTIONS(1308), + [anon_sym_register] = ACTIONS(1308), + [anon_sym_inline] = ACTIONS(1308), + [anon_sym___inline] = ACTIONS(1308), + [anon_sym___inline__] = ACTIONS(1308), + [anon_sym___forceinline] = ACTIONS(1308), + [anon_sym_thread_local] = ACTIONS(1308), + [anon_sym___thread] = ACTIONS(1308), + [anon_sym_const] = ACTIONS(1308), + [anon_sym_constexpr] = ACTIONS(1308), + [anon_sym_volatile] = ACTIONS(1308), + [anon_sym_restrict] = ACTIONS(1308), + [anon_sym___restrict__] = ACTIONS(1308), + [anon_sym__Atomic] = ACTIONS(1308), + [anon_sym__Noreturn] = ACTIONS(1308), + [anon_sym_noreturn] = ACTIONS(1308), + [sym_primitive_type] = ACTIONS(1308), + [anon_sym_enum] = ACTIONS(1308), + [anon_sym_struct] = ACTIONS(1308), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_if] = ACTIONS(1308), + [anon_sym_else] = ACTIONS(1308), + [anon_sym_switch] = ACTIONS(1308), + [anon_sym_case] = ACTIONS(1308), + [anon_sym_default] = ACTIONS(1308), + [anon_sym_while] = ACTIONS(1308), + [anon_sym_do] = ACTIONS(1308), + [anon_sym_for] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1308), + [anon_sym_break] = ACTIONS(1308), + [anon_sym_continue] = ACTIONS(1308), + [anon_sym_goto] = ACTIONS(1308), + [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_sizeof] = ACTIONS(1308), + [anon_sym___alignof__] = ACTIONS(1308), + [anon_sym___alignof] = ACTIONS(1308), + [anon_sym__alignof] = ACTIONS(1308), + [anon_sym_alignof] = ACTIONS(1308), + [anon_sym__Alignof] = ACTIONS(1308), + [anon_sym_offsetof] = ACTIONS(1308), + [anon_sym___builtin_va_arg] = ACTIONS(1308), + [anon_sym__Generic] = ACTIONS(1308), + [anon_sym_asm] = ACTIONS(1308), + [anon_sym___asm__] = ACTIONS(1308), + [sym_number_literal] = ACTIONS(1310), + [anon_sym_L_SQUOTE] = ACTIONS(1310), + [anon_sym_u_SQUOTE] = ACTIONS(1310), + [anon_sym_U_SQUOTE] = ACTIONS(1310), + [anon_sym_u8_SQUOTE] = ACTIONS(1310), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_L_DQUOTE] = ACTIONS(1310), + [anon_sym_u_DQUOTE] = ACTIONS(1310), + [anon_sym_U_DQUOTE] = ACTIONS(1310), + [anon_sym_u8_DQUOTE] = ACTIONS(1310), + [anon_sym_DQUOTE] = ACTIONS(1310), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [anon_sym_NULL] = ACTIONS(1308), + [anon_sym_nullptr] = ACTIONS(1308), [sym_comment] = ACTIONS(3), }, - [305] = { + [301] = { [sym_identifier] = ACTIONS(1248), [aux_sym_preproc_include_token1] = ACTIONS(1248), [aux_sym_preproc_def_token1] = ACTIONS(1248), [aux_sym_preproc_if_token1] = ACTIONS(1248), - [aux_sym_preproc_if_token2] = ACTIONS(1248), [aux_sym_preproc_ifdef_token1] = ACTIONS(1248), [aux_sym_preproc_ifdef_token2] = ACTIONS(1248), [sym_preproc_directive] = ACTIONS(1248), @@ -46980,6 +50613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1250), [anon_sym_AMP] = ACTIONS(1250), [anon_sym_SEMI] = ACTIONS(1250), + [anon_sym___extension__] = ACTIONS(1248), [anon_sym_typedef] = ACTIONS(1248), [anon_sym_extern] = ACTIONS(1248), [anon_sym___attribute__] = ACTIONS(1248), @@ -46992,6 +50626,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1248), [anon_sym___vectorcall] = ACTIONS(1248), [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_RBRACE] = ACTIONS(1250), [anon_sym_signed] = ACTIONS(1248), [anon_sym_unsigned] = ACTIONS(1248), [anon_sym_long] = ACTIONS(1248), @@ -47000,6 +50635,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1248), [anon_sym_register] = ACTIONS(1248), [anon_sym_inline] = ACTIONS(1248), + [anon_sym___inline] = ACTIONS(1248), + [anon_sym___inline__] = ACTIONS(1248), + [anon_sym___forceinline] = ACTIONS(1248), [anon_sym_thread_local] = ACTIONS(1248), [anon_sym___thread] = ACTIONS(1248), [anon_sym_const] = ACTIONS(1248), @@ -47029,7 +50667,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1250), [anon_sym_PLUS_PLUS] = ACTIONS(1250), [anon_sym_sizeof] = ACTIONS(1248), + [anon_sym___alignof__] = ACTIONS(1248), + [anon_sym___alignof] = ACTIONS(1248), + [anon_sym__alignof] = ACTIONS(1248), + [anon_sym_alignof] = ACTIONS(1248), + [anon_sym__Alignof] = ACTIONS(1248), [anon_sym_offsetof] = ACTIONS(1248), + [anon_sym___builtin_va_arg] = ACTIONS(1248), [anon_sym__Generic] = ACTIONS(1248), [anon_sym_asm] = ACTIONS(1248), [anon_sym___asm__] = ACTIONS(1248), @@ -47050,616 +50694,493 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1248), [sym_comment] = ACTIONS(3), }, - [306] = { - [ts_builtin_sym_end] = ACTIONS(1234), - [sym_identifier] = ACTIONS(1232), - [aux_sym_preproc_include_token1] = ACTIONS(1232), - [aux_sym_preproc_def_token1] = ACTIONS(1232), - [aux_sym_preproc_if_token1] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1232), - [sym_preproc_directive] = ACTIONS(1232), - [anon_sym_LPAREN2] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1234), - [anon_sym_TILDE] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_PLUS] = ACTIONS(1232), - [anon_sym_STAR] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1232), - [anon_sym_extern] = ACTIONS(1232), - [anon_sym___attribute__] = ACTIONS(1232), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1234), - [anon_sym___declspec] = ACTIONS(1232), - [anon_sym___cdecl] = ACTIONS(1232), - [anon_sym___clrcall] = ACTIONS(1232), - [anon_sym___stdcall] = ACTIONS(1232), - [anon_sym___fastcall] = ACTIONS(1232), - [anon_sym___thiscall] = ACTIONS(1232), - [anon_sym___vectorcall] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_signed] = ACTIONS(1232), - [anon_sym_unsigned] = ACTIONS(1232), - [anon_sym_long] = ACTIONS(1232), - [anon_sym_short] = ACTIONS(1232), - [anon_sym_static] = ACTIONS(1232), - [anon_sym_auto] = ACTIONS(1232), - [anon_sym_register] = ACTIONS(1232), - [anon_sym_inline] = ACTIONS(1232), - [anon_sym_thread_local] = ACTIONS(1232), - [anon_sym___thread] = ACTIONS(1232), - [anon_sym_const] = ACTIONS(1232), - [anon_sym_constexpr] = ACTIONS(1232), - [anon_sym_volatile] = ACTIONS(1232), - [anon_sym_restrict] = ACTIONS(1232), - [anon_sym___restrict__] = ACTIONS(1232), - [anon_sym__Atomic] = ACTIONS(1232), - [anon_sym__Noreturn] = ACTIONS(1232), - [anon_sym_noreturn] = ACTIONS(1232), - [sym_primitive_type] = ACTIONS(1232), - [anon_sym_enum] = ACTIONS(1232), - [anon_sym_struct] = ACTIONS(1232), - [anon_sym_union] = ACTIONS(1232), - [anon_sym_if] = ACTIONS(1232), - [anon_sym_else] = ACTIONS(1232), - [anon_sym_switch] = ACTIONS(1232), - [anon_sym_case] = ACTIONS(1232), - [anon_sym_default] = ACTIONS(1232), - [anon_sym_while] = ACTIONS(1232), - [anon_sym_do] = ACTIONS(1232), - [anon_sym_for] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1232), - [anon_sym_break] = ACTIONS(1232), - [anon_sym_continue] = ACTIONS(1232), - [anon_sym_goto] = ACTIONS(1232), - [anon_sym_DASH_DASH] = ACTIONS(1234), - [anon_sym_PLUS_PLUS] = ACTIONS(1234), - [anon_sym_sizeof] = ACTIONS(1232), - [anon_sym_offsetof] = ACTIONS(1232), - [anon_sym__Generic] = ACTIONS(1232), - [anon_sym_asm] = ACTIONS(1232), - [anon_sym___asm__] = ACTIONS(1232), - [sym_number_literal] = ACTIONS(1234), - [anon_sym_L_SQUOTE] = ACTIONS(1234), - [anon_sym_u_SQUOTE] = ACTIONS(1234), - [anon_sym_U_SQUOTE] = ACTIONS(1234), - [anon_sym_u8_SQUOTE] = ACTIONS(1234), - [anon_sym_SQUOTE] = ACTIONS(1234), - [anon_sym_L_DQUOTE] = ACTIONS(1234), - [anon_sym_u_DQUOTE] = ACTIONS(1234), - [anon_sym_U_DQUOTE] = ACTIONS(1234), - [anon_sym_u8_DQUOTE] = ACTIONS(1234), - [anon_sym_DQUOTE] = ACTIONS(1234), - [sym_true] = ACTIONS(1232), - [sym_false] = ACTIONS(1232), - [anon_sym_NULL] = ACTIONS(1232), - [anon_sym_nullptr] = ACTIONS(1232), - [sym_comment] = ACTIONS(3), - }, - [307] = { - [sym_identifier] = ACTIONS(1208), - [aux_sym_preproc_include_token1] = ACTIONS(1208), - [aux_sym_preproc_def_token1] = ACTIONS(1208), - [aux_sym_preproc_if_token1] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1208), - [sym_preproc_directive] = ACTIONS(1208), - [anon_sym_LPAREN2] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1210), - [anon_sym_AMP] = ACTIONS(1210), - [anon_sym_SEMI] = ACTIONS(1210), - [anon_sym_typedef] = ACTIONS(1208), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym___attribute__] = ACTIONS(1208), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(1208), - [anon_sym___cdecl] = ACTIONS(1208), - [anon_sym___clrcall] = ACTIONS(1208), - [anon_sym___stdcall] = ACTIONS(1208), - [anon_sym___fastcall] = ACTIONS(1208), - [anon_sym___thiscall] = ACTIONS(1208), - [anon_sym___vectorcall] = ACTIONS(1208), - [anon_sym_LBRACE] = ACTIONS(1210), - [anon_sym_RBRACE] = ACTIONS(1210), - [anon_sym_signed] = ACTIONS(1208), - [anon_sym_unsigned] = ACTIONS(1208), - [anon_sym_long] = ACTIONS(1208), - [anon_sym_short] = ACTIONS(1208), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_auto] = ACTIONS(1208), - [anon_sym_register] = ACTIONS(1208), - [anon_sym_inline] = ACTIONS(1208), - [anon_sym_thread_local] = ACTIONS(1208), - [anon_sym___thread] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_constexpr] = ACTIONS(1208), - [anon_sym_volatile] = ACTIONS(1208), - [anon_sym_restrict] = ACTIONS(1208), - [anon_sym___restrict__] = ACTIONS(1208), - [anon_sym__Atomic] = ACTIONS(1208), - [anon_sym__Noreturn] = ACTIONS(1208), - [anon_sym_noreturn] = ACTIONS(1208), - [sym_primitive_type] = ACTIONS(1208), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_struct] = ACTIONS(1208), - [anon_sym_union] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_else] = ACTIONS(1208), - [anon_sym_switch] = ACTIONS(1208), - [anon_sym_case] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_do] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_goto] = ACTIONS(1208), - [anon_sym_DASH_DASH] = ACTIONS(1210), - [anon_sym_PLUS_PLUS] = ACTIONS(1210), - [anon_sym_sizeof] = ACTIONS(1208), - [anon_sym_offsetof] = ACTIONS(1208), - [anon_sym__Generic] = ACTIONS(1208), - [anon_sym_asm] = ACTIONS(1208), - [anon_sym___asm__] = ACTIONS(1208), - [sym_number_literal] = ACTIONS(1210), - [anon_sym_L_SQUOTE] = ACTIONS(1210), - [anon_sym_u_SQUOTE] = ACTIONS(1210), - [anon_sym_U_SQUOTE] = ACTIONS(1210), - [anon_sym_u8_SQUOTE] = ACTIONS(1210), - [anon_sym_SQUOTE] = ACTIONS(1210), - [anon_sym_L_DQUOTE] = ACTIONS(1210), - [anon_sym_u_DQUOTE] = ACTIONS(1210), - [anon_sym_U_DQUOTE] = ACTIONS(1210), - [anon_sym_u8_DQUOTE] = ACTIONS(1210), - [anon_sym_DQUOTE] = ACTIONS(1210), - [sym_true] = ACTIONS(1208), - [sym_false] = ACTIONS(1208), - [anon_sym_NULL] = ACTIONS(1208), - [anon_sym_nullptr] = ACTIONS(1208), - [sym_comment] = ACTIONS(3), - }, - [308] = { - [ts_builtin_sym_end] = ACTIONS(1230), - [sym_identifier] = ACTIONS(1228), - [aux_sym_preproc_include_token1] = ACTIONS(1228), - [aux_sym_preproc_def_token1] = ACTIONS(1228), - [aux_sym_preproc_if_token1] = ACTIONS(1228), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1228), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1228), - [sym_preproc_directive] = ACTIONS(1228), - [anon_sym_LPAREN2] = ACTIONS(1230), - [anon_sym_BANG] = ACTIONS(1230), - [anon_sym_TILDE] = ACTIONS(1230), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1230), - [anon_sym_AMP] = ACTIONS(1230), - [anon_sym_SEMI] = ACTIONS(1230), - [anon_sym_typedef] = ACTIONS(1228), - [anon_sym_extern] = ACTIONS(1228), - [anon_sym___attribute__] = ACTIONS(1228), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1230), - [anon_sym___declspec] = ACTIONS(1228), - [anon_sym___cdecl] = ACTIONS(1228), - [anon_sym___clrcall] = ACTIONS(1228), - [anon_sym___stdcall] = ACTIONS(1228), - [anon_sym___fastcall] = ACTIONS(1228), - [anon_sym___thiscall] = ACTIONS(1228), - [anon_sym___vectorcall] = ACTIONS(1228), - [anon_sym_LBRACE] = ACTIONS(1230), - [anon_sym_signed] = ACTIONS(1228), - [anon_sym_unsigned] = ACTIONS(1228), - [anon_sym_long] = ACTIONS(1228), - [anon_sym_short] = ACTIONS(1228), - [anon_sym_static] = ACTIONS(1228), - [anon_sym_auto] = ACTIONS(1228), - [anon_sym_register] = ACTIONS(1228), - [anon_sym_inline] = ACTIONS(1228), - [anon_sym_thread_local] = ACTIONS(1228), - [anon_sym___thread] = ACTIONS(1228), - [anon_sym_const] = ACTIONS(1228), - [anon_sym_constexpr] = ACTIONS(1228), - [anon_sym_volatile] = ACTIONS(1228), - [anon_sym_restrict] = ACTIONS(1228), - [anon_sym___restrict__] = ACTIONS(1228), - [anon_sym__Atomic] = ACTIONS(1228), - [anon_sym__Noreturn] = ACTIONS(1228), - [anon_sym_noreturn] = ACTIONS(1228), - [sym_primitive_type] = ACTIONS(1228), - [anon_sym_enum] = ACTIONS(1228), - [anon_sym_struct] = ACTIONS(1228), - [anon_sym_union] = ACTIONS(1228), - [anon_sym_if] = ACTIONS(1228), - [anon_sym_else] = ACTIONS(1228), - [anon_sym_switch] = ACTIONS(1228), - [anon_sym_case] = ACTIONS(1228), - [anon_sym_default] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(1228), - [anon_sym_for] = ACTIONS(1228), - [anon_sym_return] = ACTIONS(1228), - [anon_sym_break] = ACTIONS(1228), - [anon_sym_continue] = ACTIONS(1228), - [anon_sym_goto] = ACTIONS(1228), - [anon_sym_DASH_DASH] = ACTIONS(1230), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_sizeof] = ACTIONS(1228), - [anon_sym_offsetof] = ACTIONS(1228), - [anon_sym__Generic] = ACTIONS(1228), - [anon_sym_asm] = ACTIONS(1228), - [anon_sym___asm__] = ACTIONS(1228), - [sym_number_literal] = ACTIONS(1230), - [anon_sym_L_SQUOTE] = ACTIONS(1230), - [anon_sym_u_SQUOTE] = ACTIONS(1230), - [anon_sym_U_SQUOTE] = ACTIONS(1230), - [anon_sym_u8_SQUOTE] = ACTIONS(1230), - [anon_sym_SQUOTE] = ACTIONS(1230), - [anon_sym_L_DQUOTE] = ACTIONS(1230), - [anon_sym_u_DQUOTE] = ACTIONS(1230), - [anon_sym_U_DQUOTE] = ACTIONS(1230), - [anon_sym_u8_DQUOTE] = ACTIONS(1230), - [anon_sym_DQUOTE] = ACTIONS(1230), - [sym_true] = ACTIONS(1228), - [sym_false] = ACTIONS(1228), - [anon_sym_NULL] = ACTIONS(1228), - [anon_sym_nullptr] = ACTIONS(1228), + [302] = { + [sym_identifier] = ACTIONS(1256), + [aux_sym_preproc_include_token1] = ACTIONS(1256), + [aux_sym_preproc_def_token1] = ACTIONS(1256), + [aux_sym_preproc_if_token1] = ACTIONS(1256), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1256), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1256), + [sym_preproc_directive] = ACTIONS(1256), + [anon_sym_LPAREN2] = ACTIONS(1258), + [anon_sym_BANG] = ACTIONS(1258), + [anon_sym_TILDE] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_STAR] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1258), + [anon_sym___extension__] = ACTIONS(1256), + [anon_sym_typedef] = ACTIONS(1256), + [anon_sym_extern] = ACTIONS(1256), + [anon_sym___attribute__] = ACTIONS(1256), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1258), + [anon_sym___declspec] = ACTIONS(1256), + [anon_sym___cdecl] = ACTIONS(1256), + [anon_sym___clrcall] = ACTIONS(1256), + [anon_sym___stdcall] = ACTIONS(1256), + [anon_sym___fastcall] = ACTIONS(1256), + [anon_sym___thiscall] = ACTIONS(1256), + [anon_sym___vectorcall] = ACTIONS(1256), + [anon_sym_LBRACE] = ACTIONS(1258), + [anon_sym_RBRACE] = ACTIONS(1258), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_long] = ACTIONS(1256), + [anon_sym_short] = ACTIONS(1256), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_auto] = ACTIONS(1256), + [anon_sym_register] = ACTIONS(1256), + [anon_sym_inline] = ACTIONS(1256), + [anon_sym___inline] = ACTIONS(1256), + [anon_sym___inline__] = ACTIONS(1256), + [anon_sym___forceinline] = ACTIONS(1256), + [anon_sym_thread_local] = ACTIONS(1256), + [anon_sym___thread] = ACTIONS(1256), + [anon_sym_const] = ACTIONS(1256), + [anon_sym_constexpr] = ACTIONS(1256), + [anon_sym_volatile] = ACTIONS(1256), + [anon_sym_restrict] = ACTIONS(1256), + [anon_sym___restrict__] = ACTIONS(1256), + [anon_sym__Atomic] = ACTIONS(1256), + [anon_sym__Noreturn] = ACTIONS(1256), + [anon_sym_noreturn] = ACTIONS(1256), + [sym_primitive_type] = ACTIONS(1256), + [anon_sym_enum] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1256), + [anon_sym_union] = ACTIONS(1256), + [anon_sym_if] = ACTIONS(1256), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_switch] = ACTIONS(1256), + [anon_sym_case] = ACTIONS(1256), + [anon_sym_default] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1256), + [anon_sym_do] = ACTIONS(1256), + [anon_sym_for] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1256), + [anon_sym_break] = ACTIONS(1256), + [anon_sym_continue] = ACTIONS(1256), + [anon_sym_goto] = ACTIONS(1256), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_sizeof] = ACTIONS(1256), + [anon_sym___alignof__] = ACTIONS(1256), + [anon_sym___alignof] = ACTIONS(1256), + [anon_sym__alignof] = ACTIONS(1256), + [anon_sym_alignof] = ACTIONS(1256), + [anon_sym__Alignof] = ACTIONS(1256), + [anon_sym_offsetof] = ACTIONS(1256), + [anon_sym___builtin_va_arg] = ACTIONS(1256), + [anon_sym__Generic] = ACTIONS(1256), + [anon_sym_asm] = ACTIONS(1256), + [anon_sym___asm__] = ACTIONS(1256), + [sym_number_literal] = ACTIONS(1258), + [anon_sym_L_SQUOTE] = ACTIONS(1258), + [anon_sym_u_SQUOTE] = ACTIONS(1258), + [anon_sym_U_SQUOTE] = ACTIONS(1258), + [anon_sym_u8_SQUOTE] = ACTIONS(1258), + [anon_sym_SQUOTE] = ACTIONS(1258), + [anon_sym_L_DQUOTE] = ACTIONS(1258), + [anon_sym_u_DQUOTE] = ACTIONS(1258), + [anon_sym_U_DQUOTE] = ACTIONS(1258), + [anon_sym_u8_DQUOTE] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(1258), + [sym_true] = ACTIONS(1256), + [sym_false] = ACTIONS(1256), + [anon_sym_NULL] = ACTIONS(1256), + [anon_sym_nullptr] = ACTIONS(1256), [sym_comment] = ACTIONS(3), }, - [309] = { - [ts_builtin_sym_end] = ACTIONS(1226), - [sym_identifier] = ACTIONS(1224), - [aux_sym_preproc_include_token1] = ACTIONS(1224), - [aux_sym_preproc_def_token1] = ACTIONS(1224), - [aux_sym_preproc_if_token1] = ACTIONS(1224), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1224), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1224), - [sym_preproc_directive] = ACTIONS(1224), - [anon_sym_LPAREN2] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(1226), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_DASH] = ACTIONS(1224), - [anon_sym_PLUS] = ACTIONS(1224), - [anon_sym_STAR] = ACTIONS(1226), - [anon_sym_AMP] = ACTIONS(1226), - [anon_sym_SEMI] = ACTIONS(1226), - [anon_sym_typedef] = ACTIONS(1224), - [anon_sym_extern] = ACTIONS(1224), - [anon_sym___attribute__] = ACTIONS(1224), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1226), - [anon_sym___declspec] = ACTIONS(1224), - [anon_sym___cdecl] = ACTIONS(1224), - [anon_sym___clrcall] = ACTIONS(1224), - [anon_sym___stdcall] = ACTIONS(1224), - [anon_sym___fastcall] = ACTIONS(1224), - [anon_sym___thiscall] = ACTIONS(1224), - [anon_sym___vectorcall] = ACTIONS(1224), - [anon_sym_LBRACE] = ACTIONS(1226), - [anon_sym_signed] = ACTIONS(1224), - [anon_sym_unsigned] = ACTIONS(1224), - [anon_sym_long] = ACTIONS(1224), - [anon_sym_short] = ACTIONS(1224), - [anon_sym_static] = ACTIONS(1224), - [anon_sym_auto] = ACTIONS(1224), - [anon_sym_register] = ACTIONS(1224), - [anon_sym_inline] = ACTIONS(1224), - [anon_sym_thread_local] = ACTIONS(1224), - [anon_sym___thread] = ACTIONS(1224), - [anon_sym_const] = ACTIONS(1224), - [anon_sym_constexpr] = ACTIONS(1224), - [anon_sym_volatile] = ACTIONS(1224), - [anon_sym_restrict] = ACTIONS(1224), - [anon_sym___restrict__] = ACTIONS(1224), - [anon_sym__Atomic] = ACTIONS(1224), - [anon_sym__Noreturn] = ACTIONS(1224), - [anon_sym_noreturn] = ACTIONS(1224), - [sym_primitive_type] = ACTIONS(1224), - [anon_sym_enum] = ACTIONS(1224), - [anon_sym_struct] = ACTIONS(1224), - [anon_sym_union] = ACTIONS(1224), - [anon_sym_if] = ACTIONS(1224), - [anon_sym_else] = ACTIONS(1224), - [anon_sym_switch] = ACTIONS(1224), - [anon_sym_case] = ACTIONS(1224), - [anon_sym_default] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1224), - [anon_sym_do] = ACTIONS(1224), - [anon_sym_for] = ACTIONS(1224), - [anon_sym_return] = ACTIONS(1224), - [anon_sym_break] = ACTIONS(1224), - [anon_sym_continue] = ACTIONS(1224), - [anon_sym_goto] = ACTIONS(1224), - [anon_sym_DASH_DASH] = ACTIONS(1226), - [anon_sym_PLUS_PLUS] = ACTIONS(1226), - [anon_sym_sizeof] = ACTIONS(1224), - [anon_sym_offsetof] = ACTIONS(1224), - [anon_sym__Generic] = ACTIONS(1224), - [anon_sym_asm] = ACTIONS(1224), - [anon_sym___asm__] = ACTIONS(1224), - [sym_number_literal] = ACTIONS(1226), - [anon_sym_L_SQUOTE] = ACTIONS(1226), - [anon_sym_u_SQUOTE] = ACTIONS(1226), - [anon_sym_U_SQUOTE] = ACTIONS(1226), - [anon_sym_u8_SQUOTE] = ACTIONS(1226), - [anon_sym_SQUOTE] = ACTIONS(1226), - [anon_sym_L_DQUOTE] = ACTIONS(1226), - [anon_sym_u_DQUOTE] = ACTIONS(1226), - [anon_sym_U_DQUOTE] = ACTIONS(1226), - [anon_sym_u8_DQUOTE] = ACTIONS(1226), - [anon_sym_DQUOTE] = ACTIONS(1226), - [sym_true] = ACTIONS(1224), - [sym_false] = ACTIONS(1224), - [anon_sym_NULL] = ACTIONS(1224), - [anon_sym_nullptr] = ACTIONS(1224), + [303] = { + [ts_builtin_sym_end] = ACTIONS(1242), + [sym_identifier] = ACTIONS(1240), + [aux_sym_preproc_include_token1] = ACTIONS(1240), + [aux_sym_preproc_def_token1] = ACTIONS(1240), + [aux_sym_preproc_if_token1] = ACTIONS(1240), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1240), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1240), + [sym_preproc_directive] = ACTIONS(1240), + [anon_sym_LPAREN2] = ACTIONS(1242), + [anon_sym_BANG] = ACTIONS(1242), + [anon_sym_TILDE] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(1240), + [anon_sym_STAR] = ACTIONS(1242), + [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym___extension__] = ACTIONS(1240), + [anon_sym_typedef] = ACTIONS(1240), + [anon_sym_extern] = ACTIONS(1240), + [anon_sym___attribute__] = ACTIONS(1240), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1242), + [anon_sym___declspec] = ACTIONS(1240), + [anon_sym___cdecl] = ACTIONS(1240), + [anon_sym___clrcall] = ACTIONS(1240), + [anon_sym___stdcall] = ACTIONS(1240), + [anon_sym___fastcall] = ACTIONS(1240), + [anon_sym___thiscall] = ACTIONS(1240), + [anon_sym___vectorcall] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(1242), + [anon_sym_signed] = ACTIONS(1240), + [anon_sym_unsigned] = ACTIONS(1240), + [anon_sym_long] = ACTIONS(1240), + [anon_sym_short] = ACTIONS(1240), + [anon_sym_static] = ACTIONS(1240), + [anon_sym_auto] = ACTIONS(1240), + [anon_sym_register] = ACTIONS(1240), + [anon_sym_inline] = ACTIONS(1240), + [anon_sym___inline] = ACTIONS(1240), + [anon_sym___inline__] = ACTIONS(1240), + [anon_sym___forceinline] = ACTIONS(1240), + [anon_sym_thread_local] = ACTIONS(1240), + [anon_sym___thread] = ACTIONS(1240), + [anon_sym_const] = ACTIONS(1240), + [anon_sym_constexpr] = ACTIONS(1240), + [anon_sym_volatile] = ACTIONS(1240), + [anon_sym_restrict] = ACTIONS(1240), + [anon_sym___restrict__] = ACTIONS(1240), + [anon_sym__Atomic] = ACTIONS(1240), + [anon_sym__Noreturn] = ACTIONS(1240), + [anon_sym_noreturn] = ACTIONS(1240), + [sym_primitive_type] = ACTIONS(1240), + [anon_sym_enum] = ACTIONS(1240), + [anon_sym_struct] = ACTIONS(1240), + [anon_sym_union] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(1240), + [anon_sym_else] = ACTIONS(1240), + [anon_sym_switch] = ACTIONS(1240), + [anon_sym_case] = ACTIONS(1240), + [anon_sym_default] = ACTIONS(1240), + [anon_sym_while] = ACTIONS(1240), + [anon_sym_do] = ACTIONS(1240), + [anon_sym_for] = ACTIONS(1240), + [anon_sym_return] = ACTIONS(1240), + [anon_sym_break] = ACTIONS(1240), + [anon_sym_continue] = ACTIONS(1240), + [anon_sym_goto] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1242), + [anon_sym_PLUS_PLUS] = ACTIONS(1242), + [anon_sym_sizeof] = ACTIONS(1240), + [anon_sym___alignof__] = ACTIONS(1240), + [anon_sym___alignof] = ACTIONS(1240), + [anon_sym__alignof] = ACTIONS(1240), + [anon_sym_alignof] = ACTIONS(1240), + [anon_sym__Alignof] = ACTIONS(1240), + [anon_sym_offsetof] = ACTIONS(1240), + [anon_sym___builtin_va_arg] = ACTIONS(1240), + [anon_sym__Generic] = ACTIONS(1240), + [anon_sym_asm] = ACTIONS(1240), + [anon_sym___asm__] = ACTIONS(1240), + [sym_number_literal] = ACTIONS(1242), + [anon_sym_L_SQUOTE] = ACTIONS(1242), + [anon_sym_u_SQUOTE] = ACTIONS(1242), + [anon_sym_U_SQUOTE] = ACTIONS(1242), + [anon_sym_u8_SQUOTE] = ACTIONS(1242), + [anon_sym_SQUOTE] = ACTIONS(1242), + [anon_sym_L_DQUOTE] = ACTIONS(1242), + [anon_sym_u_DQUOTE] = ACTIONS(1242), + [anon_sym_U_DQUOTE] = ACTIONS(1242), + [anon_sym_u8_DQUOTE] = ACTIONS(1242), + [anon_sym_DQUOTE] = ACTIONS(1242), + [sym_true] = ACTIONS(1240), + [sym_false] = ACTIONS(1240), + [anon_sym_NULL] = ACTIONS(1240), + [anon_sym_nullptr] = ACTIONS(1240), [sym_comment] = ACTIONS(3), }, - [310] = { - [sym_identifier] = ACTIONS(1208), - [aux_sym_preproc_include_token1] = ACTIONS(1208), - [aux_sym_preproc_def_token1] = ACTIONS(1208), - [aux_sym_preproc_if_token1] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1208), - [sym_preproc_directive] = ACTIONS(1208), - [anon_sym_LPAREN2] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1210), - [anon_sym_AMP] = ACTIONS(1210), - [anon_sym_SEMI] = ACTIONS(1210), - [anon_sym_typedef] = ACTIONS(1208), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym___attribute__] = ACTIONS(1208), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(1208), - [anon_sym___cdecl] = ACTIONS(1208), - [anon_sym___clrcall] = ACTIONS(1208), - [anon_sym___stdcall] = ACTIONS(1208), - [anon_sym___fastcall] = ACTIONS(1208), - [anon_sym___thiscall] = ACTIONS(1208), - [anon_sym___vectorcall] = ACTIONS(1208), - [anon_sym_LBRACE] = ACTIONS(1210), - [anon_sym_RBRACE] = ACTIONS(1210), - [anon_sym_signed] = ACTIONS(1208), - [anon_sym_unsigned] = ACTIONS(1208), - [anon_sym_long] = ACTIONS(1208), - [anon_sym_short] = ACTIONS(1208), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_auto] = ACTIONS(1208), - [anon_sym_register] = ACTIONS(1208), - [anon_sym_inline] = ACTIONS(1208), - [anon_sym_thread_local] = ACTIONS(1208), - [anon_sym___thread] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_constexpr] = ACTIONS(1208), - [anon_sym_volatile] = ACTIONS(1208), - [anon_sym_restrict] = ACTIONS(1208), - [anon_sym___restrict__] = ACTIONS(1208), - [anon_sym__Atomic] = ACTIONS(1208), - [anon_sym__Noreturn] = ACTIONS(1208), - [anon_sym_noreturn] = ACTIONS(1208), - [sym_primitive_type] = ACTIONS(1208), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_struct] = ACTIONS(1208), - [anon_sym_union] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_else] = ACTIONS(1208), - [anon_sym_switch] = ACTIONS(1208), - [anon_sym_case] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_do] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_goto] = ACTIONS(1208), - [anon_sym_DASH_DASH] = ACTIONS(1210), - [anon_sym_PLUS_PLUS] = ACTIONS(1210), - [anon_sym_sizeof] = ACTIONS(1208), - [anon_sym_offsetof] = ACTIONS(1208), - [anon_sym__Generic] = ACTIONS(1208), - [anon_sym_asm] = ACTIONS(1208), - [anon_sym___asm__] = ACTIONS(1208), - [sym_number_literal] = ACTIONS(1210), - [anon_sym_L_SQUOTE] = ACTIONS(1210), - [anon_sym_u_SQUOTE] = ACTIONS(1210), - [anon_sym_U_SQUOTE] = ACTIONS(1210), - [anon_sym_u8_SQUOTE] = ACTIONS(1210), - [anon_sym_SQUOTE] = ACTIONS(1210), - [anon_sym_L_DQUOTE] = ACTIONS(1210), - [anon_sym_u_DQUOTE] = ACTIONS(1210), - [anon_sym_U_DQUOTE] = ACTIONS(1210), - [anon_sym_u8_DQUOTE] = ACTIONS(1210), - [anon_sym_DQUOTE] = ACTIONS(1210), - [sym_true] = ACTIONS(1208), - [sym_false] = ACTIONS(1208), - [anon_sym_NULL] = ACTIONS(1208), - [anon_sym_nullptr] = ACTIONS(1208), + [304] = { + [sym_identifier] = ACTIONS(1284), + [aux_sym_preproc_include_token1] = ACTIONS(1284), + [aux_sym_preproc_def_token1] = ACTIONS(1284), + [aux_sym_preproc_if_token1] = ACTIONS(1284), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1284), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1284), + [sym_preproc_directive] = ACTIONS(1284), + [anon_sym_LPAREN2] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1286), + [anon_sym_TILDE] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_STAR] = ACTIONS(1286), + [anon_sym_AMP] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [anon_sym___extension__] = ACTIONS(1284), + [anon_sym_typedef] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym___attribute__] = ACTIONS(1284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1286), + [anon_sym___declspec] = ACTIONS(1284), + [anon_sym___cdecl] = ACTIONS(1284), + [anon_sym___clrcall] = ACTIONS(1284), + [anon_sym___stdcall] = ACTIONS(1284), + [anon_sym___fastcall] = ACTIONS(1284), + [anon_sym___thiscall] = ACTIONS(1284), + [anon_sym___vectorcall] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_signed] = ACTIONS(1284), + [anon_sym_unsigned] = ACTIONS(1284), + [anon_sym_long] = ACTIONS(1284), + [anon_sym_short] = ACTIONS(1284), + [anon_sym_static] = ACTIONS(1284), + [anon_sym_auto] = ACTIONS(1284), + [anon_sym_register] = ACTIONS(1284), + [anon_sym_inline] = ACTIONS(1284), + [anon_sym___inline] = ACTIONS(1284), + [anon_sym___inline__] = ACTIONS(1284), + [anon_sym___forceinline] = ACTIONS(1284), + [anon_sym_thread_local] = ACTIONS(1284), + [anon_sym___thread] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_constexpr] = ACTIONS(1284), + [anon_sym_volatile] = ACTIONS(1284), + [anon_sym_restrict] = ACTIONS(1284), + [anon_sym___restrict__] = ACTIONS(1284), + [anon_sym__Atomic] = ACTIONS(1284), + [anon_sym__Noreturn] = ACTIONS(1284), + [anon_sym_noreturn] = ACTIONS(1284), + [sym_primitive_type] = ACTIONS(1284), + [anon_sym_enum] = ACTIONS(1284), + [anon_sym_struct] = ACTIONS(1284), + [anon_sym_union] = ACTIONS(1284), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_else] = ACTIONS(1284), + [anon_sym_switch] = ACTIONS(1284), + [anon_sym_case] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(1284), + [anon_sym_while] = ACTIONS(1284), + [anon_sym_do] = ACTIONS(1284), + [anon_sym_for] = ACTIONS(1284), + [anon_sym_return] = ACTIONS(1284), + [anon_sym_break] = ACTIONS(1284), + [anon_sym_continue] = ACTIONS(1284), + [anon_sym_goto] = ACTIONS(1284), + [anon_sym_DASH_DASH] = ACTIONS(1286), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [anon_sym_sizeof] = ACTIONS(1284), + [anon_sym___alignof__] = ACTIONS(1284), + [anon_sym___alignof] = ACTIONS(1284), + [anon_sym__alignof] = ACTIONS(1284), + [anon_sym_alignof] = ACTIONS(1284), + [anon_sym__Alignof] = ACTIONS(1284), + [anon_sym_offsetof] = ACTIONS(1284), + [anon_sym___builtin_va_arg] = ACTIONS(1284), + [anon_sym__Generic] = ACTIONS(1284), + [anon_sym_asm] = ACTIONS(1284), + [anon_sym___asm__] = ACTIONS(1284), + [sym_number_literal] = ACTIONS(1286), + [anon_sym_L_SQUOTE] = ACTIONS(1286), + [anon_sym_u_SQUOTE] = ACTIONS(1286), + [anon_sym_U_SQUOTE] = ACTIONS(1286), + [anon_sym_u8_SQUOTE] = ACTIONS(1286), + [anon_sym_SQUOTE] = ACTIONS(1286), + [anon_sym_L_DQUOTE] = ACTIONS(1286), + [anon_sym_u_DQUOTE] = ACTIONS(1286), + [anon_sym_U_DQUOTE] = ACTIONS(1286), + [anon_sym_u8_DQUOTE] = ACTIONS(1286), + [anon_sym_DQUOTE] = ACTIONS(1286), + [sym_true] = ACTIONS(1284), + [sym_false] = ACTIONS(1284), + [anon_sym_NULL] = ACTIONS(1284), + [anon_sym_nullptr] = ACTIONS(1284), [sym_comment] = ACTIONS(3), }, - [311] = { - [sym_identifier] = ACTIONS(1352), - [aux_sym_preproc_include_token1] = ACTIONS(1352), - [aux_sym_preproc_def_token1] = ACTIONS(1352), - [aux_sym_preproc_if_token1] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), - [sym_preproc_directive] = ACTIONS(1352), - [anon_sym_LPAREN2] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1354), - [anon_sym_TILDE] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(1352), - [anon_sym_extern] = ACTIONS(1352), - [anon_sym___attribute__] = ACTIONS(1352), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), - [anon_sym___declspec] = ACTIONS(1352), - [anon_sym___cdecl] = ACTIONS(1352), - [anon_sym___clrcall] = ACTIONS(1352), - [anon_sym___stdcall] = ACTIONS(1352), - [anon_sym___fastcall] = ACTIONS(1352), - [anon_sym___thiscall] = ACTIONS(1352), - [anon_sym___vectorcall] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_RBRACE] = ACTIONS(1354), - [anon_sym_signed] = ACTIONS(1352), - [anon_sym_unsigned] = ACTIONS(1352), - [anon_sym_long] = ACTIONS(1352), - [anon_sym_short] = ACTIONS(1352), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_auto] = ACTIONS(1352), - [anon_sym_register] = ACTIONS(1352), - [anon_sym_inline] = ACTIONS(1352), - [anon_sym_thread_local] = ACTIONS(1352), - [anon_sym___thread] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1352), - [anon_sym_constexpr] = ACTIONS(1352), - [anon_sym_volatile] = ACTIONS(1352), - [anon_sym_restrict] = ACTIONS(1352), - [anon_sym___restrict__] = ACTIONS(1352), - [anon_sym__Atomic] = ACTIONS(1352), - [anon_sym__Noreturn] = ACTIONS(1352), - [anon_sym_noreturn] = ACTIONS(1352), - [sym_primitive_type] = ACTIONS(1352), - [anon_sym_enum] = ACTIONS(1352), - [anon_sym_struct] = ACTIONS(1352), - [anon_sym_union] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1352), - [anon_sym_else] = ACTIONS(1352), - [anon_sym_switch] = ACTIONS(1352), - [anon_sym_case] = ACTIONS(1352), - [anon_sym_default] = ACTIONS(1352), - [anon_sym_while] = ACTIONS(1352), - [anon_sym_do] = ACTIONS(1352), - [anon_sym_for] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1352), - [anon_sym_break] = ACTIONS(1352), - [anon_sym_continue] = ACTIONS(1352), - [anon_sym_goto] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_sizeof] = ACTIONS(1352), - [anon_sym_offsetof] = ACTIONS(1352), - [anon_sym__Generic] = ACTIONS(1352), - [anon_sym_asm] = ACTIONS(1352), - [anon_sym___asm__] = ACTIONS(1352), - [sym_number_literal] = ACTIONS(1354), - [anon_sym_L_SQUOTE] = ACTIONS(1354), - [anon_sym_u_SQUOTE] = ACTIONS(1354), - [anon_sym_U_SQUOTE] = ACTIONS(1354), - [anon_sym_u8_SQUOTE] = ACTIONS(1354), - [anon_sym_SQUOTE] = ACTIONS(1354), - [anon_sym_L_DQUOTE] = ACTIONS(1354), - [anon_sym_u_DQUOTE] = ACTIONS(1354), - [anon_sym_U_DQUOTE] = ACTIONS(1354), - [anon_sym_u8_DQUOTE] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym_true] = ACTIONS(1352), - [sym_false] = ACTIONS(1352), - [anon_sym_NULL] = ACTIONS(1352), - [anon_sym_nullptr] = ACTIONS(1352), + [305] = { + [sym_identifier] = ACTIONS(1288), + [aux_sym_preproc_include_token1] = ACTIONS(1288), + [aux_sym_preproc_def_token1] = ACTIONS(1288), + [aux_sym_preproc_if_token1] = ACTIONS(1288), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1288), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1288), + [sym_preproc_directive] = ACTIONS(1288), + [anon_sym_LPAREN2] = ACTIONS(1290), + [anon_sym_BANG] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_STAR] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(1290), + [anon_sym_SEMI] = ACTIONS(1290), + [anon_sym___extension__] = ACTIONS(1288), + [anon_sym_typedef] = ACTIONS(1288), + [anon_sym_extern] = ACTIONS(1288), + [anon_sym___attribute__] = ACTIONS(1288), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), + [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(1290), + [anon_sym_RBRACE] = ACTIONS(1290), + [anon_sym_signed] = ACTIONS(1288), + [anon_sym_unsigned] = ACTIONS(1288), + [anon_sym_long] = ACTIONS(1288), + [anon_sym_short] = ACTIONS(1288), + [anon_sym_static] = ACTIONS(1288), + [anon_sym_auto] = ACTIONS(1288), + [anon_sym_register] = ACTIONS(1288), + [anon_sym_inline] = ACTIONS(1288), + [anon_sym___inline] = ACTIONS(1288), + [anon_sym___inline__] = ACTIONS(1288), + [anon_sym___forceinline] = ACTIONS(1288), + [anon_sym_thread_local] = ACTIONS(1288), + [anon_sym___thread] = ACTIONS(1288), + [anon_sym_const] = ACTIONS(1288), + [anon_sym_constexpr] = ACTIONS(1288), + [anon_sym_volatile] = ACTIONS(1288), + [anon_sym_restrict] = ACTIONS(1288), + [anon_sym___restrict__] = ACTIONS(1288), + [anon_sym__Atomic] = ACTIONS(1288), + [anon_sym__Noreturn] = ACTIONS(1288), + [anon_sym_noreturn] = 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(1290), + [anon_sym_PLUS_PLUS] = ACTIONS(1290), + [anon_sym_sizeof] = ACTIONS(1288), + [anon_sym___alignof__] = ACTIONS(1288), + [anon_sym___alignof] = ACTIONS(1288), + [anon_sym__alignof] = ACTIONS(1288), + [anon_sym_alignof] = ACTIONS(1288), + [anon_sym__Alignof] = ACTIONS(1288), + [anon_sym_offsetof] = ACTIONS(1288), + [anon_sym___builtin_va_arg] = ACTIONS(1288), + [anon_sym__Generic] = ACTIONS(1288), + [anon_sym_asm] = ACTIONS(1288), + [anon_sym___asm__] = ACTIONS(1288), + [sym_number_literal] = ACTIONS(1290), + [anon_sym_L_SQUOTE] = ACTIONS(1290), + [anon_sym_u_SQUOTE] = ACTIONS(1290), + [anon_sym_U_SQUOTE] = ACTIONS(1290), + [anon_sym_u8_SQUOTE] = ACTIONS(1290), + [anon_sym_SQUOTE] = ACTIONS(1290), + [anon_sym_L_DQUOTE] = ACTIONS(1290), + [anon_sym_u_DQUOTE] = ACTIONS(1290), + [anon_sym_U_DQUOTE] = ACTIONS(1290), + [anon_sym_u8_DQUOTE] = ACTIONS(1290), + [anon_sym_DQUOTE] = ACTIONS(1290), + [sym_true] = ACTIONS(1288), + [sym_false] = ACTIONS(1288), + [anon_sym_NULL] = ACTIONS(1288), + [anon_sym_nullptr] = ACTIONS(1288), [sym_comment] = ACTIONS(3), }, - [312] = { - [sym_identifier] = ACTIONS(1348), - [aux_sym_preproc_include_token1] = ACTIONS(1348), - [aux_sym_preproc_def_token1] = ACTIONS(1348), - [aux_sym_preproc_if_token1] = ACTIONS(1348), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1348), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1348), - [sym_preproc_directive] = ACTIONS(1348), - [anon_sym_LPAREN2] = ACTIONS(1350), - [anon_sym_BANG] = ACTIONS(1350), - [anon_sym_TILDE] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1348), - [anon_sym_PLUS] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym_typedef] = ACTIONS(1348), - [anon_sym_extern] = ACTIONS(1348), - [anon_sym___attribute__] = ACTIONS(1348), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), - [anon_sym___declspec] = ACTIONS(1348), - [anon_sym___cdecl] = ACTIONS(1348), - [anon_sym___clrcall] = ACTIONS(1348), - [anon_sym___stdcall] = ACTIONS(1348), - [anon_sym___fastcall] = ACTIONS(1348), - [anon_sym___thiscall] = ACTIONS(1348), - [anon_sym___vectorcall] = ACTIONS(1348), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_signed] = ACTIONS(1348), - [anon_sym_unsigned] = ACTIONS(1348), - [anon_sym_long] = ACTIONS(1348), - [anon_sym_short] = ACTIONS(1348), - [anon_sym_static] = ACTIONS(1348), - [anon_sym_auto] = ACTIONS(1348), - [anon_sym_register] = ACTIONS(1348), - [anon_sym_inline] = ACTIONS(1348), - [anon_sym_thread_local] = ACTIONS(1348), - [anon_sym___thread] = ACTIONS(1348), - [anon_sym_const] = ACTIONS(1348), - [anon_sym_constexpr] = ACTIONS(1348), - [anon_sym_volatile] = ACTIONS(1348), - [anon_sym_restrict] = ACTIONS(1348), - [anon_sym___restrict__] = ACTIONS(1348), - [anon_sym__Atomic] = ACTIONS(1348), - [anon_sym__Noreturn] = ACTIONS(1348), - [anon_sym_noreturn] = ACTIONS(1348), - [sym_primitive_type] = ACTIONS(1348), - [anon_sym_enum] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1348), - [anon_sym_union] = ACTIONS(1348), - [anon_sym_if] = ACTIONS(1348), - [anon_sym_else] = ACTIONS(1348), - [anon_sym_switch] = ACTIONS(1348), - [anon_sym_case] = ACTIONS(1348), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_while] = ACTIONS(1348), - [anon_sym_do] = ACTIONS(1348), - [anon_sym_for] = ACTIONS(1348), - [anon_sym_return] = ACTIONS(1348), - [anon_sym_break] = ACTIONS(1348), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1348), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_sizeof] = ACTIONS(1348), - [anon_sym_offsetof] = ACTIONS(1348), - [anon_sym__Generic] = ACTIONS(1348), - [anon_sym_asm] = ACTIONS(1348), - [anon_sym___asm__] = ACTIONS(1348), - [sym_number_literal] = ACTIONS(1350), - [anon_sym_L_SQUOTE] = ACTIONS(1350), - [anon_sym_u_SQUOTE] = ACTIONS(1350), - [anon_sym_U_SQUOTE] = ACTIONS(1350), - [anon_sym_u8_SQUOTE] = ACTIONS(1350), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_L_DQUOTE] = ACTIONS(1350), - [anon_sym_u_DQUOTE] = ACTIONS(1350), - [anon_sym_U_DQUOTE] = ACTIONS(1350), - [anon_sym_u8_DQUOTE] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym_true] = ACTIONS(1348), - [sym_false] = ACTIONS(1348), - [anon_sym_NULL] = ACTIONS(1348), - [anon_sym_nullptr] = ACTIONS(1348), + [306] = { + [sym_identifier] = ACTIONS(1292), + [aux_sym_preproc_include_token1] = ACTIONS(1292), + [aux_sym_preproc_def_token1] = ACTIONS(1292), + [aux_sym_preproc_if_token1] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), + [sym_preproc_directive] = ACTIONS(1292), + [anon_sym_LPAREN2] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_TILDE] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym___extension__] = ACTIONS(1292), + [anon_sym_typedef] = ACTIONS(1292), + [anon_sym_extern] = ACTIONS(1292), + [anon_sym___attribute__] = ACTIONS(1292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), + [anon_sym___declspec] = ACTIONS(1292), + [anon_sym___cdecl] = ACTIONS(1292), + [anon_sym___clrcall] = ACTIONS(1292), + [anon_sym___stdcall] = ACTIONS(1292), + [anon_sym___fastcall] = ACTIONS(1292), + [anon_sym___thiscall] = ACTIONS(1292), + [anon_sym___vectorcall] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(1294), + [anon_sym_signed] = ACTIONS(1292), + [anon_sym_unsigned] = ACTIONS(1292), + [anon_sym_long] = ACTIONS(1292), + [anon_sym_short] = ACTIONS(1292), + [anon_sym_static] = ACTIONS(1292), + [anon_sym_auto] = ACTIONS(1292), + [anon_sym_register] = ACTIONS(1292), + [anon_sym_inline] = ACTIONS(1292), + [anon_sym___inline] = ACTIONS(1292), + [anon_sym___inline__] = ACTIONS(1292), + [anon_sym___forceinline] = ACTIONS(1292), + [anon_sym_thread_local] = ACTIONS(1292), + [anon_sym___thread] = ACTIONS(1292), + [anon_sym_const] = ACTIONS(1292), + [anon_sym_constexpr] = ACTIONS(1292), + [anon_sym_volatile] = ACTIONS(1292), + [anon_sym_restrict] = ACTIONS(1292), + [anon_sym___restrict__] = ACTIONS(1292), + [anon_sym__Atomic] = ACTIONS(1292), + [anon_sym__Noreturn] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [sym_primitive_type] = ACTIONS(1292), + [anon_sym_enum] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_union] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_switch] = ACTIONS(1292), + [anon_sym_case] = ACTIONS(1292), + [anon_sym_default] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_do] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_goto] = ACTIONS(1292), + [anon_sym_DASH_DASH] = ACTIONS(1294), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_sizeof] = ACTIONS(1292), + [anon_sym___alignof__] = ACTIONS(1292), + [anon_sym___alignof] = ACTIONS(1292), + [anon_sym__alignof] = ACTIONS(1292), + [anon_sym_alignof] = ACTIONS(1292), + [anon_sym__Alignof] = ACTIONS(1292), + [anon_sym_offsetof] = ACTIONS(1292), + [anon_sym___builtin_va_arg] = ACTIONS(1292), + [anon_sym__Generic] = ACTIONS(1292), + [anon_sym_asm] = ACTIONS(1292), + [anon_sym___asm__] = ACTIONS(1292), + [sym_number_literal] = ACTIONS(1294), + [anon_sym_L_SQUOTE] = ACTIONS(1294), + [anon_sym_u_SQUOTE] = ACTIONS(1294), + [anon_sym_U_SQUOTE] = ACTIONS(1294), + [anon_sym_u8_SQUOTE] = ACTIONS(1294), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_L_DQUOTE] = ACTIONS(1294), + [anon_sym_u_DQUOTE] = ACTIONS(1294), + [anon_sym_U_DQUOTE] = ACTIONS(1294), + [anon_sym_u8_DQUOTE] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [sym_true] = ACTIONS(1292), + [sym_false] = ACTIONS(1292), + [anon_sym_NULL] = ACTIONS(1292), + [anon_sym_nullptr] = ACTIONS(1292), [sym_comment] = ACTIONS(3), }, - [313] = { + [307] = { + [ts_builtin_sym_end] = ACTIONS(1342), [sym_identifier] = ACTIONS(1340), [aux_sym_preproc_include_token1] = ACTIONS(1340), [aux_sym_preproc_def_token1] = ACTIONS(1340), @@ -47675,6 +51196,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1342), [anon_sym_AMP] = ACTIONS(1342), [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym___extension__] = ACTIONS(1340), [anon_sym_typedef] = ACTIONS(1340), [anon_sym_extern] = ACTIONS(1340), [anon_sym___attribute__] = ACTIONS(1340), @@ -47687,7 +51209,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1340), [anon_sym___vectorcall] = ACTIONS(1340), [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_RBRACE] = ACTIONS(1342), [anon_sym_signed] = ACTIONS(1340), [anon_sym_unsigned] = ACTIONS(1340), [anon_sym_long] = ACTIONS(1340), @@ -47696,6 +51217,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1340), [anon_sym_register] = ACTIONS(1340), [anon_sym_inline] = ACTIONS(1340), + [anon_sym___inline] = ACTIONS(1340), + [anon_sym___inline__] = ACTIONS(1340), + [anon_sym___forceinline] = ACTIONS(1340), [anon_sym_thread_local] = ACTIONS(1340), [anon_sym___thread] = ACTIONS(1340), [anon_sym_const] = ACTIONS(1340), @@ -47725,7 +51249,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1342), [anon_sym_PLUS_PLUS] = ACTIONS(1342), [anon_sym_sizeof] = ACTIONS(1340), + [anon_sym___alignof__] = ACTIONS(1340), + [anon_sym___alignof] = ACTIONS(1340), + [anon_sym__alignof] = ACTIONS(1340), + [anon_sym_alignof] = ACTIONS(1340), + [anon_sym__Alignof] = ACTIONS(1340), [anon_sym_offsetof] = ACTIONS(1340), + [anon_sym___builtin_va_arg] = ACTIONS(1340), [anon_sym__Generic] = ACTIONS(1340), [anon_sym_asm] = ACTIONS(1340), [anon_sym___asm__] = ACTIONS(1340), @@ -47746,1051 +51276,881 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1340), [sym_comment] = ACTIONS(3), }, - [314] = { - [sym_identifier] = ACTIONS(1204), - [aux_sym_preproc_include_token1] = ACTIONS(1204), - [aux_sym_preproc_def_token1] = ACTIONS(1204), - [aux_sym_preproc_if_token1] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1204), - [sym_preproc_directive] = ACTIONS(1204), - [anon_sym_LPAREN2] = ACTIONS(1206), - [anon_sym_BANG] = ACTIONS(1206), - [anon_sym_TILDE] = ACTIONS(1206), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_STAR] = ACTIONS(1206), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_SEMI] = ACTIONS(1206), - [anon_sym_typedef] = ACTIONS(1204), - [anon_sym_extern] = ACTIONS(1204), - [anon_sym___attribute__] = ACTIONS(1204), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1206), - [anon_sym___declspec] = ACTIONS(1204), - [anon_sym___cdecl] = ACTIONS(1204), - [anon_sym___clrcall] = ACTIONS(1204), - [anon_sym___stdcall] = ACTIONS(1204), - [anon_sym___fastcall] = ACTIONS(1204), - [anon_sym___thiscall] = ACTIONS(1204), - [anon_sym___vectorcall] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_RBRACE] = ACTIONS(1206), - [anon_sym_signed] = ACTIONS(1204), - [anon_sym_unsigned] = ACTIONS(1204), - [anon_sym_long] = ACTIONS(1204), - [anon_sym_short] = ACTIONS(1204), - [anon_sym_static] = ACTIONS(1204), - [anon_sym_auto] = ACTIONS(1204), - [anon_sym_register] = ACTIONS(1204), - [anon_sym_inline] = ACTIONS(1204), - [anon_sym_thread_local] = ACTIONS(1204), - [anon_sym___thread] = ACTIONS(1204), - [anon_sym_const] = ACTIONS(1204), - [anon_sym_constexpr] = ACTIONS(1204), - [anon_sym_volatile] = ACTIONS(1204), - [anon_sym_restrict] = ACTIONS(1204), - [anon_sym___restrict__] = ACTIONS(1204), - [anon_sym__Atomic] = ACTIONS(1204), - [anon_sym__Noreturn] = ACTIONS(1204), - [anon_sym_noreturn] = ACTIONS(1204), - [sym_primitive_type] = ACTIONS(1204), - [anon_sym_enum] = ACTIONS(1204), - [anon_sym_struct] = ACTIONS(1204), - [anon_sym_union] = ACTIONS(1204), - [anon_sym_if] = ACTIONS(1204), - [anon_sym_else] = ACTIONS(1204), - [anon_sym_switch] = ACTIONS(1204), - [anon_sym_case] = ACTIONS(1204), - [anon_sym_default] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1204), - [anon_sym_do] = ACTIONS(1204), - [anon_sym_for] = ACTIONS(1204), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_break] = ACTIONS(1204), - [anon_sym_continue] = ACTIONS(1204), - [anon_sym_goto] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_sizeof] = ACTIONS(1204), - [anon_sym_offsetof] = ACTIONS(1204), - [anon_sym__Generic] = ACTIONS(1204), - [anon_sym_asm] = ACTIONS(1204), - [anon_sym___asm__] = ACTIONS(1204), - [sym_number_literal] = ACTIONS(1206), - [anon_sym_L_SQUOTE] = ACTIONS(1206), - [anon_sym_u_SQUOTE] = ACTIONS(1206), - [anon_sym_U_SQUOTE] = ACTIONS(1206), - [anon_sym_u8_SQUOTE] = ACTIONS(1206), - [anon_sym_SQUOTE] = ACTIONS(1206), - [anon_sym_L_DQUOTE] = ACTIONS(1206), - [anon_sym_u_DQUOTE] = ACTIONS(1206), - [anon_sym_U_DQUOTE] = ACTIONS(1206), - [anon_sym_u8_DQUOTE] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(1206), - [sym_true] = ACTIONS(1204), - [sym_false] = ACTIONS(1204), - [anon_sym_NULL] = ACTIONS(1204), - [anon_sym_nullptr] = ACTIONS(1204), - [sym_comment] = ACTIONS(3), - }, - [315] = { - [sym_identifier] = ACTIONS(1204), - [aux_sym_preproc_include_token1] = ACTIONS(1204), - [aux_sym_preproc_def_token1] = ACTIONS(1204), - [aux_sym_preproc_if_token1] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1204), - [sym_preproc_directive] = ACTIONS(1204), - [anon_sym_LPAREN2] = ACTIONS(1206), - [anon_sym_BANG] = ACTIONS(1206), - [anon_sym_TILDE] = ACTIONS(1206), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_STAR] = ACTIONS(1206), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_SEMI] = ACTIONS(1206), - [anon_sym_typedef] = ACTIONS(1204), - [anon_sym_extern] = ACTIONS(1204), - [anon_sym___attribute__] = ACTIONS(1204), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1206), - [anon_sym___declspec] = ACTIONS(1204), - [anon_sym___cdecl] = ACTIONS(1204), - [anon_sym___clrcall] = ACTIONS(1204), - [anon_sym___stdcall] = ACTIONS(1204), - [anon_sym___fastcall] = ACTIONS(1204), - [anon_sym___thiscall] = ACTIONS(1204), - [anon_sym___vectorcall] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_RBRACE] = ACTIONS(1206), - [anon_sym_signed] = ACTIONS(1204), - [anon_sym_unsigned] = ACTIONS(1204), - [anon_sym_long] = ACTIONS(1204), - [anon_sym_short] = ACTIONS(1204), - [anon_sym_static] = ACTIONS(1204), - [anon_sym_auto] = ACTIONS(1204), - [anon_sym_register] = ACTIONS(1204), - [anon_sym_inline] = ACTIONS(1204), - [anon_sym_thread_local] = ACTIONS(1204), - [anon_sym___thread] = ACTIONS(1204), - [anon_sym_const] = ACTIONS(1204), - [anon_sym_constexpr] = ACTIONS(1204), - [anon_sym_volatile] = ACTIONS(1204), - [anon_sym_restrict] = ACTIONS(1204), - [anon_sym___restrict__] = ACTIONS(1204), - [anon_sym__Atomic] = ACTIONS(1204), - [anon_sym__Noreturn] = ACTIONS(1204), - [anon_sym_noreturn] = ACTIONS(1204), - [sym_primitive_type] = ACTIONS(1204), - [anon_sym_enum] = ACTIONS(1204), - [anon_sym_struct] = ACTIONS(1204), - [anon_sym_union] = ACTIONS(1204), - [anon_sym_if] = ACTIONS(1204), - [anon_sym_else] = ACTIONS(1204), - [anon_sym_switch] = ACTIONS(1204), - [anon_sym_case] = ACTIONS(1204), - [anon_sym_default] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1204), - [anon_sym_do] = ACTIONS(1204), - [anon_sym_for] = ACTIONS(1204), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_break] = ACTIONS(1204), - [anon_sym_continue] = ACTIONS(1204), - [anon_sym_goto] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_sizeof] = ACTIONS(1204), - [anon_sym_offsetof] = ACTIONS(1204), - [anon_sym__Generic] = ACTIONS(1204), - [anon_sym_asm] = ACTIONS(1204), - [anon_sym___asm__] = ACTIONS(1204), - [sym_number_literal] = ACTIONS(1206), - [anon_sym_L_SQUOTE] = ACTIONS(1206), - [anon_sym_u_SQUOTE] = ACTIONS(1206), - [anon_sym_U_SQUOTE] = ACTIONS(1206), - [anon_sym_u8_SQUOTE] = ACTIONS(1206), - [anon_sym_SQUOTE] = ACTIONS(1206), - [anon_sym_L_DQUOTE] = ACTIONS(1206), - [anon_sym_u_DQUOTE] = ACTIONS(1206), - [anon_sym_U_DQUOTE] = ACTIONS(1206), - [anon_sym_u8_DQUOTE] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(1206), - [sym_true] = ACTIONS(1204), - [sym_false] = ACTIONS(1204), - [anon_sym_NULL] = ACTIONS(1204), - [anon_sym_nullptr] = ACTIONS(1204), - [sym_comment] = ACTIONS(3), - }, - [316] = { - [sym_identifier] = ACTIONS(1224), - [aux_sym_preproc_include_token1] = ACTIONS(1224), - [aux_sym_preproc_def_token1] = ACTIONS(1224), - [aux_sym_preproc_if_token1] = ACTIONS(1224), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1224), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1224), - [sym_preproc_directive] = ACTIONS(1224), - [anon_sym_LPAREN2] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(1226), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_DASH] = ACTIONS(1224), - [anon_sym_PLUS] = ACTIONS(1224), - [anon_sym_STAR] = ACTIONS(1226), - [anon_sym_AMP] = ACTIONS(1226), - [anon_sym_SEMI] = ACTIONS(1226), - [anon_sym_typedef] = ACTIONS(1224), - [anon_sym_extern] = ACTIONS(1224), - [anon_sym___attribute__] = ACTIONS(1224), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1226), - [anon_sym___declspec] = ACTIONS(1224), - [anon_sym___cdecl] = ACTIONS(1224), - [anon_sym___clrcall] = ACTIONS(1224), - [anon_sym___stdcall] = ACTIONS(1224), - [anon_sym___fastcall] = ACTIONS(1224), - [anon_sym___thiscall] = ACTIONS(1224), - [anon_sym___vectorcall] = ACTIONS(1224), - [anon_sym_LBRACE] = ACTIONS(1226), - [anon_sym_RBRACE] = ACTIONS(1226), - [anon_sym_signed] = ACTIONS(1224), - [anon_sym_unsigned] = ACTIONS(1224), - [anon_sym_long] = ACTIONS(1224), - [anon_sym_short] = ACTIONS(1224), - [anon_sym_static] = ACTIONS(1224), - [anon_sym_auto] = ACTIONS(1224), - [anon_sym_register] = ACTIONS(1224), - [anon_sym_inline] = ACTIONS(1224), - [anon_sym_thread_local] = ACTIONS(1224), - [anon_sym___thread] = ACTIONS(1224), - [anon_sym_const] = ACTIONS(1224), - [anon_sym_constexpr] = ACTIONS(1224), - [anon_sym_volatile] = ACTIONS(1224), - [anon_sym_restrict] = ACTIONS(1224), - [anon_sym___restrict__] = ACTIONS(1224), - [anon_sym__Atomic] = ACTIONS(1224), - [anon_sym__Noreturn] = ACTIONS(1224), - [anon_sym_noreturn] = ACTIONS(1224), - [sym_primitive_type] = ACTIONS(1224), - [anon_sym_enum] = ACTIONS(1224), - [anon_sym_struct] = ACTIONS(1224), - [anon_sym_union] = ACTIONS(1224), - [anon_sym_if] = ACTIONS(1224), - [anon_sym_else] = ACTIONS(1224), - [anon_sym_switch] = ACTIONS(1224), - [anon_sym_case] = ACTIONS(1224), - [anon_sym_default] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1224), - [anon_sym_do] = ACTIONS(1224), - [anon_sym_for] = ACTIONS(1224), - [anon_sym_return] = ACTIONS(1224), - [anon_sym_break] = ACTIONS(1224), - [anon_sym_continue] = ACTIONS(1224), - [anon_sym_goto] = ACTIONS(1224), - [anon_sym_DASH_DASH] = ACTIONS(1226), - [anon_sym_PLUS_PLUS] = ACTIONS(1226), - [anon_sym_sizeof] = ACTIONS(1224), - [anon_sym_offsetof] = ACTIONS(1224), - [anon_sym__Generic] = ACTIONS(1224), - [anon_sym_asm] = ACTIONS(1224), - [anon_sym___asm__] = ACTIONS(1224), - [sym_number_literal] = ACTIONS(1226), - [anon_sym_L_SQUOTE] = ACTIONS(1226), - [anon_sym_u_SQUOTE] = ACTIONS(1226), - [anon_sym_U_SQUOTE] = ACTIONS(1226), - [anon_sym_u8_SQUOTE] = ACTIONS(1226), - [anon_sym_SQUOTE] = ACTIONS(1226), - [anon_sym_L_DQUOTE] = ACTIONS(1226), - [anon_sym_u_DQUOTE] = ACTIONS(1226), - [anon_sym_U_DQUOTE] = ACTIONS(1226), - [anon_sym_u8_DQUOTE] = ACTIONS(1226), - [anon_sym_DQUOTE] = ACTIONS(1226), - [sym_true] = ACTIONS(1224), - [sym_false] = ACTIONS(1224), - [anon_sym_NULL] = ACTIONS(1224), - [anon_sym_nullptr] = ACTIONS(1224), + [308] = { + [ts_builtin_sym_end] = ACTIONS(1310), + [sym_identifier] = ACTIONS(1308), + [aux_sym_preproc_include_token1] = ACTIONS(1308), + [aux_sym_preproc_def_token1] = ACTIONS(1308), + [aux_sym_preproc_if_token1] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), + [sym_preproc_directive] = ACTIONS(1308), + [anon_sym_LPAREN2] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym___extension__] = ACTIONS(1308), + [anon_sym_typedef] = ACTIONS(1308), + [anon_sym_extern] = ACTIONS(1308), + [anon_sym___attribute__] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), + [anon_sym___declspec] = ACTIONS(1308), + [anon_sym___cdecl] = ACTIONS(1308), + [anon_sym___clrcall] = ACTIONS(1308), + [anon_sym___stdcall] = ACTIONS(1308), + [anon_sym___fastcall] = ACTIONS(1308), + [anon_sym___thiscall] = ACTIONS(1308), + [anon_sym___vectorcall] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_signed] = ACTIONS(1308), + [anon_sym_unsigned] = ACTIONS(1308), + [anon_sym_long] = ACTIONS(1308), + [anon_sym_short] = ACTIONS(1308), + [anon_sym_static] = ACTIONS(1308), + [anon_sym_auto] = ACTIONS(1308), + [anon_sym_register] = ACTIONS(1308), + [anon_sym_inline] = ACTIONS(1308), + [anon_sym___inline] = ACTIONS(1308), + [anon_sym___inline__] = ACTIONS(1308), + [anon_sym___forceinline] = ACTIONS(1308), + [anon_sym_thread_local] = ACTIONS(1308), + [anon_sym___thread] = ACTIONS(1308), + [anon_sym_const] = ACTIONS(1308), + [anon_sym_constexpr] = ACTIONS(1308), + [anon_sym_volatile] = ACTIONS(1308), + [anon_sym_restrict] = ACTIONS(1308), + [anon_sym___restrict__] = ACTIONS(1308), + [anon_sym__Atomic] = ACTIONS(1308), + [anon_sym__Noreturn] = ACTIONS(1308), + [anon_sym_noreturn] = ACTIONS(1308), + [sym_primitive_type] = ACTIONS(1308), + [anon_sym_enum] = ACTIONS(1308), + [anon_sym_struct] = ACTIONS(1308), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_if] = ACTIONS(1308), + [anon_sym_else] = ACTIONS(1308), + [anon_sym_switch] = ACTIONS(1308), + [anon_sym_case] = ACTIONS(1308), + [anon_sym_default] = ACTIONS(1308), + [anon_sym_while] = ACTIONS(1308), + [anon_sym_do] = ACTIONS(1308), + [anon_sym_for] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1308), + [anon_sym_break] = ACTIONS(1308), + [anon_sym_continue] = ACTIONS(1308), + [anon_sym_goto] = ACTIONS(1308), + [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_sizeof] = ACTIONS(1308), + [anon_sym___alignof__] = ACTIONS(1308), + [anon_sym___alignof] = ACTIONS(1308), + [anon_sym__alignof] = ACTIONS(1308), + [anon_sym_alignof] = ACTIONS(1308), + [anon_sym__Alignof] = ACTIONS(1308), + [anon_sym_offsetof] = ACTIONS(1308), + [anon_sym___builtin_va_arg] = ACTIONS(1308), + [anon_sym__Generic] = ACTIONS(1308), + [anon_sym_asm] = ACTIONS(1308), + [anon_sym___asm__] = ACTIONS(1308), + [sym_number_literal] = ACTIONS(1310), + [anon_sym_L_SQUOTE] = ACTIONS(1310), + [anon_sym_u_SQUOTE] = ACTIONS(1310), + [anon_sym_U_SQUOTE] = ACTIONS(1310), + [anon_sym_u8_SQUOTE] = ACTIONS(1310), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_L_DQUOTE] = ACTIONS(1310), + [anon_sym_u_DQUOTE] = ACTIONS(1310), + [anon_sym_U_DQUOTE] = ACTIONS(1310), + [anon_sym_u8_DQUOTE] = ACTIONS(1310), + [anon_sym_DQUOTE] = ACTIONS(1310), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [anon_sym_NULL] = ACTIONS(1308), + [anon_sym_nullptr] = ACTIONS(1308), [sym_comment] = ACTIONS(3), }, - [317] = { - [sym_identifier] = ACTIONS(1228), - [aux_sym_preproc_include_token1] = ACTIONS(1228), - [aux_sym_preproc_def_token1] = ACTIONS(1228), - [aux_sym_preproc_if_token1] = ACTIONS(1228), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1228), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1228), - [sym_preproc_directive] = ACTIONS(1228), - [anon_sym_LPAREN2] = ACTIONS(1230), - [anon_sym_BANG] = ACTIONS(1230), - [anon_sym_TILDE] = ACTIONS(1230), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1230), - [anon_sym_AMP] = ACTIONS(1230), - [anon_sym_SEMI] = ACTIONS(1230), - [anon_sym_typedef] = ACTIONS(1228), - [anon_sym_extern] = ACTIONS(1228), - [anon_sym___attribute__] = ACTIONS(1228), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1230), - [anon_sym___declspec] = ACTIONS(1228), - [anon_sym___cdecl] = ACTIONS(1228), - [anon_sym___clrcall] = ACTIONS(1228), - [anon_sym___stdcall] = ACTIONS(1228), - [anon_sym___fastcall] = ACTIONS(1228), - [anon_sym___thiscall] = ACTIONS(1228), - [anon_sym___vectorcall] = ACTIONS(1228), - [anon_sym_LBRACE] = ACTIONS(1230), - [anon_sym_RBRACE] = ACTIONS(1230), - [anon_sym_signed] = ACTIONS(1228), - [anon_sym_unsigned] = ACTIONS(1228), - [anon_sym_long] = ACTIONS(1228), - [anon_sym_short] = ACTIONS(1228), - [anon_sym_static] = ACTIONS(1228), - [anon_sym_auto] = ACTIONS(1228), - [anon_sym_register] = ACTIONS(1228), - [anon_sym_inline] = ACTIONS(1228), - [anon_sym_thread_local] = ACTIONS(1228), - [anon_sym___thread] = ACTIONS(1228), - [anon_sym_const] = ACTIONS(1228), - [anon_sym_constexpr] = ACTIONS(1228), - [anon_sym_volatile] = ACTIONS(1228), - [anon_sym_restrict] = ACTIONS(1228), - [anon_sym___restrict__] = ACTIONS(1228), - [anon_sym__Atomic] = ACTIONS(1228), - [anon_sym__Noreturn] = ACTIONS(1228), - [anon_sym_noreturn] = ACTIONS(1228), - [sym_primitive_type] = ACTIONS(1228), - [anon_sym_enum] = ACTIONS(1228), - [anon_sym_struct] = ACTIONS(1228), - [anon_sym_union] = ACTIONS(1228), - [anon_sym_if] = ACTIONS(1228), - [anon_sym_else] = ACTIONS(1228), - [anon_sym_switch] = ACTIONS(1228), - [anon_sym_case] = ACTIONS(1228), - [anon_sym_default] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(1228), - [anon_sym_for] = ACTIONS(1228), - [anon_sym_return] = ACTIONS(1228), - [anon_sym_break] = ACTIONS(1228), - [anon_sym_continue] = ACTIONS(1228), - [anon_sym_goto] = ACTIONS(1228), - [anon_sym_DASH_DASH] = ACTIONS(1230), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_sizeof] = ACTIONS(1228), - [anon_sym_offsetof] = ACTIONS(1228), - [anon_sym__Generic] = ACTIONS(1228), - [anon_sym_asm] = ACTIONS(1228), - [anon_sym___asm__] = ACTIONS(1228), - [sym_number_literal] = ACTIONS(1230), - [anon_sym_L_SQUOTE] = ACTIONS(1230), - [anon_sym_u_SQUOTE] = ACTIONS(1230), - [anon_sym_U_SQUOTE] = ACTIONS(1230), - [anon_sym_u8_SQUOTE] = ACTIONS(1230), - [anon_sym_SQUOTE] = ACTIONS(1230), - [anon_sym_L_DQUOTE] = ACTIONS(1230), - [anon_sym_u_DQUOTE] = ACTIONS(1230), - [anon_sym_U_DQUOTE] = ACTIONS(1230), - [anon_sym_u8_DQUOTE] = ACTIONS(1230), - [anon_sym_DQUOTE] = ACTIONS(1230), - [sym_true] = ACTIONS(1228), - [sym_false] = ACTIONS(1228), - [anon_sym_NULL] = ACTIONS(1228), - [anon_sym_nullptr] = ACTIONS(1228), + [309] = { + [sym_identifier] = ACTIONS(1300), + [aux_sym_preproc_include_token1] = ACTIONS(1300), + [aux_sym_preproc_def_token1] = ACTIONS(1300), + [aux_sym_preproc_if_token1] = ACTIONS(1300), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), + [sym_preproc_directive] = ACTIONS(1300), + [anon_sym_LPAREN2] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1302), + [anon_sym_TILDE] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym___extension__] = ACTIONS(1300), + [anon_sym_typedef] = ACTIONS(1300), + [anon_sym_extern] = ACTIONS(1300), + [anon_sym___attribute__] = ACTIONS(1300), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), + [anon_sym___declspec] = ACTIONS(1300), + [anon_sym___cdecl] = ACTIONS(1300), + [anon_sym___clrcall] = ACTIONS(1300), + [anon_sym___stdcall] = ACTIONS(1300), + [anon_sym___fastcall] = ACTIONS(1300), + [anon_sym___thiscall] = ACTIONS(1300), + [anon_sym___vectorcall] = ACTIONS(1300), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_RBRACE] = ACTIONS(1302), + [anon_sym_signed] = ACTIONS(1300), + [anon_sym_unsigned] = ACTIONS(1300), + [anon_sym_long] = ACTIONS(1300), + [anon_sym_short] = ACTIONS(1300), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_auto] = ACTIONS(1300), + [anon_sym_register] = ACTIONS(1300), + [anon_sym_inline] = ACTIONS(1300), + [anon_sym___inline] = ACTIONS(1300), + [anon_sym___inline__] = ACTIONS(1300), + [anon_sym___forceinline] = ACTIONS(1300), + [anon_sym_thread_local] = ACTIONS(1300), + [anon_sym___thread] = ACTIONS(1300), + [anon_sym_const] = ACTIONS(1300), + [anon_sym_constexpr] = ACTIONS(1300), + [anon_sym_volatile] = ACTIONS(1300), + [anon_sym_restrict] = ACTIONS(1300), + [anon_sym___restrict__] = ACTIONS(1300), + [anon_sym__Atomic] = ACTIONS(1300), + [anon_sym__Noreturn] = ACTIONS(1300), + [anon_sym_noreturn] = ACTIONS(1300), + [sym_primitive_type] = ACTIONS(1300), + [anon_sym_enum] = ACTIONS(1300), + [anon_sym_struct] = ACTIONS(1300), + [anon_sym_union] = ACTIONS(1300), + [anon_sym_if] = ACTIONS(1300), + [anon_sym_else] = ACTIONS(1300), + [anon_sym_switch] = ACTIONS(1300), + [anon_sym_case] = ACTIONS(1300), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_while] = ACTIONS(1300), + [anon_sym_do] = ACTIONS(1300), + [anon_sym_for] = ACTIONS(1300), + [anon_sym_return] = ACTIONS(1300), + [anon_sym_break] = ACTIONS(1300), + [anon_sym_continue] = ACTIONS(1300), + [anon_sym_goto] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_sizeof] = ACTIONS(1300), + [anon_sym___alignof__] = ACTIONS(1300), + [anon_sym___alignof] = ACTIONS(1300), + [anon_sym__alignof] = ACTIONS(1300), + [anon_sym_alignof] = ACTIONS(1300), + [anon_sym__Alignof] = ACTIONS(1300), + [anon_sym_offsetof] = ACTIONS(1300), + [anon_sym___builtin_va_arg] = ACTIONS(1300), + [anon_sym__Generic] = ACTIONS(1300), + [anon_sym_asm] = ACTIONS(1300), + [anon_sym___asm__] = ACTIONS(1300), + [sym_number_literal] = ACTIONS(1302), + [anon_sym_L_SQUOTE] = ACTIONS(1302), + [anon_sym_u_SQUOTE] = ACTIONS(1302), + [anon_sym_U_SQUOTE] = ACTIONS(1302), + [anon_sym_u8_SQUOTE] = ACTIONS(1302), + [anon_sym_SQUOTE] = ACTIONS(1302), + [anon_sym_L_DQUOTE] = ACTIONS(1302), + [anon_sym_u_DQUOTE] = ACTIONS(1302), + [anon_sym_U_DQUOTE] = ACTIONS(1302), + [anon_sym_u8_DQUOTE] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1302), + [sym_true] = ACTIONS(1300), + [sym_false] = ACTIONS(1300), + [anon_sym_NULL] = ACTIONS(1300), + [anon_sym_nullptr] = ACTIONS(1300), [sym_comment] = ACTIONS(3), }, - [318] = { - [ts_builtin_sym_end] = ACTIONS(1346), - [sym_identifier] = ACTIONS(1344), - [aux_sym_preproc_include_token1] = ACTIONS(1344), - [aux_sym_preproc_def_token1] = ACTIONS(1344), - [aux_sym_preproc_if_token1] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), - [sym_preproc_directive] = ACTIONS(1344), - [anon_sym_LPAREN2] = ACTIONS(1346), - [anon_sym_BANG] = ACTIONS(1346), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1344), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1344), - [anon_sym_extern] = ACTIONS(1344), - [anon_sym___attribute__] = ACTIONS(1344), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), - [anon_sym___declspec] = ACTIONS(1344), - [anon_sym___cdecl] = ACTIONS(1344), - [anon_sym___clrcall] = ACTIONS(1344), - [anon_sym___stdcall] = ACTIONS(1344), - [anon_sym___fastcall] = ACTIONS(1344), - [anon_sym___thiscall] = ACTIONS(1344), - [anon_sym___vectorcall] = ACTIONS(1344), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_signed] = ACTIONS(1344), - [anon_sym_unsigned] = ACTIONS(1344), - [anon_sym_long] = ACTIONS(1344), - [anon_sym_short] = ACTIONS(1344), - [anon_sym_static] = ACTIONS(1344), - [anon_sym_auto] = ACTIONS(1344), - [anon_sym_register] = ACTIONS(1344), - [anon_sym_inline] = ACTIONS(1344), - [anon_sym_thread_local] = ACTIONS(1344), - [anon_sym___thread] = ACTIONS(1344), - [anon_sym_const] = ACTIONS(1344), - [anon_sym_constexpr] = ACTIONS(1344), - [anon_sym_volatile] = ACTIONS(1344), - [anon_sym_restrict] = ACTIONS(1344), - [anon_sym___restrict__] = ACTIONS(1344), - [anon_sym__Atomic] = ACTIONS(1344), - [anon_sym__Noreturn] = ACTIONS(1344), - [anon_sym_noreturn] = ACTIONS(1344), - [sym_primitive_type] = ACTIONS(1344), - [anon_sym_enum] = ACTIONS(1344), - [anon_sym_struct] = ACTIONS(1344), - [anon_sym_union] = ACTIONS(1344), - [anon_sym_if] = ACTIONS(1344), - [anon_sym_else] = ACTIONS(1344), - [anon_sym_switch] = ACTIONS(1344), - [anon_sym_case] = ACTIONS(1344), - [anon_sym_default] = ACTIONS(1344), - [anon_sym_while] = ACTIONS(1344), - [anon_sym_do] = ACTIONS(1344), - [anon_sym_for] = ACTIONS(1344), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1344), - [anon_sym_continue] = ACTIONS(1344), - [anon_sym_goto] = ACTIONS(1344), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_sizeof] = ACTIONS(1344), - [anon_sym_offsetof] = ACTIONS(1344), - [anon_sym__Generic] = ACTIONS(1344), - [anon_sym_asm] = ACTIONS(1344), - [anon_sym___asm__] = ACTIONS(1344), - [sym_number_literal] = ACTIONS(1346), - [anon_sym_L_SQUOTE] = ACTIONS(1346), - [anon_sym_u_SQUOTE] = ACTIONS(1346), - [anon_sym_U_SQUOTE] = ACTIONS(1346), - [anon_sym_u8_SQUOTE] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1346), - [anon_sym_L_DQUOTE] = ACTIONS(1346), - [anon_sym_u_DQUOTE] = ACTIONS(1346), - [anon_sym_U_DQUOTE] = ACTIONS(1346), - [anon_sym_u8_DQUOTE] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym_true] = ACTIONS(1344), - [sym_false] = ACTIONS(1344), - [anon_sym_NULL] = ACTIONS(1344), - [anon_sym_nullptr] = ACTIONS(1344), - [sym_comment] = ACTIONS(3), - }, - [319] = { - [sym_identifier] = ACTIONS(1232), - [aux_sym_preproc_include_token1] = ACTIONS(1232), - [aux_sym_preproc_def_token1] = ACTIONS(1232), - [aux_sym_preproc_if_token1] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1232), - [sym_preproc_directive] = ACTIONS(1232), - [anon_sym_LPAREN2] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1234), - [anon_sym_TILDE] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_PLUS] = ACTIONS(1232), - [anon_sym_STAR] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1232), - [anon_sym_extern] = ACTIONS(1232), - [anon_sym___attribute__] = ACTIONS(1232), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1234), - [anon_sym___declspec] = ACTIONS(1232), - [anon_sym___cdecl] = ACTIONS(1232), - [anon_sym___clrcall] = ACTIONS(1232), - [anon_sym___stdcall] = ACTIONS(1232), - [anon_sym___fastcall] = ACTIONS(1232), - [anon_sym___thiscall] = ACTIONS(1232), - [anon_sym___vectorcall] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_RBRACE] = ACTIONS(1234), - [anon_sym_signed] = ACTIONS(1232), - [anon_sym_unsigned] = ACTIONS(1232), - [anon_sym_long] = ACTIONS(1232), - [anon_sym_short] = ACTIONS(1232), - [anon_sym_static] = ACTIONS(1232), - [anon_sym_auto] = ACTIONS(1232), - [anon_sym_register] = ACTIONS(1232), - [anon_sym_inline] = ACTIONS(1232), - [anon_sym_thread_local] = ACTIONS(1232), - [anon_sym___thread] = ACTIONS(1232), - [anon_sym_const] = ACTIONS(1232), - [anon_sym_constexpr] = ACTIONS(1232), - [anon_sym_volatile] = ACTIONS(1232), - [anon_sym_restrict] = ACTIONS(1232), - [anon_sym___restrict__] = ACTIONS(1232), - [anon_sym__Atomic] = ACTIONS(1232), - [anon_sym__Noreturn] = ACTIONS(1232), - [anon_sym_noreturn] = ACTIONS(1232), - [sym_primitive_type] = ACTIONS(1232), - [anon_sym_enum] = ACTIONS(1232), - [anon_sym_struct] = ACTIONS(1232), - [anon_sym_union] = ACTIONS(1232), - [anon_sym_if] = ACTIONS(1232), - [anon_sym_else] = ACTIONS(1232), - [anon_sym_switch] = ACTIONS(1232), - [anon_sym_case] = ACTIONS(1232), - [anon_sym_default] = ACTIONS(1232), - [anon_sym_while] = ACTIONS(1232), - [anon_sym_do] = ACTIONS(1232), - [anon_sym_for] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1232), - [anon_sym_break] = ACTIONS(1232), - [anon_sym_continue] = ACTIONS(1232), - [anon_sym_goto] = ACTIONS(1232), - [anon_sym_DASH_DASH] = ACTIONS(1234), - [anon_sym_PLUS_PLUS] = ACTIONS(1234), - [anon_sym_sizeof] = ACTIONS(1232), - [anon_sym_offsetof] = ACTIONS(1232), - [anon_sym__Generic] = ACTIONS(1232), - [anon_sym_asm] = ACTIONS(1232), - [anon_sym___asm__] = ACTIONS(1232), - [sym_number_literal] = ACTIONS(1234), - [anon_sym_L_SQUOTE] = ACTIONS(1234), - [anon_sym_u_SQUOTE] = ACTIONS(1234), - [anon_sym_U_SQUOTE] = ACTIONS(1234), - [anon_sym_u8_SQUOTE] = ACTIONS(1234), - [anon_sym_SQUOTE] = ACTIONS(1234), - [anon_sym_L_DQUOTE] = ACTIONS(1234), - [anon_sym_u_DQUOTE] = ACTIONS(1234), - [anon_sym_U_DQUOTE] = ACTIONS(1234), - [anon_sym_u8_DQUOTE] = ACTIONS(1234), - [anon_sym_DQUOTE] = ACTIONS(1234), - [sym_true] = ACTIONS(1232), - [sym_false] = ACTIONS(1232), - [anon_sym_NULL] = ACTIONS(1232), - [anon_sym_nullptr] = ACTIONS(1232), + [310] = { + [sym_identifier] = ACTIONS(1304), + [aux_sym_preproc_include_token1] = ACTIONS(1304), + [aux_sym_preproc_def_token1] = ACTIONS(1304), + [aux_sym_preproc_if_token1] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), + [sym_preproc_directive] = ACTIONS(1304), + [anon_sym_LPAREN2] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_TILDE] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_PLUS] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1306), + [anon_sym___extension__] = ACTIONS(1304), + [anon_sym_typedef] = ACTIONS(1304), + [anon_sym_extern] = ACTIONS(1304), + [anon_sym___attribute__] = ACTIONS(1304), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), + [anon_sym___declspec] = ACTIONS(1304), + [anon_sym___cdecl] = ACTIONS(1304), + [anon_sym___clrcall] = ACTIONS(1304), + [anon_sym___stdcall] = ACTIONS(1304), + [anon_sym___fastcall] = ACTIONS(1304), + [anon_sym___thiscall] = ACTIONS(1304), + [anon_sym___vectorcall] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(1306), + [anon_sym_signed] = ACTIONS(1304), + [anon_sym_unsigned] = ACTIONS(1304), + [anon_sym_long] = ACTIONS(1304), + [anon_sym_short] = ACTIONS(1304), + [anon_sym_static] = ACTIONS(1304), + [anon_sym_auto] = ACTIONS(1304), + [anon_sym_register] = ACTIONS(1304), + [anon_sym_inline] = ACTIONS(1304), + [anon_sym___inline] = ACTIONS(1304), + [anon_sym___inline__] = ACTIONS(1304), + [anon_sym___forceinline] = ACTIONS(1304), + [anon_sym_thread_local] = ACTIONS(1304), + [anon_sym___thread] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_constexpr] = ACTIONS(1304), + [anon_sym_volatile] = ACTIONS(1304), + [anon_sym_restrict] = ACTIONS(1304), + [anon_sym___restrict__] = ACTIONS(1304), + [anon_sym__Atomic] = ACTIONS(1304), + [anon_sym__Noreturn] = ACTIONS(1304), + [anon_sym_noreturn] = ACTIONS(1304), + [sym_primitive_type] = ACTIONS(1304), + [anon_sym_enum] = ACTIONS(1304), + [anon_sym_struct] = ACTIONS(1304), + [anon_sym_union] = ACTIONS(1304), + [anon_sym_if] = ACTIONS(1304), + [anon_sym_else] = ACTIONS(1304), + [anon_sym_switch] = ACTIONS(1304), + [anon_sym_case] = ACTIONS(1304), + [anon_sym_default] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(1304), + [anon_sym_do] = ACTIONS(1304), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_return] = ACTIONS(1304), + [anon_sym_break] = ACTIONS(1304), + [anon_sym_continue] = ACTIONS(1304), + [anon_sym_goto] = ACTIONS(1304), + [anon_sym_DASH_DASH] = ACTIONS(1306), + [anon_sym_PLUS_PLUS] = ACTIONS(1306), + [anon_sym_sizeof] = ACTIONS(1304), + [anon_sym___alignof__] = ACTIONS(1304), + [anon_sym___alignof] = ACTIONS(1304), + [anon_sym__alignof] = ACTIONS(1304), + [anon_sym_alignof] = ACTIONS(1304), + [anon_sym__Alignof] = ACTIONS(1304), + [anon_sym_offsetof] = ACTIONS(1304), + [anon_sym___builtin_va_arg] = ACTIONS(1304), + [anon_sym__Generic] = ACTIONS(1304), + [anon_sym_asm] = ACTIONS(1304), + [anon_sym___asm__] = ACTIONS(1304), + [sym_number_literal] = ACTIONS(1306), + [anon_sym_L_SQUOTE] = ACTIONS(1306), + [anon_sym_u_SQUOTE] = ACTIONS(1306), + [anon_sym_U_SQUOTE] = ACTIONS(1306), + [anon_sym_u8_SQUOTE] = ACTIONS(1306), + [anon_sym_SQUOTE] = ACTIONS(1306), + [anon_sym_L_DQUOTE] = ACTIONS(1306), + [anon_sym_u_DQUOTE] = ACTIONS(1306), + [anon_sym_U_DQUOTE] = ACTIONS(1306), + [anon_sym_u8_DQUOTE] = ACTIONS(1306), + [anon_sym_DQUOTE] = ACTIONS(1306), + [sym_true] = ACTIONS(1304), + [sym_false] = ACTIONS(1304), + [anon_sym_NULL] = ACTIONS(1304), + [anon_sym_nullptr] = ACTIONS(1304), [sym_comment] = ACTIONS(3), }, - [320] = { - [sym_identifier] = ACTIONS(1240), - [aux_sym_preproc_include_token1] = ACTIONS(1240), - [aux_sym_preproc_def_token1] = ACTIONS(1240), - [aux_sym_preproc_if_token1] = ACTIONS(1240), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1240), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1240), - [sym_preproc_directive] = ACTIONS(1240), - [anon_sym_LPAREN2] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1240), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_typedef] = ACTIONS(1240), - [anon_sym_extern] = ACTIONS(1240), - [anon_sym___attribute__] = ACTIONS(1240), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1242), - [anon_sym___declspec] = ACTIONS(1240), - [anon_sym___cdecl] = ACTIONS(1240), - [anon_sym___clrcall] = ACTIONS(1240), - [anon_sym___stdcall] = ACTIONS(1240), - [anon_sym___fastcall] = ACTIONS(1240), - [anon_sym___thiscall] = ACTIONS(1240), - [anon_sym___vectorcall] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_RBRACE] = ACTIONS(1242), - [anon_sym_signed] = ACTIONS(1240), - [anon_sym_unsigned] = ACTIONS(1240), - [anon_sym_long] = ACTIONS(1240), - [anon_sym_short] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1240), - [anon_sym_auto] = ACTIONS(1240), - [anon_sym_register] = ACTIONS(1240), - [anon_sym_inline] = ACTIONS(1240), - [anon_sym_thread_local] = ACTIONS(1240), - [anon_sym___thread] = ACTIONS(1240), - [anon_sym_const] = ACTIONS(1240), - [anon_sym_constexpr] = ACTIONS(1240), - [anon_sym_volatile] = ACTIONS(1240), - [anon_sym_restrict] = ACTIONS(1240), - [anon_sym___restrict__] = ACTIONS(1240), - [anon_sym__Atomic] = ACTIONS(1240), - [anon_sym__Noreturn] = ACTIONS(1240), - [anon_sym_noreturn] = ACTIONS(1240), - [sym_primitive_type] = ACTIONS(1240), - [anon_sym_enum] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_else] = ACTIONS(1240), - [anon_sym_switch] = ACTIONS(1240), - [anon_sym_case] = ACTIONS(1240), - [anon_sym_default] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1240), - [anon_sym_do] = ACTIONS(1240), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1240), - [anon_sym_goto] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1242), - [anon_sym_sizeof] = ACTIONS(1240), - [anon_sym_offsetof] = ACTIONS(1240), - [anon_sym__Generic] = ACTIONS(1240), - [anon_sym_asm] = ACTIONS(1240), - [anon_sym___asm__] = ACTIONS(1240), - [sym_number_literal] = ACTIONS(1242), - [anon_sym_L_SQUOTE] = ACTIONS(1242), - [anon_sym_u_SQUOTE] = ACTIONS(1242), - [anon_sym_U_SQUOTE] = ACTIONS(1242), - [anon_sym_u8_SQUOTE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1242), - [anon_sym_L_DQUOTE] = ACTIONS(1242), - [anon_sym_u_DQUOTE] = ACTIONS(1242), - [anon_sym_U_DQUOTE] = ACTIONS(1242), - [anon_sym_u8_DQUOTE] = ACTIONS(1242), - [anon_sym_DQUOTE] = ACTIONS(1242), - [sym_true] = ACTIONS(1240), - [sym_false] = ACTIONS(1240), - [anon_sym_NULL] = ACTIONS(1240), - [anon_sym_nullptr] = ACTIONS(1240), + [311] = { + [sym_identifier] = ACTIONS(1308), + [aux_sym_preproc_include_token1] = ACTIONS(1308), + [aux_sym_preproc_def_token1] = ACTIONS(1308), + [aux_sym_preproc_if_token1] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), + [sym_preproc_directive] = ACTIONS(1308), + [anon_sym_LPAREN2] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym___extension__] = ACTIONS(1308), + [anon_sym_typedef] = ACTIONS(1308), + [anon_sym_extern] = ACTIONS(1308), + [anon_sym___attribute__] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), + [anon_sym___declspec] = ACTIONS(1308), + [anon_sym___cdecl] = ACTIONS(1308), + [anon_sym___clrcall] = ACTIONS(1308), + [anon_sym___stdcall] = ACTIONS(1308), + [anon_sym___fastcall] = ACTIONS(1308), + [anon_sym___thiscall] = ACTIONS(1308), + [anon_sym___vectorcall] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_RBRACE] = ACTIONS(1310), + [anon_sym_signed] = ACTIONS(1308), + [anon_sym_unsigned] = ACTIONS(1308), + [anon_sym_long] = ACTIONS(1308), + [anon_sym_short] = ACTIONS(1308), + [anon_sym_static] = ACTIONS(1308), + [anon_sym_auto] = ACTIONS(1308), + [anon_sym_register] = ACTIONS(1308), + [anon_sym_inline] = ACTIONS(1308), + [anon_sym___inline] = ACTIONS(1308), + [anon_sym___inline__] = ACTIONS(1308), + [anon_sym___forceinline] = ACTIONS(1308), + [anon_sym_thread_local] = ACTIONS(1308), + [anon_sym___thread] = ACTIONS(1308), + [anon_sym_const] = ACTIONS(1308), + [anon_sym_constexpr] = ACTIONS(1308), + [anon_sym_volatile] = ACTIONS(1308), + [anon_sym_restrict] = ACTIONS(1308), + [anon_sym___restrict__] = ACTIONS(1308), + [anon_sym__Atomic] = ACTIONS(1308), + [anon_sym__Noreturn] = ACTIONS(1308), + [anon_sym_noreturn] = ACTIONS(1308), + [sym_primitive_type] = ACTIONS(1308), + [anon_sym_enum] = ACTIONS(1308), + [anon_sym_struct] = ACTIONS(1308), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_if] = ACTIONS(1308), + [anon_sym_else] = ACTIONS(1308), + [anon_sym_switch] = ACTIONS(1308), + [anon_sym_case] = ACTIONS(1308), + [anon_sym_default] = ACTIONS(1308), + [anon_sym_while] = ACTIONS(1308), + [anon_sym_do] = ACTIONS(1308), + [anon_sym_for] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1308), + [anon_sym_break] = ACTIONS(1308), + [anon_sym_continue] = ACTIONS(1308), + [anon_sym_goto] = ACTIONS(1308), + [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_sizeof] = ACTIONS(1308), + [anon_sym___alignof__] = ACTIONS(1308), + [anon_sym___alignof] = ACTIONS(1308), + [anon_sym__alignof] = ACTIONS(1308), + [anon_sym_alignof] = ACTIONS(1308), + [anon_sym__Alignof] = ACTIONS(1308), + [anon_sym_offsetof] = ACTIONS(1308), + [anon_sym___builtin_va_arg] = ACTIONS(1308), + [anon_sym__Generic] = ACTIONS(1308), + [anon_sym_asm] = ACTIONS(1308), + [anon_sym___asm__] = ACTIONS(1308), + [sym_number_literal] = ACTIONS(1310), + [anon_sym_L_SQUOTE] = ACTIONS(1310), + [anon_sym_u_SQUOTE] = ACTIONS(1310), + [anon_sym_U_SQUOTE] = ACTIONS(1310), + [anon_sym_u8_SQUOTE] = ACTIONS(1310), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_L_DQUOTE] = ACTIONS(1310), + [anon_sym_u_DQUOTE] = ACTIONS(1310), + [anon_sym_U_DQUOTE] = ACTIONS(1310), + [anon_sym_u8_DQUOTE] = ACTIONS(1310), + [anon_sym_DQUOTE] = ACTIONS(1310), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [anon_sym_NULL] = ACTIONS(1308), + [anon_sym_nullptr] = ACTIONS(1308), [sym_comment] = ACTIONS(3), }, - [321] = { - [sym_identifier] = ACTIONS(1244), - [aux_sym_preproc_include_token1] = ACTIONS(1244), - [aux_sym_preproc_def_token1] = ACTIONS(1244), - [aux_sym_preproc_if_token1] = ACTIONS(1244), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1244), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1244), - [sym_preproc_directive] = ACTIONS(1244), - [anon_sym_LPAREN2] = ACTIONS(1246), - [anon_sym_BANG] = ACTIONS(1246), - [anon_sym_TILDE] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1246), - [anon_sym_SEMI] = ACTIONS(1246), - [anon_sym_typedef] = ACTIONS(1244), - [anon_sym_extern] = ACTIONS(1244), - [anon_sym___attribute__] = ACTIONS(1244), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1246), - [anon_sym___declspec] = ACTIONS(1244), - [anon_sym___cdecl] = ACTIONS(1244), - [anon_sym___clrcall] = ACTIONS(1244), - [anon_sym___stdcall] = ACTIONS(1244), - [anon_sym___fastcall] = ACTIONS(1244), - [anon_sym___thiscall] = ACTIONS(1244), - [anon_sym___vectorcall] = ACTIONS(1244), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_RBRACE] = ACTIONS(1246), - [anon_sym_signed] = ACTIONS(1244), - [anon_sym_unsigned] = ACTIONS(1244), - [anon_sym_long] = ACTIONS(1244), - [anon_sym_short] = ACTIONS(1244), - [anon_sym_static] = ACTIONS(1244), - [anon_sym_auto] = ACTIONS(1244), - [anon_sym_register] = ACTIONS(1244), - [anon_sym_inline] = ACTIONS(1244), - [anon_sym_thread_local] = ACTIONS(1244), - [anon_sym___thread] = ACTIONS(1244), - [anon_sym_const] = ACTIONS(1244), - [anon_sym_constexpr] = ACTIONS(1244), - [anon_sym_volatile] = ACTIONS(1244), - [anon_sym_restrict] = ACTIONS(1244), - [anon_sym___restrict__] = ACTIONS(1244), - [anon_sym__Atomic] = ACTIONS(1244), - [anon_sym__Noreturn] = ACTIONS(1244), - [anon_sym_noreturn] = ACTIONS(1244), - [sym_primitive_type] = ACTIONS(1244), - [anon_sym_enum] = ACTIONS(1244), - [anon_sym_struct] = ACTIONS(1244), - [anon_sym_union] = ACTIONS(1244), - [anon_sym_if] = ACTIONS(1244), - [anon_sym_else] = ACTIONS(1244), - [anon_sym_switch] = ACTIONS(1244), - [anon_sym_case] = ACTIONS(1244), - [anon_sym_default] = ACTIONS(1244), - [anon_sym_while] = ACTIONS(1244), - [anon_sym_do] = ACTIONS(1244), - [anon_sym_for] = ACTIONS(1244), - [anon_sym_return] = ACTIONS(1244), - [anon_sym_break] = ACTIONS(1244), - [anon_sym_continue] = ACTIONS(1244), - [anon_sym_goto] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1246), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_sizeof] = ACTIONS(1244), - [anon_sym_offsetof] = ACTIONS(1244), - [anon_sym__Generic] = ACTIONS(1244), - [anon_sym_asm] = ACTIONS(1244), - [anon_sym___asm__] = ACTIONS(1244), - [sym_number_literal] = ACTIONS(1246), - [anon_sym_L_SQUOTE] = ACTIONS(1246), - [anon_sym_u_SQUOTE] = ACTIONS(1246), - [anon_sym_U_SQUOTE] = ACTIONS(1246), - [anon_sym_u8_SQUOTE] = ACTIONS(1246), - [anon_sym_SQUOTE] = ACTIONS(1246), - [anon_sym_L_DQUOTE] = ACTIONS(1246), - [anon_sym_u_DQUOTE] = ACTIONS(1246), - [anon_sym_U_DQUOTE] = ACTIONS(1246), - [anon_sym_u8_DQUOTE] = ACTIONS(1246), - [anon_sym_DQUOTE] = ACTIONS(1246), - [sym_true] = ACTIONS(1244), - [sym_false] = ACTIONS(1244), - [anon_sym_NULL] = ACTIONS(1244), - [anon_sym_nullptr] = ACTIONS(1244), + [312] = { + [sym_identifier] = ACTIONS(1308), + [aux_sym_preproc_include_token1] = ACTIONS(1308), + [aux_sym_preproc_def_token1] = ACTIONS(1308), + [aux_sym_preproc_if_token1] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), + [sym_preproc_directive] = ACTIONS(1308), + [anon_sym_LPAREN2] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym___extension__] = ACTIONS(1308), + [anon_sym_typedef] = ACTIONS(1308), + [anon_sym_extern] = ACTIONS(1308), + [anon_sym___attribute__] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), + [anon_sym___declspec] = ACTIONS(1308), + [anon_sym___cdecl] = ACTIONS(1308), + [anon_sym___clrcall] = ACTIONS(1308), + [anon_sym___stdcall] = ACTIONS(1308), + [anon_sym___fastcall] = ACTIONS(1308), + [anon_sym___thiscall] = ACTIONS(1308), + [anon_sym___vectorcall] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_RBRACE] = ACTIONS(1310), + [anon_sym_signed] = ACTIONS(1308), + [anon_sym_unsigned] = ACTIONS(1308), + [anon_sym_long] = ACTIONS(1308), + [anon_sym_short] = ACTIONS(1308), + [anon_sym_static] = ACTIONS(1308), + [anon_sym_auto] = ACTIONS(1308), + [anon_sym_register] = ACTIONS(1308), + [anon_sym_inline] = ACTIONS(1308), + [anon_sym___inline] = ACTIONS(1308), + [anon_sym___inline__] = ACTIONS(1308), + [anon_sym___forceinline] = ACTIONS(1308), + [anon_sym_thread_local] = ACTIONS(1308), + [anon_sym___thread] = ACTIONS(1308), + [anon_sym_const] = ACTIONS(1308), + [anon_sym_constexpr] = ACTIONS(1308), + [anon_sym_volatile] = ACTIONS(1308), + [anon_sym_restrict] = ACTIONS(1308), + [anon_sym___restrict__] = ACTIONS(1308), + [anon_sym__Atomic] = ACTIONS(1308), + [anon_sym__Noreturn] = ACTIONS(1308), + [anon_sym_noreturn] = ACTIONS(1308), + [sym_primitive_type] = ACTIONS(1308), + [anon_sym_enum] = ACTIONS(1308), + [anon_sym_struct] = ACTIONS(1308), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_if] = ACTIONS(1308), + [anon_sym_else] = ACTIONS(1308), + [anon_sym_switch] = ACTIONS(1308), + [anon_sym_case] = ACTIONS(1308), + [anon_sym_default] = ACTIONS(1308), + [anon_sym_while] = ACTIONS(1308), + [anon_sym_do] = ACTIONS(1308), + [anon_sym_for] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1308), + [anon_sym_break] = ACTIONS(1308), + [anon_sym_continue] = ACTIONS(1308), + [anon_sym_goto] = ACTIONS(1308), + [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_sizeof] = ACTIONS(1308), + [anon_sym___alignof__] = ACTIONS(1308), + [anon_sym___alignof] = ACTIONS(1308), + [anon_sym__alignof] = ACTIONS(1308), + [anon_sym_alignof] = ACTIONS(1308), + [anon_sym__Alignof] = ACTIONS(1308), + [anon_sym_offsetof] = ACTIONS(1308), + [anon_sym___builtin_va_arg] = ACTIONS(1308), + [anon_sym__Generic] = ACTIONS(1308), + [anon_sym_asm] = ACTIONS(1308), + [anon_sym___asm__] = ACTIONS(1308), + [sym_number_literal] = ACTIONS(1310), + [anon_sym_L_SQUOTE] = ACTIONS(1310), + [anon_sym_u_SQUOTE] = ACTIONS(1310), + [anon_sym_U_SQUOTE] = ACTIONS(1310), + [anon_sym_u8_SQUOTE] = ACTIONS(1310), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_L_DQUOTE] = ACTIONS(1310), + [anon_sym_u_DQUOTE] = ACTIONS(1310), + [anon_sym_U_DQUOTE] = ACTIONS(1310), + [anon_sym_u8_DQUOTE] = ACTIONS(1310), + [anon_sym_DQUOTE] = ACTIONS(1310), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [anon_sym_NULL] = ACTIONS(1308), + [anon_sym_nullptr] = ACTIONS(1308), [sym_comment] = ACTIONS(3), }, - [322] = { - [sym_identifier] = ACTIONS(1248), - [aux_sym_preproc_include_token1] = ACTIONS(1248), - [aux_sym_preproc_def_token1] = ACTIONS(1248), - [aux_sym_preproc_if_token1] = ACTIONS(1248), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1248), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1248), - [sym_preproc_directive] = ACTIONS(1248), - [anon_sym_LPAREN2] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1250), - [anon_sym_TILDE] = ACTIONS(1250), - [anon_sym_DASH] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1248), - [anon_sym_STAR] = ACTIONS(1250), - [anon_sym_AMP] = ACTIONS(1250), - [anon_sym_SEMI] = ACTIONS(1250), - [anon_sym_typedef] = ACTIONS(1248), - [anon_sym_extern] = ACTIONS(1248), - [anon_sym___attribute__] = ACTIONS(1248), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1250), - [anon_sym___declspec] = ACTIONS(1248), - [anon_sym___cdecl] = ACTIONS(1248), - [anon_sym___clrcall] = ACTIONS(1248), - [anon_sym___stdcall] = ACTIONS(1248), - [anon_sym___fastcall] = ACTIONS(1248), - [anon_sym___thiscall] = ACTIONS(1248), - [anon_sym___vectorcall] = ACTIONS(1248), - [anon_sym_LBRACE] = ACTIONS(1250), - [anon_sym_RBRACE] = ACTIONS(1250), - [anon_sym_signed] = ACTIONS(1248), - [anon_sym_unsigned] = ACTIONS(1248), - [anon_sym_long] = ACTIONS(1248), - [anon_sym_short] = ACTIONS(1248), - [anon_sym_static] = ACTIONS(1248), - [anon_sym_auto] = ACTIONS(1248), - [anon_sym_register] = ACTIONS(1248), - [anon_sym_inline] = ACTIONS(1248), - [anon_sym_thread_local] = ACTIONS(1248), - [anon_sym___thread] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1248), - [anon_sym_constexpr] = ACTIONS(1248), - [anon_sym_volatile] = ACTIONS(1248), - [anon_sym_restrict] = ACTIONS(1248), - [anon_sym___restrict__] = ACTIONS(1248), - [anon_sym__Atomic] = ACTIONS(1248), - [anon_sym__Noreturn] = ACTIONS(1248), - [anon_sym_noreturn] = ACTIONS(1248), - [sym_primitive_type] = ACTIONS(1248), - [anon_sym_enum] = ACTIONS(1248), - [anon_sym_struct] = ACTIONS(1248), - [anon_sym_union] = ACTIONS(1248), - [anon_sym_if] = ACTIONS(1248), - [anon_sym_else] = ACTIONS(1248), - [anon_sym_switch] = ACTIONS(1248), - [anon_sym_case] = ACTIONS(1248), - [anon_sym_default] = ACTIONS(1248), - [anon_sym_while] = ACTIONS(1248), - [anon_sym_do] = ACTIONS(1248), - [anon_sym_for] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1248), - [anon_sym_break] = ACTIONS(1248), - [anon_sym_continue] = ACTIONS(1248), - [anon_sym_goto] = ACTIONS(1248), - [anon_sym_DASH_DASH] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1250), - [anon_sym_sizeof] = ACTIONS(1248), - [anon_sym_offsetof] = ACTIONS(1248), - [anon_sym__Generic] = ACTIONS(1248), - [anon_sym_asm] = ACTIONS(1248), - [anon_sym___asm__] = ACTIONS(1248), - [sym_number_literal] = ACTIONS(1250), - [anon_sym_L_SQUOTE] = ACTIONS(1250), - [anon_sym_u_SQUOTE] = ACTIONS(1250), - [anon_sym_U_SQUOTE] = ACTIONS(1250), - [anon_sym_u8_SQUOTE] = ACTIONS(1250), - [anon_sym_SQUOTE] = ACTIONS(1250), - [anon_sym_L_DQUOTE] = ACTIONS(1250), - [anon_sym_u_DQUOTE] = ACTIONS(1250), - [anon_sym_U_DQUOTE] = ACTIONS(1250), - [anon_sym_u8_DQUOTE] = ACTIONS(1250), - [anon_sym_DQUOTE] = ACTIONS(1250), - [sym_true] = ACTIONS(1248), - [sym_false] = ACTIONS(1248), - [anon_sym_NULL] = ACTIONS(1248), - [anon_sym_nullptr] = ACTIONS(1248), + [313] = { + [sym_identifier] = ACTIONS(1336), + [aux_sym_preproc_include_token1] = ACTIONS(1336), + [aux_sym_preproc_def_token1] = ACTIONS(1336), + [aux_sym_preproc_if_token1] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), + [sym_preproc_directive] = ACTIONS(1336), + [anon_sym_LPAREN2] = ACTIONS(1338), + [anon_sym_BANG] = ACTIONS(1338), + [anon_sym_TILDE] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1338), + [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym___extension__] = ACTIONS(1336), + [anon_sym_typedef] = ACTIONS(1336), + [anon_sym_extern] = ACTIONS(1336), + [anon_sym___attribute__] = ACTIONS(1336), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), + [anon_sym___declspec] = ACTIONS(1336), + [anon_sym___cdecl] = ACTIONS(1336), + [anon_sym___clrcall] = ACTIONS(1336), + [anon_sym___stdcall] = ACTIONS(1336), + [anon_sym___fastcall] = ACTIONS(1336), + [anon_sym___thiscall] = ACTIONS(1336), + [anon_sym___vectorcall] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1338), + [anon_sym_RBRACE] = ACTIONS(1338), + [anon_sym_signed] = ACTIONS(1336), + [anon_sym_unsigned] = ACTIONS(1336), + [anon_sym_long] = ACTIONS(1336), + [anon_sym_short] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(1336), + [anon_sym_auto] = ACTIONS(1336), + [anon_sym_register] = ACTIONS(1336), + [anon_sym_inline] = ACTIONS(1336), + [anon_sym___inline] = ACTIONS(1336), + [anon_sym___inline__] = ACTIONS(1336), + [anon_sym___forceinline] = ACTIONS(1336), + [anon_sym_thread_local] = ACTIONS(1336), + [anon_sym___thread] = ACTIONS(1336), + [anon_sym_const] = ACTIONS(1336), + [anon_sym_constexpr] = ACTIONS(1336), + [anon_sym_volatile] = ACTIONS(1336), + [anon_sym_restrict] = ACTIONS(1336), + [anon_sym___restrict__] = ACTIONS(1336), + [anon_sym__Atomic] = ACTIONS(1336), + [anon_sym__Noreturn] = ACTIONS(1336), + [anon_sym_noreturn] = ACTIONS(1336), + [sym_primitive_type] = ACTIONS(1336), + [anon_sym_enum] = ACTIONS(1336), + [anon_sym_struct] = ACTIONS(1336), + [anon_sym_union] = ACTIONS(1336), + [anon_sym_if] = ACTIONS(1336), + [anon_sym_else] = ACTIONS(1336), + [anon_sym_switch] = ACTIONS(1336), + [anon_sym_case] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1336), + [anon_sym_while] = ACTIONS(1336), + [anon_sym_do] = ACTIONS(1336), + [anon_sym_for] = ACTIONS(1336), + [anon_sym_return] = ACTIONS(1336), + [anon_sym_break] = ACTIONS(1336), + [anon_sym_continue] = ACTIONS(1336), + [anon_sym_goto] = ACTIONS(1336), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_sizeof] = ACTIONS(1336), + [anon_sym___alignof__] = ACTIONS(1336), + [anon_sym___alignof] = ACTIONS(1336), + [anon_sym__alignof] = ACTIONS(1336), + [anon_sym_alignof] = ACTIONS(1336), + [anon_sym__Alignof] = ACTIONS(1336), + [anon_sym_offsetof] = ACTIONS(1336), + [anon_sym___builtin_va_arg] = ACTIONS(1336), + [anon_sym__Generic] = ACTIONS(1336), + [anon_sym_asm] = ACTIONS(1336), + [anon_sym___asm__] = ACTIONS(1336), + [sym_number_literal] = ACTIONS(1338), + [anon_sym_L_SQUOTE] = ACTIONS(1338), + [anon_sym_u_SQUOTE] = ACTIONS(1338), + [anon_sym_U_SQUOTE] = ACTIONS(1338), + [anon_sym_u8_SQUOTE] = ACTIONS(1338), + [anon_sym_SQUOTE] = ACTIONS(1338), + [anon_sym_L_DQUOTE] = ACTIONS(1338), + [anon_sym_u_DQUOTE] = ACTIONS(1338), + [anon_sym_U_DQUOTE] = ACTIONS(1338), + [anon_sym_u8_DQUOTE] = ACTIONS(1338), + [anon_sym_DQUOTE] = ACTIONS(1338), + [sym_true] = ACTIONS(1336), + [sym_false] = ACTIONS(1336), + [anon_sym_NULL] = ACTIONS(1336), + [anon_sym_nullptr] = ACTIONS(1336), [sym_comment] = ACTIONS(3), }, - [323] = { - [sym_identifier] = ACTIONS(1256), - [aux_sym_preproc_include_token1] = ACTIONS(1256), - [aux_sym_preproc_def_token1] = ACTIONS(1256), - [aux_sym_preproc_if_token1] = ACTIONS(1256), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1256), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1256), - [sym_preproc_directive] = ACTIONS(1256), - [anon_sym_LPAREN2] = ACTIONS(1258), - [anon_sym_BANG] = ACTIONS(1258), - [anon_sym_TILDE] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym_typedef] = ACTIONS(1256), - [anon_sym_extern] = ACTIONS(1256), - [anon_sym___attribute__] = ACTIONS(1256), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1258), - [anon_sym___declspec] = ACTIONS(1256), - [anon_sym___cdecl] = ACTIONS(1256), - [anon_sym___clrcall] = ACTIONS(1256), - [anon_sym___stdcall] = ACTIONS(1256), - [anon_sym___fastcall] = ACTIONS(1256), - [anon_sym___thiscall] = ACTIONS(1256), - [anon_sym___vectorcall] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1258), - [anon_sym_RBRACE] = ACTIONS(1258), - [anon_sym_signed] = ACTIONS(1256), - [anon_sym_unsigned] = ACTIONS(1256), - [anon_sym_long] = ACTIONS(1256), - [anon_sym_short] = ACTIONS(1256), - [anon_sym_static] = ACTIONS(1256), - [anon_sym_auto] = ACTIONS(1256), - [anon_sym_register] = ACTIONS(1256), - [anon_sym_inline] = ACTIONS(1256), - [anon_sym_thread_local] = ACTIONS(1256), - [anon_sym___thread] = ACTIONS(1256), - [anon_sym_const] = ACTIONS(1256), - [anon_sym_constexpr] = ACTIONS(1256), - [anon_sym_volatile] = ACTIONS(1256), - [anon_sym_restrict] = ACTIONS(1256), - [anon_sym___restrict__] = ACTIONS(1256), - [anon_sym__Atomic] = ACTIONS(1256), - [anon_sym__Noreturn] = ACTIONS(1256), - [anon_sym_noreturn] = ACTIONS(1256), - [sym_primitive_type] = ACTIONS(1256), - [anon_sym_enum] = ACTIONS(1256), - [anon_sym_struct] = ACTIONS(1256), - [anon_sym_union] = ACTIONS(1256), - [anon_sym_if] = ACTIONS(1256), - [anon_sym_else] = ACTIONS(1256), - [anon_sym_switch] = ACTIONS(1256), - [anon_sym_case] = ACTIONS(1256), - [anon_sym_default] = ACTIONS(1256), - [anon_sym_while] = ACTIONS(1256), - [anon_sym_do] = ACTIONS(1256), - [anon_sym_for] = ACTIONS(1256), - [anon_sym_return] = ACTIONS(1256), - [anon_sym_break] = ACTIONS(1256), - [anon_sym_continue] = ACTIONS(1256), - [anon_sym_goto] = ACTIONS(1256), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_sizeof] = ACTIONS(1256), - [anon_sym_offsetof] = ACTIONS(1256), - [anon_sym__Generic] = ACTIONS(1256), - [anon_sym_asm] = ACTIONS(1256), - [anon_sym___asm__] = ACTIONS(1256), - [sym_number_literal] = ACTIONS(1258), - [anon_sym_L_SQUOTE] = ACTIONS(1258), - [anon_sym_u_SQUOTE] = ACTIONS(1258), - [anon_sym_U_SQUOTE] = ACTIONS(1258), - [anon_sym_u8_SQUOTE] = ACTIONS(1258), - [anon_sym_SQUOTE] = ACTIONS(1258), - [anon_sym_L_DQUOTE] = ACTIONS(1258), - [anon_sym_u_DQUOTE] = ACTIONS(1258), - [anon_sym_U_DQUOTE] = ACTIONS(1258), - [anon_sym_u8_DQUOTE] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(1258), - [sym_true] = ACTIONS(1256), - [sym_false] = ACTIONS(1256), - [anon_sym_NULL] = ACTIONS(1256), - [anon_sym_nullptr] = ACTIONS(1256), + [314] = { + [sym_identifier] = ACTIONS(1352), + [aux_sym_preproc_include_token1] = ACTIONS(1352), + [aux_sym_preproc_def_token1] = ACTIONS(1352), + [aux_sym_preproc_if_token1] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), + [sym_preproc_directive] = ACTIONS(1352), + [anon_sym_LPAREN2] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_PLUS] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym___extension__] = ACTIONS(1352), + [anon_sym_typedef] = ACTIONS(1352), + [anon_sym_extern] = ACTIONS(1352), + [anon_sym___attribute__] = ACTIONS(1352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), + [anon_sym___declspec] = ACTIONS(1352), + [anon_sym___cdecl] = ACTIONS(1352), + [anon_sym___clrcall] = ACTIONS(1352), + [anon_sym___stdcall] = ACTIONS(1352), + [anon_sym___fastcall] = ACTIONS(1352), + [anon_sym___thiscall] = ACTIONS(1352), + [anon_sym___vectorcall] = ACTIONS(1352), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_RBRACE] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_long] = ACTIONS(1352), + [anon_sym_short] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_auto] = ACTIONS(1352), + [anon_sym_register] = ACTIONS(1352), + [anon_sym_inline] = ACTIONS(1352), + [anon_sym___inline] = ACTIONS(1352), + [anon_sym___inline__] = ACTIONS(1352), + [anon_sym___forceinline] = ACTIONS(1352), + [anon_sym_thread_local] = ACTIONS(1352), + [anon_sym___thread] = ACTIONS(1352), + [anon_sym_const] = ACTIONS(1352), + [anon_sym_constexpr] = ACTIONS(1352), + [anon_sym_volatile] = ACTIONS(1352), + [anon_sym_restrict] = ACTIONS(1352), + [anon_sym___restrict__] = ACTIONS(1352), + [anon_sym__Atomic] = ACTIONS(1352), + [anon_sym__Noreturn] = ACTIONS(1352), + [anon_sym_noreturn] = ACTIONS(1352), + [sym_primitive_type] = ACTIONS(1352), + [anon_sym_enum] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1352), + [anon_sym_union] = ACTIONS(1352), + [anon_sym_if] = ACTIONS(1352), + [anon_sym_else] = ACTIONS(1352), + [anon_sym_switch] = ACTIONS(1352), + [anon_sym_case] = ACTIONS(1352), + [anon_sym_default] = ACTIONS(1352), + [anon_sym_while] = ACTIONS(1352), + [anon_sym_do] = ACTIONS(1352), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(1352), + [anon_sym_break] = ACTIONS(1352), + [anon_sym_continue] = ACTIONS(1352), + [anon_sym_goto] = ACTIONS(1352), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_sizeof] = ACTIONS(1352), + [anon_sym___alignof__] = ACTIONS(1352), + [anon_sym___alignof] = ACTIONS(1352), + [anon_sym__alignof] = ACTIONS(1352), + [anon_sym_alignof] = ACTIONS(1352), + [anon_sym__Alignof] = ACTIONS(1352), + [anon_sym_offsetof] = ACTIONS(1352), + [anon_sym___builtin_va_arg] = ACTIONS(1352), + [anon_sym__Generic] = ACTIONS(1352), + [anon_sym_asm] = ACTIONS(1352), + [anon_sym___asm__] = ACTIONS(1352), + [sym_number_literal] = ACTIONS(1354), + [anon_sym_L_SQUOTE] = ACTIONS(1354), + [anon_sym_u_SQUOTE] = ACTIONS(1354), + [anon_sym_U_SQUOTE] = ACTIONS(1354), + [anon_sym_u8_SQUOTE] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [anon_sym_L_DQUOTE] = ACTIONS(1354), + [anon_sym_u_DQUOTE] = ACTIONS(1354), + [anon_sym_U_DQUOTE] = ACTIONS(1354), + [anon_sym_u8_DQUOTE] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1354), + [sym_true] = ACTIONS(1352), + [sym_false] = ACTIONS(1352), + [anon_sym_NULL] = ACTIONS(1352), + [anon_sym_nullptr] = ACTIONS(1352), [sym_comment] = ACTIONS(3), }, - [324] = { - [sym_identifier] = ACTIONS(1260), - [aux_sym_preproc_include_token1] = ACTIONS(1260), - [aux_sym_preproc_def_token1] = ACTIONS(1260), - [aux_sym_preproc_if_token1] = ACTIONS(1260), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1260), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1260), - [sym_preproc_directive] = ACTIONS(1260), - [anon_sym_LPAREN2] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1262), - [anon_sym_TILDE] = ACTIONS(1262), - [anon_sym_DASH] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1260), - [anon_sym_STAR] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(1262), - [anon_sym_SEMI] = ACTIONS(1262), - [anon_sym_typedef] = ACTIONS(1260), - [anon_sym_extern] = ACTIONS(1260), - [anon_sym___attribute__] = ACTIONS(1260), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1262), - [anon_sym___declspec] = ACTIONS(1260), - [anon_sym___cdecl] = ACTIONS(1260), - [anon_sym___clrcall] = ACTIONS(1260), - [anon_sym___stdcall] = ACTIONS(1260), - [anon_sym___fastcall] = ACTIONS(1260), - [anon_sym___thiscall] = ACTIONS(1260), - [anon_sym___vectorcall] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_RBRACE] = ACTIONS(1262), - [anon_sym_signed] = ACTIONS(1260), - [anon_sym_unsigned] = ACTIONS(1260), - [anon_sym_long] = ACTIONS(1260), - [anon_sym_short] = ACTIONS(1260), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_auto] = ACTIONS(1260), - [anon_sym_register] = ACTIONS(1260), - [anon_sym_inline] = ACTIONS(1260), - [anon_sym_thread_local] = ACTIONS(1260), - [anon_sym___thread] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1260), - [anon_sym_constexpr] = ACTIONS(1260), - [anon_sym_volatile] = ACTIONS(1260), - [anon_sym_restrict] = ACTIONS(1260), - [anon_sym___restrict__] = ACTIONS(1260), - [anon_sym__Atomic] = ACTIONS(1260), - [anon_sym__Noreturn] = ACTIONS(1260), - [anon_sym_noreturn] = ACTIONS(1260), - [sym_primitive_type] = ACTIONS(1260), - [anon_sym_enum] = ACTIONS(1260), - [anon_sym_struct] = ACTIONS(1260), - [anon_sym_union] = ACTIONS(1260), - [anon_sym_if] = ACTIONS(1260), - [anon_sym_else] = ACTIONS(1260), - [anon_sym_switch] = ACTIONS(1260), - [anon_sym_case] = ACTIONS(1260), - [anon_sym_default] = ACTIONS(1260), - [anon_sym_while] = ACTIONS(1260), - [anon_sym_do] = ACTIONS(1260), - [anon_sym_for] = ACTIONS(1260), - [anon_sym_return] = ACTIONS(1260), - [anon_sym_break] = ACTIONS(1260), - [anon_sym_continue] = ACTIONS(1260), - [anon_sym_goto] = ACTIONS(1260), - [anon_sym_DASH_DASH] = ACTIONS(1262), - [anon_sym_PLUS_PLUS] = ACTIONS(1262), - [anon_sym_sizeof] = ACTIONS(1260), - [anon_sym_offsetof] = ACTIONS(1260), - [anon_sym__Generic] = ACTIONS(1260), - [anon_sym_asm] = ACTIONS(1260), - [anon_sym___asm__] = ACTIONS(1260), - [sym_number_literal] = ACTIONS(1262), - [anon_sym_L_SQUOTE] = ACTIONS(1262), - [anon_sym_u_SQUOTE] = ACTIONS(1262), - [anon_sym_U_SQUOTE] = ACTIONS(1262), - [anon_sym_u8_SQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1262), - [anon_sym_L_DQUOTE] = ACTIONS(1262), - [anon_sym_u_DQUOTE] = ACTIONS(1262), - [anon_sym_U_DQUOTE] = ACTIONS(1262), - [anon_sym_u8_DQUOTE] = ACTIONS(1262), - [anon_sym_DQUOTE] = ACTIONS(1262), - [sym_true] = ACTIONS(1260), - [sym_false] = ACTIONS(1260), - [anon_sym_NULL] = ACTIONS(1260), - [anon_sym_nullptr] = ACTIONS(1260), + [315] = { + [sym_identifier] = ACTIONS(1364), + [aux_sym_preproc_include_token1] = ACTIONS(1364), + [aux_sym_preproc_def_token1] = ACTIONS(1364), + [aux_sym_preproc_if_token1] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), + [sym_preproc_directive] = ACTIONS(1364), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1366), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1364), + [anon_sym_STAR] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym___extension__] = ACTIONS(1364), + [anon_sym_typedef] = ACTIONS(1364), + [anon_sym_extern] = ACTIONS(1364), + [anon_sym___attribute__] = ACTIONS(1364), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1366), + [anon_sym___declspec] = ACTIONS(1364), + [anon_sym___cdecl] = ACTIONS(1364), + [anon_sym___clrcall] = ACTIONS(1364), + [anon_sym___stdcall] = ACTIONS(1364), + [anon_sym___fastcall] = ACTIONS(1364), + [anon_sym___thiscall] = ACTIONS(1364), + [anon_sym___vectorcall] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_RBRACE] = ACTIONS(1366), + [anon_sym_signed] = ACTIONS(1364), + [anon_sym_unsigned] = ACTIONS(1364), + [anon_sym_long] = ACTIONS(1364), + [anon_sym_short] = ACTIONS(1364), + [anon_sym_static] = ACTIONS(1364), + [anon_sym_auto] = ACTIONS(1364), + [anon_sym_register] = ACTIONS(1364), + [anon_sym_inline] = ACTIONS(1364), + [anon_sym___inline] = ACTIONS(1364), + [anon_sym___inline__] = ACTIONS(1364), + [anon_sym___forceinline] = ACTIONS(1364), + [anon_sym_thread_local] = ACTIONS(1364), + [anon_sym___thread] = ACTIONS(1364), + [anon_sym_const] = ACTIONS(1364), + [anon_sym_constexpr] = ACTIONS(1364), + [anon_sym_volatile] = ACTIONS(1364), + [anon_sym_restrict] = ACTIONS(1364), + [anon_sym___restrict__] = ACTIONS(1364), + [anon_sym__Atomic] = ACTIONS(1364), + [anon_sym__Noreturn] = ACTIONS(1364), + [anon_sym_noreturn] = ACTIONS(1364), + [sym_primitive_type] = ACTIONS(1364), + [anon_sym_enum] = ACTIONS(1364), + [anon_sym_struct] = ACTIONS(1364), + [anon_sym_union] = ACTIONS(1364), + [anon_sym_if] = ACTIONS(1364), + [anon_sym_else] = ACTIONS(1364), + [anon_sym_switch] = ACTIONS(1364), + [anon_sym_case] = ACTIONS(1364), + [anon_sym_default] = ACTIONS(1364), + [anon_sym_while] = ACTIONS(1364), + [anon_sym_do] = ACTIONS(1364), + [anon_sym_for] = ACTIONS(1364), + [anon_sym_return] = ACTIONS(1364), + [anon_sym_break] = ACTIONS(1364), + [anon_sym_continue] = ACTIONS(1364), + [anon_sym_goto] = ACTIONS(1364), + [anon_sym_DASH_DASH] = ACTIONS(1366), + [anon_sym_PLUS_PLUS] = ACTIONS(1366), + [anon_sym_sizeof] = ACTIONS(1364), + [anon_sym___alignof__] = ACTIONS(1364), + [anon_sym___alignof] = ACTIONS(1364), + [anon_sym__alignof] = ACTIONS(1364), + [anon_sym_alignof] = ACTIONS(1364), + [anon_sym__Alignof] = ACTIONS(1364), + [anon_sym_offsetof] = ACTIONS(1364), + [anon_sym___builtin_va_arg] = ACTIONS(1364), + [anon_sym__Generic] = ACTIONS(1364), + [anon_sym_asm] = ACTIONS(1364), + [anon_sym___asm__] = ACTIONS(1364), + [sym_number_literal] = ACTIONS(1366), + [anon_sym_L_SQUOTE] = ACTIONS(1366), + [anon_sym_u_SQUOTE] = ACTIONS(1366), + [anon_sym_U_SQUOTE] = ACTIONS(1366), + [anon_sym_u8_SQUOTE] = ACTIONS(1366), + [anon_sym_SQUOTE] = ACTIONS(1366), + [anon_sym_L_DQUOTE] = ACTIONS(1366), + [anon_sym_u_DQUOTE] = ACTIONS(1366), + [anon_sym_U_DQUOTE] = ACTIONS(1366), + [anon_sym_u8_DQUOTE] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [sym_true] = ACTIONS(1364), + [sym_false] = ACTIONS(1364), + [anon_sym_NULL] = ACTIONS(1364), + [anon_sym_nullptr] = ACTIONS(1364), [sym_comment] = ACTIONS(3), }, - [325] = { - [sym_identifier] = ACTIONS(1264), - [aux_sym_preproc_include_token1] = ACTIONS(1264), - [aux_sym_preproc_def_token1] = ACTIONS(1264), - [aux_sym_preproc_if_token1] = ACTIONS(1264), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1264), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1264), - [sym_preproc_directive] = ACTIONS(1264), - [anon_sym_LPAREN2] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1264), - [anon_sym_STAR] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_SEMI] = ACTIONS(1266), - [anon_sym_typedef] = ACTIONS(1264), - [anon_sym_extern] = ACTIONS(1264), - [anon_sym___attribute__] = ACTIONS(1264), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1266), - [anon_sym___declspec] = ACTIONS(1264), - [anon_sym___cdecl] = ACTIONS(1264), - [anon_sym___clrcall] = ACTIONS(1264), - [anon_sym___stdcall] = ACTIONS(1264), - [anon_sym___fastcall] = ACTIONS(1264), - [anon_sym___thiscall] = ACTIONS(1264), - [anon_sym___vectorcall] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_RBRACE] = ACTIONS(1266), - [anon_sym_signed] = ACTIONS(1264), - [anon_sym_unsigned] = ACTIONS(1264), - [anon_sym_long] = ACTIONS(1264), - [anon_sym_short] = ACTIONS(1264), - [anon_sym_static] = ACTIONS(1264), - [anon_sym_auto] = ACTIONS(1264), - [anon_sym_register] = ACTIONS(1264), - [anon_sym_inline] = ACTIONS(1264), - [anon_sym_thread_local] = ACTIONS(1264), - [anon_sym___thread] = ACTIONS(1264), - [anon_sym_const] = ACTIONS(1264), - [anon_sym_constexpr] = ACTIONS(1264), - [anon_sym_volatile] = ACTIONS(1264), - [anon_sym_restrict] = ACTIONS(1264), - [anon_sym___restrict__] = ACTIONS(1264), - [anon_sym__Atomic] = ACTIONS(1264), - [anon_sym__Noreturn] = ACTIONS(1264), - [anon_sym_noreturn] = ACTIONS(1264), - [sym_primitive_type] = ACTIONS(1264), - [anon_sym_enum] = ACTIONS(1264), - [anon_sym_struct] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1264), - [anon_sym_else] = ACTIONS(1264), - [anon_sym_switch] = ACTIONS(1264), - [anon_sym_case] = ACTIONS(1264), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_while] = ACTIONS(1264), - [anon_sym_do] = ACTIONS(1264), - [anon_sym_for] = ACTIONS(1264), - [anon_sym_return] = ACTIONS(1264), - [anon_sym_break] = ACTIONS(1264), - [anon_sym_continue] = ACTIONS(1264), - [anon_sym_goto] = ACTIONS(1264), - [anon_sym_DASH_DASH] = ACTIONS(1266), - [anon_sym_PLUS_PLUS] = ACTIONS(1266), - [anon_sym_sizeof] = ACTIONS(1264), - [anon_sym_offsetof] = ACTIONS(1264), - [anon_sym__Generic] = ACTIONS(1264), - [anon_sym_asm] = ACTIONS(1264), - [anon_sym___asm__] = ACTIONS(1264), - [sym_number_literal] = ACTIONS(1266), - [anon_sym_L_SQUOTE] = ACTIONS(1266), - [anon_sym_u_SQUOTE] = ACTIONS(1266), - [anon_sym_U_SQUOTE] = ACTIONS(1266), - [anon_sym_u8_SQUOTE] = ACTIONS(1266), - [anon_sym_SQUOTE] = ACTIONS(1266), - [anon_sym_L_DQUOTE] = ACTIONS(1266), - [anon_sym_u_DQUOTE] = ACTIONS(1266), - [anon_sym_U_DQUOTE] = ACTIONS(1266), - [anon_sym_u8_DQUOTE] = ACTIONS(1266), - [anon_sym_DQUOTE] = ACTIONS(1266), - [sym_true] = ACTIONS(1264), - [sym_false] = ACTIONS(1264), - [anon_sym_NULL] = ACTIONS(1264), - [anon_sym_nullptr] = ACTIONS(1264), + [316] = { + [sym_identifier] = ACTIONS(1368), + [aux_sym_preproc_include_token1] = ACTIONS(1368), + [aux_sym_preproc_def_token1] = ACTIONS(1368), + [aux_sym_preproc_if_token1] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1368), + [sym_preproc_directive] = ACTIONS(1368), + [anon_sym_LPAREN2] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1370), + [anon_sym___extension__] = ACTIONS(1368), + [anon_sym_typedef] = ACTIONS(1368), + [anon_sym_extern] = ACTIONS(1368), + [anon_sym___attribute__] = ACTIONS(1368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1370), + [anon_sym___declspec] = ACTIONS(1368), + [anon_sym___cdecl] = ACTIONS(1368), + [anon_sym___clrcall] = ACTIONS(1368), + [anon_sym___stdcall] = ACTIONS(1368), + [anon_sym___fastcall] = ACTIONS(1368), + [anon_sym___thiscall] = ACTIONS(1368), + [anon_sym___vectorcall] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1370), + [anon_sym_signed] = ACTIONS(1368), + [anon_sym_unsigned] = ACTIONS(1368), + [anon_sym_long] = ACTIONS(1368), + [anon_sym_short] = ACTIONS(1368), + [anon_sym_static] = ACTIONS(1368), + [anon_sym_auto] = ACTIONS(1368), + [anon_sym_register] = ACTIONS(1368), + [anon_sym_inline] = ACTIONS(1368), + [anon_sym___inline] = ACTIONS(1368), + [anon_sym___inline__] = ACTIONS(1368), + [anon_sym___forceinline] = ACTIONS(1368), + [anon_sym_thread_local] = ACTIONS(1368), + [anon_sym___thread] = ACTIONS(1368), + [anon_sym_const] = ACTIONS(1368), + [anon_sym_constexpr] = ACTIONS(1368), + [anon_sym_volatile] = ACTIONS(1368), + [anon_sym_restrict] = ACTIONS(1368), + [anon_sym___restrict__] = ACTIONS(1368), + [anon_sym__Atomic] = ACTIONS(1368), + [anon_sym__Noreturn] = ACTIONS(1368), + [anon_sym_noreturn] = ACTIONS(1368), + [sym_primitive_type] = ACTIONS(1368), + [anon_sym_enum] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1368), + [anon_sym_union] = ACTIONS(1368), + [anon_sym_if] = ACTIONS(1368), + [anon_sym_else] = ACTIONS(1368), + [anon_sym_switch] = ACTIONS(1368), + [anon_sym_case] = ACTIONS(1368), + [anon_sym_default] = ACTIONS(1368), + [anon_sym_while] = ACTIONS(1368), + [anon_sym_do] = ACTIONS(1368), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1368), + [anon_sym_break] = ACTIONS(1368), + [anon_sym_continue] = ACTIONS(1368), + [anon_sym_goto] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1370), + [anon_sym_sizeof] = ACTIONS(1368), + [anon_sym___alignof__] = ACTIONS(1368), + [anon_sym___alignof] = ACTIONS(1368), + [anon_sym__alignof] = ACTIONS(1368), + [anon_sym_alignof] = ACTIONS(1368), + [anon_sym__Alignof] = ACTIONS(1368), + [anon_sym_offsetof] = ACTIONS(1368), + [anon_sym___builtin_va_arg] = ACTIONS(1368), + [anon_sym__Generic] = ACTIONS(1368), + [anon_sym_asm] = ACTIONS(1368), + [anon_sym___asm__] = ACTIONS(1368), + [sym_number_literal] = ACTIONS(1370), + [anon_sym_L_SQUOTE] = ACTIONS(1370), + [anon_sym_u_SQUOTE] = ACTIONS(1370), + [anon_sym_U_SQUOTE] = ACTIONS(1370), + [anon_sym_u8_SQUOTE] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1370), + [anon_sym_L_DQUOTE] = ACTIONS(1370), + [anon_sym_u_DQUOTE] = ACTIONS(1370), + [anon_sym_U_DQUOTE] = ACTIONS(1370), + [anon_sym_u8_DQUOTE] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [sym_true] = ACTIONS(1368), + [sym_false] = ACTIONS(1368), + [anon_sym_NULL] = ACTIONS(1368), + [anon_sym_nullptr] = ACTIONS(1368), [sym_comment] = ACTIONS(3), }, - [326] = { + [317] = { + [ts_builtin_sym_end] = ACTIONS(1270), [sym_identifier] = ACTIONS(1268), [aux_sym_preproc_include_token1] = ACTIONS(1268), [aux_sym_preproc_def_token1] = ACTIONS(1268), @@ -48806,6 +52166,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1270), [anon_sym_AMP] = ACTIONS(1270), [anon_sym_SEMI] = ACTIONS(1270), + [anon_sym___extension__] = ACTIONS(1268), [anon_sym_typedef] = ACTIONS(1268), [anon_sym_extern] = ACTIONS(1268), [anon_sym___attribute__] = ACTIONS(1268), @@ -48818,7 +52179,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1268), [anon_sym___vectorcall] = ACTIONS(1268), [anon_sym_LBRACE] = ACTIONS(1270), - [anon_sym_RBRACE] = ACTIONS(1270), [anon_sym_signed] = ACTIONS(1268), [anon_sym_unsigned] = ACTIONS(1268), [anon_sym_long] = ACTIONS(1268), @@ -48827,6 +52187,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1268), [anon_sym_register] = ACTIONS(1268), [anon_sym_inline] = ACTIONS(1268), + [anon_sym___inline] = ACTIONS(1268), + [anon_sym___inline__] = ACTIONS(1268), + [anon_sym___forceinline] = ACTIONS(1268), [anon_sym_thread_local] = ACTIONS(1268), [anon_sym___thread] = ACTIONS(1268), [anon_sym_const] = ACTIONS(1268), @@ -48856,7 +52219,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1270), [anon_sym_PLUS_PLUS] = ACTIONS(1270), [anon_sym_sizeof] = ACTIONS(1268), + [anon_sym___alignof__] = ACTIONS(1268), + [anon_sym___alignof] = ACTIONS(1268), + [anon_sym__alignof] = ACTIONS(1268), + [anon_sym_alignof] = ACTIONS(1268), + [anon_sym__Alignof] = ACTIONS(1268), [anon_sym_offsetof] = ACTIONS(1268), + [anon_sym___builtin_va_arg] = ACTIONS(1268), [anon_sym__Generic] = ACTIONS(1268), [anon_sym_asm] = ACTIONS(1268), [anon_sym___asm__] = ACTIONS(1268), @@ -48877,1225 +52246,1074 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1268), [sym_comment] = ACTIONS(3), }, - [327] = { - [sym_identifier] = ACTIONS(1272), - [aux_sym_preproc_include_token1] = ACTIONS(1272), - [aux_sym_preproc_def_token1] = ACTIONS(1272), - [aux_sym_preproc_if_token1] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1272), - [sym_preproc_directive] = ACTIONS(1272), - [anon_sym_LPAREN2] = ACTIONS(1274), - [anon_sym_BANG] = ACTIONS(1274), - [anon_sym_TILDE] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1274), - [anon_sym_SEMI] = ACTIONS(1274), - [anon_sym_typedef] = ACTIONS(1272), - [anon_sym_extern] = ACTIONS(1272), - [anon_sym___attribute__] = ACTIONS(1272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1274), - [anon_sym___declspec] = ACTIONS(1272), - [anon_sym___cdecl] = ACTIONS(1272), - [anon_sym___clrcall] = ACTIONS(1272), - [anon_sym___stdcall] = ACTIONS(1272), - [anon_sym___fastcall] = ACTIONS(1272), - [anon_sym___thiscall] = ACTIONS(1272), - [anon_sym___vectorcall] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_RBRACE] = ACTIONS(1274), - [anon_sym_signed] = ACTIONS(1272), - [anon_sym_unsigned] = ACTIONS(1272), - [anon_sym_long] = ACTIONS(1272), - [anon_sym_short] = ACTIONS(1272), - [anon_sym_static] = ACTIONS(1272), - [anon_sym_auto] = ACTIONS(1272), - [anon_sym_register] = ACTIONS(1272), - [anon_sym_inline] = ACTIONS(1272), - [anon_sym_thread_local] = ACTIONS(1272), - [anon_sym___thread] = ACTIONS(1272), - [anon_sym_const] = ACTIONS(1272), - [anon_sym_constexpr] = ACTIONS(1272), - [anon_sym_volatile] = ACTIONS(1272), - [anon_sym_restrict] = ACTIONS(1272), - [anon_sym___restrict__] = ACTIONS(1272), - [anon_sym__Atomic] = ACTIONS(1272), - [anon_sym__Noreturn] = ACTIONS(1272), - [anon_sym_noreturn] = ACTIONS(1272), - [sym_primitive_type] = ACTIONS(1272), - [anon_sym_enum] = ACTIONS(1272), - [anon_sym_struct] = ACTIONS(1272), - [anon_sym_union] = ACTIONS(1272), - [anon_sym_if] = ACTIONS(1272), - [anon_sym_else] = ACTIONS(1272), - [anon_sym_switch] = ACTIONS(1272), - [anon_sym_case] = ACTIONS(1272), - [anon_sym_default] = ACTIONS(1272), - [anon_sym_while] = ACTIONS(1272), - [anon_sym_do] = ACTIONS(1272), - [anon_sym_for] = ACTIONS(1272), - [anon_sym_return] = ACTIONS(1272), - [anon_sym_break] = ACTIONS(1272), - [anon_sym_continue] = ACTIONS(1272), - [anon_sym_goto] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_sizeof] = ACTIONS(1272), - [anon_sym_offsetof] = ACTIONS(1272), - [anon_sym__Generic] = ACTIONS(1272), - [anon_sym_asm] = ACTIONS(1272), - [anon_sym___asm__] = ACTIONS(1272), - [sym_number_literal] = ACTIONS(1274), - [anon_sym_L_SQUOTE] = ACTIONS(1274), - [anon_sym_u_SQUOTE] = ACTIONS(1274), - [anon_sym_U_SQUOTE] = ACTIONS(1274), - [anon_sym_u8_SQUOTE] = ACTIONS(1274), - [anon_sym_SQUOTE] = ACTIONS(1274), - [anon_sym_L_DQUOTE] = ACTIONS(1274), - [anon_sym_u_DQUOTE] = ACTIONS(1274), - [anon_sym_U_DQUOTE] = ACTIONS(1274), - [anon_sym_u8_DQUOTE] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [anon_sym_NULL] = ACTIONS(1272), - [anon_sym_nullptr] = ACTIONS(1272), - [sym_comment] = ACTIONS(3), - }, - [328] = { - [sym_identifier] = ACTIONS(1196), - [aux_sym_preproc_include_token1] = ACTIONS(1196), - [aux_sym_preproc_def_token1] = ACTIONS(1196), - [aux_sym_preproc_if_token1] = ACTIONS(1196), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1196), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1196), - [sym_preproc_directive] = ACTIONS(1196), - [anon_sym_LPAREN2] = ACTIONS(1198), - [anon_sym_BANG] = ACTIONS(1198), - [anon_sym_TILDE] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_SEMI] = ACTIONS(1198), - [anon_sym_typedef] = ACTIONS(1196), - [anon_sym_extern] = ACTIONS(1196), - [anon_sym___attribute__] = ACTIONS(1196), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1198), - [anon_sym___declspec] = ACTIONS(1196), - [anon_sym___cdecl] = ACTIONS(1196), - [anon_sym___clrcall] = ACTIONS(1196), - [anon_sym___stdcall] = ACTIONS(1196), - [anon_sym___fastcall] = ACTIONS(1196), - [anon_sym___thiscall] = ACTIONS(1196), - [anon_sym___vectorcall] = ACTIONS(1196), - [anon_sym_LBRACE] = ACTIONS(1198), - [anon_sym_RBRACE] = ACTIONS(1198), - [anon_sym_signed] = ACTIONS(1196), - [anon_sym_unsigned] = ACTIONS(1196), - [anon_sym_long] = ACTIONS(1196), - [anon_sym_short] = ACTIONS(1196), - [anon_sym_static] = ACTIONS(1196), - [anon_sym_auto] = ACTIONS(1196), - [anon_sym_register] = ACTIONS(1196), - [anon_sym_inline] = ACTIONS(1196), - [anon_sym_thread_local] = ACTIONS(1196), - [anon_sym___thread] = ACTIONS(1196), - [anon_sym_const] = ACTIONS(1196), - [anon_sym_constexpr] = ACTIONS(1196), - [anon_sym_volatile] = ACTIONS(1196), - [anon_sym_restrict] = ACTIONS(1196), - [anon_sym___restrict__] = ACTIONS(1196), - [anon_sym__Atomic] = ACTIONS(1196), - [anon_sym__Noreturn] = ACTIONS(1196), - [anon_sym_noreturn] = ACTIONS(1196), - [sym_primitive_type] = ACTIONS(1196), - [anon_sym_enum] = ACTIONS(1196), - [anon_sym_struct] = ACTIONS(1196), - [anon_sym_union] = ACTIONS(1196), - [anon_sym_if] = ACTIONS(1196), - [anon_sym_else] = ACTIONS(1196), - [anon_sym_switch] = ACTIONS(1196), - [anon_sym_case] = ACTIONS(1196), - [anon_sym_default] = ACTIONS(1196), - [anon_sym_while] = ACTIONS(1196), - [anon_sym_do] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1196), - [anon_sym_return] = ACTIONS(1196), - [anon_sym_break] = ACTIONS(1196), - [anon_sym_continue] = ACTIONS(1196), - [anon_sym_goto] = ACTIONS(1196), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_sizeof] = ACTIONS(1196), - [anon_sym_offsetof] = ACTIONS(1196), - [anon_sym__Generic] = ACTIONS(1196), - [anon_sym_asm] = ACTIONS(1196), - [anon_sym___asm__] = ACTIONS(1196), - [sym_number_literal] = ACTIONS(1198), - [anon_sym_L_SQUOTE] = ACTIONS(1198), - [anon_sym_u_SQUOTE] = ACTIONS(1198), - [anon_sym_U_SQUOTE] = ACTIONS(1198), - [anon_sym_u8_SQUOTE] = ACTIONS(1198), - [anon_sym_SQUOTE] = ACTIONS(1198), - [anon_sym_L_DQUOTE] = ACTIONS(1198), - [anon_sym_u_DQUOTE] = ACTIONS(1198), - [anon_sym_U_DQUOTE] = ACTIONS(1198), - [anon_sym_u8_DQUOTE] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(1198), - [sym_true] = ACTIONS(1196), - [sym_false] = ACTIONS(1196), - [anon_sym_NULL] = ACTIONS(1196), - [anon_sym_nullptr] = ACTIONS(1196), + [318] = { + [sym_identifier] = ACTIONS(1368), + [aux_sym_preproc_include_token1] = ACTIONS(1368), + [aux_sym_preproc_def_token1] = ACTIONS(1368), + [aux_sym_preproc_if_token1] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1368), + [sym_preproc_directive] = ACTIONS(1368), + [anon_sym_LPAREN2] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1370), + [anon_sym___extension__] = ACTIONS(1368), + [anon_sym_typedef] = ACTIONS(1368), + [anon_sym_extern] = ACTIONS(1368), + [anon_sym___attribute__] = ACTIONS(1368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1370), + [anon_sym___declspec] = ACTIONS(1368), + [anon_sym___cdecl] = ACTIONS(1368), + [anon_sym___clrcall] = ACTIONS(1368), + [anon_sym___stdcall] = ACTIONS(1368), + [anon_sym___fastcall] = ACTIONS(1368), + [anon_sym___thiscall] = ACTIONS(1368), + [anon_sym___vectorcall] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1370), + [anon_sym_signed] = ACTIONS(1368), + [anon_sym_unsigned] = ACTIONS(1368), + [anon_sym_long] = ACTIONS(1368), + [anon_sym_short] = ACTIONS(1368), + [anon_sym_static] = ACTIONS(1368), + [anon_sym_auto] = ACTIONS(1368), + [anon_sym_register] = ACTIONS(1368), + [anon_sym_inline] = ACTIONS(1368), + [anon_sym___inline] = ACTIONS(1368), + [anon_sym___inline__] = ACTIONS(1368), + [anon_sym___forceinline] = ACTIONS(1368), + [anon_sym_thread_local] = ACTIONS(1368), + [anon_sym___thread] = ACTIONS(1368), + [anon_sym_const] = ACTIONS(1368), + [anon_sym_constexpr] = ACTIONS(1368), + [anon_sym_volatile] = ACTIONS(1368), + [anon_sym_restrict] = ACTIONS(1368), + [anon_sym___restrict__] = ACTIONS(1368), + [anon_sym__Atomic] = ACTIONS(1368), + [anon_sym__Noreturn] = ACTIONS(1368), + [anon_sym_noreturn] = ACTIONS(1368), + [sym_primitive_type] = ACTIONS(1368), + [anon_sym_enum] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1368), + [anon_sym_union] = ACTIONS(1368), + [anon_sym_if] = ACTIONS(1368), + [anon_sym_else] = ACTIONS(1368), + [anon_sym_switch] = ACTIONS(1368), + [anon_sym_case] = ACTIONS(1368), + [anon_sym_default] = ACTIONS(1368), + [anon_sym_while] = ACTIONS(1368), + [anon_sym_do] = ACTIONS(1368), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1368), + [anon_sym_break] = ACTIONS(1368), + [anon_sym_continue] = ACTIONS(1368), + [anon_sym_goto] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1370), + [anon_sym_sizeof] = ACTIONS(1368), + [anon_sym___alignof__] = ACTIONS(1368), + [anon_sym___alignof] = ACTIONS(1368), + [anon_sym__alignof] = ACTIONS(1368), + [anon_sym_alignof] = ACTIONS(1368), + [anon_sym__Alignof] = ACTIONS(1368), + [anon_sym_offsetof] = ACTIONS(1368), + [anon_sym___builtin_va_arg] = ACTIONS(1368), + [anon_sym__Generic] = ACTIONS(1368), + [anon_sym_asm] = ACTIONS(1368), + [anon_sym___asm__] = ACTIONS(1368), + [sym_number_literal] = ACTIONS(1370), + [anon_sym_L_SQUOTE] = ACTIONS(1370), + [anon_sym_u_SQUOTE] = ACTIONS(1370), + [anon_sym_U_SQUOTE] = ACTIONS(1370), + [anon_sym_u8_SQUOTE] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1370), + [anon_sym_L_DQUOTE] = ACTIONS(1370), + [anon_sym_u_DQUOTE] = ACTIONS(1370), + [anon_sym_U_DQUOTE] = ACTIONS(1370), + [anon_sym_u8_DQUOTE] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [sym_true] = ACTIONS(1368), + [sym_false] = ACTIONS(1368), + [anon_sym_NULL] = ACTIONS(1368), + [anon_sym_nullptr] = ACTIONS(1368), [sym_comment] = ACTIONS(3), }, - [329] = { - [sym_identifier] = ACTIONS(1276), - [aux_sym_preproc_include_token1] = ACTIONS(1276), - [aux_sym_preproc_def_token1] = ACTIONS(1276), - [aux_sym_preproc_if_token1] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), - [sym_preproc_directive] = ACTIONS(1276), - [anon_sym_LPAREN2] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1278), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym_typedef] = ACTIONS(1276), - [anon_sym_extern] = ACTIONS(1276), - [anon_sym___attribute__] = ACTIONS(1276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1278), - [anon_sym___declspec] = ACTIONS(1276), - [anon_sym___cdecl] = ACTIONS(1276), - [anon_sym___clrcall] = ACTIONS(1276), - [anon_sym___stdcall] = ACTIONS(1276), - [anon_sym___fastcall] = ACTIONS(1276), - [anon_sym___thiscall] = ACTIONS(1276), - [anon_sym___vectorcall] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_RBRACE] = ACTIONS(1278), - [anon_sym_signed] = ACTIONS(1276), - [anon_sym_unsigned] = ACTIONS(1276), - [anon_sym_long] = ACTIONS(1276), - [anon_sym_short] = ACTIONS(1276), - [anon_sym_static] = ACTIONS(1276), - [anon_sym_auto] = ACTIONS(1276), - [anon_sym_register] = ACTIONS(1276), - [anon_sym_inline] = ACTIONS(1276), - [anon_sym_thread_local] = ACTIONS(1276), - [anon_sym___thread] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1276), - [anon_sym_constexpr] = ACTIONS(1276), - [anon_sym_volatile] = ACTIONS(1276), - [anon_sym_restrict] = ACTIONS(1276), - [anon_sym___restrict__] = ACTIONS(1276), - [anon_sym__Atomic] = ACTIONS(1276), - [anon_sym__Noreturn] = ACTIONS(1276), - [anon_sym_noreturn] = ACTIONS(1276), - [sym_primitive_type] = ACTIONS(1276), - [anon_sym_enum] = ACTIONS(1276), - [anon_sym_struct] = ACTIONS(1276), - [anon_sym_union] = ACTIONS(1276), - [anon_sym_if] = ACTIONS(1276), - [anon_sym_else] = ACTIONS(1276), - [anon_sym_switch] = ACTIONS(1276), - [anon_sym_case] = ACTIONS(1276), - [anon_sym_default] = ACTIONS(1276), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(1276), - [anon_sym_for] = ACTIONS(1276), - [anon_sym_return] = ACTIONS(1276), - [anon_sym_break] = ACTIONS(1276), - [anon_sym_continue] = ACTIONS(1276), - [anon_sym_goto] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1278), - [anon_sym_PLUS_PLUS] = ACTIONS(1278), - [anon_sym_sizeof] = ACTIONS(1276), - [anon_sym_offsetof] = ACTIONS(1276), - [anon_sym__Generic] = ACTIONS(1276), - [anon_sym_asm] = ACTIONS(1276), - [anon_sym___asm__] = ACTIONS(1276), - [sym_number_literal] = ACTIONS(1278), - [anon_sym_L_SQUOTE] = ACTIONS(1278), - [anon_sym_u_SQUOTE] = ACTIONS(1278), - [anon_sym_U_SQUOTE] = ACTIONS(1278), - [anon_sym_u8_SQUOTE] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1278), - [anon_sym_L_DQUOTE] = ACTIONS(1278), - [anon_sym_u_DQUOTE] = ACTIONS(1278), - [anon_sym_U_DQUOTE] = ACTIONS(1278), - [anon_sym_u8_DQUOTE] = ACTIONS(1278), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym_true] = ACTIONS(1276), - [sym_false] = ACTIONS(1276), - [anon_sym_NULL] = ACTIONS(1276), - [anon_sym_nullptr] = ACTIONS(1276), + [319] = { + [ts_builtin_sym_end] = ACTIONS(1266), + [sym_identifier] = ACTIONS(1264), + [aux_sym_preproc_include_token1] = ACTIONS(1264), + [aux_sym_preproc_def_token1] = ACTIONS(1264), + [aux_sym_preproc_if_token1] = ACTIONS(1264), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1264), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1264), + [sym_preproc_directive] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(1266), + [anon_sym_BANG] = ACTIONS(1266), + [anon_sym_TILDE] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1264), + [anon_sym_PLUS] = ACTIONS(1264), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_AMP] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1266), + [anon_sym___extension__] = ACTIONS(1264), + [anon_sym_typedef] = ACTIONS(1264), + [anon_sym_extern] = ACTIONS(1264), + [anon_sym___attribute__] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1266), + [anon_sym___declspec] = ACTIONS(1264), + [anon_sym___cdecl] = ACTIONS(1264), + [anon_sym___clrcall] = ACTIONS(1264), + [anon_sym___stdcall] = ACTIONS(1264), + [anon_sym___fastcall] = ACTIONS(1264), + [anon_sym___thiscall] = ACTIONS(1264), + [anon_sym___vectorcall] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_signed] = ACTIONS(1264), + [anon_sym_unsigned] = ACTIONS(1264), + [anon_sym_long] = ACTIONS(1264), + [anon_sym_short] = ACTIONS(1264), + [anon_sym_static] = ACTIONS(1264), + [anon_sym_auto] = ACTIONS(1264), + [anon_sym_register] = ACTIONS(1264), + [anon_sym_inline] = ACTIONS(1264), + [anon_sym___inline] = ACTIONS(1264), + [anon_sym___inline__] = ACTIONS(1264), + [anon_sym___forceinline] = ACTIONS(1264), + [anon_sym_thread_local] = ACTIONS(1264), + [anon_sym___thread] = ACTIONS(1264), + [anon_sym_const] = ACTIONS(1264), + [anon_sym_constexpr] = ACTIONS(1264), + [anon_sym_volatile] = ACTIONS(1264), + [anon_sym_restrict] = ACTIONS(1264), + [anon_sym___restrict__] = ACTIONS(1264), + [anon_sym__Atomic] = ACTIONS(1264), + [anon_sym__Noreturn] = ACTIONS(1264), + [anon_sym_noreturn] = ACTIONS(1264), + [sym_primitive_type] = ACTIONS(1264), + [anon_sym_enum] = ACTIONS(1264), + [anon_sym_struct] = ACTIONS(1264), + [anon_sym_union] = ACTIONS(1264), + [anon_sym_if] = ACTIONS(1264), + [anon_sym_else] = ACTIONS(1264), + [anon_sym_switch] = ACTIONS(1264), + [anon_sym_case] = ACTIONS(1264), + [anon_sym_default] = ACTIONS(1264), + [anon_sym_while] = ACTIONS(1264), + [anon_sym_do] = ACTIONS(1264), + [anon_sym_for] = ACTIONS(1264), + [anon_sym_return] = ACTIONS(1264), + [anon_sym_break] = ACTIONS(1264), + [anon_sym_continue] = ACTIONS(1264), + [anon_sym_goto] = ACTIONS(1264), + [anon_sym_DASH_DASH] = ACTIONS(1266), + [anon_sym_PLUS_PLUS] = ACTIONS(1266), + [anon_sym_sizeof] = ACTIONS(1264), + [anon_sym___alignof__] = ACTIONS(1264), + [anon_sym___alignof] = ACTIONS(1264), + [anon_sym__alignof] = ACTIONS(1264), + [anon_sym_alignof] = ACTIONS(1264), + [anon_sym__Alignof] = ACTIONS(1264), + [anon_sym_offsetof] = ACTIONS(1264), + [anon_sym___builtin_va_arg] = ACTIONS(1264), + [anon_sym__Generic] = ACTIONS(1264), + [anon_sym_asm] = ACTIONS(1264), + [anon_sym___asm__] = ACTIONS(1264), + [sym_number_literal] = ACTIONS(1266), + [anon_sym_L_SQUOTE] = ACTIONS(1266), + [anon_sym_u_SQUOTE] = ACTIONS(1266), + [anon_sym_U_SQUOTE] = ACTIONS(1266), + [anon_sym_u8_SQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1266), + [anon_sym_L_DQUOTE] = ACTIONS(1266), + [anon_sym_u_DQUOTE] = ACTIONS(1266), + [anon_sym_U_DQUOTE] = ACTIONS(1266), + [anon_sym_u8_DQUOTE] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym_true] = ACTIONS(1264), + [sym_false] = ACTIONS(1264), + [anon_sym_NULL] = ACTIONS(1264), + [anon_sym_nullptr] = ACTIONS(1264), [sym_comment] = ACTIONS(3), }, - [330] = { - [sym_identifier] = ACTIONS(1280), - [aux_sym_preproc_include_token1] = ACTIONS(1280), - [aux_sym_preproc_def_token1] = ACTIONS(1280), - [aux_sym_preproc_if_token1] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1280), - [sym_preproc_directive] = ACTIONS(1280), - [anon_sym_LPAREN2] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1282), - [anon_sym_TILDE] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1282), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym_typedef] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym___attribute__] = ACTIONS(1280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1282), - [anon_sym___declspec] = ACTIONS(1280), - [anon_sym___cdecl] = ACTIONS(1280), - [anon_sym___clrcall] = ACTIONS(1280), - [anon_sym___stdcall] = ACTIONS(1280), - [anon_sym___fastcall] = ACTIONS(1280), - [anon_sym___thiscall] = ACTIONS(1280), - [anon_sym___vectorcall] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_RBRACE] = ACTIONS(1282), - [anon_sym_signed] = ACTIONS(1280), - [anon_sym_unsigned] = ACTIONS(1280), - [anon_sym_long] = ACTIONS(1280), - [anon_sym_short] = ACTIONS(1280), - [anon_sym_static] = ACTIONS(1280), - [anon_sym_auto] = ACTIONS(1280), - [anon_sym_register] = ACTIONS(1280), - [anon_sym_inline] = ACTIONS(1280), - [anon_sym_thread_local] = ACTIONS(1280), - [anon_sym___thread] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_constexpr] = ACTIONS(1280), - [anon_sym_volatile] = ACTIONS(1280), - [anon_sym_restrict] = ACTIONS(1280), - [anon_sym___restrict__] = ACTIONS(1280), - [anon_sym__Atomic] = ACTIONS(1280), - [anon_sym__Noreturn] = ACTIONS(1280), - [anon_sym_noreturn] = ACTIONS(1280), - [sym_primitive_type] = ACTIONS(1280), - [anon_sym_enum] = ACTIONS(1280), - [anon_sym_struct] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_else] = ACTIONS(1280), - [anon_sym_switch] = ACTIONS(1280), - [anon_sym_case] = ACTIONS(1280), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_goto] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1282), - [anon_sym_sizeof] = ACTIONS(1280), - [anon_sym_offsetof] = ACTIONS(1280), - [anon_sym__Generic] = ACTIONS(1280), - [anon_sym_asm] = ACTIONS(1280), - [anon_sym___asm__] = ACTIONS(1280), - [sym_number_literal] = ACTIONS(1282), - [anon_sym_L_SQUOTE] = ACTIONS(1282), - [anon_sym_u_SQUOTE] = ACTIONS(1282), - [anon_sym_U_SQUOTE] = ACTIONS(1282), - [anon_sym_u8_SQUOTE] = ACTIONS(1282), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_L_DQUOTE] = ACTIONS(1282), - [anon_sym_u_DQUOTE] = ACTIONS(1282), - [anon_sym_U_DQUOTE] = ACTIONS(1282), - [anon_sym_u8_DQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym_true] = ACTIONS(1280), - [sym_false] = ACTIONS(1280), - [anon_sym_NULL] = ACTIONS(1280), - [anon_sym_nullptr] = ACTIONS(1280), - [sym_comment] = ACTIONS(3), - }, - [331] = { - [ts_builtin_sym_end] = ACTIONS(1206), - [sym_identifier] = ACTIONS(1204), - [aux_sym_preproc_include_token1] = ACTIONS(1204), - [aux_sym_preproc_def_token1] = ACTIONS(1204), - [aux_sym_preproc_if_token1] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1204), - [sym_preproc_directive] = ACTIONS(1204), - [anon_sym_LPAREN2] = ACTIONS(1206), - [anon_sym_BANG] = ACTIONS(1206), - [anon_sym_TILDE] = ACTIONS(1206), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_STAR] = ACTIONS(1206), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_SEMI] = ACTIONS(1206), - [anon_sym_typedef] = ACTIONS(1204), - [anon_sym_extern] = ACTIONS(1204), - [anon_sym___attribute__] = ACTIONS(1204), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1206), - [anon_sym___declspec] = ACTIONS(1204), - [anon_sym___cdecl] = ACTIONS(1204), - [anon_sym___clrcall] = ACTIONS(1204), - [anon_sym___stdcall] = ACTIONS(1204), - [anon_sym___fastcall] = ACTIONS(1204), - [anon_sym___thiscall] = ACTIONS(1204), - [anon_sym___vectorcall] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_signed] = ACTIONS(1204), - [anon_sym_unsigned] = ACTIONS(1204), - [anon_sym_long] = ACTIONS(1204), - [anon_sym_short] = ACTIONS(1204), - [anon_sym_static] = ACTIONS(1204), - [anon_sym_auto] = ACTIONS(1204), - [anon_sym_register] = ACTIONS(1204), - [anon_sym_inline] = ACTIONS(1204), - [anon_sym_thread_local] = ACTIONS(1204), - [anon_sym___thread] = ACTIONS(1204), - [anon_sym_const] = ACTIONS(1204), - [anon_sym_constexpr] = ACTIONS(1204), - [anon_sym_volatile] = ACTIONS(1204), - [anon_sym_restrict] = ACTIONS(1204), - [anon_sym___restrict__] = ACTIONS(1204), - [anon_sym__Atomic] = ACTIONS(1204), - [anon_sym__Noreturn] = ACTIONS(1204), - [anon_sym_noreturn] = ACTIONS(1204), - [sym_primitive_type] = ACTIONS(1204), - [anon_sym_enum] = ACTIONS(1204), - [anon_sym_struct] = ACTIONS(1204), - [anon_sym_union] = ACTIONS(1204), - [anon_sym_if] = ACTIONS(1204), - [anon_sym_else] = ACTIONS(1204), - [anon_sym_switch] = ACTIONS(1204), - [anon_sym_case] = ACTIONS(1204), - [anon_sym_default] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1204), - [anon_sym_do] = ACTIONS(1204), - [anon_sym_for] = ACTIONS(1204), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_break] = ACTIONS(1204), - [anon_sym_continue] = ACTIONS(1204), - [anon_sym_goto] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_sizeof] = ACTIONS(1204), - [anon_sym_offsetof] = ACTIONS(1204), - [anon_sym__Generic] = ACTIONS(1204), - [anon_sym_asm] = ACTIONS(1204), - [anon_sym___asm__] = ACTIONS(1204), - [sym_number_literal] = ACTIONS(1206), - [anon_sym_L_SQUOTE] = ACTIONS(1206), - [anon_sym_u_SQUOTE] = ACTIONS(1206), - [anon_sym_U_SQUOTE] = ACTIONS(1206), - [anon_sym_u8_SQUOTE] = ACTIONS(1206), - [anon_sym_SQUOTE] = ACTIONS(1206), - [anon_sym_L_DQUOTE] = ACTIONS(1206), - [anon_sym_u_DQUOTE] = ACTIONS(1206), - [anon_sym_U_DQUOTE] = ACTIONS(1206), - [anon_sym_u8_DQUOTE] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(1206), - [sym_true] = ACTIONS(1204), - [sym_false] = ACTIONS(1204), - [anon_sym_NULL] = ACTIONS(1204), - [anon_sym_nullptr] = ACTIONS(1204), - [sym_comment] = ACTIONS(3), - }, - [332] = { - [sym_identifier] = ACTIONS(1284), - [aux_sym_preproc_include_token1] = ACTIONS(1284), - [aux_sym_preproc_def_token1] = ACTIONS(1284), - [aux_sym_preproc_if_token1] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1284), - [sym_preproc_directive] = ACTIONS(1284), - [anon_sym_LPAREN2] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1286), - [anon_sym_TILDE] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1286), - [anon_sym_SEMI] = ACTIONS(1286), - [anon_sym_typedef] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1284), - [anon_sym___attribute__] = ACTIONS(1284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1286), - [anon_sym___declspec] = ACTIONS(1284), - [anon_sym___cdecl] = ACTIONS(1284), - [anon_sym___clrcall] = ACTIONS(1284), - [anon_sym___stdcall] = ACTIONS(1284), - [anon_sym___fastcall] = ACTIONS(1284), - [anon_sym___thiscall] = ACTIONS(1284), - [anon_sym___vectorcall] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_RBRACE] = ACTIONS(1286), - [anon_sym_signed] = ACTIONS(1284), - [anon_sym_unsigned] = ACTIONS(1284), - [anon_sym_long] = ACTIONS(1284), - [anon_sym_short] = ACTIONS(1284), - [anon_sym_static] = ACTIONS(1284), - [anon_sym_auto] = ACTIONS(1284), - [anon_sym_register] = ACTIONS(1284), - [anon_sym_inline] = ACTIONS(1284), - [anon_sym_thread_local] = ACTIONS(1284), - [anon_sym___thread] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_constexpr] = ACTIONS(1284), - [anon_sym_volatile] = ACTIONS(1284), - [anon_sym_restrict] = ACTIONS(1284), - [anon_sym___restrict__] = ACTIONS(1284), - [anon_sym__Atomic] = ACTIONS(1284), - [anon_sym__Noreturn] = ACTIONS(1284), - [anon_sym_noreturn] = ACTIONS(1284), - [sym_primitive_type] = ACTIONS(1284), - [anon_sym_enum] = ACTIONS(1284), - [anon_sym_struct] = ACTIONS(1284), - [anon_sym_union] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_else] = ACTIONS(1284), - [anon_sym_switch] = ACTIONS(1284), - [anon_sym_case] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1284), - [anon_sym_while] = ACTIONS(1284), - [anon_sym_do] = ACTIONS(1284), - [anon_sym_for] = ACTIONS(1284), - [anon_sym_return] = ACTIONS(1284), - [anon_sym_break] = ACTIONS(1284), - [anon_sym_continue] = ACTIONS(1284), - [anon_sym_goto] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1286), - [anon_sym_PLUS_PLUS] = ACTIONS(1286), - [anon_sym_sizeof] = ACTIONS(1284), - [anon_sym_offsetof] = ACTIONS(1284), - [anon_sym__Generic] = ACTIONS(1284), - [anon_sym_asm] = ACTIONS(1284), - [anon_sym___asm__] = ACTIONS(1284), - [sym_number_literal] = ACTIONS(1286), - [anon_sym_L_SQUOTE] = ACTIONS(1286), - [anon_sym_u_SQUOTE] = ACTIONS(1286), - [anon_sym_U_SQUOTE] = ACTIONS(1286), - [anon_sym_u8_SQUOTE] = ACTIONS(1286), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_L_DQUOTE] = ACTIONS(1286), - [anon_sym_u_DQUOTE] = ACTIONS(1286), - [anon_sym_U_DQUOTE] = ACTIONS(1286), - [anon_sym_u8_DQUOTE] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym_true] = ACTIONS(1284), - [sym_false] = ACTIONS(1284), - [anon_sym_NULL] = ACTIONS(1284), - [anon_sym_nullptr] = ACTIONS(1284), + [320] = { + [ts_builtin_sym_end] = ACTIONS(1262), + [sym_identifier] = ACTIONS(1260), + [aux_sym_preproc_include_token1] = ACTIONS(1260), + [aux_sym_preproc_def_token1] = ACTIONS(1260), + [aux_sym_preproc_if_token1] = ACTIONS(1260), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1260), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1260), + [sym_preproc_directive] = ACTIONS(1260), + [anon_sym_LPAREN2] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_STAR] = ACTIONS(1262), + [anon_sym_AMP] = ACTIONS(1262), + [anon_sym_SEMI] = ACTIONS(1262), + [anon_sym___extension__] = ACTIONS(1260), + [anon_sym_typedef] = ACTIONS(1260), + [anon_sym_extern] = ACTIONS(1260), + [anon_sym___attribute__] = ACTIONS(1260), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1262), + [anon_sym___declspec] = ACTIONS(1260), + [anon_sym___cdecl] = ACTIONS(1260), + [anon_sym___clrcall] = ACTIONS(1260), + [anon_sym___stdcall] = ACTIONS(1260), + [anon_sym___fastcall] = ACTIONS(1260), + [anon_sym___thiscall] = ACTIONS(1260), + [anon_sym___vectorcall] = ACTIONS(1260), + [anon_sym_LBRACE] = ACTIONS(1262), + [anon_sym_signed] = ACTIONS(1260), + [anon_sym_unsigned] = ACTIONS(1260), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_short] = ACTIONS(1260), + [anon_sym_static] = ACTIONS(1260), + [anon_sym_auto] = ACTIONS(1260), + [anon_sym_register] = ACTIONS(1260), + [anon_sym_inline] = ACTIONS(1260), + [anon_sym___inline] = ACTIONS(1260), + [anon_sym___inline__] = ACTIONS(1260), + [anon_sym___forceinline] = ACTIONS(1260), + [anon_sym_thread_local] = ACTIONS(1260), + [anon_sym___thread] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1260), + [anon_sym_constexpr] = ACTIONS(1260), + [anon_sym_volatile] = ACTIONS(1260), + [anon_sym_restrict] = ACTIONS(1260), + [anon_sym___restrict__] = ACTIONS(1260), + [anon_sym__Atomic] = ACTIONS(1260), + [anon_sym__Noreturn] = ACTIONS(1260), + [anon_sym_noreturn] = ACTIONS(1260), + [sym_primitive_type] = ACTIONS(1260), + [anon_sym_enum] = ACTIONS(1260), + [anon_sym_struct] = ACTIONS(1260), + [anon_sym_union] = ACTIONS(1260), + [anon_sym_if] = ACTIONS(1260), + [anon_sym_else] = ACTIONS(1260), + [anon_sym_switch] = ACTIONS(1260), + [anon_sym_case] = ACTIONS(1260), + [anon_sym_default] = ACTIONS(1260), + [anon_sym_while] = ACTIONS(1260), + [anon_sym_do] = ACTIONS(1260), + [anon_sym_for] = ACTIONS(1260), + [anon_sym_return] = ACTIONS(1260), + [anon_sym_break] = ACTIONS(1260), + [anon_sym_continue] = ACTIONS(1260), + [anon_sym_goto] = ACTIONS(1260), + [anon_sym_DASH_DASH] = ACTIONS(1262), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1260), + [anon_sym___alignof__] = ACTIONS(1260), + [anon_sym___alignof] = ACTIONS(1260), + [anon_sym__alignof] = ACTIONS(1260), + [anon_sym_alignof] = ACTIONS(1260), + [anon_sym__Alignof] = ACTIONS(1260), + [anon_sym_offsetof] = ACTIONS(1260), + [anon_sym___builtin_va_arg] = ACTIONS(1260), + [anon_sym__Generic] = ACTIONS(1260), + [anon_sym_asm] = ACTIONS(1260), + [anon_sym___asm__] = ACTIONS(1260), + [sym_number_literal] = ACTIONS(1262), + [anon_sym_L_SQUOTE] = ACTIONS(1262), + [anon_sym_u_SQUOTE] = ACTIONS(1262), + [anon_sym_U_SQUOTE] = ACTIONS(1262), + [anon_sym_u8_SQUOTE] = ACTIONS(1262), + [anon_sym_SQUOTE] = ACTIONS(1262), + [anon_sym_L_DQUOTE] = ACTIONS(1262), + [anon_sym_u_DQUOTE] = ACTIONS(1262), + [anon_sym_U_DQUOTE] = ACTIONS(1262), + [anon_sym_u8_DQUOTE] = ACTIONS(1262), + [anon_sym_DQUOTE] = ACTIONS(1262), + [sym_true] = ACTIONS(1260), + [sym_false] = ACTIONS(1260), + [anon_sym_NULL] = ACTIONS(1260), + [anon_sym_nullptr] = ACTIONS(1260), [sym_comment] = ACTIONS(3), }, - [333] = { - [sym_identifier] = ACTIONS(1288), - [aux_sym_preproc_include_token1] = ACTIONS(1288), - [aux_sym_preproc_def_token1] = ACTIONS(1288), - [aux_sym_preproc_if_token1] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1288), - [sym_preproc_directive] = ACTIONS(1288), - [anon_sym_LPAREN2] = ACTIONS(1290), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym_typedef] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1288), - [anon_sym___attribute__] = ACTIONS(1288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), - [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(1290), - [anon_sym_RBRACE] = ACTIONS(1290), - [anon_sym_signed] = ACTIONS(1288), - [anon_sym_unsigned] = ACTIONS(1288), - [anon_sym_long] = ACTIONS(1288), - [anon_sym_short] = ACTIONS(1288), - [anon_sym_static] = ACTIONS(1288), - [anon_sym_auto] = ACTIONS(1288), - [anon_sym_register] = ACTIONS(1288), - [anon_sym_inline] = ACTIONS(1288), - [anon_sym_thread_local] = ACTIONS(1288), - [anon_sym___thread] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_constexpr] = ACTIONS(1288), - [anon_sym_volatile] = ACTIONS(1288), - [anon_sym_restrict] = ACTIONS(1288), - [anon_sym___restrict__] = ACTIONS(1288), - [anon_sym__Atomic] = ACTIONS(1288), - [anon_sym__Noreturn] = ACTIONS(1288), - [anon_sym_noreturn] = 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(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1290), - [anon_sym_sizeof] = ACTIONS(1288), - [anon_sym_offsetof] = ACTIONS(1288), - [anon_sym__Generic] = ACTIONS(1288), - [anon_sym_asm] = ACTIONS(1288), - [anon_sym___asm__] = ACTIONS(1288), - [sym_number_literal] = ACTIONS(1290), - [anon_sym_L_SQUOTE] = ACTIONS(1290), - [anon_sym_u_SQUOTE] = ACTIONS(1290), - [anon_sym_U_SQUOTE] = ACTIONS(1290), - [anon_sym_u8_SQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1290), - [anon_sym_L_DQUOTE] = ACTIONS(1290), - [anon_sym_u_DQUOTE] = ACTIONS(1290), - [anon_sym_U_DQUOTE] = ACTIONS(1290), - [anon_sym_u8_DQUOTE] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [sym_true] = ACTIONS(1288), - [sym_false] = ACTIONS(1288), - [anon_sym_NULL] = ACTIONS(1288), - [anon_sym_nullptr] = ACTIONS(1288), + [321] = { + [sym_identifier] = ACTIONS(1252), + [aux_sym_preproc_include_token1] = ACTIONS(1252), + [aux_sym_preproc_def_token1] = ACTIONS(1252), + [aux_sym_preproc_if_token1] = ACTIONS(1252), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1252), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1252), + [sym_preproc_directive] = ACTIONS(1252), + [anon_sym_LPAREN2] = ACTIONS(1254), + [anon_sym_BANG] = ACTIONS(1254), + [anon_sym_TILDE] = ACTIONS(1254), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1252), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(1252), + [anon_sym_typedef] = ACTIONS(1252), + [anon_sym_extern] = ACTIONS(1252), + [anon_sym___attribute__] = ACTIONS(1252), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1254), + [anon_sym___declspec] = ACTIONS(1252), + [anon_sym___cdecl] = ACTIONS(1252), + [anon_sym___clrcall] = ACTIONS(1252), + [anon_sym___stdcall] = ACTIONS(1252), + [anon_sym___fastcall] = ACTIONS(1252), + [anon_sym___thiscall] = ACTIONS(1252), + [anon_sym___vectorcall] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_RBRACE] = ACTIONS(1254), + [anon_sym_signed] = ACTIONS(1252), + [anon_sym_unsigned] = ACTIONS(1252), + [anon_sym_long] = ACTIONS(1252), + [anon_sym_short] = ACTIONS(1252), + [anon_sym_static] = ACTIONS(1252), + [anon_sym_auto] = ACTIONS(1252), + [anon_sym_register] = ACTIONS(1252), + [anon_sym_inline] = ACTIONS(1252), + [anon_sym___inline] = ACTIONS(1252), + [anon_sym___inline__] = ACTIONS(1252), + [anon_sym___forceinline] = ACTIONS(1252), + [anon_sym_thread_local] = ACTIONS(1252), + [anon_sym___thread] = ACTIONS(1252), + [anon_sym_const] = ACTIONS(1252), + [anon_sym_constexpr] = ACTIONS(1252), + [anon_sym_volatile] = ACTIONS(1252), + [anon_sym_restrict] = ACTIONS(1252), + [anon_sym___restrict__] = ACTIONS(1252), + [anon_sym__Atomic] = ACTIONS(1252), + [anon_sym__Noreturn] = ACTIONS(1252), + [anon_sym_noreturn] = ACTIONS(1252), + [sym_primitive_type] = ACTIONS(1252), + [anon_sym_enum] = ACTIONS(1252), + [anon_sym_struct] = ACTIONS(1252), + [anon_sym_union] = ACTIONS(1252), + [anon_sym_if] = ACTIONS(1252), + [anon_sym_else] = ACTIONS(1252), + [anon_sym_switch] = ACTIONS(1252), + [anon_sym_case] = ACTIONS(1252), + [anon_sym_default] = ACTIONS(1252), + [anon_sym_while] = ACTIONS(1252), + [anon_sym_do] = ACTIONS(1252), + [anon_sym_for] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1252), + [anon_sym_break] = ACTIONS(1252), + [anon_sym_continue] = ACTIONS(1252), + [anon_sym_goto] = ACTIONS(1252), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1252), + [anon_sym___alignof__] = ACTIONS(1252), + [anon_sym___alignof] = ACTIONS(1252), + [anon_sym__alignof] = ACTIONS(1252), + [anon_sym_alignof] = ACTIONS(1252), + [anon_sym__Alignof] = ACTIONS(1252), + [anon_sym_offsetof] = ACTIONS(1252), + [anon_sym___builtin_va_arg] = ACTIONS(1252), + [anon_sym__Generic] = ACTIONS(1252), + [anon_sym_asm] = ACTIONS(1252), + [anon_sym___asm__] = ACTIONS(1252), + [sym_number_literal] = ACTIONS(1254), + [anon_sym_L_SQUOTE] = ACTIONS(1254), + [anon_sym_u_SQUOTE] = ACTIONS(1254), + [anon_sym_U_SQUOTE] = ACTIONS(1254), + [anon_sym_u8_SQUOTE] = ACTIONS(1254), + [anon_sym_SQUOTE] = ACTIONS(1254), + [anon_sym_L_DQUOTE] = ACTIONS(1254), + [anon_sym_u_DQUOTE] = ACTIONS(1254), + [anon_sym_U_DQUOTE] = ACTIONS(1254), + [anon_sym_u8_DQUOTE] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(1254), + [sym_true] = ACTIONS(1252), + [sym_false] = ACTIONS(1252), + [anon_sym_NULL] = ACTIONS(1252), + [anon_sym_nullptr] = ACTIONS(1252), [sym_comment] = ACTIONS(3), }, - [334] = { - [ts_builtin_sym_end] = ACTIONS(1206), - [sym_identifier] = ACTIONS(1204), - [aux_sym_preproc_include_token1] = ACTIONS(1204), - [aux_sym_preproc_def_token1] = ACTIONS(1204), - [aux_sym_preproc_if_token1] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1204), - [sym_preproc_directive] = ACTIONS(1204), - [anon_sym_LPAREN2] = ACTIONS(1206), - [anon_sym_BANG] = ACTIONS(1206), - [anon_sym_TILDE] = ACTIONS(1206), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_STAR] = ACTIONS(1206), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_SEMI] = ACTIONS(1206), - [anon_sym_typedef] = ACTIONS(1204), - [anon_sym_extern] = ACTIONS(1204), - [anon_sym___attribute__] = ACTIONS(1204), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1206), - [anon_sym___declspec] = ACTIONS(1204), - [anon_sym___cdecl] = ACTIONS(1204), - [anon_sym___clrcall] = ACTIONS(1204), - [anon_sym___stdcall] = ACTIONS(1204), - [anon_sym___fastcall] = ACTIONS(1204), - [anon_sym___thiscall] = ACTIONS(1204), - [anon_sym___vectorcall] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_signed] = ACTIONS(1204), - [anon_sym_unsigned] = ACTIONS(1204), - [anon_sym_long] = ACTIONS(1204), - [anon_sym_short] = ACTIONS(1204), - [anon_sym_static] = ACTIONS(1204), - [anon_sym_auto] = ACTIONS(1204), - [anon_sym_register] = ACTIONS(1204), - [anon_sym_inline] = ACTIONS(1204), - [anon_sym_thread_local] = ACTIONS(1204), - [anon_sym___thread] = ACTIONS(1204), - [anon_sym_const] = ACTIONS(1204), - [anon_sym_constexpr] = ACTIONS(1204), - [anon_sym_volatile] = ACTIONS(1204), - [anon_sym_restrict] = ACTIONS(1204), - [anon_sym___restrict__] = ACTIONS(1204), - [anon_sym__Atomic] = ACTIONS(1204), - [anon_sym__Noreturn] = ACTIONS(1204), - [anon_sym_noreturn] = ACTIONS(1204), - [sym_primitive_type] = ACTIONS(1204), - [anon_sym_enum] = ACTIONS(1204), - [anon_sym_struct] = ACTIONS(1204), - [anon_sym_union] = ACTIONS(1204), - [anon_sym_if] = ACTIONS(1204), - [anon_sym_else] = ACTIONS(1204), - [anon_sym_switch] = ACTIONS(1204), - [anon_sym_case] = ACTIONS(1204), - [anon_sym_default] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1204), - [anon_sym_do] = ACTIONS(1204), - [anon_sym_for] = ACTIONS(1204), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_break] = ACTIONS(1204), - [anon_sym_continue] = ACTIONS(1204), - [anon_sym_goto] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_sizeof] = ACTIONS(1204), - [anon_sym_offsetof] = ACTIONS(1204), - [anon_sym__Generic] = ACTIONS(1204), - [anon_sym_asm] = ACTIONS(1204), - [anon_sym___asm__] = ACTIONS(1204), - [sym_number_literal] = ACTIONS(1206), - [anon_sym_L_SQUOTE] = ACTIONS(1206), - [anon_sym_u_SQUOTE] = ACTIONS(1206), - [anon_sym_U_SQUOTE] = ACTIONS(1206), - [anon_sym_u8_SQUOTE] = ACTIONS(1206), - [anon_sym_SQUOTE] = ACTIONS(1206), - [anon_sym_L_DQUOTE] = ACTIONS(1206), - [anon_sym_u_DQUOTE] = ACTIONS(1206), - [anon_sym_U_DQUOTE] = ACTIONS(1206), - [anon_sym_u8_DQUOTE] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(1206), - [sym_true] = ACTIONS(1204), - [sym_false] = ACTIONS(1204), - [anon_sym_NULL] = ACTIONS(1204), - [anon_sym_nullptr] = ACTIONS(1204), + [322] = { + [sym_identifier] = ACTIONS(1260), + [aux_sym_preproc_include_token1] = ACTIONS(1260), + [aux_sym_preproc_def_token1] = ACTIONS(1260), + [aux_sym_preproc_if_token1] = ACTIONS(1260), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1260), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1260), + [sym_preproc_directive] = ACTIONS(1260), + [anon_sym_LPAREN2] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_STAR] = ACTIONS(1262), + [anon_sym_AMP] = ACTIONS(1262), + [anon_sym_SEMI] = ACTIONS(1262), + [anon_sym___extension__] = ACTIONS(1260), + [anon_sym_typedef] = ACTIONS(1260), + [anon_sym_extern] = ACTIONS(1260), + [anon_sym___attribute__] = ACTIONS(1260), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1262), + [anon_sym___declspec] = ACTIONS(1260), + [anon_sym___cdecl] = ACTIONS(1260), + [anon_sym___clrcall] = ACTIONS(1260), + [anon_sym___stdcall] = ACTIONS(1260), + [anon_sym___fastcall] = ACTIONS(1260), + [anon_sym___thiscall] = ACTIONS(1260), + [anon_sym___vectorcall] = ACTIONS(1260), + [anon_sym_LBRACE] = ACTIONS(1262), + [anon_sym_RBRACE] = ACTIONS(1262), + [anon_sym_signed] = ACTIONS(1260), + [anon_sym_unsigned] = ACTIONS(1260), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_short] = ACTIONS(1260), + [anon_sym_static] = ACTIONS(1260), + [anon_sym_auto] = ACTIONS(1260), + [anon_sym_register] = ACTIONS(1260), + [anon_sym_inline] = ACTIONS(1260), + [anon_sym___inline] = ACTIONS(1260), + [anon_sym___inline__] = ACTIONS(1260), + [anon_sym___forceinline] = ACTIONS(1260), + [anon_sym_thread_local] = ACTIONS(1260), + [anon_sym___thread] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1260), + [anon_sym_constexpr] = ACTIONS(1260), + [anon_sym_volatile] = ACTIONS(1260), + [anon_sym_restrict] = ACTIONS(1260), + [anon_sym___restrict__] = ACTIONS(1260), + [anon_sym__Atomic] = ACTIONS(1260), + [anon_sym__Noreturn] = ACTIONS(1260), + [anon_sym_noreturn] = ACTIONS(1260), + [sym_primitive_type] = ACTIONS(1260), + [anon_sym_enum] = ACTIONS(1260), + [anon_sym_struct] = ACTIONS(1260), + [anon_sym_union] = ACTIONS(1260), + [anon_sym_if] = ACTIONS(1260), + [anon_sym_else] = ACTIONS(1260), + [anon_sym_switch] = ACTIONS(1260), + [anon_sym_case] = ACTIONS(1260), + [anon_sym_default] = ACTIONS(1260), + [anon_sym_while] = ACTIONS(1260), + [anon_sym_do] = ACTIONS(1260), + [anon_sym_for] = ACTIONS(1260), + [anon_sym_return] = ACTIONS(1260), + [anon_sym_break] = ACTIONS(1260), + [anon_sym_continue] = ACTIONS(1260), + [anon_sym_goto] = ACTIONS(1260), + [anon_sym_DASH_DASH] = ACTIONS(1262), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1260), + [anon_sym___alignof__] = ACTIONS(1260), + [anon_sym___alignof] = ACTIONS(1260), + [anon_sym__alignof] = ACTIONS(1260), + [anon_sym_alignof] = ACTIONS(1260), + [anon_sym__Alignof] = ACTIONS(1260), + [anon_sym_offsetof] = ACTIONS(1260), + [anon_sym___builtin_va_arg] = ACTIONS(1260), + [anon_sym__Generic] = ACTIONS(1260), + [anon_sym_asm] = ACTIONS(1260), + [anon_sym___asm__] = ACTIONS(1260), + [sym_number_literal] = ACTIONS(1262), + [anon_sym_L_SQUOTE] = ACTIONS(1262), + [anon_sym_u_SQUOTE] = ACTIONS(1262), + [anon_sym_U_SQUOTE] = ACTIONS(1262), + [anon_sym_u8_SQUOTE] = ACTIONS(1262), + [anon_sym_SQUOTE] = ACTIONS(1262), + [anon_sym_L_DQUOTE] = ACTIONS(1262), + [anon_sym_u_DQUOTE] = ACTIONS(1262), + [anon_sym_U_DQUOTE] = ACTIONS(1262), + [anon_sym_u8_DQUOTE] = ACTIONS(1262), + [anon_sym_DQUOTE] = ACTIONS(1262), + [sym_true] = ACTIONS(1260), + [sym_false] = ACTIONS(1260), + [anon_sym_NULL] = ACTIONS(1260), + [anon_sym_nullptr] = ACTIONS(1260), [sym_comment] = ACTIONS(3), }, - [335] = { - [ts_builtin_sym_end] = ACTIONS(1342), - [sym_identifier] = ACTIONS(1340), - [aux_sym_preproc_include_token1] = ACTIONS(1340), - [aux_sym_preproc_def_token1] = ACTIONS(1340), - [aux_sym_preproc_if_token1] = ACTIONS(1340), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), - [sym_preproc_directive] = ACTIONS(1340), - [anon_sym_LPAREN2] = ACTIONS(1342), - [anon_sym_BANG] = ACTIONS(1342), - [anon_sym_TILDE] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_typedef] = ACTIONS(1340), - [anon_sym_extern] = ACTIONS(1340), - [anon_sym___attribute__] = ACTIONS(1340), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), - [anon_sym___declspec] = ACTIONS(1340), - [anon_sym___cdecl] = ACTIONS(1340), - [anon_sym___clrcall] = ACTIONS(1340), - [anon_sym___stdcall] = ACTIONS(1340), - [anon_sym___fastcall] = ACTIONS(1340), - [anon_sym___thiscall] = ACTIONS(1340), - [anon_sym___vectorcall] = ACTIONS(1340), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_signed] = ACTIONS(1340), - [anon_sym_unsigned] = ACTIONS(1340), - [anon_sym_long] = ACTIONS(1340), - [anon_sym_short] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1340), - [anon_sym_auto] = ACTIONS(1340), - [anon_sym_register] = ACTIONS(1340), - [anon_sym_inline] = ACTIONS(1340), - [anon_sym_thread_local] = ACTIONS(1340), - [anon_sym___thread] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_constexpr] = ACTIONS(1340), - [anon_sym_volatile] = ACTIONS(1340), - [anon_sym_restrict] = ACTIONS(1340), - [anon_sym___restrict__] = ACTIONS(1340), - [anon_sym__Atomic] = ACTIONS(1340), - [anon_sym__Noreturn] = ACTIONS(1340), - [anon_sym_noreturn] = ACTIONS(1340), - [sym_primitive_type] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_struct] = ACTIONS(1340), - [anon_sym_union] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_else] = ACTIONS(1340), - [anon_sym_switch] = ACTIONS(1340), - [anon_sym_case] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_goto] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_sizeof] = ACTIONS(1340), - [anon_sym_offsetof] = ACTIONS(1340), - [anon_sym__Generic] = ACTIONS(1340), - [anon_sym_asm] = ACTIONS(1340), - [anon_sym___asm__] = ACTIONS(1340), - [sym_number_literal] = ACTIONS(1342), - [anon_sym_L_SQUOTE] = ACTIONS(1342), - [anon_sym_u_SQUOTE] = ACTIONS(1342), - [anon_sym_U_SQUOTE] = ACTIONS(1342), - [anon_sym_u8_SQUOTE] = ACTIONS(1342), - [anon_sym_SQUOTE] = ACTIONS(1342), - [anon_sym_L_DQUOTE] = ACTIONS(1342), - [anon_sym_u_DQUOTE] = ACTIONS(1342), - [anon_sym_U_DQUOTE] = ACTIONS(1342), - [anon_sym_u8_DQUOTE] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym_true] = ACTIONS(1340), - [sym_false] = ACTIONS(1340), - [anon_sym_NULL] = ACTIONS(1340), - [anon_sym_nullptr] = ACTIONS(1340), + [323] = { + [sym_identifier] = ACTIONS(1264), + [aux_sym_preproc_include_token1] = ACTIONS(1264), + [aux_sym_preproc_def_token1] = ACTIONS(1264), + [aux_sym_preproc_if_token1] = ACTIONS(1264), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1264), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1264), + [sym_preproc_directive] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(1266), + [anon_sym_BANG] = ACTIONS(1266), + [anon_sym_TILDE] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1264), + [anon_sym_PLUS] = ACTIONS(1264), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_AMP] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1266), + [anon_sym___extension__] = ACTIONS(1264), + [anon_sym_typedef] = ACTIONS(1264), + [anon_sym_extern] = ACTIONS(1264), + [anon_sym___attribute__] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1266), + [anon_sym___declspec] = ACTIONS(1264), + [anon_sym___cdecl] = ACTIONS(1264), + [anon_sym___clrcall] = ACTIONS(1264), + [anon_sym___stdcall] = ACTIONS(1264), + [anon_sym___fastcall] = ACTIONS(1264), + [anon_sym___thiscall] = ACTIONS(1264), + [anon_sym___vectorcall] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_RBRACE] = ACTIONS(1266), + [anon_sym_signed] = ACTIONS(1264), + [anon_sym_unsigned] = ACTIONS(1264), + [anon_sym_long] = ACTIONS(1264), + [anon_sym_short] = ACTIONS(1264), + [anon_sym_static] = ACTIONS(1264), + [anon_sym_auto] = ACTIONS(1264), + [anon_sym_register] = ACTIONS(1264), + [anon_sym_inline] = ACTIONS(1264), + [anon_sym___inline] = ACTIONS(1264), + [anon_sym___inline__] = ACTIONS(1264), + [anon_sym___forceinline] = ACTIONS(1264), + [anon_sym_thread_local] = ACTIONS(1264), + [anon_sym___thread] = ACTIONS(1264), + [anon_sym_const] = ACTIONS(1264), + [anon_sym_constexpr] = ACTIONS(1264), + [anon_sym_volatile] = ACTIONS(1264), + [anon_sym_restrict] = ACTIONS(1264), + [anon_sym___restrict__] = ACTIONS(1264), + [anon_sym__Atomic] = ACTIONS(1264), + [anon_sym__Noreturn] = ACTIONS(1264), + [anon_sym_noreturn] = ACTIONS(1264), + [sym_primitive_type] = ACTIONS(1264), + [anon_sym_enum] = ACTIONS(1264), + [anon_sym_struct] = ACTIONS(1264), + [anon_sym_union] = ACTIONS(1264), + [anon_sym_if] = ACTIONS(1264), + [anon_sym_else] = ACTIONS(1264), + [anon_sym_switch] = ACTIONS(1264), + [anon_sym_case] = ACTIONS(1264), + [anon_sym_default] = ACTIONS(1264), + [anon_sym_while] = ACTIONS(1264), + [anon_sym_do] = ACTIONS(1264), + [anon_sym_for] = ACTIONS(1264), + [anon_sym_return] = ACTIONS(1264), + [anon_sym_break] = ACTIONS(1264), + [anon_sym_continue] = ACTIONS(1264), + [anon_sym_goto] = ACTIONS(1264), + [anon_sym_DASH_DASH] = ACTIONS(1266), + [anon_sym_PLUS_PLUS] = ACTIONS(1266), + [anon_sym_sizeof] = ACTIONS(1264), + [anon_sym___alignof__] = ACTIONS(1264), + [anon_sym___alignof] = ACTIONS(1264), + [anon_sym__alignof] = ACTIONS(1264), + [anon_sym_alignof] = ACTIONS(1264), + [anon_sym__Alignof] = ACTIONS(1264), + [anon_sym_offsetof] = ACTIONS(1264), + [anon_sym___builtin_va_arg] = ACTIONS(1264), + [anon_sym__Generic] = ACTIONS(1264), + [anon_sym_asm] = ACTIONS(1264), + [anon_sym___asm__] = ACTIONS(1264), + [sym_number_literal] = ACTIONS(1266), + [anon_sym_L_SQUOTE] = ACTIONS(1266), + [anon_sym_u_SQUOTE] = ACTIONS(1266), + [anon_sym_U_SQUOTE] = ACTIONS(1266), + [anon_sym_u8_SQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1266), + [anon_sym_L_DQUOTE] = ACTIONS(1266), + [anon_sym_u_DQUOTE] = ACTIONS(1266), + [anon_sym_U_DQUOTE] = ACTIONS(1266), + [anon_sym_u8_DQUOTE] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym_true] = ACTIONS(1264), + [sym_false] = ACTIONS(1264), + [anon_sym_NULL] = ACTIONS(1264), + [anon_sym_nullptr] = ACTIONS(1264), [sym_comment] = ACTIONS(3), }, - [336] = { - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1292), - [aux_sym_preproc_def_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), - [sym_preproc_directive] = ACTIONS(1292), - [anon_sym_LPAREN2] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_typedef] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym___attribute__] = ACTIONS(1292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), - [anon_sym___declspec] = ACTIONS(1292), - [anon_sym___cdecl] = ACTIONS(1292), - [anon_sym___clrcall] = ACTIONS(1292), - [anon_sym___stdcall] = ACTIONS(1292), - [anon_sym___fastcall] = ACTIONS(1292), - [anon_sym___thiscall] = ACTIONS(1292), - [anon_sym___vectorcall] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym_thread_local] = ACTIONS(1292), - [anon_sym___thread] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_constexpr] = ACTIONS(1292), - [anon_sym_volatile] = ACTIONS(1292), - [anon_sym_restrict] = ACTIONS(1292), - [anon_sym___restrict__] = ACTIONS(1292), - [anon_sym__Atomic] = ACTIONS(1292), - [anon_sym__Noreturn] = ACTIONS(1292), - [anon_sym_noreturn] = ACTIONS(1292), - [sym_primitive_type] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_else] = ACTIONS(1292), - [anon_sym_switch] = ACTIONS(1292), - [anon_sym_case] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_do] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_goto] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_sizeof] = ACTIONS(1292), - [anon_sym_offsetof] = ACTIONS(1292), - [anon_sym__Generic] = ACTIONS(1292), - [anon_sym_asm] = ACTIONS(1292), - [anon_sym___asm__] = ACTIONS(1292), - [sym_number_literal] = ACTIONS(1294), - [anon_sym_L_SQUOTE] = ACTIONS(1294), - [anon_sym_u_SQUOTE] = ACTIONS(1294), - [anon_sym_U_SQUOTE] = ACTIONS(1294), - [anon_sym_u8_SQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1294), - [anon_sym_L_DQUOTE] = ACTIONS(1294), - [anon_sym_u_DQUOTE] = ACTIONS(1294), - [anon_sym_U_DQUOTE] = ACTIONS(1294), - [anon_sym_u8_DQUOTE] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_true] = ACTIONS(1292), - [sym_false] = ACTIONS(1292), - [anon_sym_NULL] = ACTIONS(1292), - [anon_sym_nullptr] = ACTIONS(1292), + [324] = { + [sym_identifier] = ACTIONS(1268), + [aux_sym_preproc_include_token1] = ACTIONS(1268), + [aux_sym_preproc_def_token1] = ACTIONS(1268), + [aux_sym_preproc_if_token1] = ACTIONS(1268), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1268), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1268), + [sym_preproc_directive] = ACTIONS(1268), + [anon_sym_LPAREN2] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1270), + [anon_sym_TILDE] = ACTIONS(1270), + [anon_sym_DASH] = ACTIONS(1268), + [anon_sym_PLUS] = ACTIONS(1268), + [anon_sym_STAR] = ACTIONS(1270), + [anon_sym_AMP] = ACTIONS(1270), + [anon_sym_SEMI] = ACTIONS(1270), + [anon_sym___extension__] = ACTIONS(1268), + [anon_sym_typedef] = ACTIONS(1268), + [anon_sym_extern] = ACTIONS(1268), + [anon_sym___attribute__] = ACTIONS(1268), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1270), + [anon_sym___declspec] = ACTIONS(1268), + [anon_sym___cdecl] = ACTIONS(1268), + [anon_sym___clrcall] = ACTIONS(1268), + [anon_sym___stdcall] = ACTIONS(1268), + [anon_sym___fastcall] = ACTIONS(1268), + [anon_sym___thiscall] = ACTIONS(1268), + [anon_sym___vectorcall] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_RBRACE] = ACTIONS(1270), + [anon_sym_signed] = ACTIONS(1268), + [anon_sym_unsigned] = ACTIONS(1268), + [anon_sym_long] = ACTIONS(1268), + [anon_sym_short] = ACTIONS(1268), + [anon_sym_static] = ACTIONS(1268), + [anon_sym_auto] = ACTIONS(1268), + [anon_sym_register] = ACTIONS(1268), + [anon_sym_inline] = ACTIONS(1268), + [anon_sym___inline] = ACTIONS(1268), + [anon_sym___inline__] = ACTIONS(1268), + [anon_sym___forceinline] = ACTIONS(1268), + [anon_sym_thread_local] = ACTIONS(1268), + [anon_sym___thread] = ACTIONS(1268), + [anon_sym_const] = ACTIONS(1268), + [anon_sym_constexpr] = ACTIONS(1268), + [anon_sym_volatile] = ACTIONS(1268), + [anon_sym_restrict] = ACTIONS(1268), + [anon_sym___restrict__] = ACTIONS(1268), + [anon_sym__Atomic] = ACTIONS(1268), + [anon_sym__Noreturn] = ACTIONS(1268), + [anon_sym_noreturn] = ACTIONS(1268), + [sym_primitive_type] = ACTIONS(1268), + [anon_sym_enum] = ACTIONS(1268), + [anon_sym_struct] = ACTIONS(1268), + [anon_sym_union] = ACTIONS(1268), + [anon_sym_if] = ACTIONS(1268), + [anon_sym_else] = ACTIONS(1268), + [anon_sym_switch] = ACTIONS(1268), + [anon_sym_case] = ACTIONS(1268), + [anon_sym_default] = ACTIONS(1268), + [anon_sym_while] = ACTIONS(1268), + [anon_sym_do] = ACTIONS(1268), + [anon_sym_for] = ACTIONS(1268), + [anon_sym_return] = ACTIONS(1268), + [anon_sym_break] = ACTIONS(1268), + [anon_sym_continue] = ACTIONS(1268), + [anon_sym_goto] = ACTIONS(1268), + [anon_sym_DASH_DASH] = ACTIONS(1270), + [anon_sym_PLUS_PLUS] = ACTIONS(1270), + [anon_sym_sizeof] = ACTIONS(1268), + [anon_sym___alignof__] = ACTIONS(1268), + [anon_sym___alignof] = ACTIONS(1268), + [anon_sym__alignof] = ACTIONS(1268), + [anon_sym_alignof] = ACTIONS(1268), + [anon_sym__Alignof] = ACTIONS(1268), + [anon_sym_offsetof] = ACTIONS(1268), + [anon_sym___builtin_va_arg] = ACTIONS(1268), + [anon_sym__Generic] = ACTIONS(1268), + [anon_sym_asm] = ACTIONS(1268), + [anon_sym___asm__] = ACTIONS(1268), + [sym_number_literal] = ACTIONS(1270), + [anon_sym_L_SQUOTE] = ACTIONS(1270), + [anon_sym_u_SQUOTE] = ACTIONS(1270), + [anon_sym_U_SQUOTE] = ACTIONS(1270), + [anon_sym_u8_SQUOTE] = ACTIONS(1270), + [anon_sym_SQUOTE] = ACTIONS(1270), + [anon_sym_L_DQUOTE] = ACTIONS(1270), + [anon_sym_u_DQUOTE] = ACTIONS(1270), + [anon_sym_U_DQUOTE] = ACTIONS(1270), + [anon_sym_u8_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1270), + [sym_true] = ACTIONS(1268), + [sym_false] = ACTIONS(1268), + [anon_sym_NULL] = ACTIONS(1268), + [anon_sym_nullptr] = ACTIONS(1268), [sym_comment] = ACTIONS(3), }, - [337] = { - [sym_identifier] = ACTIONS(1296), - [aux_sym_preproc_include_token1] = ACTIONS(1296), - [aux_sym_preproc_def_token1] = ACTIONS(1296), - [aux_sym_preproc_if_token1] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), - [sym_preproc_directive] = ACTIONS(1296), - [anon_sym_LPAREN2] = ACTIONS(1298), - [anon_sym_BANG] = ACTIONS(1298), - [anon_sym_TILDE] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1296), - [anon_sym_extern] = ACTIONS(1296), - [anon_sym___attribute__] = ACTIONS(1296), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), - [anon_sym___declspec] = ACTIONS(1296), - [anon_sym___cdecl] = ACTIONS(1296), - [anon_sym___clrcall] = ACTIONS(1296), - [anon_sym___stdcall] = ACTIONS(1296), - [anon_sym___fastcall] = ACTIONS(1296), - [anon_sym___thiscall] = ACTIONS(1296), - [anon_sym___vectorcall] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1298), - [anon_sym_signed] = ACTIONS(1296), - [anon_sym_unsigned] = ACTIONS(1296), - [anon_sym_long] = ACTIONS(1296), - [anon_sym_short] = ACTIONS(1296), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_auto] = ACTIONS(1296), - [anon_sym_register] = ACTIONS(1296), - [anon_sym_inline] = ACTIONS(1296), - [anon_sym_thread_local] = ACTIONS(1296), - [anon_sym___thread] = ACTIONS(1296), - [anon_sym_const] = ACTIONS(1296), - [anon_sym_constexpr] = ACTIONS(1296), - [anon_sym_volatile] = ACTIONS(1296), - [anon_sym_restrict] = ACTIONS(1296), - [anon_sym___restrict__] = ACTIONS(1296), - [anon_sym__Atomic] = ACTIONS(1296), - [anon_sym__Noreturn] = ACTIONS(1296), - [anon_sym_noreturn] = ACTIONS(1296), - [sym_primitive_type] = ACTIONS(1296), - [anon_sym_enum] = ACTIONS(1296), - [anon_sym_struct] = ACTIONS(1296), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_if] = ACTIONS(1296), - [anon_sym_else] = ACTIONS(1296), - [anon_sym_switch] = ACTIONS(1296), - [anon_sym_case] = ACTIONS(1296), - [anon_sym_default] = ACTIONS(1296), - [anon_sym_while] = ACTIONS(1296), - [anon_sym_do] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_break] = ACTIONS(1296), - [anon_sym_continue] = ACTIONS(1296), - [anon_sym_goto] = ACTIONS(1296), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_sizeof] = ACTIONS(1296), - [anon_sym_offsetof] = ACTIONS(1296), - [anon_sym__Generic] = ACTIONS(1296), - [anon_sym_asm] = ACTIONS(1296), - [anon_sym___asm__] = ACTIONS(1296), - [sym_number_literal] = ACTIONS(1298), - [anon_sym_L_SQUOTE] = ACTIONS(1298), - [anon_sym_u_SQUOTE] = ACTIONS(1298), - [anon_sym_U_SQUOTE] = ACTIONS(1298), - [anon_sym_u8_SQUOTE] = ACTIONS(1298), - [anon_sym_SQUOTE] = ACTIONS(1298), - [anon_sym_L_DQUOTE] = ACTIONS(1298), - [anon_sym_u_DQUOTE] = ACTIONS(1298), - [anon_sym_U_DQUOTE] = ACTIONS(1298), - [anon_sym_u8_DQUOTE] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym_true] = ACTIONS(1296), - [sym_false] = ACTIONS(1296), - [anon_sym_NULL] = ACTIONS(1296), - [anon_sym_nullptr] = ACTIONS(1296), + [325] = { + [sym_identifier] = ACTIONS(1272), + [aux_sym_preproc_include_token1] = ACTIONS(1272), + [aux_sym_preproc_def_token1] = ACTIONS(1272), + [aux_sym_preproc_if_token1] = ACTIONS(1272), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1272), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1272), + [sym_preproc_directive] = ACTIONS(1272), + [anon_sym_LPAREN2] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1274), + [anon_sym_TILDE] = ACTIONS(1274), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_STAR] = ACTIONS(1274), + [anon_sym_AMP] = ACTIONS(1274), + [anon_sym_SEMI] = ACTIONS(1274), + [anon_sym___extension__] = ACTIONS(1272), + [anon_sym_typedef] = ACTIONS(1272), + [anon_sym_extern] = ACTIONS(1272), + [anon_sym___attribute__] = ACTIONS(1272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1274), + [anon_sym___declspec] = ACTIONS(1272), + [anon_sym___cdecl] = ACTIONS(1272), + [anon_sym___clrcall] = ACTIONS(1272), + [anon_sym___stdcall] = ACTIONS(1272), + [anon_sym___fastcall] = ACTIONS(1272), + [anon_sym___thiscall] = ACTIONS(1272), + [anon_sym___vectorcall] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1274), + [anon_sym_RBRACE] = ACTIONS(1274), + [anon_sym_signed] = ACTIONS(1272), + [anon_sym_unsigned] = ACTIONS(1272), + [anon_sym_long] = ACTIONS(1272), + [anon_sym_short] = ACTIONS(1272), + [anon_sym_static] = ACTIONS(1272), + [anon_sym_auto] = ACTIONS(1272), + [anon_sym_register] = ACTIONS(1272), + [anon_sym_inline] = ACTIONS(1272), + [anon_sym___inline] = ACTIONS(1272), + [anon_sym___inline__] = ACTIONS(1272), + [anon_sym___forceinline] = ACTIONS(1272), + [anon_sym_thread_local] = ACTIONS(1272), + [anon_sym___thread] = ACTIONS(1272), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_constexpr] = ACTIONS(1272), + [anon_sym_volatile] = ACTIONS(1272), + [anon_sym_restrict] = ACTIONS(1272), + [anon_sym___restrict__] = ACTIONS(1272), + [anon_sym__Atomic] = ACTIONS(1272), + [anon_sym__Noreturn] = ACTIONS(1272), + [anon_sym_noreturn] = ACTIONS(1272), + [sym_primitive_type] = ACTIONS(1272), + [anon_sym_enum] = ACTIONS(1272), + [anon_sym_struct] = ACTIONS(1272), + [anon_sym_union] = ACTIONS(1272), + [anon_sym_if] = ACTIONS(1272), + [anon_sym_else] = ACTIONS(1272), + [anon_sym_switch] = ACTIONS(1272), + [anon_sym_case] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1272), + [anon_sym_while] = ACTIONS(1272), + [anon_sym_do] = ACTIONS(1272), + [anon_sym_for] = ACTIONS(1272), + [anon_sym_return] = ACTIONS(1272), + [anon_sym_break] = ACTIONS(1272), + [anon_sym_continue] = ACTIONS(1272), + [anon_sym_goto] = ACTIONS(1272), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_sizeof] = ACTIONS(1272), + [anon_sym___alignof__] = ACTIONS(1272), + [anon_sym___alignof] = ACTIONS(1272), + [anon_sym__alignof] = ACTIONS(1272), + [anon_sym_alignof] = ACTIONS(1272), + [anon_sym__Alignof] = ACTIONS(1272), + [anon_sym_offsetof] = ACTIONS(1272), + [anon_sym___builtin_va_arg] = ACTIONS(1272), + [anon_sym__Generic] = ACTIONS(1272), + [anon_sym_asm] = ACTIONS(1272), + [anon_sym___asm__] = ACTIONS(1272), + [sym_number_literal] = ACTIONS(1274), + [anon_sym_L_SQUOTE] = ACTIONS(1274), + [anon_sym_u_SQUOTE] = ACTIONS(1274), + [anon_sym_U_SQUOTE] = ACTIONS(1274), + [anon_sym_u8_SQUOTE] = ACTIONS(1274), + [anon_sym_SQUOTE] = ACTIONS(1274), + [anon_sym_L_DQUOTE] = ACTIONS(1274), + [anon_sym_u_DQUOTE] = ACTIONS(1274), + [anon_sym_U_DQUOTE] = ACTIONS(1274), + [anon_sym_u8_DQUOTE] = ACTIONS(1274), + [anon_sym_DQUOTE] = ACTIONS(1274), + [sym_true] = ACTIONS(1272), + [sym_false] = ACTIONS(1272), + [anon_sym_NULL] = ACTIONS(1272), + [anon_sym_nullptr] = ACTIONS(1272), [sym_comment] = ACTIONS(3), }, - [338] = { - [ts_builtin_sym_end] = ACTIONS(1258), - [sym_identifier] = ACTIONS(1256), - [aux_sym_preproc_include_token1] = ACTIONS(1256), - [aux_sym_preproc_def_token1] = ACTIONS(1256), - [aux_sym_preproc_if_token1] = ACTIONS(1256), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1256), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1256), - [sym_preproc_directive] = ACTIONS(1256), - [anon_sym_LPAREN2] = ACTIONS(1258), - [anon_sym_BANG] = ACTIONS(1258), - [anon_sym_TILDE] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym_typedef] = ACTIONS(1256), - [anon_sym_extern] = ACTIONS(1256), - [anon_sym___attribute__] = ACTIONS(1256), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1258), - [anon_sym___declspec] = ACTIONS(1256), - [anon_sym___cdecl] = ACTIONS(1256), - [anon_sym___clrcall] = ACTIONS(1256), - [anon_sym___stdcall] = ACTIONS(1256), - [anon_sym___fastcall] = ACTIONS(1256), - [anon_sym___thiscall] = ACTIONS(1256), - [anon_sym___vectorcall] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1258), - [anon_sym_signed] = ACTIONS(1256), - [anon_sym_unsigned] = ACTIONS(1256), - [anon_sym_long] = ACTIONS(1256), - [anon_sym_short] = ACTIONS(1256), - [anon_sym_static] = ACTIONS(1256), - [anon_sym_auto] = ACTIONS(1256), - [anon_sym_register] = ACTIONS(1256), - [anon_sym_inline] = ACTIONS(1256), - [anon_sym_thread_local] = ACTIONS(1256), - [anon_sym___thread] = ACTIONS(1256), - [anon_sym_const] = ACTIONS(1256), - [anon_sym_constexpr] = ACTIONS(1256), - [anon_sym_volatile] = ACTIONS(1256), - [anon_sym_restrict] = ACTIONS(1256), - [anon_sym___restrict__] = ACTIONS(1256), - [anon_sym__Atomic] = ACTIONS(1256), - [anon_sym__Noreturn] = ACTIONS(1256), - [anon_sym_noreturn] = ACTIONS(1256), - [sym_primitive_type] = ACTIONS(1256), - [anon_sym_enum] = ACTIONS(1256), - [anon_sym_struct] = ACTIONS(1256), - [anon_sym_union] = ACTIONS(1256), - [anon_sym_if] = ACTIONS(1256), - [anon_sym_else] = ACTIONS(1256), - [anon_sym_switch] = ACTIONS(1256), - [anon_sym_case] = ACTIONS(1256), - [anon_sym_default] = ACTIONS(1256), - [anon_sym_while] = ACTIONS(1256), - [anon_sym_do] = ACTIONS(1256), - [anon_sym_for] = ACTIONS(1256), - [anon_sym_return] = ACTIONS(1256), - [anon_sym_break] = ACTIONS(1256), - [anon_sym_continue] = ACTIONS(1256), - [anon_sym_goto] = ACTIONS(1256), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_sizeof] = ACTIONS(1256), - [anon_sym_offsetof] = ACTIONS(1256), - [anon_sym__Generic] = ACTIONS(1256), - [anon_sym_asm] = ACTIONS(1256), - [anon_sym___asm__] = ACTIONS(1256), - [sym_number_literal] = ACTIONS(1258), - [anon_sym_L_SQUOTE] = ACTIONS(1258), - [anon_sym_u_SQUOTE] = ACTIONS(1258), - [anon_sym_U_SQUOTE] = ACTIONS(1258), - [anon_sym_u8_SQUOTE] = ACTIONS(1258), - [anon_sym_SQUOTE] = ACTIONS(1258), - [anon_sym_L_DQUOTE] = ACTIONS(1258), - [anon_sym_u_DQUOTE] = ACTIONS(1258), - [anon_sym_U_DQUOTE] = ACTIONS(1258), - [anon_sym_u8_DQUOTE] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(1258), - [sym_true] = ACTIONS(1256), - [sym_false] = ACTIONS(1256), - [anon_sym_NULL] = ACTIONS(1256), - [anon_sym_nullptr] = ACTIONS(1256), + [326] = { + [sym_identifier] = ACTIONS(1276), + [aux_sym_preproc_include_token1] = ACTIONS(1276), + [aux_sym_preproc_def_token1] = ACTIONS(1276), + [aux_sym_preproc_if_token1] = ACTIONS(1276), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), + [sym_preproc_directive] = ACTIONS(1276), + [anon_sym_LPAREN2] = ACTIONS(1278), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_DASH] = ACTIONS(1276), + [anon_sym_PLUS] = ACTIONS(1276), + [anon_sym_STAR] = ACTIONS(1278), + [anon_sym_AMP] = ACTIONS(1278), + [anon_sym_SEMI] = ACTIONS(1278), + [anon_sym___extension__] = ACTIONS(1276), + [anon_sym_typedef] = ACTIONS(1276), + [anon_sym_extern] = ACTIONS(1276), + [anon_sym___attribute__] = ACTIONS(1276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1278), + [anon_sym___declspec] = ACTIONS(1276), + [anon_sym___cdecl] = ACTIONS(1276), + [anon_sym___clrcall] = ACTIONS(1276), + [anon_sym___stdcall] = ACTIONS(1276), + [anon_sym___fastcall] = ACTIONS(1276), + [anon_sym___thiscall] = ACTIONS(1276), + [anon_sym___vectorcall] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(1278), + [anon_sym_RBRACE] = ACTIONS(1278), + [anon_sym_signed] = ACTIONS(1276), + [anon_sym_unsigned] = ACTIONS(1276), + [anon_sym_long] = ACTIONS(1276), + [anon_sym_short] = ACTIONS(1276), + [anon_sym_static] = ACTIONS(1276), + [anon_sym_auto] = ACTIONS(1276), + [anon_sym_register] = ACTIONS(1276), + [anon_sym_inline] = ACTIONS(1276), + [anon_sym___inline] = ACTIONS(1276), + [anon_sym___inline__] = ACTIONS(1276), + [anon_sym___forceinline] = ACTIONS(1276), + [anon_sym_thread_local] = ACTIONS(1276), + [anon_sym___thread] = ACTIONS(1276), + [anon_sym_const] = ACTIONS(1276), + [anon_sym_constexpr] = ACTIONS(1276), + [anon_sym_volatile] = ACTIONS(1276), + [anon_sym_restrict] = ACTIONS(1276), + [anon_sym___restrict__] = ACTIONS(1276), + [anon_sym__Atomic] = ACTIONS(1276), + [anon_sym__Noreturn] = ACTIONS(1276), + [anon_sym_noreturn] = ACTIONS(1276), + [sym_primitive_type] = ACTIONS(1276), + [anon_sym_enum] = ACTIONS(1276), + [anon_sym_struct] = ACTIONS(1276), + [anon_sym_union] = ACTIONS(1276), + [anon_sym_if] = ACTIONS(1276), + [anon_sym_else] = ACTIONS(1276), + [anon_sym_switch] = ACTIONS(1276), + [anon_sym_case] = ACTIONS(1276), + [anon_sym_default] = ACTIONS(1276), + [anon_sym_while] = ACTIONS(1276), + [anon_sym_do] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1276), + [anon_sym_return] = ACTIONS(1276), + [anon_sym_break] = ACTIONS(1276), + [anon_sym_continue] = ACTIONS(1276), + [anon_sym_goto] = ACTIONS(1276), + [anon_sym_DASH_DASH] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1278), + [anon_sym_sizeof] = ACTIONS(1276), + [anon_sym___alignof__] = ACTIONS(1276), + [anon_sym___alignof] = ACTIONS(1276), + [anon_sym__alignof] = ACTIONS(1276), + [anon_sym_alignof] = ACTIONS(1276), + [anon_sym__Alignof] = ACTIONS(1276), + [anon_sym_offsetof] = ACTIONS(1276), + [anon_sym___builtin_va_arg] = ACTIONS(1276), + [anon_sym__Generic] = ACTIONS(1276), + [anon_sym_asm] = ACTIONS(1276), + [anon_sym___asm__] = ACTIONS(1276), + [sym_number_literal] = ACTIONS(1278), + [anon_sym_L_SQUOTE] = ACTIONS(1278), + [anon_sym_u_SQUOTE] = ACTIONS(1278), + [anon_sym_U_SQUOTE] = ACTIONS(1278), + [anon_sym_u8_SQUOTE] = ACTIONS(1278), + [anon_sym_SQUOTE] = ACTIONS(1278), + [anon_sym_L_DQUOTE] = ACTIONS(1278), + [anon_sym_u_DQUOTE] = ACTIONS(1278), + [anon_sym_U_DQUOTE] = ACTIONS(1278), + [anon_sym_u8_DQUOTE] = ACTIONS(1278), + [anon_sym_DQUOTE] = ACTIONS(1278), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [anon_sym_NULL] = ACTIONS(1276), + [anon_sym_nullptr] = ACTIONS(1276), [sym_comment] = ACTIONS(3), }, - [339] = { - [sym_identifier] = ACTIONS(1304), - [aux_sym_preproc_include_token1] = ACTIONS(1304), - [aux_sym_preproc_def_token1] = ACTIONS(1304), - [aux_sym_preproc_if_token1] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), - [sym_preproc_directive] = ACTIONS(1304), - [anon_sym_LPAREN2] = ACTIONS(1306), - [anon_sym_BANG] = ACTIONS(1306), - [anon_sym_TILDE] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1304), - [anon_sym_extern] = ACTIONS(1304), - [anon_sym___attribute__] = ACTIONS(1304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), - [anon_sym___declspec] = ACTIONS(1304), - [anon_sym___cdecl] = ACTIONS(1304), - [anon_sym___clrcall] = ACTIONS(1304), - [anon_sym___stdcall] = ACTIONS(1304), - [anon_sym___fastcall] = ACTIONS(1304), - [anon_sym___thiscall] = ACTIONS(1304), - [anon_sym___vectorcall] = ACTIONS(1304), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(1306), - [anon_sym_signed] = ACTIONS(1304), - [anon_sym_unsigned] = ACTIONS(1304), - [anon_sym_long] = ACTIONS(1304), - [anon_sym_short] = ACTIONS(1304), - [anon_sym_static] = ACTIONS(1304), - [anon_sym_auto] = ACTIONS(1304), - [anon_sym_register] = ACTIONS(1304), - [anon_sym_inline] = ACTIONS(1304), - [anon_sym_thread_local] = ACTIONS(1304), - [anon_sym___thread] = ACTIONS(1304), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_constexpr] = ACTIONS(1304), - [anon_sym_volatile] = ACTIONS(1304), - [anon_sym_restrict] = ACTIONS(1304), - [anon_sym___restrict__] = ACTIONS(1304), - [anon_sym__Atomic] = ACTIONS(1304), - [anon_sym__Noreturn] = ACTIONS(1304), - [anon_sym_noreturn] = ACTIONS(1304), - [sym_primitive_type] = ACTIONS(1304), - [anon_sym_enum] = ACTIONS(1304), - [anon_sym_struct] = ACTIONS(1304), - [anon_sym_union] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1304), - [anon_sym_else] = ACTIONS(1304), - [anon_sym_switch] = ACTIONS(1304), - [anon_sym_case] = ACTIONS(1304), - [anon_sym_default] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1304), - [anon_sym_do] = ACTIONS(1304), - [anon_sym_for] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1304), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_goto] = ACTIONS(1304), - [anon_sym_DASH_DASH] = ACTIONS(1306), - [anon_sym_PLUS_PLUS] = ACTIONS(1306), - [anon_sym_sizeof] = ACTIONS(1304), - [anon_sym_offsetof] = ACTIONS(1304), - [anon_sym__Generic] = ACTIONS(1304), - [anon_sym_asm] = ACTIONS(1304), - [anon_sym___asm__] = ACTIONS(1304), - [sym_number_literal] = ACTIONS(1306), - [anon_sym_L_SQUOTE] = ACTIONS(1306), - [anon_sym_u_SQUOTE] = ACTIONS(1306), - [anon_sym_U_SQUOTE] = ACTIONS(1306), - [anon_sym_u8_SQUOTE] = ACTIONS(1306), - [anon_sym_SQUOTE] = ACTIONS(1306), - [anon_sym_L_DQUOTE] = ACTIONS(1306), - [anon_sym_u_DQUOTE] = ACTIONS(1306), - [anon_sym_U_DQUOTE] = ACTIONS(1306), - [anon_sym_u8_DQUOTE] = ACTIONS(1306), - [anon_sym_DQUOTE] = ACTIONS(1306), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [anon_sym_NULL] = ACTIONS(1304), - [anon_sym_nullptr] = ACTIONS(1304), + [327] = { + [sym_identifier] = ACTIONS(1280), + [aux_sym_preproc_include_token1] = ACTIONS(1280), + [aux_sym_preproc_def_token1] = ACTIONS(1280), + [aux_sym_preproc_if_token1] = ACTIONS(1280), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1280), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1280), + [sym_preproc_directive] = ACTIONS(1280), + [anon_sym_LPAREN2] = ACTIONS(1282), + [anon_sym_BANG] = ACTIONS(1282), + [anon_sym_TILDE] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1280), + [anon_sym_PLUS] = ACTIONS(1280), + [anon_sym_STAR] = ACTIONS(1282), + [anon_sym_AMP] = ACTIONS(1282), + [anon_sym_SEMI] = ACTIONS(1282), + [anon_sym___extension__] = ACTIONS(1280), + [anon_sym_typedef] = ACTIONS(1280), + [anon_sym_extern] = ACTIONS(1280), + [anon_sym___attribute__] = ACTIONS(1280), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1282), + [anon_sym___declspec] = ACTIONS(1280), + [anon_sym___cdecl] = ACTIONS(1280), + [anon_sym___clrcall] = ACTIONS(1280), + [anon_sym___stdcall] = ACTIONS(1280), + [anon_sym___fastcall] = ACTIONS(1280), + [anon_sym___thiscall] = ACTIONS(1280), + [anon_sym___vectorcall] = ACTIONS(1280), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_RBRACE] = ACTIONS(1282), + [anon_sym_signed] = ACTIONS(1280), + [anon_sym_unsigned] = ACTIONS(1280), + [anon_sym_long] = ACTIONS(1280), + [anon_sym_short] = ACTIONS(1280), + [anon_sym_static] = ACTIONS(1280), + [anon_sym_auto] = ACTIONS(1280), + [anon_sym_register] = ACTIONS(1280), + [anon_sym_inline] = ACTIONS(1280), + [anon_sym___inline] = ACTIONS(1280), + [anon_sym___inline__] = ACTIONS(1280), + [anon_sym___forceinline] = ACTIONS(1280), + [anon_sym_thread_local] = ACTIONS(1280), + [anon_sym___thread] = ACTIONS(1280), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_constexpr] = ACTIONS(1280), + [anon_sym_volatile] = ACTIONS(1280), + [anon_sym_restrict] = ACTIONS(1280), + [anon_sym___restrict__] = ACTIONS(1280), + [anon_sym__Atomic] = ACTIONS(1280), + [anon_sym__Noreturn] = ACTIONS(1280), + [anon_sym_noreturn] = ACTIONS(1280), + [sym_primitive_type] = ACTIONS(1280), + [anon_sym_enum] = ACTIONS(1280), + [anon_sym_struct] = ACTIONS(1280), + [anon_sym_union] = ACTIONS(1280), + [anon_sym_if] = ACTIONS(1280), + [anon_sym_else] = ACTIONS(1280), + [anon_sym_switch] = ACTIONS(1280), + [anon_sym_case] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1280), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_do] = ACTIONS(1280), + [anon_sym_for] = ACTIONS(1280), + [anon_sym_return] = ACTIONS(1280), + [anon_sym_break] = ACTIONS(1280), + [anon_sym_continue] = ACTIONS(1280), + [anon_sym_goto] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1282), + [anon_sym_PLUS_PLUS] = ACTIONS(1282), + [anon_sym_sizeof] = ACTIONS(1280), + [anon_sym___alignof__] = ACTIONS(1280), + [anon_sym___alignof] = ACTIONS(1280), + [anon_sym__alignof] = ACTIONS(1280), + [anon_sym_alignof] = ACTIONS(1280), + [anon_sym__Alignof] = ACTIONS(1280), + [anon_sym_offsetof] = ACTIONS(1280), + [anon_sym___builtin_va_arg] = ACTIONS(1280), + [anon_sym__Generic] = ACTIONS(1280), + [anon_sym_asm] = ACTIONS(1280), + [anon_sym___asm__] = ACTIONS(1280), + [sym_number_literal] = ACTIONS(1282), + [anon_sym_L_SQUOTE] = ACTIONS(1282), + [anon_sym_u_SQUOTE] = ACTIONS(1282), + [anon_sym_U_SQUOTE] = ACTIONS(1282), + [anon_sym_u8_SQUOTE] = ACTIONS(1282), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_L_DQUOTE] = ACTIONS(1282), + [anon_sym_u_DQUOTE] = ACTIONS(1282), + [anon_sym_U_DQUOTE] = ACTIONS(1282), + [anon_sym_u8_DQUOTE] = ACTIONS(1282), + [anon_sym_DQUOTE] = ACTIONS(1282), + [sym_true] = ACTIONS(1280), + [sym_false] = ACTIONS(1280), + [anon_sym_NULL] = ACTIONS(1280), + [anon_sym_nullptr] = ACTIONS(1280), [sym_comment] = ACTIONS(3), }, - [340] = { - [sym_identifier] = ACTIONS(1308), - [aux_sym_preproc_include_token1] = ACTIONS(1308), - [aux_sym_preproc_def_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), - [sym_preproc_directive] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym___attribute__] = ACTIONS(1308), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), - [anon_sym___declspec] = ACTIONS(1308), - [anon_sym___cdecl] = ACTIONS(1308), - [anon_sym___clrcall] = ACTIONS(1308), - [anon_sym___stdcall] = ACTIONS(1308), - [anon_sym___fastcall] = ACTIONS(1308), - [anon_sym___thiscall] = ACTIONS(1308), - [anon_sym___vectorcall] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_RBRACE] = ACTIONS(1310), - [anon_sym_signed] = ACTIONS(1308), - [anon_sym_unsigned] = ACTIONS(1308), - [anon_sym_long] = ACTIONS(1308), - [anon_sym_short] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1308), - [anon_sym_auto] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_inline] = ACTIONS(1308), - [anon_sym_thread_local] = ACTIONS(1308), - [anon_sym___thread] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_constexpr] = ACTIONS(1308), - [anon_sym_volatile] = ACTIONS(1308), - [anon_sym_restrict] = ACTIONS(1308), - [anon_sym___restrict__] = ACTIONS(1308), - [anon_sym__Atomic] = ACTIONS(1308), - [anon_sym__Noreturn] = ACTIONS(1308), - [anon_sym_noreturn] = ACTIONS(1308), - [sym_primitive_type] = ACTIONS(1308), - [anon_sym_enum] = ACTIONS(1308), - [anon_sym_struct] = ACTIONS(1308), - [anon_sym_union] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_else] = ACTIONS(1308), - [anon_sym_switch] = ACTIONS(1308), - [anon_sym_case] = ACTIONS(1308), - [anon_sym_default] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_goto] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_sizeof] = ACTIONS(1308), - [anon_sym_offsetof] = ACTIONS(1308), - [anon_sym__Generic] = ACTIONS(1308), - [anon_sym_asm] = ACTIONS(1308), - [anon_sym___asm__] = ACTIONS(1308), - [sym_number_literal] = ACTIONS(1310), - [anon_sym_L_SQUOTE] = ACTIONS(1310), - [anon_sym_u_SQUOTE] = ACTIONS(1310), - [anon_sym_U_SQUOTE] = ACTIONS(1310), - [anon_sym_u8_SQUOTE] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [anon_sym_L_DQUOTE] = ACTIONS(1310), - [anon_sym_u_DQUOTE] = ACTIONS(1310), - [anon_sym_U_DQUOTE] = ACTIONS(1310), - [anon_sym_u8_DQUOTE] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym_true] = ACTIONS(1308), - [sym_false] = ACTIONS(1308), - [anon_sym_NULL] = ACTIONS(1308), - [anon_sym_nullptr] = ACTIONS(1308), + [328] = { + [ts_builtin_sym_end] = ACTIONS(1254), + [sym_identifier] = ACTIONS(1252), + [aux_sym_preproc_include_token1] = ACTIONS(1252), + [aux_sym_preproc_def_token1] = ACTIONS(1252), + [aux_sym_preproc_if_token1] = ACTIONS(1252), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1252), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1252), + [sym_preproc_directive] = ACTIONS(1252), + [anon_sym_LPAREN2] = ACTIONS(1254), + [anon_sym_BANG] = ACTIONS(1254), + [anon_sym_TILDE] = ACTIONS(1254), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1252), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(1252), + [anon_sym_typedef] = ACTIONS(1252), + [anon_sym_extern] = ACTIONS(1252), + [anon_sym___attribute__] = ACTIONS(1252), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1254), + [anon_sym___declspec] = ACTIONS(1252), + [anon_sym___cdecl] = ACTIONS(1252), + [anon_sym___clrcall] = ACTIONS(1252), + [anon_sym___stdcall] = ACTIONS(1252), + [anon_sym___fastcall] = ACTIONS(1252), + [anon_sym___thiscall] = ACTIONS(1252), + [anon_sym___vectorcall] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_signed] = ACTIONS(1252), + [anon_sym_unsigned] = ACTIONS(1252), + [anon_sym_long] = ACTIONS(1252), + [anon_sym_short] = ACTIONS(1252), + [anon_sym_static] = ACTIONS(1252), + [anon_sym_auto] = ACTIONS(1252), + [anon_sym_register] = ACTIONS(1252), + [anon_sym_inline] = ACTIONS(1252), + [anon_sym___inline] = ACTIONS(1252), + [anon_sym___inline__] = ACTIONS(1252), + [anon_sym___forceinline] = ACTIONS(1252), + [anon_sym_thread_local] = ACTIONS(1252), + [anon_sym___thread] = ACTIONS(1252), + [anon_sym_const] = ACTIONS(1252), + [anon_sym_constexpr] = ACTIONS(1252), + [anon_sym_volatile] = ACTIONS(1252), + [anon_sym_restrict] = ACTIONS(1252), + [anon_sym___restrict__] = ACTIONS(1252), + [anon_sym__Atomic] = ACTIONS(1252), + [anon_sym__Noreturn] = ACTIONS(1252), + [anon_sym_noreturn] = ACTIONS(1252), + [sym_primitive_type] = ACTIONS(1252), + [anon_sym_enum] = ACTIONS(1252), + [anon_sym_struct] = ACTIONS(1252), + [anon_sym_union] = ACTIONS(1252), + [anon_sym_if] = ACTIONS(1252), + [anon_sym_else] = ACTIONS(1252), + [anon_sym_switch] = ACTIONS(1252), + [anon_sym_case] = ACTIONS(1252), + [anon_sym_default] = ACTIONS(1252), + [anon_sym_while] = ACTIONS(1252), + [anon_sym_do] = ACTIONS(1252), + [anon_sym_for] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1252), + [anon_sym_break] = ACTIONS(1252), + [anon_sym_continue] = ACTIONS(1252), + [anon_sym_goto] = ACTIONS(1252), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1252), + [anon_sym___alignof__] = ACTIONS(1252), + [anon_sym___alignof] = ACTIONS(1252), + [anon_sym__alignof] = ACTIONS(1252), + [anon_sym_alignof] = ACTIONS(1252), + [anon_sym__Alignof] = ACTIONS(1252), + [anon_sym_offsetof] = ACTIONS(1252), + [anon_sym___builtin_va_arg] = ACTIONS(1252), + [anon_sym__Generic] = ACTIONS(1252), + [anon_sym_asm] = ACTIONS(1252), + [anon_sym___asm__] = ACTIONS(1252), + [sym_number_literal] = ACTIONS(1254), + [anon_sym_L_SQUOTE] = ACTIONS(1254), + [anon_sym_u_SQUOTE] = ACTIONS(1254), + [anon_sym_U_SQUOTE] = ACTIONS(1254), + [anon_sym_u8_SQUOTE] = ACTIONS(1254), + [anon_sym_SQUOTE] = ACTIONS(1254), + [anon_sym_L_DQUOTE] = ACTIONS(1254), + [anon_sym_u_DQUOTE] = ACTIONS(1254), + [anon_sym_U_DQUOTE] = ACTIONS(1254), + [anon_sym_u8_DQUOTE] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(1254), + [sym_true] = ACTIONS(1252), + [sym_false] = ACTIONS(1252), + [anon_sym_NULL] = ACTIONS(1252), + [anon_sym_nullptr] = ACTIONS(1252), [sym_comment] = ACTIONS(3), }, - [341] = { + [329] = { [sym_identifier] = ACTIONS(1312), [aux_sym_preproc_include_token1] = ACTIONS(1312), [aux_sym_preproc_def_token1] = ACTIONS(1312), @@ -50111,6 +53329,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1314), [anon_sym_AMP] = ACTIONS(1314), [anon_sym_SEMI] = ACTIONS(1314), + [anon_sym___extension__] = ACTIONS(1312), [anon_sym_typedef] = ACTIONS(1312), [anon_sym_extern] = ACTIONS(1312), [anon_sym___attribute__] = ACTIONS(1312), @@ -50132,6 +53351,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1312), [anon_sym_register] = ACTIONS(1312), [anon_sym_inline] = ACTIONS(1312), + [anon_sym___inline] = ACTIONS(1312), + [anon_sym___inline__] = ACTIONS(1312), + [anon_sym___forceinline] = ACTIONS(1312), [anon_sym_thread_local] = ACTIONS(1312), [anon_sym___thread] = ACTIONS(1312), [anon_sym_const] = ACTIONS(1312), @@ -50161,7 +53383,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1314), [anon_sym_PLUS_PLUS] = ACTIONS(1314), [anon_sym_sizeof] = ACTIONS(1312), + [anon_sym___alignof__] = ACTIONS(1312), + [anon_sym___alignof] = ACTIONS(1312), + [anon_sym__alignof] = ACTIONS(1312), + [anon_sym_alignof] = ACTIONS(1312), + [anon_sym__Alignof] = ACTIONS(1312), [anon_sym_offsetof] = ACTIONS(1312), + [anon_sym___builtin_va_arg] = ACTIONS(1312), [anon_sym__Generic] = ACTIONS(1312), [anon_sym_asm] = ACTIONS(1312), [anon_sym___asm__] = ACTIONS(1312), @@ -50182,356 +53410,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1312), [sym_comment] = ACTIONS(3), }, - [342] = { - [ts_builtin_sym_end] = ACTIONS(1350), - [sym_identifier] = ACTIONS(1348), - [aux_sym_preproc_include_token1] = ACTIONS(1348), - [aux_sym_preproc_def_token1] = ACTIONS(1348), - [aux_sym_preproc_if_token1] = ACTIONS(1348), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1348), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1348), - [sym_preproc_directive] = ACTIONS(1348), - [anon_sym_LPAREN2] = ACTIONS(1350), - [anon_sym_BANG] = ACTIONS(1350), - [anon_sym_TILDE] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1348), - [anon_sym_PLUS] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym_typedef] = ACTIONS(1348), - [anon_sym_extern] = ACTIONS(1348), - [anon_sym___attribute__] = ACTIONS(1348), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), - [anon_sym___declspec] = ACTIONS(1348), - [anon_sym___cdecl] = ACTIONS(1348), - [anon_sym___clrcall] = ACTIONS(1348), - [anon_sym___stdcall] = ACTIONS(1348), - [anon_sym___fastcall] = ACTIONS(1348), - [anon_sym___thiscall] = ACTIONS(1348), - [anon_sym___vectorcall] = ACTIONS(1348), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_signed] = ACTIONS(1348), - [anon_sym_unsigned] = ACTIONS(1348), - [anon_sym_long] = ACTIONS(1348), - [anon_sym_short] = ACTIONS(1348), - [anon_sym_static] = ACTIONS(1348), - [anon_sym_auto] = ACTIONS(1348), - [anon_sym_register] = ACTIONS(1348), - [anon_sym_inline] = ACTIONS(1348), - [anon_sym_thread_local] = ACTIONS(1348), - [anon_sym___thread] = ACTIONS(1348), - [anon_sym_const] = ACTIONS(1348), - [anon_sym_constexpr] = ACTIONS(1348), - [anon_sym_volatile] = ACTIONS(1348), - [anon_sym_restrict] = ACTIONS(1348), - [anon_sym___restrict__] = ACTIONS(1348), - [anon_sym__Atomic] = ACTIONS(1348), - [anon_sym__Noreturn] = ACTIONS(1348), - [anon_sym_noreturn] = ACTIONS(1348), - [sym_primitive_type] = ACTIONS(1348), - [anon_sym_enum] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1348), - [anon_sym_union] = ACTIONS(1348), - [anon_sym_if] = ACTIONS(1348), - [anon_sym_else] = ACTIONS(1348), - [anon_sym_switch] = ACTIONS(1348), - [anon_sym_case] = ACTIONS(1348), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_while] = ACTIONS(1348), - [anon_sym_do] = ACTIONS(1348), - [anon_sym_for] = ACTIONS(1348), - [anon_sym_return] = ACTIONS(1348), - [anon_sym_break] = ACTIONS(1348), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1348), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_sizeof] = ACTIONS(1348), - [anon_sym_offsetof] = ACTIONS(1348), - [anon_sym__Generic] = ACTIONS(1348), - [anon_sym_asm] = ACTIONS(1348), - [anon_sym___asm__] = ACTIONS(1348), - [sym_number_literal] = ACTIONS(1350), - [anon_sym_L_SQUOTE] = ACTIONS(1350), - [anon_sym_u_SQUOTE] = ACTIONS(1350), - [anon_sym_U_SQUOTE] = ACTIONS(1350), - [anon_sym_u8_SQUOTE] = ACTIONS(1350), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_L_DQUOTE] = ACTIONS(1350), - [anon_sym_u_DQUOTE] = ACTIONS(1350), - [anon_sym_U_DQUOTE] = ACTIONS(1350), - [anon_sym_u8_DQUOTE] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym_true] = ACTIONS(1348), - [sym_false] = ACTIONS(1348), - [anon_sym_NULL] = ACTIONS(1348), - [anon_sym_nullptr] = ACTIONS(1348), - [sym_comment] = ACTIONS(3), - }, - [343] = { - [sym_identifier] = ACTIONS(1284), - [aux_sym_preproc_include_token1] = ACTIONS(1284), - [aux_sym_preproc_def_token1] = ACTIONS(1284), - [aux_sym_preproc_if_token1] = ACTIONS(1284), - [aux_sym_preproc_if_token2] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1284), - [sym_preproc_directive] = ACTIONS(1284), - [anon_sym_LPAREN2] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1286), - [anon_sym_TILDE] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1286), - [anon_sym_SEMI] = ACTIONS(1286), - [anon_sym_typedef] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1284), - [anon_sym___attribute__] = ACTIONS(1284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1286), - [anon_sym___declspec] = ACTIONS(1284), - [anon_sym___cdecl] = ACTIONS(1284), - [anon_sym___clrcall] = ACTIONS(1284), - [anon_sym___stdcall] = ACTIONS(1284), - [anon_sym___fastcall] = ACTIONS(1284), - [anon_sym___thiscall] = ACTIONS(1284), - [anon_sym___vectorcall] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_signed] = ACTIONS(1284), - [anon_sym_unsigned] = ACTIONS(1284), - [anon_sym_long] = ACTIONS(1284), - [anon_sym_short] = ACTIONS(1284), - [anon_sym_static] = ACTIONS(1284), - [anon_sym_auto] = ACTIONS(1284), - [anon_sym_register] = ACTIONS(1284), - [anon_sym_inline] = ACTIONS(1284), - [anon_sym_thread_local] = ACTIONS(1284), - [anon_sym___thread] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_constexpr] = ACTIONS(1284), - [anon_sym_volatile] = ACTIONS(1284), - [anon_sym_restrict] = ACTIONS(1284), - [anon_sym___restrict__] = ACTIONS(1284), - [anon_sym__Atomic] = ACTIONS(1284), - [anon_sym__Noreturn] = ACTIONS(1284), - [anon_sym_noreturn] = ACTIONS(1284), - [sym_primitive_type] = ACTIONS(1284), - [anon_sym_enum] = ACTIONS(1284), - [anon_sym_struct] = ACTIONS(1284), - [anon_sym_union] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_else] = ACTIONS(1284), - [anon_sym_switch] = ACTIONS(1284), - [anon_sym_case] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1284), - [anon_sym_while] = ACTIONS(1284), - [anon_sym_do] = ACTIONS(1284), - [anon_sym_for] = ACTIONS(1284), - [anon_sym_return] = ACTIONS(1284), - [anon_sym_break] = ACTIONS(1284), - [anon_sym_continue] = ACTIONS(1284), - [anon_sym_goto] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1286), - [anon_sym_PLUS_PLUS] = ACTIONS(1286), - [anon_sym_sizeof] = ACTIONS(1284), - [anon_sym_offsetof] = ACTIONS(1284), - [anon_sym__Generic] = ACTIONS(1284), - [anon_sym_asm] = ACTIONS(1284), - [anon_sym___asm__] = ACTIONS(1284), - [sym_number_literal] = ACTIONS(1286), - [anon_sym_L_SQUOTE] = ACTIONS(1286), - [anon_sym_u_SQUOTE] = ACTIONS(1286), - [anon_sym_U_SQUOTE] = ACTIONS(1286), - [anon_sym_u8_SQUOTE] = ACTIONS(1286), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_L_DQUOTE] = ACTIONS(1286), - [anon_sym_u_DQUOTE] = ACTIONS(1286), - [anon_sym_U_DQUOTE] = ACTIONS(1286), - [anon_sym_u8_DQUOTE] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym_true] = ACTIONS(1284), - [sym_false] = ACTIONS(1284), - [anon_sym_NULL] = ACTIONS(1284), - [anon_sym_nullptr] = ACTIONS(1284), - [sym_comment] = ACTIONS(3), - }, - [344] = { - [sym_identifier] = ACTIONS(1200), - [aux_sym_preproc_include_token1] = ACTIONS(1200), - [aux_sym_preproc_def_token1] = ACTIONS(1200), - [aux_sym_preproc_if_token1] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1200), - [sym_preproc_directive] = ACTIONS(1200), - [anon_sym_LPAREN2] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1202), - [anon_sym_TILDE] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(1200), - [anon_sym_STAR] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1202), - [anon_sym_typedef] = ACTIONS(1200), - [anon_sym_extern] = ACTIONS(1200), - [anon_sym___attribute__] = ACTIONS(1200), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1202), - [anon_sym___declspec] = ACTIONS(1200), - [anon_sym___cdecl] = ACTIONS(1200), - [anon_sym___clrcall] = ACTIONS(1200), - [anon_sym___stdcall] = ACTIONS(1200), - [anon_sym___fastcall] = ACTIONS(1200), - [anon_sym___thiscall] = ACTIONS(1200), - [anon_sym___vectorcall] = ACTIONS(1200), - [anon_sym_LBRACE] = ACTIONS(1202), - [anon_sym_RBRACE] = ACTIONS(1202), - [anon_sym_signed] = ACTIONS(1200), - [anon_sym_unsigned] = ACTIONS(1200), - [anon_sym_long] = ACTIONS(1200), - [anon_sym_short] = ACTIONS(1200), - [anon_sym_static] = ACTIONS(1200), - [anon_sym_auto] = ACTIONS(1200), - [anon_sym_register] = ACTIONS(1200), - [anon_sym_inline] = ACTIONS(1200), - [anon_sym_thread_local] = ACTIONS(1200), - [anon_sym___thread] = ACTIONS(1200), - [anon_sym_const] = ACTIONS(1200), - [anon_sym_constexpr] = ACTIONS(1200), - [anon_sym_volatile] = ACTIONS(1200), - [anon_sym_restrict] = ACTIONS(1200), - [anon_sym___restrict__] = ACTIONS(1200), - [anon_sym__Atomic] = ACTIONS(1200), - [anon_sym__Noreturn] = ACTIONS(1200), - [anon_sym_noreturn] = ACTIONS(1200), - [sym_primitive_type] = ACTIONS(1200), - [anon_sym_enum] = ACTIONS(1200), - [anon_sym_struct] = ACTIONS(1200), - [anon_sym_union] = ACTIONS(1200), - [anon_sym_if] = ACTIONS(1200), - [anon_sym_else] = ACTIONS(1200), - [anon_sym_switch] = ACTIONS(1200), - [anon_sym_case] = ACTIONS(1200), - [anon_sym_default] = ACTIONS(1200), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_do] = ACTIONS(1200), - [anon_sym_for] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1200), - [anon_sym_continue] = ACTIONS(1200), - [anon_sym_goto] = ACTIONS(1200), - [anon_sym_DASH_DASH] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1202), - [anon_sym_sizeof] = ACTIONS(1200), - [anon_sym_offsetof] = ACTIONS(1200), - [anon_sym__Generic] = ACTIONS(1200), - [anon_sym_asm] = ACTIONS(1200), - [anon_sym___asm__] = ACTIONS(1200), - [sym_number_literal] = ACTIONS(1202), - [anon_sym_L_SQUOTE] = ACTIONS(1202), - [anon_sym_u_SQUOTE] = ACTIONS(1202), - [anon_sym_U_SQUOTE] = ACTIONS(1202), - [anon_sym_u8_SQUOTE] = ACTIONS(1202), - [anon_sym_SQUOTE] = ACTIONS(1202), - [anon_sym_L_DQUOTE] = ACTIONS(1202), - [anon_sym_u_DQUOTE] = ACTIONS(1202), - [anon_sym_U_DQUOTE] = ACTIONS(1202), - [anon_sym_u8_DQUOTE] = ACTIONS(1202), - [anon_sym_DQUOTE] = ACTIONS(1202), - [sym_true] = ACTIONS(1200), - [sym_false] = ACTIONS(1200), - [anon_sym_NULL] = ACTIONS(1200), - [anon_sym_nullptr] = ACTIONS(1200), + [330] = { + [sym_identifier] = ACTIONS(1316), + [aux_sym_preproc_include_token1] = ACTIONS(1316), + [aux_sym_preproc_def_token1] = ACTIONS(1316), + [aux_sym_preproc_if_token1] = ACTIONS(1316), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), + [sym_preproc_directive] = ACTIONS(1316), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym___extension__] = ACTIONS(1316), + [anon_sym_typedef] = ACTIONS(1316), + [anon_sym_extern] = ACTIONS(1316), + [anon_sym___attribute__] = ACTIONS(1316), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), + [anon_sym___declspec] = ACTIONS(1316), + [anon_sym___cdecl] = ACTIONS(1316), + [anon_sym___clrcall] = ACTIONS(1316), + [anon_sym___stdcall] = ACTIONS(1316), + [anon_sym___fastcall] = ACTIONS(1316), + [anon_sym___thiscall] = ACTIONS(1316), + [anon_sym___vectorcall] = ACTIONS(1316), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_RBRACE] = ACTIONS(1318), + [anon_sym_signed] = ACTIONS(1316), + [anon_sym_unsigned] = ACTIONS(1316), + [anon_sym_long] = ACTIONS(1316), + [anon_sym_short] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1316), + [anon_sym_auto] = ACTIONS(1316), + [anon_sym_register] = ACTIONS(1316), + [anon_sym_inline] = ACTIONS(1316), + [anon_sym___inline] = ACTIONS(1316), + [anon_sym___inline__] = ACTIONS(1316), + [anon_sym___forceinline] = ACTIONS(1316), + [anon_sym_thread_local] = ACTIONS(1316), + [anon_sym___thread] = ACTIONS(1316), + [anon_sym_const] = ACTIONS(1316), + [anon_sym_constexpr] = ACTIONS(1316), + [anon_sym_volatile] = ACTIONS(1316), + [anon_sym_restrict] = ACTIONS(1316), + [anon_sym___restrict__] = ACTIONS(1316), + [anon_sym__Atomic] = ACTIONS(1316), + [anon_sym__Noreturn] = ACTIONS(1316), + [anon_sym_noreturn] = ACTIONS(1316), + [sym_primitive_type] = ACTIONS(1316), + [anon_sym_enum] = ACTIONS(1316), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_union] = ACTIONS(1316), + [anon_sym_if] = ACTIONS(1316), + [anon_sym_else] = ACTIONS(1316), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_case] = ACTIONS(1316), + [anon_sym_default] = ACTIONS(1316), + [anon_sym_while] = ACTIONS(1316), + [anon_sym_do] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1316), + [anon_sym_break] = ACTIONS(1316), + [anon_sym_continue] = ACTIONS(1316), + [anon_sym_goto] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1318), + [anon_sym_PLUS_PLUS] = ACTIONS(1318), + [anon_sym_sizeof] = ACTIONS(1316), + [anon_sym___alignof__] = ACTIONS(1316), + [anon_sym___alignof] = ACTIONS(1316), + [anon_sym__alignof] = ACTIONS(1316), + [anon_sym_alignof] = ACTIONS(1316), + [anon_sym__Alignof] = ACTIONS(1316), + [anon_sym_offsetof] = ACTIONS(1316), + [anon_sym___builtin_va_arg] = ACTIONS(1316), + [anon_sym__Generic] = ACTIONS(1316), + [anon_sym_asm] = ACTIONS(1316), + [anon_sym___asm__] = ACTIONS(1316), + [sym_number_literal] = ACTIONS(1318), + [anon_sym_L_SQUOTE] = ACTIONS(1318), + [anon_sym_u_SQUOTE] = ACTIONS(1318), + [anon_sym_U_SQUOTE] = ACTIONS(1318), + [anon_sym_u8_SQUOTE] = ACTIONS(1318), + [anon_sym_SQUOTE] = ACTIONS(1318), + [anon_sym_L_DQUOTE] = ACTIONS(1318), + [anon_sym_u_DQUOTE] = ACTIONS(1318), + [anon_sym_U_DQUOTE] = ACTIONS(1318), + [anon_sym_u8_DQUOTE] = ACTIONS(1318), + [anon_sym_DQUOTE] = ACTIONS(1318), + [sym_true] = ACTIONS(1316), + [sym_false] = ACTIONS(1316), + [anon_sym_NULL] = ACTIONS(1316), + [anon_sym_nullptr] = ACTIONS(1316), [sym_comment] = ACTIONS(3), }, - [345] = { - [ts_builtin_sym_end] = ACTIONS(1354), - [sym_identifier] = ACTIONS(1352), - [aux_sym_preproc_include_token1] = ACTIONS(1352), - [aux_sym_preproc_def_token1] = ACTIONS(1352), - [aux_sym_preproc_if_token1] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), - [sym_preproc_directive] = ACTIONS(1352), - [anon_sym_LPAREN2] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1354), - [anon_sym_TILDE] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(1352), - [anon_sym_extern] = ACTIONS(1352), - [anon_sym___attribute__] = ACTIONS(1352), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), - [anon_sym___declspec] = ACTIONS(1352), - [anon_sym___cdecl] = ACTIONS(1352), - [anon_sym___clrcall] = ACTIONS(1352), - [anon_sym___stdcall] = ACTIONS(1352), - [anon_sym___fastcall] = ACTIONS(1352), - [anon_sym___thiscall] = ACTIONS(1352), - [anon_sym___vectorcall] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_signed] = ACTIONS(1352), - [anon_sym_unsigned] = ACTIONS(1352), - [anon_sym_long] = ACTIONS(1352), - [anon_sym_short] = ACTIONS(1352), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_auto] = ACTIONS(1352), - [anon_sym_register] = ACTIONS(1352), - [anon_sym_inline] = ACTIONS(1352), - [anon_sym_thread_local] = ACTIONS(1352), - [anon_sym___thread] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1352), - [anon_sym_constexpr] = ACTIONS(1352), - [anon_sym_volatile] = ACTIONS(1352), - [anon_sym_restrict] = ACTIONS(1352), - [anon_sym___restrict__] = ACTIONS(1352), - [anon_sym__Atomic] = ACTIONS(1352), - [anon_sym__Noreturn] = ACTIONS(1352), - [anon_sym_noreturn] = ACTIONS(1352), - [sym_primitive_type] = ACTIONS(1352), - [anon_sym_enum] = ACTIONS(1352), - [anon_sym_struct] = ACTIONS(1352), - [anon_sym_union] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1352), - [anon_sym_else] = ACTIONS(1352), - [anon_sym_switch] = ACTIONS(1352), - [anon_sym_case] = ACTIONS(1352), - [anon_sym_default] = ACTIONS(1352), - [anon_sym_while] = ACTIONS(1352), - [anon_sym_do] = ACTIONS(1352), - [anon_sym_for] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1352), - [anon_sym_break] = ACTIONS(1352), - [anon_sym_continue] = ACTIONS(1352), - [anon_sym_goto] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_sizeof] = ACTIONS(1352), - [anon_sym_offsetof] = ACTIONS(1352), - [anon_sym__Generic] = ACTIONS(1352), - [anon_sym_asm] = ACTIONS(1352), - [anon_sym___asm__] = ACTIONS(1352), - [sym_number_literal] = ACTIONS(1354), - [anon_sym_L_SQUOTE] = ACTIONS(1354), - [anon_sym_u_SQUOTE] = ACTIONS(1354), - [anon_sym_U_SQUOTE] = ACTIONS(1354), - [anon_sym_u8_SQUOTE] = ACTIONS(1354), - [anon_sym_SQUOTE] = ACTIONS(1354), - [anon_sym_L_DQUOTE] = ACTIONS(1354), - [anon_sym_u_DQUOTE] = ACTIONS(1354), - [anon_sym_U_DQUOTE] = ACTIONS(1354), - [anon_sym_u8_DQUOTE] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym_true] = ACTIONS(1352), - [sym_false] = ACTIONS(1352), - [anon_sym_NULL] = ACTIONS(1352), - [anon_sym_nullptr] = ACTIONS(1352), + [331] = { + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_RBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym___builtin_va_arg] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, - [346] = { - [ts_builtin_sym_end] = ACTIONS(1326), + [332] = { [sym_identifier] = ACTIONS(1324), [aux_sym_preproc_include_token1] = ACTIONS(1324), [aux_sym_preproc_def_token1] = ACTIONS(1324), @@ -50547,6 +53620,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1326), [anon_sym_AMP] = ACTIONS(1326), [anon_sym_SEMI] = ACTIONS(1326), + [anon_sym___extension__] = ACTIONS(1324), [anon_sym_typedef] = ACTIONS(1324), [anon_sym_extern] = ACTIONS(1324), [anon_sym___attribute__] = ACTIONS(1324), @@ -50559,6 +53633,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1324), [anon_sym___vectorcall] = ACTIONS(1324), [anon_sym_LBRACE] = ACTIONS(1326), + [anon_sym_RBRACE] = ACTIONS(1326), [anon_sym_signed] = ACTIONS(1324), [anon_sym_unsigned] = ACTIONS(1324), [anon_sym_long] = ACTIONS(1324), @@ -50567,6 +53642,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1324), [anon_sym_register] = ACTIONS(1324), [anon_sym_inline] = ACTIONS(1324), + [anon_sym___inline] = ACTIONS(1324), + [anon_sym___inline__] = ACTIONS(1324), + [anon_sym___forceinline] = ACTIONS(1324), [anon_sym_thread_local] = ACTIONS(1324), [anon_sym___thread] = ACTIONS(1324), [anon_sym_const] = ACTIONS(1324), @@ -50596,7 +53674,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1326), [anon_sym_PLUS_PLUS] = ACTIONS(1326), [anon_sym_sizeof] = ACTIONS(1324), + [anon_sym___alignof__] = ACTIONS(1324), + [anon_sym___alignof] = ACTIONS(1324), + [anon_sym__alignof] = ACTIONS(1324), + [anon_sym_alignof] = ACTIONS(1324), + [anon_sym__Alignof] = ACTIONS(1324), [anon_sym_offsetof] = ACTIONS(1324), + [anon_sym___builtin_va_arg] = ACTIONS(1324), [anon_sym__Generic] = ACTIONS(1324), [anon_sym_asm] = ACTIONS(1324), [anon_sym___asm__] = ACTIONS(1324), @@ -50617,8 +53701,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1324), [sym_comment] = ACTIONS(3), }, - [347] = { - [ts_builtin_sym_end] = ACTIONS(1330), + [333] = { [sym_identifier] = ACTIONS(1328), [aux_sym_preproc_include_token1] = ACTIONS(1328), [aux_sym_preproc_def_token1] = ACTIONS(1328), @@ -50634,6 +53717,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1330), [anon_sym_AMP] = ACTIONS(1330), [anon_sym_SEMI] = ACTIONS(1330), + [anon_sym___extension__] = ACTIONS(1328), [anon_sym_typedef] = ACTIONS(1328), [anon_sym_extern] = ACTIONS(1328), [anon_sym___attribute__] = ACTIONS(1328), @@ -50646,6 +53730,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1328), [anon_sym___vectorcall] = ACTIONS(1328), [anon_sym_LBRACE] = ACTIONS(1330), + [anon_sym_RBRACE] = ACTIONS(1330), [anon_sym_signed] = ACTIONS(1328), [anon_sym_unsigned] = ACTIONS(1328), [anon_sym_long] = ACTIONS(1328), @@ -50654,6 +53739,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1328), [anon_sym_register] = ACTIONS(1328), [anon_sym_inline] = ACTIONS(1328), + [anon_sym___inline] = ACTIONS(1328), + [anon_sym___inline__] = ACTIONS(1328), + [anon_sym___forceinline] = ACTIONS(1328), [anon_sym_thread_local] = ACTIONS(1328), [anon_sym___thread] = ACTIONS(1328), [anon_sym_const] = ACTIONS(1328), @@ -50683,7 +53771,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1330), [anon_sym_PLUS_PLUS] = ACTIONS(1330), [anon_sym_sizeof] = ACTIONS(1328), + [anon_sym___alignof__] = ACTIONS(1328), + [anon_sym___alignof] = ACTIONS(1328), + [anon_sym__alignof] = ACTIONS(1328), + [anon_sym_alignof] = ACTIONS(1328), + [anon_sym__Alignof] = ACTIONS(1328), [anon_sym_offsetof] = ACTIONS(1328), + [anon_sym___builtin_va_arg] = ACTIONS(1328), [anon_sym__Generic] = ACTIONS(1328), [anon_sym_asm] = ACTIONS(1328), [anon_sym___asm__] = ACTIONS(1328), @@ -50704,8 +53798,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1328), [sym_comment] = ACTIONS(3), }, - [348] = { - [ts_builtin_sym_end] = ACTIONS(1334), + [334] = { [sym_identifier] = ACTIONS(1332), [aux_sym_preproc_include_token1] = ACTIONS(1332), [aux_sym_preproc_def_token1] = ACTIONS(1332), @@ -50721,6 +53814,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1334), [anon_sym_AMP] = ACTIONS(1334), [anon_sym_SEMI] = ACTIONS(1334), + [anon_sym___extension__] = ACTIONS(1332), [anon_sym_typedef] = ACTIONS(1332), [anon_sym_extern] = ACTIONS(1332), [anon_sym___attribute__] = ACTIONS(1332), @@ -50733,6 +53827,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1332), [anon_sym___vectorcall] = ACTIONS(1332), [anon_sym_LBRACE] = ACTIONS(1334), + [anon_sym_RBRACE] = ACTIONS(1334), [anon_sym_signed] = ACTIONS(1332), [anon_sym_unsigned] = ACTIONS(1332), [anon_sym_long] = ACTIONS(1332), @@ -50741,6 +53836,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1332), [anon_sym_register] = ACTIONS(1332), [anon_sym_inline] = ACTIONS(1332), + [anon_sym___inline] = ACTIONS(1332), + [anon_sym___inline__] = ACTIONS(1332), + [anon_sym___forceinline] = ACTIONS(1332), [anon_sym_thread_local] = ACTIONS(1332), [anon_sym___thread] = ACTIONS(1332), [anon_sym_const] = ACTIONS(1332), @@ -50770,7 +53868,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1334), [anon_sym_PLUS_PLUS] = ACTIONS(1334), [anon_sym_sizeof] = ACTIONS(1332), + [anon_sym___alignof__] = ACTIONS(1332), + [anon_sym___alignof] = ACTIONS(1332), + [anon_sym__alignof] = ACTIONS(1332), + [anon_sym_alignof] = ACTIONS(1332), + [anon_sym__Alignof] = ACTIONS(1332), [anon_sym_offsetof] = ACTIONS(1332), + [anon_sym___builtin_va_arg] = ACTIONS(1332), [anon_sym__Generic] = ACTIONS(1332), [anon_sym_asm] = ACTIONS(1332), [anon_sym___asm__] = ACTIONS(1332), @@ -50791,3366 +53895,2631 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1332), [sym_comment] = ACTIONS(3), }, - [349] = { - [sym_attribute_declaration] = STATE(439), - [sym_compound_statement] = STATE(261), - [sym_attributed_statement] = STATE(261), - [sym_labeled_statement] = STATE(261), - [sym_expression_statement] = STATE(261), - [sym_if_statement] = STATE(261), - [sym_switch_statement] = STATE(261), - [sym_case_statement] = STATE(261), - [sym_while_statement] = STATE(261), - [sym_do_statement] = STATE(261), - [sym_for_statement] = STATE(261), - [sym_return_statement] = STATE(261), - [sym_break_statement] = STATE(261), - [sym_continue_statement] = STATE(261), - [sym_goto_statement] = STATE(261), - [sym__expression] = STATE(1112), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [sym_identifier] = ACTIONS(1460), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(462), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [335] = { + [sym_identifier] = ACTIONS(1340), + [aux_sym_preproc_include_token1] = ACTIONS(1340), + [aux_sym_preproc_def_token1] = ACTIONS(1340), + [aux_sym_preproc_if_token1] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), + [sym_preproc_directive] = ACTIONS(1340), + [anon_sym_LPAREN2] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym___extension__] = ACTIONS(1340), + [anon_sym_typedef] = ACTIONS(1340), + [anon_sym_extern] = ACTIONS(1340), + [anon_sym___attribute__] = ACTIONS(1340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), + [anon_sym___declspec] = ACTIONS(1340), + [anon_sym___cdecl] = ACTIONS(1340), + [anon_sym___clrcall] = ACTIONS(1340), + [anon_sym___stdcall] = ACTIONS(1340), + [anon_sym___fastcall] = ACTIONS(1340), + [anon_sym___thiscall] = ACTIONS(1340), + [anon_sym___vectorcall] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(1342), + [anon_sym_RBRACE] = ACTIONS(1342), + [anon_sym_signed] = ACTIONS(1340), + [anon_sym_unsigned] = ACTIONS(1340), + [anon_sym_long] = ACTIONS(1340), + [anon_sym_short] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_auto] = ACTIONS(1340), + [anon_sym_register] = ACTIONS(1340), + [anon_sym_inline] = ACTIONS(1340), + [anon_sym___inline] = ACTIONS(1340), + [anon_sym___inline__] = ACTIONS(1340), + [anon_sym___forceinline] = ACTIONS(1340), + [anon_sym_thread_local] = ACTIONS(1340), + [anon_sym___thread] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_constexpr] = ACTIONS(1340), + [anon_sym_volatile] = ACTIONS(1340), + [anon_sym_restrict] = ACTIONS(1340), + [anon_sym___restrict__] = ACTIONS(1340), + [anon_sym__Atomic] = ACTIONS(1340), + [anon_sym__Noreturn] = ACTIONS(1340), + [anon_sym_noreturn] = ACTIONS(1340), + [sym_primitive_type] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_else] = ACTIONS(1340), + [anon_sym_switch] = ACTIONS(1340), + [anon_sym_case] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [anon_sym_do] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_goto] = ACTIONS(1340), + [anon_sym_DASH_DASH] = ACTIONS(1342), + [anon_sym_PLUS_PLUS] = ACTIONS(1342), + [anon_sym_sizeof] = ACTIONS(1340), + [anon_sym___alignof__] = ACTIONS(1340), + [anon_sym___alignof] = ACTIONS(1340), + [anon_sym__alignof] = ACTIONS(1340), + [anon_sym_alignof] = ACTIONS(1340), + [anon_sym__Alignof] = ACTIONS(1340), + [anon_sym_offsetof] = ACTIONS(1340), + [anon_sym___builtin_va_arg] = ACTIONS(1340), + [anon_sym__Generic] = ACTIONS(1340), + [anon_sym_asm] = ACTIONS(1340), + [anon_sym___asm__] = ACTIONS(1340), + [sym_number_literal] = ACTIONS(1342), + [anon_sym_L_SQUOTE] = ACTIONS(1342), + [anon_sym_u_SQUOTE] = ACTIONS(1342), + [anon_sym_U_SQUOTE] = ACTIONS(1342), + [anon_sym_u8_SQUOTE] = ACTIONS(1342), + [anon_sym_SQUOTE] = ACTIONS(1342), + [anon_sym_L_DQUOTE] = ACTIONS(1342), + [anon_sym_u_DQUOTE] = ACTIONS(1342), + [anon_sym_U_DQUOTE] = ACTIONS(1342), + [anon_sym_u8_DQUOTE] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1342), + [sym_true] = ACTIONS(1340), + [sym_false] = ACTIONS(1340), + [anon_sym_NULL] = ACTIONS(1340), + [anon_sym_nullptr] = ACTIONS(1340), [sym_comment] = ACTIONS(3), }, - [350] = { - [sym_identifier] = ACTIONS(1356), - [aux_sym_preproc_include_token1] = ACTIONS(1356), - [aux_sym_preproc_def_token1] = ACTIONS(1356), - [aux_sym_preproc_if_token1] = ACTIONS(1356), - [aux_sym_preproc_if_token2] = ACTIONS(1356), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), - [sym_preproc_directive] = ACTIONS(1356), - [anon_sym_LPAREN2] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym_typedef] = ACTIONS(1356), - [anon_sym_extern] = ACTIONS(1356), - [anon_sym___attribute__] = ACTIONS(1356), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1358), - [anon_sym___declspec] = ACTIONS(1356), - [anon_sym___cdecl] = ACTIONS(1356), - [anon_sym___clrcall] = ACTIONS(1356), - [anon_sym___stdcall] = ACTIONS(1356), - [anon_sym___fastcall] = ACTIONS(1356), - [anon_sym___thiscall] = ACTIONS(1356), - [anon_sym___vectorcall] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_signed] = ACTIONS(1356), - [anon_sym_unsigned] = ACTIONS(1356), - [anon_sym_long] = ACTIONS(1356), - [anon_sym_short] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_auto] = ACTIONS(1356), - [anon_sym_register] = ACTIONS(1356), - [anon_sym_inline] = ACTIONS(1356), - [anon_sym_thread_local] = ACTIONS(1356), - [anon_sym___thread] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_constexpr] = ACTIONS(1356), - [anon_sym_volatile] = ACTIONS(1356), - [anon_sym_restrict] = ACTIONS(1356), - [anon_sym___restrict__] = ACTIONS(1356), - [anon_sym__Atomic] = ACTIONS(1356), - [anon_sym__Noreturn] = ACTIONS(1356), - [anon_sym_noreturn] = ACTIONS(1356), - [sym_primitive_type] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_struct] = ACTIONS(1356), - [anon_sym_union] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_switch] = ACTIONS(1356), - [anon_sym_case] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_do] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_goto] = ACTIONS(1356), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_sizeof] = ACTIONS(1356), - [anon_sym_offsetof] = ACTIONS(1356), - [anon_sym__Generic] = ACTIONS(1356), - [anon_sym_asm] = ACTIONS(1356), - [anon_sym___asm__] = ACTIONS(1356), - [sym_number_literal] = ACTIONS(1358), - [anon_sym_L_SQUOTE] = ACTIONS(1358), - [anon_sym_u_SQUOTE] = ACTIONS(1358), - [anon_sym_U_SQUOTE] = ACTIONS(1358), - [anon_sym_u8_SQUOTE] = ACTIONS(1358), - [anon_sym_SQUOTE] = ACTIONS(1358), - [anon_sym_L_DQUOTE] = ACTIONS(1358), - [anon_sym_u_DQUOTE] = ACTIONS(1358), - [anon_sym_U_DQUOTE] = ACTIONS(1358), - [anon_sym_u8_DQUOTE] = ACTIONS(1358), - [anon_sym_DQUOTE] = ACTIONS(1358), - [sym_true] = ACTIONS(1356), - [sym_false] = ACTIONS(1356), - [anon_sym_NULL] = ACTIONS(1356), - [anon_sym_nullptr] = ACTIONS(1356), - [sym_comment] = ACTIONS(3), - }, - [351] = { - [sym_attribute_declaration] = STATE(375), - [sym_compound_statement] = STATE(2002), - [sym_attributed_statement] = STATE(2002), - [sym_labeled_statement] = STATE(2002), - [sym_expression_statement] = STATE(2002), - [sym_if_statement] = STATE(2002), - [sym_switch_statement] = STATE(2002), - [sym_case_statement] = STATE(2002), - [sym_while_statement] = STATE(2002), - [sym_do_statement] = STATE(2002), - [sym_for_statement] = STATE(2002), - [sym_return_statement] = STATE(2002), - [sym_break_statement] = STATE(2002), - [sym_continue_statement] = STATE(2002), - [sym_goto_statement] = STATE(2002), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1466), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [352] = { - [sym_attribute_declaration] = STATE(413), - [sym_compound_statement] = STATE(277), - [sym_attributed_statement] = STATE(277), - [sym_labeled_statement] = STATE(277), - [sym_expression_statement] = STATE(277), - [sym_if_statement] = STATE(277), - [sym_switch_statement] = STATE(277), - [sym_case_statement] = STATE(277), - [sym_while_statement] = STATE(277), - [sym_do_statement] = STATE(277), - [sym_for_statement] = STATE(277), - [sym_return_statement] = STATE(277), - [sym_break_statement] = STATE(277), - [sym_continue_statement] = STATE(277), - [sym_goto_statement] = STATE(277), - [sym__expression] = STATE(1098), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1873), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(413), - [sym_identifier] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [353] = { - [sym_attribute_declaration] = STATE(375), - [sym_compound_statement] = STATE(239), - [sym_attributed_statement] = STATE(239), - [sym_labeled_statement] = STATE(239), - [sym_expression_statement] = STATE(239), - [sym_if_statement] = STATE(239), - [sym_switch_statement] = STATE(239), - [sym_case_statement] = STATE(239), - [sym_while_statement] = STATE(239), - [sym_do_statement] = STATE(239), - [sym_for_statement] = STATE(239), - [sym_return_statement] = STATE(239), - [sym_break_statement] = STATE(239), - [sym_continue_statement] = STATE(239), - [sym_goto_statement] = STATE(239), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1466), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [354] = { - [sym_attribute_declaration] = STATE(375), - [sym_compound_statement] = STATE(244), - [sym_attributed_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1466), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [355] = { - [sym_attribute_declaration] = STATE(375), - [sym_compound_statement] = STATE(246), - [sym_attributed_statement] = STATE(246), - [sym_labeled_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_case_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1466), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [356] = { - [sym_identifier] = ACTIONS(1410), - [aux_sym_preproc_include_token1] = ACTIONS(1410), - [aux_sym_preproc_def_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token2] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), - [sym_preproc_directive] = ACTIONS(1410), - [anon_sym_LPAREN2] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym_typedef] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym___attribute__] = ACTIONS(1410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), - [anon_sym___declspec] = ACTIONS(1410), - [anon_sym___cdecl] = ACTIONS(1410), - [anon_sym___clrcall] = ACTIONS(1410), - [anon_sym___stdcall] = ACTIONS(1410), - [anon_sym___fastcall] = ACTIONS(1410), - [anon_sym___thiscall] = ACTIONS(1410), - [anon_sym___vectorcall] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_auto] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), - [anon_sym_thread_local] = ACTIONS(1410), - [anon_sym___thread] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_constexpr] = ACTIONS(1410), - [anon_sym_volatile] = ACTIONS(1410), - [anon_sym_restrict] = ACTIONS(1410), - [anon_sym___restrict__] = ACTIONS(1410), - [anon_sym__Atomic] = ACTIONS(1410), - [anon_sym__Noreturn] = ACTIONS(1410), - [anon_sym_noreturn] = ACTIONS(1410), - [sym_primitive_type] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_case] = ACTIONS(1410), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_goto] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_sizeof] = ACTIONS(1410), - [anon_sym_offsetof] = ACTIONS(1410), - [anon_sym__Generic] = ACTIONS(1410), - [anon_sym_asm] = ACTIONS(1410), - [anon_sym___asm__] = ACTIONS(1410), - [sym_number_literal] = ACTIONS(1412), - [anon_sym_L_SQUOTE] = ACTIONS(1412), - [anon_sym_u_SQUOTE] = ACTIONS(1412), - [anon_sym_U_SQUOTE] = ACTIONS(1412), - [anon_sym_u8_SQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_L_DQUOTE] = ACTIONS(1412), - [anon_sym_u_DQUOTE] = ACTIONS(1412), - [anon_sym_U_DQUOTE] = ACTIONS(1412), - [anon_sym_u8_DQUOTE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [sym_true] = ACTIONS(1410), - [sym_false] = ACTIONS(1410), - [anon_sym_NULL] = ACTIONS(1410), - [anon_sym_nullptr] = ACTIONS(1410), + [336] = { + [sym_identifier] = ACTIONS(1344), + [aux_sym_preproc_include_token1] = ACTIONS(1344), + [aux_sym_preproc_def_token1] = ACTIONS(1344), + [aux_sym_preproc_if_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), + [sym_preproc_directive] = ACTIONS(1344), + [anon_sym_LPAREN2] = ACTIONS(1346), + [anon_sym_BANG] = ACTIONS(1346), + [anon_sym_TILDE] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1344), + [anon_sym_PLUS] = ACTIONS(1344), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1346), + [anon_sym___extension__] = ACTIONS(1344), + [anon_sym_typedef] = ACTIONS(1344), + [anon_sym_extern] = ACTIONS(1344), + [anon_sym___attribute__] = ACTIONS(1344), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), + [anon_sym___declspec] = ACTIONS(1344), + [anon_sym___cdecl] = ACTIONS(1344), + [anon_sym___clrcall] = ACTIONS(1344), + [anon_sym___stdcall] = ACTIONS(1344), + [anon_sym___fastcall] = ACTIONS(1344), + [anon_sym___thiscall] = ACTIONS(1344), + [anon_sym___vectorcall] = ACTIONS(1344), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_RBRACE] = ACTIONS(1346), + [anon_sym_signed] = ACTIONS(1344), + [anon_sym_unsigned] = ACTIONS(1344), + [anon_sym_long] = ACTIONS(1344), + [anon_sym_short] = ACTIONS(1344), + [anon_sym_static] = ACTIONS(1344), + [anon_sym_auto] = ACTIONS(1344), + [anon_sym_register] = ACTIONS(1344), + [anon_sym_inline] = ACTIONS(1344), + [anon_sym___inline] = ACTIONS(1344), + [anon_sym___inline__] = ACTIONS(1344), + [anon_sym___forceinline] = ACTIONS(1344), + [anon_sym_thread_local] = ACTIONS(1344), + [anon_sym___thread] = ACTIONS(1344), + [anon_sym_const] = ACTIONS(1344), + [anon_sym_constexpr] = ACTIONS(1344), + [anon_sym_volatile] = ACTIONS(1344), + [anon_sym_restrict] = ACTIONS(1344), + [anon_sym___restrict__] = ACTIONS(1344), + [anon_sym__Atomic] = ACTIONS(1344), + [anon_sym__Noreturn] = ACTIONS(1344), + [anon_sym_noreturn] = ACTIONS(1344), + [sym_primitive_type] = ACTIONS(1344), + [anon_sym_enum] = ACTIONS(1344), + [anon_sym_struct] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_else] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(1344), + [anon_sym_case] = ACTIONS(1344), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_while] = ACTIONS(1344), + [anon_sym_do] = ACTIONS(1344), + [anon_sym_for] = ACTIONS(1344), + [anon_sym_return] = ACTIONS(1344), + [anon_sym_break] = ACTIONS(1344), + [anon_sym_continue] = ACTIONS(1344), + [anon_sym_goto] = ACTIONS(1344), + [anon_sym_DASH_DASH] = ACTIONS(1346), + [anon_sym_PLUS_PLUS] = ACTIONS(1346), + [anon_sym_sizeof] = ACTIONS(1344), + [anon_sym___alignof__] = ACTIONS(1344), + [anon_sym___alignof] = ACTIONS(1344), + [anon_sym__alignof] = ACTIONS(1344), + [anon_sym_alignof] = ACTIONS(1344), + [anon_sym__Alignof] = ACTIONS(1344), + [anon_sym_offsetof] = ACTIONS(1344), + [anon_sym___builtin_va_arg] = ACTIONS(1344), + [anon_sym__Generic] = ACTIONS(1344), + [anon_sym_asm] = ACTIONS(1344), + [anon_sym___asm__] = ACTIONS(1344), + [sym_number_literal] = ACTIONS(1346), + [anon_sym_L_SQUOTE] = ACTIONS(1346), + [anon_sym_u_SQUOTE] = ACTIONS(1346), + [anon_sym_U_SQUOTE] = ACTIONS(1346), + [anon_sym_u8_SQUOTE] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1346), + [anon_sym_L_DQUOTE] = ACTIONS(1346), + [anon_sym_u_DQUOTE] = ACTIONS(1346), + [anon_sym_U_DQUOTE] = ACTIONS(1346), + [anon_sym_u8_DQUOTE] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1346), + [sym_true] = ACTIONS(1344), + [sym_false] = ACTIONS(1344), + [anon_sym_NULL] = ACTIONS(1344), + [anon_sym_nullptr] = ACTIONS(1344), [sym_comment] = ACTIONS(3), }, - [357] = { - [sym_identifier] = ACTIONS(1414), - [aux_sym_preproc_include_token1] = ACTIONS(1414), - [aux_sym_preproc_def_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token2] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), - [sym_preproc_directive] = ACTIONS(1414), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym_typedef] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym___attribute__] = ACTIONS(1414), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), - [anon_sym___declspec] = ACTIONS(1414), - [anon_sym___cdecl] = ACTIONS(1414), - [anon_sym___clrcall] = ACTIONS(1414), - [anon_sym___stdcall] = ACTIONS(1414), - [anon_sym___fastcall] = ACTIONS(1414), - [anon_sym___thiscall] = ACTIONS(1414), - [anon_sym___vectorcall] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_signed] = ACTIONS(1414), - [anon_sym_unsigned] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_short] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_auto] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_inline] = ACTIONS(1414), - [anon_sym_thread_local] = ACTIONS(1414), - [anon_sym___thread] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_constexpr] = ACTIONS(1414), - [anon_sym_volatile] = ACTIONS(1414), - [anon_sym_restrict] = ACTIONS(1414), - [anon_sym___restrict__] = ACTIONS(1414), - [anon_sym__Atomic] = ACTIONS(1414), - [anon_sym__Noreturn] = ACTIONS(1414), - [anon_sym_noreturn] = ACTIONS(1414), - [sym_primitive_type] = ACTIONS(1414), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_case] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_goto] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_sizeof] = ACTIONS(1414), - [anon_sym_offsetof] = ACTIONS(1414), - [anon_sym__Generic] = ACTIONS(1414), - [anon_sym_asm] = ACTIONS(1414), - [anon_sym___asm__] = ACTIONS(1414), - [sym_number_literal] = ACTIONS(1416), - [anon_sym_L_SQUOTE] = ACTIONS(1416), - [anon_sym_u_SQUOTE] = ACTIONS(1416), - [anon_sym_U_SQUOTE] = ACTIONS(1416), - [anon_sym_u8_SQUOTE] = ACTIONS(1416), - [anon_sym_SQUOTE] = ACTIONS(1416), - [anon_sym_L_DQUOTE] = ACTIONS(1416), - [anon_sym_u_DQUOTE] = ACTIONS(1416), - [anon_sym_U_DQUOTE] = ACTIONS(1416), - [anon_sym_u8_DQUOTE] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [sym_true] = ACTIONS(1414), - [sym_false] = ACTIONS(1414), - [anon_sym_NULL] = ACTIONS(1414), - [anon_sym_nullptr] = ACTIONS(1414), + [337] = { + [sym_identifier] = ACTIONS(1348), + [aux_sym_preproc_include_token1] = ACTIONS(1348), + [aux_sym_preproc_def_token1] = ACTIONS(1348), + [aux_sym_preproc_if_token1] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1348), + [sym_preproc_directive] = ACTIONS(1348), + [anon_sym_LPAREN2] = ACTIONS(1350), + [anon_sym_BANG] = ACTIONS(1350), + [anon_sym_TILDE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym___extension__] = ACTIONS(1348), + [anon_sym_typedef] = ACTIONS(1348), + [anon_sym_extern] = ACTIONS(1348), + [anon_sym___attribute__] = ACTIONS(1348), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), + [anon_sym___declspec] = ACTIONS(1348), + [anon_sym___cdecl] = ACTIONS(1348), + [anon_sym___clrcall] = ACTIONS(1348), + [anon_sym___stdcall] = ACTIONS(1348), + [anon_sym___fastcall] = ACTIONS(1348), + [anon_sym___thiscall] = ACTIONS(1348), + [anon_sym___vectorcall] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_RBRACE] = ACTIONS(1350), + [anon_sym_signed] = ACTIONS(1348), + [anon_sym_unsigned] = ACTIONS(1348), + [anon_sym_long] = ACTIONS(1348), + [anon_sym_short] = ACTIONS(1348), + [anon_sym_static] = ACTIONS(1348), + [anon_sym_auto] = ACTIONS(1348), + [anon_sym_register] = ACTIONS(1348), + [anon_sym_inline] = ACTIONS(1348), + [anon_sym___inline] = ACTIONS(1348), + [anon_sym___inline__] = ACTIONS(1348), + [anon_sym___forceinline] = ACTIONS(1348), + [anon_sym_thread_local] = ACTIONS(1348), + [anon_sym___thread] = ACTIONS(1348), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_constexpr] = ACTIONS(1348), + [anon_sym_volatile] = ACTIONS(1348), + [anon_sym_restrict] = ACTIONS(1348), + [anon_sym___restrict__] = ACTIONS(1348), + [anon_sym__Atomic] = ACTIONS(1348), + [anon_sym__Noreturn] = ACTIONS(1348), + [anon_sym_noreturn] = ACTIONS(1348), + [sym_primitive_type] = ACTIONS(1348), + [anon_sym_enum] = ACTIONS(1348), + [anon_sym_struct] = ACTIONS(1348), + [anon_sym_union] = ACTIONS(1348), + [anon_sym_if] = ACTIONS(1348), + [anon_sym_else] = ACTIONS(1348), + [anon_sym_switch] = ACTIONS(1348), + [anon_sym_case] = ACTIONS(1348), + [anon_sym_default] = ACTIONS(1348), + [anon_sym_while] = ACTIONS(1348), + [anon_sym_do] = ACTIONS(1348), + [anon_sym_for] = ACTIONS(1348), + [anon_sym_return] = ACTIONS(1348), + [anon_sym_break] = ACTIONS(1348), + [anon_sym_continue] = ACTIONS(1348), + [anon_sym_goto] = ACTIONS(1348), + [anon_sym_DASH_DASH] = ACTIONS(1350), + [anon_sym_PLUS_PLUS] = ACTIONS(1350), + [anon_sym_sizeof] = ACTIONS(1348), + [anon_sym___alignof__] = ACTIONS(1348), + [anon_sym___alignof] = ACTIONS(1348), + [anon_sym__alignof] = ACTIONS(1348), + [anon_sym_alignof] = ACTIONS(1348), + [anon_sym__Alignof] = ACTIONS(1348), + [anon_sym_offsetof] = ACTIONS(1348), + [anon_sym___builtin_va_arg] = ACTIONS(1348), + [anon_sym__Generic] = ACTIONS(1348), + [anon_sym_asm] = ACTIONS(1348), + [anon_sym___asm__] = ACTIONS(1348), + [sym_number_literal] = ACTIONS(1350), + [anon_sym_L_SQUOTE] = ACTIONS(1350), + [anon_sym_u_SQUOTE] = ACTIONS(1350), + [anon_sym_U_SQUOTE] = ACTIONS(1350), + [anon_sym_u8_SQUOTE] = ACTIONS(1350), + [anon_sym_SQUOTE] = ACTIONS(1350), + [anon_sym_L_DQUOTE] = ACTIONS(1350), + [anon_sym_u_DQUOTE] = ACTIONS(1350), + [anon_sym_U_DQUOTE] = ACTIONS(1350), + [anon_sym_u8_DQUOTE] = ACTIONS(1350), + [anon_sym_DQUOTE] = ACTIONS(1350), + [sym_true] = ACTIONS(1348), + [sym_false] = ACTIONS(1348), + [anon_sym_NULL] = ACTIONS(1348), + [anon_sym_nullptr] = ACTIONS(1348), [sym_comment] = ACTIONS(3), }, - [358] = { - [sym_attribute_declaration] = STATE(375), - [sym_compound_statement] = STATE(247), - [sym_attributed_statement] = STATE(247), - [sym_labeled_statement] = STATE(247), - [sym_expression_statement] = STATE(247), - [sym_if_statement] = STATE(247), - [sym_switch_statement] = STATE(247), - [sym_case_statement] = STATE(247), - [sym_while_statement] = STATE(247), - [sym_do_statement] = STATE(247), - [sym_for_statement] = STATE(247), - [sym_return_statement] = STATE(247), - [sym_break_statement] = STATE(247), - [sym_continue_statement] = STATE(247), - [sym_goto_statement] = STATE(247), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1466), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [338] = { + [sym_identifier] = ACTIONS(1244), + [aux_sym_preproc_include_token1] = ACTIONS(1244), + [aux_sym_preproc_def_token1] = ACTIONS(1244), + [aux_sym_preproc_if_token1] = ACTIONS(1244), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1244), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1244), + [sym_preproc_directive] = ACTIONS(1244), + [anon_sym_LPAREN2] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1246), + [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_PLUS] = ACTIONS(1244), + [anon_sym_STAR] = ACTIONS(1246), + [anon_sym_AMP] = ACTIONS(1246), + [anon_sym_SEMI] = ACTIONS(1246), + [anon_sym___extension__] = ACTIONS(1244), + [anon_sym_typedef] = ACTIONS(1244), + [anon_sym_extern] = ACTIONS(1244), + [anon_sym___attribute__] = ACTIONS(1244), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1246), + [anon_sym___declspec] = ACTIONS(1244), + [anon_sym___cdecl] = ACTIONS(1244), + [anon_sym___clrcall] = ACTIONS(1244), + [anon_sym___stdcall] = ACTIONS(1244), + [anon_sym___fastcall] = ACTIONS(1244), + [anon_sym___thiscall] = ACTIONS(1244), + [anon_sym___vectorcall] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1246), + [anon_sym_RBRACE] = ACTIONS(1246), + [anon_sym_signed] = ACTIONS(1244), + [anon_sym_unsigned] = ACTIONS(1244), + [anon_sym_long] = ACTIONS(1244), + [anon_sym_short] = ACTIONS(1244), + [anon_sym_static] = ACTIONS(1244), + [anon_sym_auto] = ACTIONS(1244), + [anon_sym_register] = ACTIONS(1244), + [anon_sym_inline] = ACTIONS(1244), + [anon_sym___inline] = ACTIONS(1244), + [anon_sym___inline__] = ACTIONS(1244), + [anon_sym___forceinline] = ACTIONS(1244), + [anon_sym_thread_local] = ACTIONS(1244), + [anon_sym___thread] = ACTIONS(1244), + [anon_sym_const] = ACTIONS(1244), + [anon_sym_constexpr] = ACTIONS(1244), + [anon_sym_volatile] = ACTIONS(1244), + [anon_sym_restrict] = ACTIONS(1244), + [anon_sym___restrict__] = ACTIONS(1244), + [anon_sym__Atomic] = ACTIONS(1244), + [anon_sym__Noreturn] = ACTIONS(1244), + [anon_sym_noreturn] = ACTIONS(1244), + [sym_primitive_type] = ACTIONS(1244), + [anon_sym_enum] = ACTIONS(1244), + [anon_sym_struct] = ACTIONS(1244), + [anon_sym_union] = ACTIONS(1244), + [anon_sym_if] = ACTIONS(1244), + [anon_sym_else] = ACTIONS(1244), + [anon_sym_switch] = ACTIONS(1244), + [anon_sym_case] = ACTIONS(1244), + [anon_sym_default] = ACTIONS(1244), + [anon_sym_while] = ACTIONS(1244), + [anon_sym_do] = ACTIONS(1244), + [anon_sym_for] = ACTIONS(1244), + [anon_sym_return] = ACTIONS(1244), + [anon_sym_break] = ACTIONS(1244), + [anon_sym_continue] = ACTIONS(1244), + [anon_sym_goto] = ACTIONS(1244), + [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_PLUS_PLUS] = ACTIONS(1246), + [anon_sym_sizeof] = ACTIONS(1244), + [anon_sym___alignof__] = ACTIONS(1244), + [anon_sym___alignof] = ACTIONS(1244), + [anon_sym__alignof] = ACTIONS(1244), + [anon_sym_alignof] = ACTIONS(1244), + [anon_sym__Alignof] = ACTIONS(1244), + [anon_sym_offsetof] = ACTIONS(1244), + [anon_sym___builtin_va_arg] = ACTIONS(1244), + [anon_sym__Generic] = ACTIONS(1244), + [anon_sym_asm] = ACTIONS(1244), + [anon_sym___asm__] = ACTIONS(1244), + [sym_number_literal] = ACTIONS(1246), + [anon_sym_L_SQUOTE] = ACTIONS(1246), + [anon_sym_u_SQUOTE] = ACTIONS(1246), + [anon_sym_U_SQUOTE] = ACTIONS(1246), + [anon_sym_u8_SQUOTE] = ACTIONS(1246), + [anon_sym_SQUOTE] = ACTIONS(1246), + [anon_sym_L_DQUOTE] = ACTIONS(1246), + [anon_sym_u_DQUOTE] = ACTIONS(1246), + [anon_sym_U_DQUOTE] = ACTIONS(1246), + [anon_sym_u8_DQUOTE] = ACTIONS(1246), + [anon_sym_DQUOTE] = ACTIONS(1246), + [sym_true] = ACTIONS(1244), + [sym_false] = ACTIONS(1244), + [anon_sym_NULL] = ACTIONS(1244), + [anon_sym_nullptr] = ACTIONS(1244), [sym_comment] = ACTIONS(3), }, - [359] = { - [sym_attribute_declaration] = STATE(375), - [sym_compound_statement] = STATE(248), - [sym_attributed_statement] = STATE(248), - [sym_labeled_statement] = STATE(248), - [sym_expression_statement] = STATE(248), - [sym_if_statement] = STATE(248), - [sym_switch_statement] = STATE(248), - [sym_case_statement] = STATE(248), - [sym_while_statement] = STATE(248), - [sym_do_statement] = STATE(248), - [sym_for_statement] = STATE(248), - [sym_return_statement] = STATE(248), - [sym_break_statement] = STATE(248), - [sym_continue_statement] = STATE(248), - [sym_goto_statement] = STATE(248), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1466), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [339] = { + [sym_identifier] = ACTIONS(1376), + [aux_sym_preproc_include_token1] = ACTIONS(1376), + [aux_sym_preproc_def_token1] = ACTIONS(1376), + [aux_sym_preproc_if_token1] = ACTIONS(1376), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1376), + [sym_preproc_directive] = ACTIONS(1376), + [anon_sym_LPAREN2] = ACTIONS(1378), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_TILDE] = ACTIONS(1378), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_AMP] = ACTIONS(1378), + [anon_sym_SEMI] = ACTIONS(1378), + [anon_sym___extension__] = ACTIONS(1376), + [anon_sym_typedef] = ACTIONS(1376), + [anon_sym_extern] = ACTIONS(1376), + [anon_sym___attribute__] = ACTIONS(1376), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1378), + [anon_sym___declspec] = ACTIONS(1376), + [anon_sym___cdecl] = ACTIONS(1376), + [anon_sym___clrcall] = ACTIONS(1376), + [anon_sym___stdcall] = ACTIONS(1376), + [anon_sym___fastcall] = ACTIONS(1376), + [anon_sym___thiscall] = ACTIONS(1376), + [anon_sym___vectorcall] = ACTIONS(1376), + [anon_sym_LBRACE] = ACTIONS(1378), + [anon_sym_RBRACE] = ACTIONS(1378), + [anon_sym_signed] = ACTIONS(1376), + [anon_sym_unsigned] = ACTIONS(1376), + [anon_sym_long] = ACTIONS(1376), + [anon_sym_short] = ACTIONS(1376), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_auto] = ACTIONS(1376), + [anon_sym_register] = ACTIONS(1376), + [anon_sym_inline] = ACTIONS(1376), + [anon_sym___inline] = ACTIONS(1376), + [anon_sym___inline__] = ACTIONS(1376), + [anon_sym___forceinline] = ACTIONS(1376), + [anon_sym_thread_local] = ACTIONS(1376), + [anon_sym___thread] = ACTIONS(1376), + [anon_sym_const] = ACTIONS(1376), + [anon_sym_constexpr] = ACTIONS(1376), + [anon_sym_volatile] = ACTIONS(1376), + [anon_sym_restrict] = ACTIONS(1376), + [anon_sym___restrict__] = ACTIONS(1376), + [anon_sym__Atomic] = ACTIONS(1376), + [anon_sym__Noreturn] = ACTIONS(1376), + [anon_sym_noreturn] = ACTIONS(1376), + [sym_primitive_type] = ACTIONS(1376), + [anon_sym_enum] = ACTIONS(1376), + [anon_sym_struct] = ACTIONS(1376), + [anon_sym_union] = ACTIONS(1376), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_else] = ACTIONS(1376), + [anon_sym_switch] = ACTIONS(1376), + [anon_sym_case] = ACTIONS(1376), + [anon_sym_default] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(1376), + [anon_sym_do] = ACTIONS(1376), + [anon_sym_for] = ACTIONS(1376), + [anon_sym_return] = ACTIONS(1376), + [anon_sym_break] = ACTIONS(1376), + [anon_sym_continue] = ACTIONS(1376), + [anon_sym_goto] = ACTIONS(1376), + [anon_sym_DASH_DASH] = ACTIONS(1378), + [anon_sym_PLUS_PLUS] = ACTIONS(1378), + [anon_sym_sizeof] = ACTIONS(1376), + [anon_sym___alignof__] = ACTIONS(1376), + [anon_sym___alignof] = ACTIONS(1376), + [anon_sym__alignof] = ACTIONS(1376), + [anon_sym_alignof] = ACTIONS(1376), + [anon_sym__Alignof] = ACTIONS(1376), + [anon_sym_offsetof] = ACTIONS(1376), + [anon_sym___builtin_va_arg] = ACTIONS(1376), + [anon_sym__Generic] = ACTIONS(1376), + [anon_sym_asm] = ACTIONS(1376), + [anon_sym___asm__] = ACTIONS(1376), + [sym_number_literal] = ACTIONS(1378), + [anon_sym_L_SQUOTE] = ACTIONS(1378), + [anon_sym_u_SQUOTE] = ACTIONS(1378), + [anon_sym_U_SQUOTE] = ACTIONS(1378), + [anon_sym_u8_SQUOTE] = ACTIONS(1378), + [anon_sym_SQUOTE] = ACTIONS(1378), + [anon_sym_L_DQUOTE] = ACTIONS(1378), + [anon_sym_u_DQUOTE] = ACTIONS(1378), + [anon_sym_U_DQUOTE] = ACTIONS(1378), + [anon_sym_u8_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE] = ACTIONS(1378), + [sym_true] = ACTIONS(1376), + [sym_false] = ACTIONS(1376), + [anon_sym_NULL] = ACTIONS(1376), + [anon_sym_nullptr] = ACTIONS(1376), [sym_comment] = ACTIONS(3), }, - [360] = { - [sym_attribute_declaration] = STATE(375), - [sym_compound_statement] = STATE(250), - [sym_attributed_statement] = STATE(250), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1466), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [361] = { - [sym_attribute_declaration] = STATE(375), - [sym_compound_statement] = STATE(252), - [sym_attributed_statement] = STATE(252), - [sym_labeled_statement] = STATE(252), - [sym_expression_statement] = STATE(252), - [sym_if_statement] = STATE(252), - [sym_switch_statement] = STATE(252), - [sym_case_statement] = STATE(252), - [sym_while_statement] = STATE(252), - [sym_do_statement] = STATE(252), - [sym_for_statement] = STATE(252), - [sym_return_statement] = STATE(252), - [sym_break_statement] = STATE(252), - [sym_continue_statement] = STATE(252), - [sym_goto_statement] = STATE(252), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1466), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [362] = { - [sym_identifier] = ACTIONS(1422), - [aux_sym_preproc_include_token1] = ACTIONS(1422), - [aux_sym_preproc_def_token1] = ACTIONS(1422), - [aux_sym_preproc_if_token1] = ACTIONS(1422), - [aux_sym_preproc_if_token2] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), - [sym_preproc_directive] = ACTIONS(1422), - [anon_sym_LPAREN2] = ACTIONS(1424), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_TILDE] = ACTIONS(1424), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1424), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym_typedef] = ACTIONS(1422), - [anon_sym_extern] = ACTIONS(1422), - [anon_sym___attribute__] = ACTIONS(1422), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym___declspec] = ACTIONS(1422), - [anon_sym___cdecl] = ACTIONS(1422), - [anon_sym___clrcall] = ACTIONS(1422), - [anon_sym___stdcall] = ACTIONS(1422), - [anon_sym___fastcall] = ACTIONS(1422), - [anon_sym___thiscall] = ACTIONS(1422), - [anon_sym___vectorcall] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_signed] = ACTIONS(1422), - [anon_sym_unsigned] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_short] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_auto] = ACTIONS(1422), - [anon_sym_register] = ACTIONS(1422), - [anon_sym_inline] = ACTIONS(1422), - [anon_sym_thread_local] = ACTIONS(1422), - [anon_sym___thread] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_constexpr] = ACTIONS(1422), - [anon_sym_volatile] = ACTIONS(1422), - [anon_sym_restrict] = ACTIONS(1422), - [anon_sym___restrict__] = ACTIONS(1422), - [anon_sym__Atomic] = ACTIONS(1422), - [anon_sym__Noreturn] = ACTIONS(1422), - [anon_sym_noreturn] = ACTIONS(1422), - [sym_primitive_type] = ACTIONS(1422), - [anon_sym_enum] = ACTIONS(1422), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_union] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_case] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_do] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_goto] = ACTIONS(1422), - [anon_sym_DASH_DASH] = ACTIONS(1424), - [anon_sym_PLUS_PLUS] = ACTIONS(1424), - [anon_sym_sizeof] = ACTIONS(1422), - [anon_sym_offsetof] = ACTIONS(1422), - [anon_sym__Generic] = ACTIONS(1422), - [anon_sym_asm] = ACTIONS(1422), - [anon_sym___asm__] = ACTIONS(1422), - [sym_number_literal] = ACTIONS(1424), - [anon_sym_L_SQUOTE] = ACTIONS(1424), - [anon_sym_u_SQUOTE] = ACTIONS(1424), - [anon_sym_U_SQUOTE] = ACTIONS(1424), - [anon_sym_u8_SQUOTE] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_L_DQUOTE] = ACTIONS(1424), - [anon_sym_u_DQUOTE] = ACTIONS(1424), - [anon_sym_U_DQUOTE] = ACTIONS(1424), - [anon_sym_u8_DQUOTE] = ACTIONS(1424), - [anon_sym_DQUOTE] = ACTIONS(1424), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [anon_sym_NULL] = ACTIONS(1422), - [anon_sym_nullptr] = ACTIONS(1422), - [sym_comment] = ACTIONS(3), - }, - [363] = { - [sym_attribute_declaration] = STATE(375), - [sym_compound_statement] = STATE(253), - [sym_attributed_statement] = STATE(253), - [sym_labeled_statement] = STATE(253), - [sym_expression_statement] = STATE(253), - [sym_if_statement] = STATE(253), - [sym_switch_statement] = STATE(253), - [sym_case_statement] = STATE(253), - [sym_while_statement] = STATE(253), - [sym_do_statement] = STATE(253), - [sym_for_statement] = STATE(253), - [sym_return_statement] = STATE(253), - [sym_break_statement] = STATE(253), - [sym_continue_statement] = STATE(253), - [sym_goto_statement] = STATE(253), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1466), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [364] = { - [sym_attribute_declaration] = STATE(375), - [sym_compound_statement] = STATE(254), - [sym_attributed_statement] = STATE(254), - [sym_labeled_statement] = STATE(254), - [sym_expression_statement] = STATE(254), - [sym_if_statement] = STATE(254), - [sym_switch_statement] = STATE(254), - [sym_case_statement] = STATE(254), - [sym_while_statement] = STATE(254), - [sym_do_statement] = STATE(254), - [sym_for_statement] = STATE(254), - [sym_return_statement] = STATE(254), - [sym_break_statement] = STATE(254), - [sym_continue_statement] = STATE(254), - [sym_goto_statement] = STATE(254), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1466), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [365] = { - [sym_attribute_declaration] = STATE(375), - [sym_compound_statement] = STATE(255), - [sym_attributed_statement] = STATE(255), - [sym_labeled_statement] = STATE(255), - [sym_expression_statement] = STATE(255), - [sym_if_statement] = STATE(255), - [sym_switch_statement] = STATE(255), - [sym_case_statement] = STATE(255), - [sym_while_statement] = STATE(255), - [sym_do_statement] = STATE(255), - [sym_for_statement] = STATE(255), - [sym_return_statement] = STATE(255), - [sym_break_statement] = STATE(255), - [sym_continue_statement] = STATE(255), - [sym_goto_statement] = STATE(255), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1466), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [366] = { - [sym_attribute_declaration] = STATE(413), - [sym_compound_statement] = STATE(246), - [sym_attributed_statement] = STATE(246), - [sym_labeled_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_case_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_goto_statement] = STATE(246), - [sym__expression] = STATE(1098), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1873), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(413), - [sym_identifier] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [367] = { - [sym_attribute_declaration] = STATE(375), - [sym_compound_statement] = STATE(262), - [sym_attributed_statement] = STATE(262), - [sym_labeled_statement] = STATE(262), - [sym_expression_statement] = STATE(262), - [sym_if_statement] = STATE(262), - [sym_switch_statement] = STATE(262), - [sym_case_statement] = STATE(262), - [sym_while_statement] = STATE(262), - [sym_do_statement] = STATE(262), - [sym_for_statement] = STATE(262), - [sym_return_statement] = STATE(262), - [sym_break_statement] = STATE(262), - [sym_continue_statement] = STATE(262), - [sym_goto_statement] = STATE(262), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1466), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [340] = { + [sym_identifier] = ACTIONS(1384), + [aux_sym_preproc_include_token1] = ACTIONS(1384), + [aux_sym_preproc_def_token1] = ACTIONS(1384), + [aux_sym_preproc_if_token1] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1384), + [sym_preproc_directive] = ACTIONS(1384), + [anon_sym_LPAREN2] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1386), + [anon_sym_SEMI] = ACTIONS(1386), + [anon_sym___extension__] = ACTIONS(1384), + [anon_sym_typedef] = ACTIONS(1384), + [anon_sym_extern] = ACTIONS(1384), + [anon_sym___attribute__] = ACTIONS(1384), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1386), + [anon_sym___declspec] = ACTIONS(1384), + [anon_sym___cdecl] = ACTIONS(1384), + [anon_sym___clrcall] = ACTIONS(1384), + [anon_sym___stdcall] = ACTIONS(1384), + [anon_sym___fastcall] = ACTIONS(1384), + [anon_sym___thiscall] = ACTIONS(1384), + [anon_sym___vectorcall] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_RBRACE] = ACTIONS(1386), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_long] = ACTIONS(1384), + [anon_sym_short] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1384), + [anon_sym_auto] = ACTIONS(1384), + [anon_sym_register] = ACTIONS(1384), + [anon_sym_inline] = ACTIONS(1384), + [anon_sym___inline] = ACTIONS(1384), + [anon_sym___inline__] = ACTIONS(1384), + [anon_sym___forceinline] = ACTIONS(1384), + [anon_sym_thread_local] = ACTIONS(1384), + [anon_sym___thread] = ACTIONS(1384), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_constexpr] = ACTIONS(1384), + [anon_sym_volatile] = ACTIONS(1384), + [anon_sym_restrict] = ACTIONS(1384), + [anon_sym___restrict__] = ACTIONS(1384), + [anon_sym__Atomic] = ACTIONS(1384), + [anon_sym__Noreturn] = ACTIONS(1384), + [anon_sym_noreturn] = ACTIONS(1384), + [sym_primitive_type] = ACTIONS(1384), + [anon_sym_enum] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_union] = ACTIONS(1384), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_else] = ACTIONS(1384), + [anon_sym_switch] = ACTIONS(1384), + [anon_sym_case] = ACTIONS(1384), + [anon_sym_default] = ACTIONS(1384), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_do] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_return] = ACTIONS(1384), + [anon_sym_break] = ACTIONS(1384), + [anon_sym_continue] = ACTIONS(1384), + [anon_sym_goto] = ACTIONS(1384), + [anon_sym_DASH_DASH] = ACTIONS(1386), + [anon_sym_PLUS_PLUS] = ACTIONS(1386), + [anon_sym_sizeof] = ACTIONS(1384), + [anon_sym___alignof__] = ACTIONS(1384), + [anon_sym___alignof] = ACTIONS(1384), + [anon_sym__alignof] = ACTIONS(1384), + [anon_sym_alignof] = ACTIONS(1384), + [anon_sym__Alignof] = ACTIONS(1384), + [anon_sym_offsetof] = ACTIONS(1384), + [anon_sym___builtin_va_arg] = ACTIONS(1384), + [anon_sym__Generic] = ACTIONS(1384), + [anon_sym_asm] = ACTIONS(1384), + [anon_sym___asm__] = ACTIONS(1384), + [sym_number_literal] = ACTIONS(1386), + [anon_sym_L_SQUOTE] = ACTIONS(1386), + [anon_sym_u_SQUOTE] = ACTIONS(1386), + [anon_sym_U_SQUOTE] = ACTIONS(1386), + [anon_sym_u8_SQUOTE] = ACTIONS(1386), + [anon_sym_SQUOTE] = ACTIONS(1386), + [anon_sym_L_DQUOTE] = ACTIONS(1386), + [anon_sym_u_DQUOTE] = ACTIONS(1386), + [anon_sym_U_DQUOTE] = ACTIONS(1386), + [anon_sym_u8_DQUOTE] = ACTIONS(1386), + [anon_sym_DQUOTE] = ACTIONS(1386), + [sym_true] = ACTIONS(1384), + [sym_false] = ACTIONS(1384), + [anon_sym_NULL] = ACTIONS(1384), + [anon_sym_nullptr] = ACTIONS(1384), [sym_comment] = ACTIONS(3), }, - [368] = { - [sym_attribute_declaration] = STATE(375), - [sym_compound_statement] = STATE(274), - [sym_attributed_statement] = STATE(274), - [sym_labeled_statement] = STATE(274), - [sym_expression_statement] = STATE(274), - [sym_if_statement] = STATE(274), - [sym_switch_statement] = STATE(274), - [sym_case_statement] = STATE(274), - [sym_while_statement] = STATE(274), - [sym_do_statement] = STATE(274), - [sym_for_statement] = STATE(274), - [sym_return_statement] = STATE(274), - [sym_break_statement] = STATE(274), - [sym_continue_statement] = STATE(274), - [sym_goto_statement] = STATE(274), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1466), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [341] = { + [sym_identifier] = ACTIONS(1388), + [aux_sym_preproc_include_token1] = ACTIONS(1388), + [aux_sym_preproc_def_token1] = ACTIONS(1388), + [aux_sym_preproc_if_token1] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1388), + [sym_preproc_directive] = ACTIONS(1388), + [anon_sym_LPAREN2] = ACTIONS(1390), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1390), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_SEMI] = ACTIONS(1390), + [anon_sym___extension__] = ACTIONS(1388), + [anon_sym_typedef] = ACTIONS(1388), + [anon_sym_extern] = ACTIONS(1388), + [anon_sym___attribute__] = ACTIONS(1388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1390), + [anon_sym___declspec] = ACTIONS(1388), + [anon_sym___cdecl] = ACTIONS(1388), + [anon_sym___clrcall] = ACTIONS(1388), + [anon_sym___stdcall] = ACTIONS(1388), + [anon_sym___fastcall] = ACTIONS(1388), + [anon_sym___thiscall] = ACTIONS(1388), + [anon_sym___vectorcall] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_RBRACE] = ACTIONS(1390), + [anon_sym_signed] = ACTIONS(1388), + [anon_sym_unsigned] = ACTIONS(1388), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_short] = ACTIONS(1388), + [anon_sym_static] = ACTIONS(1388), + [anon_sym_auto] = ACTIONS(1388), + [anon_sym_register] = ACTIONS(1388), + [anon_sym_inline] = ACTIONS(1388), + [anon_sym___inline] = ACTIONS(1388), + [anon_sym___inline__] = ACTIONS(1388), + [anon_sym___forceinline] = ACTIONS(1388), + [anon_sym_thread_local] = ACTIONS(1388), + [anon_sym___thread] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1388), + [anon_sym_constexpr] = ACTIONS(1388), + [anon_sym_volatile] = ACTIONS(1388), + [anon_sym_restrict] = ACTIONS(1388), + [anon_sym___restrict__] = ACTIONS(1388), + [anon_sym__Atomic] = ACTIONS(1388), + [anon_sym__Noreturn] = ACTIONS(1388), + [anon_sym_noreturn] = ACTIONS(1388), + [sym_primitive_type] = ACTIONS(1388), + [anon_sym_enum] = ACTIONS(1388), + [anon_sym_struct] = ACTIONS(1388), + [anon_sym_union] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(1388), + [anon_sym_else] = ACTIONS(1388), + [anon_sym_switch] = ACTIONS(1388), + [anon_sym_case] = ACTIONS(1388), + [anon_sym_default] = ACTIONS(1388), + [anon_sym_while] = ACTIONS(1388), + [anon_sym_do] = ACTIONS(1388), + [anon_sym_for] = ACTIONS(1388), + [anon_sym_return] = ACTIONS(1388), + [anon_sym_break] = ACTIONS(1388), + [anon_sym_continue] = ACTIONS(1388), + [anon_sym_goto] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_PLUS_PLUS] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1388), + [anon_sym___alignof__] = ACTIONS(1388), + [anon_sym___alignof] = ACTIONS(1388), + [anon_sym__alignof] = ACTIONS(1388), + [anon_sym_alignof] = ACTIONS(1388), + [anon_sym__Alignof] = ACTIONS(1388), + [anon_sym_offsetof] = ACTIONS(1388), + [anon_sym___builtin_va_arg] = ACTIONS(1388), + [anon_sym__Generic] = ACTIONS(1388), + [anon_sym_asm] = ACTIONS(1388), + [anon_sym___asm__] = ACTIONS(1388), + [sym_number_literal] = ACTIONS(1390), + [anon_sym_L_SQUOTE] = ACTIONS(1390), + [anon_sym_u_SQUOTE] = ACTIONS(1390), + [anon_sym_U_SQUOTE] = ACTIONS(1390), + [anon_sym_u8_SQUOTE] = ACTIONS(1390), + [anon_sym_SQUOTE] = ACTIONS(1390), + [anon_sym_L_DQUOTE] = ACTIONS(1390), + [anon_sym_u_DQUOTE] = ACTIONS(1390), + [anon_sym_U_DQUOTE] = ACTIONS(1390), + [anon_sym_u8_DQUOTE] = ACTIONS(1390), + [anon_sym_DQUOTE] = ACTIONS(1390), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [anon_sym_NULL] = ACTIONS(1388), + [anon_sym_nullptr] = ACTIONS(1388), [sym_comment] = ACTIONS(3), }, - [369] = { - [sym_attribute_declaration] = STATE(407), - [sym_compound_statement] = STATE(111), - [sym_attributed_statement] = STATE(111), - [sym_labeled_statement] = STATE(111), - [sym_expression_statement] = STATE(111), - [sym_if_statement] = STATE(111), - [sym_switch_statement] = STATE(111), - [sym_case_statement] = STATE(111), - [sym_while_statement] = STATE(111), - [sym_do_statement] = STATE(111), - [sym_for_statement] = STATE(111), - [sym_return_statement] = STATE(111), - [sym_break_statement] = STATE(111), - [sym_continue_statement] = STATE(111), - [sym_goto_statement] = STATE(111), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1801), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [sym_identifier] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), + [342] = { + [sym_identifier] = ACTIONS(1460), + [aux_sym_preproc_include_token1] = ACTIONS(1460), + [aux_sym_preproc_def_token1] = ACTIONS(1460), + [aux_sym_preproc_if_token1] = ACTIONS(1460), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1460), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1460), + [sym_preproc_directive] = ACTIONS(1460), + [anon_sym_LPAREN2] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1460), + [anon_sym_STAR] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym___extension__] = ACTIONS(1460), + [anon_sym_typedef] = ACTIONS(1460), + [anon_sym_extern] = ACTIONS(1460), + [anon_sym___attribute__] = ACTIONS(1460), [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym___declspec] = ACTIONS(1460), + [anon_sym___cdecl] = ACTIONS(1460), + [anon_sym___clrcall] = ACTIONS(1460), + [anon_sym___stdcall] = ACTIONS(1460), + [anon_sym___fastcall] = ACTIONS(1460), + [anon_sym___thiscall] = ACTIONS(1460), + [anon_sym___vectorcall] = ACTIONS(1460), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_signed] = ACTIONS(1460), + [anon_sym_unsigned] = ACTIONS(1460), + [anon_sym_long] = ACTIONS(1460), + [anon_sym_short] = ACTIONS(1460), + [anon_sym_static] = ACTIONS(1460), + [anon_sym_auto] = ACTIONS(1460), + [anon_sym_register] = ACTIONS(1460), + [anon_sym_inline] = ACTIONS(1460), + [anon_sym___inline] = ACTIONS(1460), + [anon_sym___inline__] = ACTIONS(1460), + [anon_sym___forceinline] = ACTIONS(1460), + [anon_sym_thread_local] = ACTIONS(1460), + [anon_sym___thread] = ACTIONS(1460), + [anon_sym_const] = ACTIONS(1460), + [anon_sym_constexpr] = ACTIONS(1460), + [anon_sym_volatile] = ACTIONS(1460), + [anon_sym_restrict] = ACTIONS(1460), + [anon_sym___restrict__] = ACTIONS(1460), + [anon_sym__Atomic] = ACTIONS(1460), + [anon_sym__Noreturn] = ACTIONS(1460), + [anon_sym_noreturn] = ACTIONS(1460), + [sym_primitive_type] = ACTIONS(1460), + [anon_sym_enum] = ACTIONS(1460), + [anon_sym_struct] = ACTIONS(1460), + [anon_sym_union] = ACTIONS(1460), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_else] = ACTIONS(1460), + [anon_sym_switch] = ACTIONS(1460), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(1460), + [anon_sym_do] = ACTIONS(1460), + [anon_sym_for] = ACTIONS(1460), + [anon_sym_return] = ACTIONS(1460), + [anon_sym_break] = ACTIONS(1460), + [anon_sym_continue] = ACTIONS(1460), + [anon_sym_goto] = ACTIONS(1460), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_sizeof] = ACTIONS(1460), + [anon_sym___alignof__] = ACTIONS(1460), + [anon_sym___alignof] = ACTIONS(1460), + [anon_sym__alignof] = ACTIONS(1460), + [anon_sym_alignof] = ACTIONS(1460), + [anon_sym__Alignof] = ACTIONS(1460), + [anon_sym_offsetof] = ACTIONS(1460), + [anon_sym___builtin_va_arg] = ACTIONS(1460), + [anon_sym__Generic] = ACTIONS(1460), + [anon_sym_asm] = ACTIONS(1460), + [anon_sym___asm__] = ACTIONS(1460), + [sym_number_literal] = ACTIONS(1462), + [anon_sym_L_SQUOTE] = ACTIONS(1462), + [anon_sym_u_SQUOTE] = ACTIONS(1462), + [anon_sym_U_SQUOTE] = ACTIONS(1462), + [anon_sym_u8_SQUOTE] = ACTIONS(1462), + [anon_sym_SQUOTE] = ACTIONS(1462), + [anon_sym_L_DQUOTE] = ACTIONS(1462), + [anon_sym_u_DQUOTE] = ACTIONS(1462), + [anon_sym_U_DQUOTE] = ACTIONS(1462), + [anon_sym_u8_DQUOTE] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1462), + [sym_true] = ACTIONS(1460), + [sym_false] = ACTIONS(1460), + [anon_sym_NULL] = ACTIONS(1460), + [anon_sym_nullptr] = ACTIONS(1460), [sym_comment] = ACTIONS(3), }, - [370] = { - [sym_attribute_declaration] = STATE(375), - [sym_compound_statement] = STATE(277), - [sym_attributed_statement] = STATE(277), - [sym_labeled_statement] = STATE(277), - [sym_expression_statement] = STATE(277), - [sym_if_statement] = STATE(277), - [sym_switch_statement] = STATE(277), - [sym_case_statement] = STATE(277), - [sym_while_statement] = STATE(277), - [sym_do_statement] = STATE(277), - [sym_for_statement] = STATE(277), - [sym_return_statement] = STATE(277), - [sym_break_statement] = STATE(277), - [sym_continue_statement] = STATE(277), - [sym_goto_statement] = STATE(277), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1466), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [343] = { + [sym_identifier] = ACTIONS(1456), + [aux_sym_preproc_include_token1] = ACTIONS(1456), + [aux_sym_preproc_def_token1] = ACTIONS(1456), + [aux_sym_preproc_if_token1] = ACTIONS(1456), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1456), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1456), + [sym_preproc_directive] = ACTIONS(1456), + [anon_sym_LPAREN2] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_TILDE] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1456), + [anon_sym_PLUS] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym___extension__] = ACTIONS(1456), + [anon_sym_typedef] = ACTIONS(1456), + [anon_sym_extern] = ACTIONS(1456), + [anon_sym___attribute__] = ACTIONS(1456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1458), + [anon_sym___declspec] = ACTIONS(1456), + [anon_sym___cdecl] = ACTIONS(1456), + [anon_sym___clrcall] = ACTIONS(1456), + [anon_sym___stdcall] = ACTIONS(1456), + [anon_sym___fastcall] = ACTIONS(1456), + [anon_sym___thiscall] = ACTIONS(1456), + [anon_sym___vectorcall] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_RBRACE] = ACTIONS(1458), + [anon_sym_signed] = ACTIONS(1456), + [anon_sym_unsigned] = ACTIONS(1456), + [anon_sym_long] = ACTIONS(1456), + [anon_sym_short] = ACTIONS(1456), + [anon_sym_static] = ACTIONS(1456), + [anon_sym_auto] = ACTIONS(1456), + [anon_sym_register] = ACTIONS(1456), + [anon_sym_inline] = ACTIONS(1456), + [anon_sym___inline] = ACTIONS(1456), + [anon_sym___inline__] = ACTIONS(1456), + [anon_sym___forceinline] = ACTIONS(1456), + [anon_sym_thread_local] = ACTIONS(1456), + [anon_sym___thread] = ACTIONS(1456), + [anon_sym_const] = ACTIONS(1456), + [anon_sym_constexpr] = ACTIONS(1456), + [anon_sym_volatile] = ACTIONS(1456), + [anon_sym_restrict] = ACTIONS(1456), + [anon_sym___restrict__] = ACTIONS(1456), + [anon_sym__Atomic] = ACTIONS(1456), + [anon_sym__Noreturn] = ACTIONS(1456), + [anon_sym_noreturn] = ACTIONS(1456), + [sym_primitive_type] = ACTIONS(1456), + [anon_sym_enum] = ACTIONS(1456), + [anon_sym_struct] = ACTIONS(1456), + [anon_sym_union] = ACTIONS(1456), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_else] = ACTIONS(1456), + [anon_sym_switch] = ACTIONS(1456), + [anon_sym_case] = ACTIONS(1456), + [anon_sym_default] = ACTIONS(1456), + [anon_sym_while] = ACTIONS(1456), + [anon_sym_do] = ACTIONS(1456), + [anon_sym_for] = ACTIONS(1456), + [anon_sym_return] = ACTIONS(1456), + [anon_sym_break] = ACTIONS(1456), + [anon_sym_continue] = ACTIONS(1456), + [anon_sym_goto] = ACTIONS(1456), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_sizeof] = ACTIONS(1456), + [anon_sym___alignof__] = ACTIONS(1456), + [anon_sym___alignof] = ACTIONS(1456), + [anon_sym__alignof] = ACTIONS(1456), + [anon_sym_alignof] = ACTIONS(1456), + [anon_sym__Alignof] = ACTIONS(1456), + [anon_sym_offsetof] = ACTIONS(1456), + [anon_sym___builtin_va_arg] = ACTIONS(1456), + [anon_sym__Generic] = ACTIONS(1456), + [anon_sym_asm] = ACTIONS(1456), + [anon_sym___asm__] = ACTIONS(1456), + [sym_number_literal] = ACTIONS(1458), + [anon_sym_L_SQUOTE] = ACTIONS(1458), + [anon_sym_u_SQUOTE] = ACTIONS(1458), + [anon_sym_U_SQUOTE] = ACTIONS(1458), + [anon_sym_u8_SQUOTE] = ACTIONS(1458), + [anon_sym_SQUOTE] = ACTIONS(1458), + [anon_sym_L_DQUOTE] = ACTIONS(1458), + [anon_sym_u_DQUOTE] = ACTIONS(1458), + [anon_sym_U_DQUOTE] = ACTIONS(1458), + [anon_sym_u8_DQUOTE] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [sym_true] = ACTIONS(1456), + [sym_false] = ACTIONS(1456), + [anon_sym_NULL] = ACTIONS(1456), + [anon_sym_nullptr] = ACTIONS(1456), [sym_comment] = ACTIONS(3), }, - [371] = { - [sym_attribute_declaration] = STATE(413), - [sym_compound_statement] = STATE(247), - [sym_attributed_statement] = STATE(247), - [sym_labeled_statement] = STATE(247), - [sym_expression_statement] = STATE(247), - [sym_if_statement] = STATE(247), - [sym_switch_statement] = STATE(247), - [sym_case_statement] = STATE(247), - [sym_while_statement] = STATE(247), - [sym_do_statement] = STATE(247), - [sym_for_statement] = STATE(247), - [sym_return_statement] = STATE(247), - [sym_break_statement] = STATE(247), - [sym_continue_statement] = STATE(247), - [sym_goto_statement] = STATE(247), - [sym__expression] = STATE(1098), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1873), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(413), - [sym_identifier] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [344] = { + [sym_identifier] = ACTIONS(1452), + [aux_sym_preproc_include_token1] = ACTIONS(1452), + [aux_sym_preproc_def_token1] = ACTIONS(1452), + [aux_sym_preproc_if_token1] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), + [sym_preproc_directive] = ACTIONS(1452), + [anon_sym_LPAREN2] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_TILDE] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym___extension__] = ACTIONS(1452), + [anon_sym_typedef] = ACTIONS(1452), + [anon_sym_extern] = ACTIONS(1452), + [anon_sym___attribute__] = ACTIONS(1452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym___declspec] = ACTIONS(1452), + [anon_sym___cdecl] = ACTIONS(1452), + [anon_sym___clrcall] = ACTIONS(1452), + [anon_sym___stdcall] = ACTIONS(1452), + [anon_sym___fastcall] = ACTIONS(1452), + [anon_sym___thiscall] = ACTIONS(1452), + [anon_sym___vectorcall] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_RBRACE] = ACTIONS(1454), + [anon_sym_signed] = ACTIONS(1452), + [anon_sym_unsigned] = ACTIONS(1452), + [anon_sym_long] = ACTIONS(1452), + [anon_sym_short] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1452), + [anon_sym_auto] = ACTIONS(1452), + [anon_sym_register] = ACTIONS(1452), + [anon_sym_inline] = ACTIONS(1452), + [anon_sym___inline] = ACTIONS(1452), + [anon_sym___inline__] = ACTIONS(1452), + [anon_sym___forceinline] = ACTIONS(1452), + [anon_sym_thread_local] = ACTIONS(1452), + [anon_sym___thread] = ACTIONS(1452), + [anon_sym_const] = ACTIONS(1452), + [anon_sym_constexpr] = ACTIONS(1452), + [anon_sym_volatile] = ACTIONS(1452), + [anon_sym_restrict] = ACTIONS(1452), + [anon_sym___restrict__] = ACTIONS(1452), + [anon_sym__Atomic] = ACTIONS(1452), + [anon_sym__Noreturn] = ACTIONS(1452), + [anon_sym_noreturn] = ACTIONS(1452), + [sym_primitive_type] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1452), + [anon_sym_union] = ACTIONS(1452), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_else] = ACTIONS(1452), + [anon_sym_switch] = ACTIONS(1452), + [anon_sym_case] = ACTIONS(1452), + [anon_sym_default] = ACTIONS(1452), + [anon_sym_while] = ACTIONS(1452), + [anon_sym_do] = ACTIONS(1452), + [anon_sym_for] = ACTIONS(1452), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_goto] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_sizeof] = ACTIONS(1452), + [anon_sym___alignof__] = ACTIONS(1452), + [anon_sym___alignof] = ACTIONS(1452), + [anon_sym__alignof] = ACTIONS(1452), + [anon_sym_alignof] = ACTIONS(1452), + [anon_sym__Alignof] = ACTIONS(1452), + [anon_sym_offsetof] = ACTIONS(1452), + [anon_sym___builtin_va_arg] = ACTIONS(1452), + [anon_sym__Generic] = ACTIONS(1452), + [anon_sym_asm] = ACTIONS(1452), + [anon_sym___asm__] = ACTIONS(1452), + [sym_number_literal] = ACTIONS(1454), + [anon_sym_L_SQUOTE] = ACTIONS(1454), + [anon_sym_u_SQUOTE] = ACTIONS(1454), + [anon_sym_U_SQUOTE] = ACTIONS(1454), + [anon_sym_u8_SQUOTE] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_L_DQUOTE] = ACTIONS(1454), + [anon_sym_u_DQUOTE] = ACTIONS(1454), + [anon_sym_U_DQUOTE] = ACTIONS(1454), + [anon_sym_u8_DQUOTE] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [sym_true] = ACTIONS(1452), + [sym_false] = ACTIONS(1452), + [anon_sym_NULL] = ACTIONS(1452), + [anon_sym_nullptr] = ACTIONS(1452), [sym_comment] = ACTIONS(3), }, - [372] = { - [sym_attribute_declaration] = STATE(375), - [sym_compound_statement] = STATE(257), - [sym_attributed_statement] = STATE(257), - [sym_labeled_statement] = STATE(257), - [sym_expression_statement] = STATE(257), - [sym_if_statement] = STATE(257), - [sym_switch_statement] = STATE(257), - [sym_case_statement] = STATE(257), - [sym_while_statement] = STATE(257), - [sym_do_statement] = STATE(257), - [sym_for_statement] = STATE(257), - [sym_return_statement] = STATE(257), - [sym_break_statement] = STATE(257), - [sym_continue_statement] = STATE(257), - [sym_goto_statement] = STATE(257), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1466), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [345] = { + [sym_identifier] = ACTIONS(1448), + [aux_sym_preproc_include_token1] = ACTIONS(1448), + [aux_sym_preproc_def_token1] = ACTIONS(1448), + [aux_sym_preproc_if_token1] = ACTIONS(1448), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1448), + [sym_preproc_directive] = ACTIONS(1448), + [anon_sym_LPAREN2] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym___extension__] = ACTIONS(1448), + [anon_sym_typedef] = ACTIONS(1448), + [anon_sym_extern] = ACTIONS(1448), + [anon_sym___attribute__] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), + [anon_sym___declspec] = ACTIONS(1448), + [anon_sym___cdecl] = ACTIONS(1448), + [anon_sym___clrcall] = ACTIONS(1448), + [anon_sym___stdcall] = ACTIONS(1448), + [anon_sym___fastcall] = ACTIONS(1448), + [anon_sym___thiscall] = ACTIONS(1448), + [anon_sym___vectorcall] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1450), + [anon_sym_signed] = ACTIONS(1448), + [anon_sym_unsigned] = ACTIONS(1448), + [anon_sym_long] = ACTIONS(1448), + [anon_sym_short] = ACTIONS(1448), + [anon_sym_static] = ACTIONS(1448), + [anon_sym_auto] = ACTIONS(1448), + [anon_sym_register] = ACTIONS(1448), + [anon_sym_inline] = ACTIONS(1448), + [anon_sym___inline] = ACTIONS(1448), + [anon_sym___inline__] = ACTIONS(1448), + [anon_sym___forceinline] = ACTIONS(1448), + [anon_sym_thread_local] = ACTIONS(1448), + [anon_sym___thread] = ACTIONS(1448), + [anon_sym_const] = ACTIONS(1448), + [anon_sym_constexpr] = ACTIONS(1448), + [anon_sym_volatile] = ACTIONS(1448), + [anon_sym_restrict] = ACTIONS(1448), + [anon_sym___restrict__] = ACTIONS(1448), + [anon_sym__Atomic] = ACTIONS(1448), + [anon_sym__Noreturn] = ACTIONS(1448), + [anon_sym_noreturn] = ACTIONS(1448), + [sym_primitive_type] = ACTIONS(1448), + [anon_sym_enum] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1448), + [anon_sym_union] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_else] = ACTIONS(1448), + [anon_sym_switch] = ACTIONS(1448), + [anon_sym_case] = ACTIONS(1448), + [anon_sym_default] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_do] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_return] = ACTIONS(1448), + [anon_sym_break] = ACTIONS(1448), + [anon_sym_continue] = ACTIONS(1448), + [anon_sym_goto] = ACTIONS(1448), + [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_PLUS_PLUS] = ACTIONS(1450), + [anon_sym_sizeof] = ACTIONS(1448), + [anon_sym___alignof__] = ACTIONS(1448), + [anon_sym___alignof] = ACTIONS(1448), + [anon_sym__alignof] = ACTIONS(1448), + [anon_sym_alignof] = ACTIONS(1448), + [anon_sym__Alignof] = ACTIONS(1448), + [anon_sym_offsetof] = ACTIONS(1448), + [anon_sym___builtin_va_arg] = ACTIONS(1448), + [anon_sym__Generic] = ACTIONS(1448), + [anon_sym_asm] = ACTIONS(1448), + [anon_sym___asm__] = ACTIONS(1448), + [sym_number_literal] = ACTIONS(1450), + [anon_sym_L_SQUOTE] = ACTIONS(1450), + [anon_sym_u_SQUOTE] = ACTIONS(1450), + [anon_sym_U_SQUOTE] = ACTIONS(1450), + [anon_sym_u8_SQUOTE] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1450), + [anon_sym_L_DQUOTE] = ACTIONS(1450), + [anon_sym_u_DQUOTE] = ACTIONS(1450), + [anon_sym_U_DQUOTE] = ACTIONS(1450), + [anon_sym_u8_DQUOTE] = ACTIONS(1450), + [anon_sym_DQUOTE] = ACTIONS(1450), + [sym_true] = ACTIONS(1448), + [sym_false] = ACTIONS(1448), + [anon_sym_NULL] = ACTIONS(1448), + [anon_sym_nullptr] = ACTIONS(1448), [sym_comment] = ACTIONS(3), }, - [373] = { - [sym_identifier] = ACTIONS(1426), - [aux_sym_preproc_include_token1] = ACTIONS(1426), - [aux_sym_preproc_def_token1] = ACTIONS(1426), - [aux_sym_preproc_if_token1] = ACTIONS(1426), - [aux_sym_preproc_if_token2] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), - [sym_preproc_directive] = ACTIONS(1426), - [anon_sym_LPAREN2] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym_typedef] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym___attribute__] = ACTIONS(1426), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), - [anon_sym___declspec] = ACTIONS(1426), - [anon_sym___cdecl] = ACTIONS(1426), - [anon_sym___clrcall] = ACTIONS(1426), - [anon_sym___stdcall] = ACTIONS(1426), - [anon_sym___fastcall] = ACTIONS(1426), - [anon_sym___thiscall] = ACTIONS(1426), - [anon_sym___vectorcall] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_signed] = ACTIONS(1426), - [anon_sym_unsigned] = ACTIONS(1426), - [anon_sym_long] = ACTIONS(1426), - [anon_sym_short] = ACTIONS(1426), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_auto] = ACTIONS(1426), - [anon_sym_register] = ACTIONS(1426), - [anon_sym_inline] = ACTIONS(1426), - [anon_sym_thread_local] = ACTIONS(1426), - [anon_sym___thread] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_constexpr] = ACTIONS(1426), - [anon_sym_volatile] = ACTIONS(1426), - [anon_sym_restrict] = ACTIONS(1426), - [anon_sym___restrict__] = ACTIONS(1426), - [anon_sym__Atomic] = ACTIONS(1426), - [anon_sym__Noreturn] = ACTIONS(1426), - [anon_sym_noreturn] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(1426), - [anon_sym_enum] = ACTIONS(1426), - [anon_sym_struct] = ACTIONS(1426), - [anon_sym_union] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_switch] = ACTIONS(1426), - [anon_sym_case] = ACTIONS(1426), - [anon_sym_default] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_do] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_goto] = ACTIONS(1426), - [anon_sym_DASH_DASH] = ACTIONS(1428), - [anon_sym_PLUS_PLUS] = ACTIONS(1428), - [anon_sym_sizeof] = ACTIONS(1426), - [anon_sym_offsetof] = ACTIONS(1426), - [anon_sym__Generic] = ACTIONS(1426), - [anon_sym_asm] = ACTIONS(1426), - [anon_sym___asm__] = ACTIONS(1426), - [sym_number_literal] = ACTIONS(1428), - [anon_sym_L_SQUOTE] = ACTIONS(1428), - [anon_sym_u_SQUOTE] = ACTIONS(1428), - [anon_sym_U_SQUOTE] = ACTIONS(1428), - [anon_sym_u8_SQUOTE] = ACTIONS(1428), - [anon_sym_SQUOTE] = ACTIONS(1428), - [anon_sym_L_DQUOTE] = ACTIONS(1428), - [anon_sym_u_DQUOTE] = ACTIONS(1428), - [anon_sym_U_DQUOTE] = ACTIONS(1428), - [anon_sym_u8_DQUOTE] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [sym_true] = ACTIONS(1426), - [sym_false] = ACTIONS(1426), - [anon_sym_NULL] = ACTIONS(1426), - [anon_sym_nullptr] = ACTIONS(1426), + [346] = { + [sym_identifier] = ACTIONS(1444), + [aux_sym_preproc_include_token1] = ACTIONS(1444), + [aux_sym_preproc_def_token1] = ACTIONS(1444), + [aux_sym_preproc_if_token1] = ACTIONS(1444), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1444), + [sym_preproc_directive] = ACTIONS(1444), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [anon_sym_TILDE] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym___extension__] = ACTIONS(1444), + [anon_sym_typedef] = ACTIONS(1444), + [anon_sym_extern] = ACTIONS(1444), + [anon_sym___attribute__] = ACTIONS(1444), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), + [anon_sym___declspec] = ACTIONS(1444), + [anon_sym___cdecl] = ACTIONS(1444), + [anon_sym___clrcall] = ACTIONS(1444), + [anon_sym___stdcall] = ACTIONS(1444), + [anon_sym___fastcall] = ACTIONS(1444), + [anon_sym___thiscall] = ACTIONS(1444), + [anon_sym___vectorcall] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_RBRACE] = ACTIONS(1446), + [anon_sym_signed] = ACTIONS(1444), + [anon_sym_unsigned] = ACTIONS(1444), + [anon_sym_long] = ACTIONS(1444), + [anon_sym_short] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_auto] = ACTIONS(1444), + [anon_sym_register] = ACTIONS(1444), + [anon_sym_inline] = ACTIONS(1444), + [anon_sym___inline] = ACTIONS(1444), + [anon_sym___inline__] = ACTIONS(1444), + [anon_sym___forceinline] = ACTIONS(1444), + [anon_sym_thread_local] = ACTIONS(1444), + [anon_sym___thread] = ACTIONS(1444), + [anon_sym_const] = ACTIONS(1444), + [anon_sym_constexpr] = ACTIONS(1444), + [anon_sym_volatile] = ACTIONS(1444), + [anon_sym_restrict] = ACTIONS(1444), + [anon_sym___restrict__] = ACTIONS(1444), + [anon_sym__Atomic] = ACTIONS(1444), + [anon_sym__Noreturn] = ACTIONS(1444), + [anon_sym_noreturn] = ACTIONS(1444), + [sym_primitive_type] = ACTIONS(1444), + [anon_sym_enum] = ACTIONS(1444), + [anon_sym_struct] = ACTIONS(1444), + [anon_sym_union] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_else] = ACTIONS(1444), + [anon_sym_switch] = ACTIONS(1444), + [anon_sym_case] = ACTIONS(1444), + [anon_sym_default] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_do] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_goto] = ACTIONS(1444), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_sizeof] = ACTIONS(1444), + [anon_sym___alignof__] = ACTIONS(1444), + [anon_sym___alignof] = ACTIONS(1444), + [anon_sym__alignof] = ACTIONS(1444), + [anon_sym_alignof] = ACTIONS(1444), + [anon_sym__Alignof] = ACTIONS(1444), + [anon_sym_offsetof] = ACTIONS(1444), + [anon_sym___builtin_va_arg] = ACTIONS(1444), + [anon_sym__Generic] = ACTIONS(1444), + [anon_sym_asm] = ACTIONS(1444), + [anon_sym___asm__] = ACTIONS(1444), + [sym_number_literal] = ACTIONS(1446), + [anon_sym_L_SQUOTE] = ACTIONS(1446), + [anon_sym_u_SQUOTE] = ACTIONS(1446), + [anon_sym_U_SQUOTE] = ACTIONS(1446), + [anon_sym_u8_SQUOTE] = ACTIONS(1446), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_L_DQUOTE] = ACTIONS(1446), + [anon_sym_u_DQUOTE] = ACTIONS(1446), + [anon_sym_U_DQUOTE] = ACTIONS(1446), + [anon_sym_u8_DQUOTE] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1446), + [sym_true] = ACTIONS(1444), + [sym_false] = ACTIONS(1444), + [anon_sym_NULL] = ACTIONS(1444), + [anon_sym_nullptr] = ACTIONS(1444), [sym_comment] = ACTIONS(3), }, - [374] = { - [sym_attribute_declaration] = STATE(413), - [sym_compound_statement] = STATE(248), - [sym_attributed_statement] = STATE(248), - [sym_labeled_statement] = STATE(248), - [sym_expression_statement] = STATE(248), - [sym_if_statement] = STATE(248), - [sym_switch_statement] = STATE(248), - [sym_case_statement] = STATE(248), - [sym_while_statement] = STATE(248), - [sym_do_statement] = STATE(248), - [sym_for_statement] = STATE(248), - [sym_return_statement] = STATE(248), - [sym_break_statement] = STATE(248), - [sym_continue_statement] = STATE(248), - [sym_goto_statement] = STATE(248), - [sym__expression] = STATE(1098), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1873), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(413), - [sym_identifier] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [347] = { + [sym_identifier] = ACTIONS(1440), + [aux_sym_preproc_include_token1] = ACTIONS(1440), + [aux_sym_preproc_def_token1] = ACTIONS(1440), + [aux_sym_preproc_if_token1] = ACTIONS(1440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1440), + [sym_preproc_directive] = ACTIONS(1440), + [anon_sym_LPAREN2] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym___extension__] = ACTIONS(1440), + [anon_sym_typedef] = ACTIONS(1440), + [anon_sym_extern] = ACTIONS(1440), + [anon_sym___attribute__] = ACTIONS(1440), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1442), + [anon_sym___declspec] = ACTIONS(1440), + [anon_sym___cdecl] = ACTIONS(1440), + [anon_sym___clrcall] = ACTIONS(1440), + [anon_sym___stdcall] = ACTIONS(1440), + [anon_sym___fastcall] = ACTIONS(1440), + [anon_sym___thiscall] = ACTIONS(1440), + [anon_sym___vectorcall] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1442), + [anon_sym_signed] = ACTIONS(1440), + [anon_sym_unsigned] = ACTIONS(1440), + [anon_sym_long] = ACTIONS(1440), + [anon_sym_short] = ACTIONS(1440), + [anon_sym_static] = ACTIONS(1440), + [anon_sym_auto] = ACTIONS(1440), + [anon_sym_register] = ACTIONS(1440), + [anon_sym_inline] = ACTIONS(1440), + [anon_sym___inline] = ACTIONS(1440), + [anon_sym___inline__] = ACTIONS(1440), + [anon_sym___forceinline] = ACTIONS(1440), + [anon_sym_thread_local] = ACTIONS(1440), + [anon_sym___thread] = ACTIONS(1440), + [anon_sym_const] = ACTIONS(1440), + [anon_sym_constexpr] = ACTIONS(1440), + [anon_sym_volatile] = ACTIONS(1440), + [anon_sym_restrict] = ACTIONS(1440), + [anon_sym___restrict__] = ACTIONS(1440), + [anon_sym__Atomic] = ACTIONS(1440), + [anon_sym__Noreturn] = ACTIONS(1440), + [anon_sym_noreturn] = ACTIONS(1440), + [sym_primitive_type] = ACTIONS(1440), + [anon_sym_enum] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_union] = ACTIONS(1440), + [anon_sym_if] = ACTIONS(1440), + [anon_sym_else] = ACTIONS(1440), + [anon_sym_switch] = ACTIONS(1440), + [anon_sym_case] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1440), + [anon_sym_while] = ACTIONS(1440), + [anon_sym_do] = ACTIONS(1440), + [anon_sym_for] = ACTIONS(1440), + [anon_sym_return] = ACTIONS(1440), + [anon_sym_break] = ACTIONS(1440), + [anon_sym_continue] = ACTIONS(1440), + [anon_sym_goto] = ACTIONS(1440), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_sizeof] = ACTIONS(1440), + [anon_sym___alignof__] = ACTIONS(1440), + [anon_sym___alignof] = ACTIONS(1440), + [anon_sym__alignof] = ACTIONS(1440), + [anon_sym_alignof] = ACTIONS(1440), + [anon_sym__Alignof] = ACTIONS(1440), + [anon_sym_offsetof] = ACTIONS(1440), + [anon_sym___builtin_va_arg] = ACTIONS(1440), + [anon_sym__Generic] = ACTIONS(1440), + [anon_sym_asm] = ACTIONS(1440), + [anon_sym___asm__] = ACTIONS(1440), + [sym_number_literal] = ACTIONS(1442), + [anon_sym_L_SQUOTE] = ACTIONS(1442), + [anon_sym_u_SQUOTE] = ACTIONS(1442), + [anon_sym_U_SQUOTE] = ACTIONS(1442), + [anon_sym_u8_SQUOTE] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_L_DQUOTE] = ACTIONS(1442), + [anon_sym_u_DQUOTE] = ACTIONS(1442), + [anon_sym_U_DQUOTE] = ACTIONS(1442), + [anon_sym_u8_DQUOTE] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [sym_true] = ACTIONS(1440), + [sym_false] = ACTIONS(1440), + [anon_sym_NULL] = ACTIONS(1440), + [anon_sym_nullptr] = ACTIONS(1440), [sym_comment] = ACTIONS(3), }, - [375] = { - [sym_attribute_declaration] = STATE(473), - [sym_compound_statement] = STATE(318), - [sym_attributed_statement] = STATE(318), - [sym_labeled_statement] = STATE(318), - [sym_expression_statement] = STATE(318), - [sym_if_statement] = STATE(318), - [sym_switch_statement] = STATE(318), - [sym_case_statement] = STATE(318), - [sym_while_statement] = STATE(318), - [sym_do_statement] = STATE(318), - [sym_for_statement] = STATE(318), - [sym_return_statement] = STATE(318), - [sym_break_statement] = STATE(318), - [sym_continue_statement] = STATE(318), - [sym_goto_statement] = STATE(318), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(473), - [sym_identifier] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1466), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [348] = { + [sym_identifier] = ACTIONS(1436), + [aux_sym_preproc_include_token1] = ACTIONS(1436), + [aux_sym_preproc_def_token1] = ACTIONS(1436), + [aux_sym_preproc_if_token1] = ACTIONS(1436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1436), + [sym_preproc_directive] = ACTIONS(1436), + [anon_sym_LPAREN2] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym___extension__] = ACTIONS(1436), + [anon_sym_typedef] = ACTIONS(1436), + [anon_sym_extern] = ACTIONS(1436), + [anon_sym___attribute__] = ACTIONS(1436), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1438), + [anon_sym___declspec] = ACTIONS(1436), + [anon_sym___cdecl] = ACTIONS(1436), + [anon_sym___clrcall] = ACTIONS(1436), + [anon_sym___stdcall] = ACTIONS(1436), + [anon_sym___fastcall] = ACTIONS(1436), + [anon_sym___thiscall] = ACTIONS(1436), + [anon_sym___vectorcall] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1438), + [anon_sym_signed] = ACTIONS(1436), + [anon_sym_unsigned] = ACTIONS(1436), + [anon_sym_long] = ACTIONS(1436), + [anon_sym_short] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_auto] = ACTIONS(1436), + [anon_sym_register] = ACTIONS(1436), + [anon_sym_inline] = ACTIONS(1436), + [anon_sym___inline] = ACTIONS(1436), + [anon_sym___inline__] = ACTIONS(1436), + [anon_sym___forceinline] = ACTIONS(1436), + [anon_sym_thread_local] = ACTIONS(1436), + [anon_sym___thread] = ACTIONS(1436), + [anon_sym_const] = ACTIONS(1436), + [anon_sym_constexpr] = ACTIONS(1436), + [anon_sym_volatile] = ACTIONS(1436), + [anon_sym_restrict] = ACTIONS(1436), + [anon_sym___restrict__] = ACTIONS(1436), + [anon_sym__Atomic] = ACTIONS(1436), + [anon_sym__Noreturn] = ACTIONS(1436), + [anon_sym_noreturn] = ACTIONS(1436), + [sym_primitive_type] = ACTIONS(1436), + [anon_sym_enum] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1436), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_else] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1436), + [anon_sym_case] = ACTIONS(1436), + [anon_sym_default] = ACTIONS(1436), + [anon_sym_while] = ACTIONS(1436), + [anon_sym_do] = ACTIONS(1436), + [anon_sym_for] = ACTIONS(1436), + [anon_sym_return] = ACTIONS(1436), + [anon_sym_break] = ACTIONS(1436), + [anon_sym_continue] = ACTIONS(1436), + [anon_sym_goto] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1438), + [anon_sym_PLUS_PLUS] = ACTIONS(1438), + [anon_sym_sizeof] = ACTIONS(1436), + [anon_sym___alignof__] = ACTIONS(1436), + [anon_sym___alignof] = ACTIONS(1436), + [anon_sym__alignof] = ACTIONS(1436), + [anon_sym_alignof] = ACTIONS(1436), + [anon_sym__Alignof] = ACTIONS(1436), + [anon_sym_offsetof] = ACTIONS(1436), + [anon_sym___builtin_va_arg] = ACTIONS(1436), + [anon_sym__Generic] = ACTIONS(1436), + [anon_sym_asm] = ACTIONS(1436), + [anon_sym___asm__] = ACTIONS(1436), + [sym_number_literal] = ACTIONS(1438), + [anon_sym_L_SQUOTE] = ACTIONS(1438), + [anon_sym_u_SQUOTE] = ACTIONS(1438), + [anon_sym_U_SQUOTE] = ACTIONS(1438), + [anon_sym_u8_SQUOTE] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_L_DQUOTE] = ACTIONS(1438), + [anon_sym_u_DQUOTE] = ACTIONS(1438), + [anon_sym_U_DQUOTE] = ACTIONS(1438), + [anon_sym_u8_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [sym_true] = ACTIONS(1436), + [sym_false] = ACTIONS(1436), + [anon_sym_NULL] = ACTIONS(1436), + [anon_sym_nullptr] = ACTIONS(1436), [sym_comment] = ACTIONS(3), }, - [376] = { - [sym_attribute_declaration] = STATE(413), - [sym_compound_statement] = STATE(257), - [sym_attributed_statement] = STATE(257), - [sym_labeled_statement] = STATE(257), - [sym_expression_statement] = STATE(257), - [sym_if_statement] = STATE(257), - [sym_switch_statement] = STATE(257), - [sym_case_statement] = STATE(257), - [sym_while_statement] = STATE(257), - [sym_do_statement] = STATE(257), - [sym_for_statement] = STATE(257), - [sym_return_statement] = STATE(257), - [sym_break_statement] = STATE(257), - [sym_continue_statement] = STATE(257), - [sym_goto_statement] = STATE(257), - [sym__expression] = STATE(1098), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1873), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(413), - [sym_identifier] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [349] = { + [sym_identifier] = ACTIONS(1432), + [aux_sym_preproc_include_token1] = ACTIONS(1432), + [aux_sym_preproc_def_token1] = ACTIONS(1432), + [aux_sym_preproc_if_token1] = ACTIONS(1432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), + [sym_preproc_directive] = ACTIONS(1432), + [anon_sym_LPAREN2] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym___extension__] = ACTIONS(1432), + [anon_sym_typedef] = ACTIONS(1432), + [anon_sym_extern] = ACTIONS(1432), + [anon_sym___attribute__] = ACTIONS(1432), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1434), + [anon_sym___declspec] = ACTIONS(1432), + [anon_sym___cdecl] = ACTIONS(1432), + [anon_sym___clrcall] = ACTIONS(1432), + [anon_sym___stdcall] = ACTIONS(1432), + [anon_sym___fastcall] = ACTIONS(1432), + [anon_sym___thiscall] = ACTIONS(1432), + [anon_sym___vectorcall] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_RBRACE] = ACTIONS(1434), + [anon_sym_signed] = ACTIONS(1432), + [anon_sym_unsigned] = ACTIONS(1432), + [anon_sym_long] = ACTIONS(1432), + [anon_sym_short] = ACTIONS(1432), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_auto] = ACTIONS(1432), + [anon_sym_register] = ACTIONS(1432), + [anon_sym_inline] = ACTIONS(1432), + [anon_sym___inline] = ACTIONS(1432), + [anon_sym___inline__] = ACTIONS(1432), + [anon_sym___forceinline] = ACTIONS(1432), + [anon_sym_thread_local] = ACTIONS(1432), + [anon_sym___thread] = ACTIONS(1432), + [anon_sym_const] = ACTIONS(1432), + [anon_sym_constexpr] = ACTIONS(1432), + [anon_sym_volatile] = ACTIONS(1432), + [anon_sym_restrict] = ACTIONS(1432), + [anon_sym___restrict__] = ACTIONS(1432), + [anon_sym__Atomic] = ACTIONS(1432), + [anon_sym__Noreturn] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [sym_primitive_type] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [anon_sym_struct] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(1432), + [anon_sym_switch] = ACTIONS(1432), + [anon_sym_case] = ACTIONS(1432), + [anon_sym_default] = ACTIONS(1432), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_do] = ACTIONS(1432), + [anon_sym_for] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_break] = ACTIONS(1432), + [anon_sym_continue] = ACTIONS(1432), + [anon_sym_goto] = ACTIONS(1432), + [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_PLUS_PLUS] = ACTIONS(1434), + [anon_sym_sizeof] = ACTIONS(1432), + [anon_sym___alignof__] = ACTIONS(1432), + [anon_sym___alignof] = ACTIONS(1432), + [anon_sym__alignof] = ACTIONS(1432), + [anon_sym_alignof] = ACTIONS(1432), + [anon_sym__Alignof] = ACTIONS(1432), + [anon_sym_offsetof] = ACTIONS(1432), + [anon_sym___builtin_va_arg] = ACTIONS(1432), + [anon_sym__Generic] = ACTIONS(1432), + [anon_sym_asm] = ACTIONS(1432), + [anon_sym___asm__] = ACTIONS(1432), + [sym_number_literal] = ACTIONS(1434), + [anon_sym_L_SQUOTE] = ACTIONS(1434), + [anon_sym_u_SQUOTE] = ACTIONS(1434), + [anon_sym_U_SQUOTE] = ACTIONS(1434), + [anon_sym_u8_SQUOTE] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(1434), + [anon_sym_L_DQUOTE] = ACTIONS(1434), + [anon_sym_u_DQUOTE] = ACTIONS(1434), + [anon_sym_U_DQUOTE] = ACTIONS(1434), + [anon_sym_u8_DQUOTE] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(1434), + [sym_true] = ACTIONS(1432), + [sym_false] = ACTIONS(1432), + [anon_sym_NULL] = ACTIONS(1432), + [anon_sym_nullptr] = ACTIONS(1432), [sym_comment] = ACTIONS(3), }, - [377] = { - [sym_attribute_declaration] = STATE(437), - [sym_compound_statement] = STATE(144), - [sym_attributed_statement] = STATE(144), - [sym_labeled_statement] = STATE(144), - [sym_expression_statement] = STATE(144), - [sym_if_statement] = STATE(144), - [sym_switch_statement] = STATE(144), - [sym_case_statement] = STATE(144), - [sym_while_statement] = STATE(144), - [sym_do_statement] = STATE(144), - [sym_for_statement] = STATE(144), - [sym_return_statement] = STATE(144), - [sym_break_statement] = STATE(144), - [sym_continue_statement] = STATE(144), - [sym_goto_statement] = STATE(144), - [sym__expression] = STATE(1077), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(437), - [sym_identifier] = ACTIONS(1474), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [350] = { + [sym_identifier] = ACTIONS(1280), + [aux_sym_preproc_include_token1] = ACTIONS(1280), + [aux_sym_preproc_def_token1] = ACTIONS(1280), + [aux_sym_preproc_if_token1] = ACTIONS(1280), + [aux_sym_preproc_if_token2] = ACTIONS(1280), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1280), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1280), + [sym_preproc_directive] = ACTIONS(1280), + [anon_sym_LPAREN2] = ACTIONS(1282), + [anon_sym_BANG] = ACTIONS(1282), + [anon_sym_TILDE] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1280), + [anon_sym_PLUS] = ACTIONS(1280), + [anon_sym_STAR] = ACTIONS(1282), + [anon_sym_AMP] = ACTIONS(1282), + [anon_sym_SEMI] = ACTIONS(1282), + [anon_sym___extension__] = ACTIONS(1280), + [anon_sym_typedef] = ACTIONS(1280), + [anon_sym_extern] = ACTIONS(1280), + [anon_sym___attribute__] = ACTIONS(1280), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1282), + [anon_sym___declspec] = ACTIONS(1280), + [anon_sym___cdecl] = ACTIONS(1280), + [anon_sym___clrcall] = ACTIONS(1280), + [anon_sym___stdcall] = ACTIONS(1280), + [anon_sym___fastcall] = ACTIONS(1280), + [anon_sym___thiscall] = ACTIONS(1280), + [anon_sym___vectorcall] = ACTIONS(1280), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_signed] = ACTIONS(1280), + [anon_sym_unsigned] = ACTIONS(1280), + [anon_sym_long] = ACTIONS(1280), + [anon_sym_short] = ACTIONS(1280), + [anon_sym_static] = ACTIONS(1280), + [anon_sym_auto] = ACTIONS(1280), + [anon_sym_register] = ACTIONS(1280), + [anon_sym_inline] = ACTIONS(1280), + [anon_sym___inline] = ACTIONS(1280), + [anon_sym___inline__] = ACTIONS(1280), + [anon_sym___forceinline] = ACTIONS(1280), + [anon_sym_thread_local] = ACTIONS(1280), + [anon_sym___thread] = ACTIONS(1280), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_constexpr] = ACTIONS(1280), + [anon_sym_volatile] = ACTIONS(1280), + [anon_sym_restrict] = ACTIONS(1280), + [anon_sym___restrict__] = ACTIONS(1280), + [anon_sym__Atomic] = ACTIONS(1280), + [anon_sym__Noreturn] = ACTIONS(1280), + [anon_sym_noreturn] = ACTIONS(1280), + [sym_primitive_type] = ACTIONS(1280), + [anon_sym_enum] = ACTIONS(1280), + [anon_sym_struct] = ACTIONS(1280), + [anon_sym_union] = ACTIONS(1280), + [anon_sym_if] = ACTIONS(1280), + [anon_sym_else] = ACTIONS(1280), + [anon_sym_switch] = ACTIONS(1280), + [anon_sym_case] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1280), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_do] = ACTIONS(1280), + [anon_sym_for] = ACTIONS(1280), + [anon_sym_return] = ACTIONS(1280), + [anon_sym_break] = ACTIONS(1280), + [anon_sym_continue] = ACTIONS(1280), + [anon_sym_goto] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1282), + [anon_sym_PLUS_PLUS] = ACTIONS(1282), + [anon_sym_sizeof] = ACTIONS(1280), + [anon_sym___alignof__] = ACTIONS(1280), + [anon_sym___alignof] = ACTIONS(1280), + [anon_sym__alignof] = ACTIONS(1280), + [anon_sym_alignof] = ACTIONS(1280), + [anon_sym__Alignof] = ACTIONS(1280), + [anon_sym_offsetof] = ACTIONS(1280), + [anon_sym___builtin_va_arg] = ACTIONS(1280), + [anon_sym__Generic] = ACTIONS(1280), + [anon_sym_asm] = ACTIONS(1280), + [anon_sym___asm__] = ACTIONS(1280), + [sym_number_literal] = ACTIONS(1282), + [anon_sym_L_SQUOTE] = ACTIONS(1282), + [anon_sym_u_SQUOTE] = ACTIONS(1282), + [anon_sym_U_SQUOTE] = ACTIONS(1282), + [anon_sym_u8_SQUOTE] = ACTIONS(1282), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_L_DQUOTE] = ACTIONS(1282), + [anon_sym_u_DQUOTE] = ACTIONS(1282), + [anon_sym_U_DQUOTE] = ACTIONS(1282), + [anon_sym_u8_DQUOTE] = ACTIONS(1282), + [anon_sym_DQUOTE] = ACTIONS(1282), + [sym_true] = ACTIONS(1280), + [sym_false] = ACTIONS(1280), + [anon_sym_NULL] = ACTIONS(1280), + [anon_sym_nullptr] = ACTIONS(1280), [sym_comment] = ACTIONS(3), }, - [378] = { - [sym_attribute_declaration] = STATE(413), - [sym_compound_statement] = STATE(215), - [sym_attributed_statement] = STATE(215), - [sym_labeled_statement] = STATE(215), - [sym_expression_statement] = STATE(215), - [sym_if_statement] = STATE(215), - [sym_switch_statement] = STATE(215), - [sym_case_statement] = STATE(215), - [sym_while_statement] = STATE(215), - [sym_do_statement] = STATE(215), - [sym_for_statement] = STATE(215), - [sym_return_statement] = STATE(215), - [sym_break_statement] = STATE(215), - [sym_continue_statement] = STATE(215), - [sym_goto_statement] = STATE(215), - [sym__expression] = STATE(1098), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1873), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(413), - [sym_identifier] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [351] = { + [sym_identifier] = ACTIONS(1428), + [aux_sym_preproc_include_token1] = ACTIONS(1428), + [aux_sym_preproc_def_token1] = ACTIONS(1428), + [aux_sym_preproc_if_token1] = ACTIONS(1428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1428), + [sym_preproc_directive] = ACTIONS(1428), + [anon_sym_LPAREN2] = ACTIONS(1430), + [anon_sym_BANG] = ACTIONS(1430), + [anon_sym_TILDE] = ACTIONS(1430), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym___extension__] = ACTIONS(1428), + [anon_sym_typedef] = ACTIONS(1428), + [anon_sym_extern] = ACTIONS(1428), + [anon_sym___attribute__] = ACTIONS(1428), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1430), + [anon_sym___declspec] = ACTIONS(1428), + [anon_sym___cdecl] = ACTIONS(1428), + [anon_sym___clrcall] = ACTIONS(1428), + [anon_sym___stdcall] = ACTIONS(1428), + [anon_sym___fastcall] = ACTIONS(1428), + [anon_sym___thiscall] = ACTIONS(1428), + [anon_sym___vectorcall] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_RBRACE] = ACTIONS(1430), + [anon_sym_signed] = ACTIONS(1428), + [anon_sym_unsigned] = ACTIONS(1428), + [anon_sym_long] = ACTIONS(1428), + [anon_sym_short] = ACTIONS(1428), + [anon_sym_static] = ACTIONS(1428), + [anon_sym_auto] = ACTIONS(1428), + [anon_sym_register] = ACTIONS(1428), + [anon_sym_inline] = ACTIONS(1428), + [anon_sym___inline] = ACTIONS(1428), + [anon_sym___inline__] = ACTIONS(1428), + [anon_sym___forceinline] = ACTIONS(1428), + [anon_sym_thread_local] = ACTIONS(1428), + [anon_sym___thread] = ACTIONS(1428), + [anon_sym_const] = ACTIONS(1428), + [anon_sym_constexpr] = ACTIONS(1428), + [anon_sym_volatile] = ACTIONS(1428), + [anon_sym_restrict] = ACTIONS(1428), + [anon_sym___restrict__] = ACTIONS(1428), + [anon_sym__Atomic] = ACTIONS(1428), + [anon_sym__Noreturn] = ACTIONS(1428), + [anon_sym_noreturn] = ACTIONS(1428), + [sym_primitive_type] = ACTIONS(1428), + [anon_sym_enum] = ACTIONS(1428), + [anon_sym_struct] = ACTIONS(1428), + [anon_sym_union] = ACTIONS(1428), + [anon_sym_if] = ACTIONS(1428), + [anon_sym_else] = ACTIONS(1428), + [anon_sym_switch] = ACTIONS(1428), + [anon_sym_case] = ACTIONS(1428), + [anon_sym_default] = ACTIONS(1428), + [anon_sym_while] = ACTIONS(1428), + [anon_sym_do] = ACTIONS(1428), + [anon_sym_for] = ACTIONS(1428), + [anon_sym_return] = ACTIONS(1428), + [anon_sym_break] = ACTIONS(1428), + [anon_sym_continue] = ACTIONS(1428), + [anon_sym_goto] = ACTIONS(1428), + [anon_sym_DASH_DASH] = ACTIONS(1430), + [anon_sym_PLUS_PLUS] = ACTIONS(1430), + [anon_sym_sizeof] = ACTIONS(1428), + [anon_sym___alignof__] = ACTIONS(1428), + [anon_sym___alignof] = ACTIONS(1428), + [anon_sym__alignof] = ACTIONS(1428), + [anon_sym_alignof] = ACTIONS(1428), + [anon_sym__Alignof] = ACTIONS(1428), + [anon_sym_offsetof] = ACTIONS(1428), + [anon_sym___builtin_va_arg] = ACTIONS(1428), + [anon_sym__Generic] = ACTIONS(1428), + [anon_sym_asm] = ACTIONS(1428), + [anon_sym___asm__] = ACTIONS(1428), + [sym_number_literal] = ACTIONS(1430), + [anon_sym_L_SQUOTE] = ACTIONS(1430), + [anon_sym_u_SQUOTE] = ACTIONS(1430), + [anon_sym_U_SQUOTE] = ACTIONS(1430), + [anon_sym_u8_SQUOTE] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(1430), + [anon_sym_L_DQUOTE] = ACTIONS(1430), + [anon_sym_u_DQUOTE] = ACTIONS(1430), + [anon_sym_U_DQUOTE] = ACTIONS(1430), + [anon_sym_u8_DQUOTE] = ACTIONS(1430), + [anon_sym_DQUOTE] = ACTIONS(1430), + [sym_true] = ACTIONS(1428), + [sym_false] = ACTIONS(1428), + [anon_sym_NULL] = ACTIONS(1428), + [anon_sym_nullptr] = ACTIONS(1428), [sym_comment] = ACTIONS(3), }, - [379] = { - [sym_attribute_declaration] = STATE(437), - [sym_compound_statement] = STATE(171), - [sym_attributed_statement] = STATE(171), - [sym_labeled_statement] = STATE(171), - [sym_expression_statement] = STATE(171), - [sym_if_statement] = STATE(171), - [sym_switch_statement] = STATE(171), - [sym_case_statement] = STATE(171), - [sym_while_statement] = STATE(171), - [sym_do_statement] = STATE(171), - [sym_for_statement] = STATE(171), - [sym_return_statement] = STATE(171), - [sym_break_statement] = STATE(171), - [sym_continue_statement] = STATE(171), - [sym_goto_statement] = STATE(171), - [sym__expression] = STATE(1077), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(437), - [sym_identifier] = ACTIONS(1474), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [352] = { + [sym_identifier] = ACTIONS(1368), + [aux_sym_preproc_include_token1] = ACTIONS(1368), + [aux_sym_preproc_def_token1] = ACTIONS(1368), + [aux_sym_preproc_if_token1] = ACTIONS(1368), + [aux_sym_preproc_if_token2] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1368), + [sym_preproc_directive] = ACTIONS(1368), + [anon_sym_LPAREN2] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1370), + [anon_sym___extension__] = ACTIONS(1368), + [anon_sym_typedef] = ACTIONS(1368), + [anon_sym_extern] = ACTIONS(1368), + [anon_sym___attribute__] = ACTIONS(1368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1370), + [anon_sym___declspec] = ACTIONS(1368), + [anon_sym___cdecl] = ACTIONS(1368), + [anon_sym___clrcall] = ACTIONS(1368), + [anon_sym___stdcall] = ACTIONS(1368), + [anon_sym___fastcall] = ACTIONS(1368), + [anon_sym___thiscall] = ACTIONS(1368), + [anon_sym___vectorcall] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_signed] = ACTIONS(1368), + [anon_sym_unsigned] = ACTIONS(1368), + [anon_sym_long] = ACTIONS(1368), + [anon_sym_short] = ACTIONS(1368), + [anon_sym_static] = ACTIONS(1368), + [anon_sym_auto] = ACTIONS(1368), + [anon_sym_register] = ACTIONS(1368), + [anon_sym_inline] = ACTIONS(1368), + [anon_sym___inline] = ACTIONS(1368), + [anon_sym___inline__] = ACTIONS(1368), + [anon_sym___forceinline] = ACTIONS(1368), + [anon_sym_thread_local] = ACTIONS(1368), + [anon_sym___thread] = ACTIONS(1368), + [anon_sym_const] = ACTIONS(1368), + [anon_sym_constexpr] = ACTIONS(1368), + [anon_sym_volatile] = ACTIONS(1368), + [anon_sym_restrict] = ACTIONS(1368), + [anon_sym___restrict__] = ACTIONS(1368), + [anon_sym__Atomic] = ACTIONS(1368), + [anon_sym__Noreturn] = ACTIONS(1368), + [anon_sym_noreturn] = ACTIONS(1368), + [sym_primitive_type] = ACTIONS(1368), + [anon_sym_enum] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1368), + [anon_sym_union] = ACTIONS(1368), + [anon_sym_if] = ACTIONS(1368), + [anon_sym_else] = ACTIONS(1368), + [anon_sym_switch] = ACTIONS(1368), + [anon_sym_case] = ACTIONS(1368), + [anon_sym_default] = ACTIONS(1368), + [anon_sym_while] = ACTIONS(1368), + [anon_sym_do] = ACTIONS(1368), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1368), + [anon_sym_break] = ACTIONS(1368), + [anon_sym_continue] = ACTIONS(1368), + [anon_sym_goto] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1370), + [anon_sym_sizeof] = ACTIONS(1368), + [anon_sym___alignof__] = ACTIONS(1368), + [anon_sym___alignof] = ACTIONS(1368), + [anon_sym__alignof] = ACTIONS(1368), + [anon_sym_alignof] = ACTIONS(1368), + [anon_sym__Alignof] = ACTIONS(1368), + [anon_sym_offsetof] = ACTIONS(1368), + [anon_sym___builtin_va_arg] = ACTIONS(1368), + [anon_sym__Generic] = ACTIONS(1368), + [anon_sym_asm] = ACTIONS(1368), + [anon_sym___asm__] = ACTIONS(1368), + [sym_number_literal] = ACTIONS(1370), + [anon_sym_L_SQUOTE] = ACTIONS(1370), + [anon_sym_u_SQUOTE] = ACTIONS(1370), + [anon_sym_U_SQUOTE] = ACTIONS(1370), + [anon_sym_u8_SQUOTE] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1370), + [anon_sym_L_DQUOTE] = ACTIONS(1370), + [anon_sym_u_DQUOTE] = ACTIONS(1370), + [anon_sym_U_DQUOTE] = ACTIONS(1370), + [anon_sym_u8_DQUOTE] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [sym_true] = ACTIONS(1368), + [sym_false] = ACTIONS(1368), + [anon_sym_NULL] = ACTIONS(1368), + [anon_sym_nullptr] = ACTIONS(1368), [sym_comment] = ACTIONS(3), }, - [380] = { - [sym_attribute_declaration] = STATE(437), - [sym_compound_statement] = STATE(165), - [sym_attributed_statement] = STATE(165), - [sym_labeled_statement] = STATE(165), - [sym_expression_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_switch_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_while_statement] = STATE(165), - [sym_do_statement] = STATE(165), - [sym_for_statement] = STATE(165), - [sym_return_statement] = STATE(165), - [sym_break_statement] = STATE(165), - [sym_continue_statement] = STATE(165), - [sym_goto_statement] = STATE(165), - [sym__expression] = STATE(1077), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(437), - [sym_identifier] = ACTIONS(1474), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [353] = { + [sym_identifier] = ACTIONS(1368), + [aux_sym_preproc_include_token1] = ACTIONS(1368), + [aux_sym_preproc_def_token1] = ACTIONS(1368), + [aux_sym_preproc_if_token1] = ACTIONS(1368), + [aux_sym_preproc_if_token2] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1368), + [sym_preproc_directive] = ACTIONS(1368), + [anon_sym_LPAREN2] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1370), + [anon_sym___extension__] = ACTIONS(1368), + [anon_sym_typedef] = ACTIONS(1368), + [anon_sym_extern] = ACTIONS(1368), + [anon_sym___attribute__] = ACTIONS(1368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1370), + [anon_sym___declspec] = ACTIONS(1368), + [anon_sym___cdecl] = ACTIONS(1368), + [anon_sym___clrcall] = ACTIONS(1368), + [anon_sym___stdcall] = ACTIONS(1368), + [anon_sym___fastcall] = ACTIONS(1368), + [anon_sym___thiscall] = ACTIONS(1368), + [anon_sym___vectorcall] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_signed] = ACTIONS(1368), + [anon_sym_unsigned] = ACTIONS(1368), + [anon_sym_long] = ACTIONS(1368), + [anon_sym_short] = ACTIONS(1368), + [anon_sym_static] = ACTIONS(1368), + [anon_sym_auto] = ACTIONS(1368), + [anon_sym_register] = ACTIONS(1368), + [anon_sym_inline] = ACTIONS(1368), + [anon_sym___inline] = ACTIONS(1368), + [anon_sym___inline__] = ACTIONS(1368), + [anon_sym___forceinline] = ACTIONS(1368), + [anon_sym_thread_local] = ACTIONS(1368), + [anon_sym___thread] = ACTIONS(1368), + [anon_sym_const] = ACTIONS(1368), + [anon_sym_constexpr] = ACTIONS(1368), + [anon_sym_volatile] = ACTIONS(1368), + [anon_sym_restrict] = ACTIONS(1368), + [anon_sym___restrict__] = ACTIONS(1368), + [anon_sym__Atomic] = ACTIONS(1368), + [anon_sym__Noreturn] = ACTIONS(1368), + [anon_sym_noreturn] = ACTIONS(1368), + [sym_primitive_type] = ACTIONS(1368), + [anon_sym_enum] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1368), + [anon_sym_union] = ACTIONS(1368), + [anon_sym_if] = ACTIONS(1368), + [anon_sym_else] = ACTIONS(1368), + [anon_sym_switch] = ACTIONS(1368), + [anon_sym_case] = ACTIONS(1368), + [anon_sym_default] = ACTIONS(1368), + [anon_sym_while] = ACTIONS(1368), + [anon_sym_do] = ACTIONS(1368), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1368), + [anon_sym_break] = ACTIONS(1368), + [anon_sym_continue] = ACTIONS(1368), + [anon_sym_goto] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1370), + [anon_sym_sizeof] = ACTIONS(1368), + [anon_sym___alignof__] = ACTIONS(1368), + [anon_sym___alignof] = ACTIONS(1368), + [anon_sym__alignof] = ACTIONS(1368), + [anon_sym_alignof] = ACTIONS(1368), + [anon_sym__Alignof] = ACTIONS(1368), + [anon_sym_offsetof] = ACTIONS(1368), + [anon_sym___builtin_va_arg] = ACTIONS(1368), + [anon_sym__Generic] = ACTIONS(1368), + [anon_sym_asm] = ACTIONS(1368), + [anon_sym___asm__] = ACTIONS(1368), + [sym_number_literal] = ACTIONS(1370), + [anon_sym_L_SQUOTE] = ACTIONS(1370), + [anon_sym_u_SQUOTE] = ACTIONS(1370), + [anon_sym_U_SQUOTE] = ACTIONS(1370), + [anon_sym_u8_SQUOTE] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1370), + [anon_sym_L_DQUOTE] = ACTIONS(1370), + [anon_sym_u_DQUOTE] = ACTIONS(1370), + [anon_sym_U_DQUOTE] = ACTIONS(1370), + [anon_sym_u8_DQUOTE] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [sym_true] = ACTIONS(1368), + [sym_false] = ACTIONS(1368), + [anon_sym_NULL] = ACTIONS(1368), + [anon_sym_nullptr] = ACTIONS(1368), [sym_comment] = ACTIONS(3), }, - [381] = { - [sym_attribute_declaration] = STATE(413), - [sym_compound_statement] = STATE(250), - [sym_attributed_statement] = STATE(250), - [sym_labeled_statement] = STATE(250), - [sym_expression_statement] = STATE(250), - [sym_if_statement] = STATE(250), - [sym_switch_statement] = STATE(250), - [sym_case_statement] = STATE(250), - [sym_while_statement] = STATE(250), - [sym_do_statement] = STATE(250), - [sym_for_statement] = STATE(250), - [sym_return_statement] = STATE(250), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(250), - [sym_goto_statement] = STATE(250), - [sym__expression] = STATE(1098), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1873), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(413), - [sym_identifier] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [354] = { + [sym_identifier] = ACTIONS(1364), + [aux_sym_preproc_include_token1] = ACTIONS(1364), + [aux_sym_preproc_def_token1] = ACTIONS(1364), + [aux_sym_preproc_if_token1] = ACTIONS(1364), + [aux_sym_preproc_if_token2] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), + [sym_preproc_directive] = ACTIONS(1364), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1366), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1364), + [anon_sym_STAR] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym___extension__] = ACTIONS(1364), + [anon_sym_typedef] = ACTIONS(1364), + [anon_sym_extern] = ACTIONS(1364), + [anon_sym___attribute__] = ACTIONS(1364), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1366), + [anon_sym___declspec] = ACTIONS(1364), + [anon_sym___cdecl] = ACTIONS(1364), + [anon_sym___clrcall] = ACTIONS(1364), + [anon_sym___stdcall] = ACTIONS(1364), + [anon_sym___fastcall] = ACTIONS(1364), + [anon_sym___thiscall] = ACTIONS(1364), + [anon_sym___vectorcall] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_signed] = ACTIONS(1364), + [anon_sym_unsigned] = ACTIONS(1364), + [anon_sym_long] = ACTIONS(1364), + [anon_sym_short] = ACTIONS(1364), + [anon_sym_static] = ACTIONS(1364), + [anon_sym_auto] = ACTIONS(1364), + [anon_sym_register] = ACTIONS(1364), + [anon_sym_inline] = ACTIONS(1364), + [anon_sym___inline] = ACTIONS(1364), + [anon_sym___inline__] = ACTIONS(1364), + [anon_sym___forceinline] = ACTIONS(1364), + [anon_sym_thread_local] = ACTIONS(1364), + [anon_sym___thread] = ACTIONS(1364), + [anon_sym_const] = ACTIONS(1364), + [anon_sym_constexpr] = ACTIONS(1364), + [anon_sym_volatile] = ACTIONS(1364), + [anon_sym_restrict] = ACTIONS(1364), + [anon_sym___restrict__] = ACTIONS(1364), + [anon_sym__Atomic] = ACTIONS(1364), + [anon_sym__Noreturn] = ACTIONS(1364), + [anon_sym_noreturn] = ACTIONS(1364), + [sym_primitive_type] = ACTIONS(1364), + [anon_sym_enum] = ACTIONS(1364), + [anon_sym_struct] = ACTIONS(1364), + [anon_sym_union] = ACTIONS(1364), + [anon_sym_if] = ACTIONS(1364), + [anon_sym_else] = ACTIONS(1364), + [anon_sym_switch] = ACTIONS(1364), + [anon_sym_case] = ACTIONS(1364), + [anon_sym_default] = ACTIONS(1364), + [anon_sym_while] = ACTIONS(1364), + [anon_sym_do] = ACTIONS(1364), + [anon_sym_for] = ACTIONS(1364), + [anon_sym_return] = ACTIONS(1364), + [anon_sym_break] = ACTIONS(1364), + [anon_sym_continue] = ACTIONS(1364), + [anon_sym_goto] = ACTIONS(1364), + [anon_sym_DASH_DASH] = ACTIONS(1366), + [anon_sym_PLUS_PLUS] = ACTIONS(1366), + [anon_sym_sizeof] = ACTIONS(1364), + [anon_sym___alignof__] = ACTIONS(1364), + [anon_sym___alignof] = ACTIONS(1364), + [anon_sym__alignof] = ACTIONS(1364), + [anon_sym_alignof] = ACTIONS(1364), + [anon_sym__Alignof] = ACTIONS(1364), + [anon_sym_offsetof] = ACTIONS(1364), + [anon_sym___builtin_va_arg] = ACTIONS(1364), + [anon_sym__Generic] = ACTIONS(1364), + [anon_sym_asm] = ACTIONS(1364), + [anon_sym___asm__] = ACTIONS(1364), + [sym_number_literal] = ACTIONS(1366), + [anon_sym_L_SQUOTE] = ACTIONS(1366), + [anon_sym_u_SQUOTE] = ACTIONS(1366), + [anon_sym_U_SQUOTE] = ACTIONS(1366), + [anon_sym_u8_SQUOTE] = ACTIONS(1366), + [anon_sym_SQUOTE] = ACTIONS(1366), + [anon_sym_L_DQUOTE] = ACTIONS(1366), + [anon_sym_u_DQUOTE] = ACTIONS(1366), + [anon_sym_U_DQUOTE] = ACTIONS(1366), + [anon_sym_u8_DQUOTE] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [sym_true] = ACTIONS(1364), + [sym_false] = ACTIONS(1364), + [anon_sym_NULL] = ACTIONS(1364), + [anon_sym_nullptr] = ACTIONS(1364), [sym_comment] = ACTIONS(3), }, - [382] = { - [sym_attribute_declaration] = STATE(382), - [sym_compound_statement] = STATE(190), - [sym_attributed_statement] = STATE(190), - [sym_labeled_statement] = STATE(190), - [sym_expression_statement] = STATE(190), - [sym_if_statement] = STATE(190), - [sym_switch_statement] = STATE(190), - [sym_case_statement] = STATE(190), - [sym_while_statement] = STATE(190), - [sym_do_statement] = STATE(190), - [sym_for_statement] = STATE(190), - [sym_return_statement] = STATE(190), - [sym_break_statement] = STATE(190), - [sym_continue_statement] = STATE(190), - [sym_goto_statement] = STATE(190), - [sym__expression] = STATE(1077), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(382), - [sym_identifier] = ACTIONS(1476), - [anon_sym_LPAREN2] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_STAR] = ACTIONS(1488), - [anon_sym_AMP] = ACTIONS(1488), - [anon_sym_SEMI] = ACTIONS(1491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), - [anon_sym_LBRACE] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_switch] = ACTIONS(1503), - [anon_sym_case] = ACTIONS(1506), - [anon_sym_default] = ACTIONS(1509), - [anon_sym_while] = ACTIONS(1512), - [anon_sym_do] = ACTIONS(1515), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1521), - [anon_sym_break] = ACTIONS(1524), - [anon_sym_continue] = ACTIONS(1527), - [anon_sym_goto] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_sizeof] = ACTIONS(1536), - [anon_sym_offsetof] = ACTIONS(1539), - [anon_sym__Generic] = ACTIONS(1542), - [anon_sym_asm] = ACTIONS(1545), - [anon_sym___asm__] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1548), - [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(1554), - [anon_sym_u_DQUOTE] = ACTIONS(1554), - [anon_sym_U_DQUOTE] = ACTIONS(1554), - [anon_sym_u8_DQUOTE] = ACTIONS(1554), - [anon_sym_DQUOTE] = ACTIONS(1554), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [anon_sym_NULL] = ACTIONS(1560), - [anon_sym_nullptr] = ACTIONS(1560), + [355] = { + [sym_identifier] = ACTIONS(1424), + [aux_sym_preproc_include_token1] = ACTIONS(1424), + [aux_sym_preproc_def_token1] = ACTIONS(1424), + [aux_sym_preproc_if_token1] = ACTIONS(1424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), + [sym_preproc_directive] = ACTIONS(1424), + [anon_sym_LPAREN2] = ACTIONS(1426), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym___extension__] = ACTIONS(1424), + [anon_sym_typedef] = ACTIONS(1424), + [anon_sym_extern] = ACTIONS(1424), + [anon_sym___attribute__] = ACTIONS(1424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1426), + [anon_sym___declspec] = ACTIONS(1424), + [anon_sym___cdecl] = ACTIONS(1424), + [anon_sym___clrcall] = ACTIONS(1424), + [anon_sym___stdcall] = ACTIONS(1424), + [anon_sym___fastcall] = ACTIONS(1424), + [anon_sym___thiscall] = ACTIONS(1424), + [anon_sym___vectorcall] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_RBRACE] = ACTIONS(1426), + [anon_sym_signed] = ACTIONS(1424), + [anon_sym_unsigned] = ACTIONS(1424), + [anon_sym_long] = ACTIONS(1424), + [anon_sym_short] = ACTIONS(1424), + [anon_sym_static] = ACTIONS(1424), + [anon_sym_auto] = ACTIONS(1424), + [anon_sym_register] = ACTIONS(1424), + [anon_sym_inline] = ACTIONS(1424), + [anon_sym___inline] = ACTIONS(1424), + [anon_sym___inline__] = ACTIONS(1424), + [anon_sym___forceinline] = ACTIONS(1424), + [anon_sym_thread_local] = ACTIONS(1424), + [anon_sym___thread] = ACTIONS(1424), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_constexpr] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_restrict] = ACTIONS(1424), + [anon_sym___restrict__] = ACTIONS(1424), + [anon_sym__Atomic] = ACTIONS(1424), + [anon_sym__Noreturn] = ACTIONS(1424), + [anon_sym_noreturn] = ACTIONS(1424), + [sym_primitive_type] = ACTIONS(1424), + [anon_sym_enum] = ACTIONS(1424), + [anon_sym_struct] = ACTIONS(1424), + [anon_sym_union] = ACTIONS(1424), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_else] = ACTIONS(1424), + [anon_sym_switch] = ACTIONS(1424), + [anon_sym_case] = ACTIONS(1424), + [anon_sym_default] = ACTIONS(1424), + [anon_sym_while] = ACTIONS(1424), + [anon_sym_do] = ACTIONS(1424), + [anon_sym_for] = ACTIONS(1424), + [anon_sym_return] = ACTIONS(1424), + [anon_sym_break] = ACTIONS(1424), + [anon_sym_continue] = ACTIONS(1424), + [anon_sym_goto] = ACTIONS(1424), + [anon_sym_DASH_DASH] = ACTIONS(1426), + [anon_sym_PLUS_PLUS] = ACTIONS(1426), + [anon_sym_sizeof] = ACTIONS(1424), + [anon_sym___alignof__] = ACTIONS(1424), + [anon_sym___alignof] = ACTIONS(1424), + [anon_sym__alignof] = ACTIONS(1424), + [anon_sym_alignof] = ACTIONS(1424), + [anon_sym__Alignof] = ACTIONS(1424), + [anon_sym_offsetof] = ACTIONS(1424), + [anon_sym___builtin_va_arg] = ACTIONS(1424), + [anon_sym__Generic] = ACTIONS(1424), + [anon_sym_asm] = ACTIONS(1424), + [anon_sym___asm__] = ACTIONS(1424), + [sym_number_literal] = ACTIONS(1426), + [anon_sym_L_SQUOTE] = ACTIONS(1426), + [anon_sym_u_SQUOTE] = ACTIONS(1426), + [anon_sym_U_SQUOTE] = ACTIONS(1426), + [anon_sym_u8_SQUOTE] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1426), + [anon_sym_L_DQUOTE] = ACTIONS(1426), + [anon_sym_u_DQUOTE] = ACTIONS(1426), + [anon_sym_U_DQUOTE] = ACTIONS(1426), + [anon_sym_u8_DQUOTE] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [sym_true] = ACTIONS(1424), + [sym_false] = ACTIONS(1424), + [anon_sym_NULL] = ACTIONS(1424), + [anon_sym_nullptr] = ACTIONS(1424), [sym_comment] = ACTIONS(3), }, - [383] = { - [sym_attribute_declaration] = STATE(413), - [sym_compound_statement] = STATE(252), - [sym_attributed_statement] = STATE(252), - [sym_labeled_statement] = STATE(252), - [sym_expression_statement] = STATE(252), - [sym_if_statement] = STATE(252), - [sym_switch_statement] = STATE(252), - [sym_case_statement] = STATE(252), - [sym_while_statement] = STATE(252), - [sym_do_statement] = STATE(252), - [sym_for_statement] = STATE(252), - [sym_return_statement] = STATE(252), - [sym_break_statement] = STATE(252), - [sym_continue_statement] = STATE(252), - [sym_goto_statement] = STATE(252), - [sym__expression] = STATE(1098), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1873), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(413), - [sym_identifier] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [356] = { + [sym_identifier] = ACTIONS(1420), + [aux_sym_preproc_include_token1] = ACTIONS(1420), + [aux_sym_preproc_def_token1] = ACTIONS(1420), + [aux_sym_preproc_if_token1] = ACTIONS(1420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1420), + [sym_preproc_directive] = ACTIONS(1420), + [anon_sym_LPAREN2] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_DASH] = ACTIONS(1420), + [anon_sym_PLUS] = ACTIONS(1420), + [anon_sym_STAR] = ACTIONS(1422), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_SEMI] = ACTIONS(1422), + [anon_sym___extension__] = ACTIONS(1420), + [anon_sym_typedef] = ACTIONS(1420), + [anon_sym_extern] = ACTIONS(1420), + [anon_sym___attribute__] = ACTIONS(1420), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1422), + [anon_sym___declspec] = ACTIONS(1420), + [anon_sym___cdecl] = ACTIONS(1420), + [anon_sym___clrcall] = ACTIONS(1420), + [anon_sym___stdcall] = ACTIONS(1420), + [anon_sym___fastcall] = ACTIONS(1420), + [anon_sym___thiscall] = ACTIONS(1420), + [anon_sym___vectorcall] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1422), + [anon_sym_RBRACE] = ACTIONS(1422), + [anon_sym_signed] = ACTIONS(1420), + [anon_sym_unsigned] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_static] = ACTIONS(1420), + [anon_sym_auto] = ACTIONS(1420), + [anon_sym_register] = ACTIONS(1420), + [anon_sym_inline] = ACTIONS(1420), + [anon_sym___inline] = ACTIONS(1420), + [anon_sym___inline__] = ACTIONS(1420), + [anon_sym___forceinline] = ACTIONS(1420), + [anon_sym_thread_local] = ACTIONS(1420), + [anon_sym___thread] = ACTIONS(1420), + [anon_sym_const] = ACTIONS(1420), + [anon_sym_constexpr] = ACTIONS(1420), + [anon_sym_volatile] = ACTIONS(1420), + [anon_sym_restrict] = ACTIONS(1420), + [anon_sym___restrict__] = ACTIONS(1420), + [anon_sym__Atomic] = ACTIONS(1420), + [anon_sym__Noreturn] = ACTIONS(1420), + [anon_sym_noreturn] = ACTIONS(1420), + [sym_primitive_type] = ACTIONS(1420), + [anon_sym_enum] = ACTIONS(1420), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_union] = ACTIONS(1420), + [anon_sym_if] = ACTIONS(1420), + [anon_sym_else] = ACTIONS(1420), + [anon_sym_switch] = ACTIONS(1420), + [anon_sym_case] = ACTIONS(1420), + [anon_sym_default] = ACTIONS(1420), + [anon_sym_while] = ACTIONS(1420), + [anon_sym_do] = ACTIONS(1420), + [anon_sym_for] = ACTIONS(1420), + [anon_sym_return] = ACTIONS(1420), + [anon_sym_break] = ACTIONS(1420), + [anon_sym_continue] = ACTIONS(1420), + [anon_sym_goto] = ACTIONS(1420), + [anon_sym_DASH_DASH] = ACTIONS(1422), + [anon_sym_PLUS_PLUS] = ACTIONS(1422), + [anon_sym_sizeof] = ACTIONS(1420), + [anon_sym___alignof__] = ACTIONS(1420), + [anon_sym___alignof] = ACTIONS(1420), + [anon_sym__alignof] = ACTIONS(1420), + [anon_sym_alignof] = ACTIONS(1420), + [anon_sym__Alignof] = ACTIONS(1420), + [anon_sym_offsetof] = ACTIONS(1420), + [anon_sym___builtin_va_arg] = ACTIONS(1420), + [anon_sym__Generic] = ACTIONS(1420), + [anon_sym_asm] = ACTIONS(1420), + [anon_sym___asm__] = ACTIONS(1420), + [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(1420), + [sym_false] = ACTIONS(1420), + [anon_sym_NULL] = ACTIONS(1420), + [anon_sym_nullptr] = ACTIONS(1420), [sym_comment] = ACTIONS(3), }, - [384] = { - [sym_identifier] = ACTIONS(1430), - [aux_sym_preproc_include_token1] = ACTIONS(1430), - [aux_sym_preproc_def_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token2] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), - [sym_preproc_directive] = ACTIONS(1430), - [anon_sym_LPAREN2] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym_typedef] = ACTIONS(1430), - [anon_sym_extern] = ACTIONS(1430), - [anon_sym___attribute__] = ACTIONS(1430), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), - [anon_sym___declspec] = ACTIONS(1430), - [anon_sym___cdecl] = ACTIONS(1430), - [anon_sym___clrcall] = ACTIONS(1430), - [anon_sym___stdcall] = ACTIONS(1430), - [anon_sym___fastcall] = ACTIONS(1430), - [anon_sym___thiscall] = ACTIONS(1430), - [anon_sym___vectorcall] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_signed] = ACTIONS(1430), - [anon_sym_unsigned] = ACTIONS(1430), - [anon_sym_long] = ACTIONS(1430), - [anon_sym_short] = ACTIONS(1430), - [anon_sym_static] = ACTIONS(1430), - [anon_sym_auto] = ACTIONS(1430), - [anon_sym_register] = ACTIONS(1430), - [anon_sym_inline] = ACTIONS(1430), - [anon_sym_thread_local] = ACTIONS(1430), - [anon_sym___thread] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_constexpr] = ACTIONS(1430), - [anon_sym_volatile] = ACTIONS(1430), - [anon_sym_restrict] = ACTIONS(1430), - [anon_sym___restrict__] = ACTIONS(1430), - [anon_sym__Atomic] = ACTIONS(1430), - [anon_sym__Noreturn] = ACTIONS(1430), - [anon_sym_noreturn] = ACTIONS(1430), - [sym_primitive_type] = ACTIONS(1430), - [anon_sym_enum] = ACTIONS(1430), - [anon_sym_struct] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_switch] = ACTIONS(1430), - [anon_sym_case] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_goto] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1432), - [anon_sym_sizeof] = ACTIONS(1430), - [anon_sym_offsetof] = ACTIONS(1430), - [anon_sym__Generic] = ACTIONS(1430), - [anon_sym_asm] = ACTIONS(1430), - [anon_sym___asm__] = ACTIONS(1430), - [sym_number_literal] = ACTIONS(1432), - [anon_sym_L_SQUOTE] = ACTIONS(1432), - [anon_sym_u_SQUOTE] = ACTIONS(1432), - [anon_sym_U_SQUOTE] = ACTIONS(1432), - [anon_sym_u8_SQUOTE] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1432), - [anon_sym_L_DQUOTE] = ACTIONS(1432), - [anon_sym_u_DQUOTE] = ACTIONS(1432), - [anon_sym_U_DQUOTE] = ACTIONS(1432), - [anon_sym_u8_DQUOTE] = ACTIONS(1432), - [anon_sym_DQUOTE] = ACTIONS(1432), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [anon_sym_NULL] = ACTIONS(1430), - [anon_sym_nullptr] = ACTIONS(1430), + [357] = { + [sym_identifier] = ACTIONS(1416), + [aux_sym_preproc_include_token1] = ACTIONS(1416), + [aux_sym_preproc_def_token1] = ACTIONS(1416), + [aux_sym_preproc_if_token1] = ACTIONS(1416), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1416), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1416), + [sym_preproc_directive] = ACTIONS(1416), + [anon_sym_LPAREN2] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(1416), + [anon_sym_typedef] = ACTIONS(1416), + [anon_sym_extern] = ACTIONS(1416), + [anon_sym___attribute__] = ACTIONS(1416), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), + [anon_sym___declspec] = ACTIONS(1416), + [anon_sym___cdecl] = ACTIONS(1416), + [anon_sym___clrcall] = ACTIONS(1416), + [anon_sym___stdcall] = ACTIONS(1416), + [anon_sym___fastcall] = ACTIONS(1416), + [anon_sym___thiscall] = ACTIONS(1416), + [anon_sym___vectorcall] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_RBRACE] = ACTIONS(1418), + [anon_sym_signed] = ACTIONS(1416), + [anon_sym_unsigned] = ACTIONS(1416), + [anon_sym_long] = ACTIONS(1416), + [anon_sym_short] = ACTIONS(1416), + [anon_sym_static] = ACTIONS(1416), + [anon_sym_auto] = ACTIONS(1416), + [anon_sym_register] = ACTIONS(1416), + [anon_sym_inline] = ACTIONS(1416), + [anon_sym___inline] = ACTIONS(1416), + [anon_sym___inline__] = ACTIONS(1416), + [anon_sym___forceinline] = ACTIONS(1416), + [anon_sym_thread_local] = ACTIONS(1416), + [anon_sym___thread] = ACTIONS(1416), + [anon_sym_const] = ACTIONS(1416), + [anon_sym_constexpr] = ACTIONS(1416), + [anon_sym_volatile] = ACTIONS(1416), + [anon_sym_restrict] = ACTIONS(1416), + [anon_sym___restrict__] = ACTIONS(1416), + [anon_sym__Atomic] = ACTIONS(1416), + [anon_sym__Noreturn] = ACTIONS(1416), + [anon_sym_noreturn] = ACTIONS(1416), + [sym_primitive_type] = ACTIONS(1416), + [anon_sym_enum] = ACTIONS(1416), + [anon_sym_struct] = ACTIONS(1416), + [anon_sym_union] = ACTIONS(1416), + [anon_sym_if] = ACTIONS(1416), + [anon_sym_else] = ACTIONS(1416), + [anon_sym_switch] = ACTIONS(1416), + [anon_sym_case] = ACTIONS(1416), + [anon_sym_default] = ACTIONS(1416), + [anon_sym_while] = ACTIONS(1416), + [anon_sym_do] = ACTIONS(1416), + [anon_sym_for] = ACTIONS(1416), + [anon_sym_return] = ACTIONS(1416), + [anon_sym_break] = ACTIONS(1416), + [anon_sym_continue] = ACTIONS(1416), + [anon_sym_goto] = ACTIONS(1416), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_sizeof] = ACTIONS(1416), + [anon_sym___alignof__] = ACTIONS(1416), + [anon_sym___alignof] = ACTIONS(1416), + [anon_sym__alignof] = ACTIONS(1416), + [anon_sym_alignof] = ACTIONS(1416), + [anon_sym__Alignof] = ACTIONS(1416), + [anon_sym_offsetof] = ACTIONS(1416), + [anon_sym___builtin_va_arg] = ACTIONS(1416), + [anon_sym__Generic] = ACTIONS(1416), + [anon_sym_asm] = ACTIONS(1416), + [anon_sym___asm__] = ACTIONS(1416), + [sym_number_literal] = ACTIONS(1418), + [anon_sym_L_SQUOTE] = ACTIONS(1418), + [anon_sym_u_SQUOTE] = ACTIONS(1418), + [anon_sym_U_SQUOTE] = ACTIONS(1418), + [anon_sym_u8_SQUOTE] = ACTIONS(1418), + [anon_sym_SQUOTE] = ACTIONS(1418), + [anon_sym_L_DQUOTE] = ACTIONS(1418), + [anon_sym_u_DQUOTE] = ACTIONS(1418), + [anon_sym_U_DQUOTE] = ACTIONS(1418), + [anon_sym_u8_DQUOTE] = ACTIONS(1418), + [anon_sym_DQUOTE] = ACTIONS(1418), + [sym_true] = ACTIONS(1416), + [sym_false] = ACTIONS(1416), + [anon_sym_NULL] = ACTIONS(1416), + [anon_sym_nullptr] = ACTIONS(1416), [sym_comment] = ACTIONS(3), }, - [385] = { - [sym_attribute_declaration] = STATE(437), - [sym_compound_statement] = STATE(176), - [sym_attributed_statement] = STATE(176), - [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(1077), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(437), - [sym_identifier] = ACTIONS(1474), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [358] = { + [sym_identifier] = ACTIONS(1412), + [aux_sym_preproc_include_token1] = ACTIONS(1412), + [aux_sym_preproc_def_token1] = ACTIONS(1412), + [aux_sym_preproc_if_token1] = ACTIONS(1412), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1412), + [sym_preproc_directive] = ACTIONS(1412), + [anon_sym_LPAREN2] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1414), + [anon_sym_TILDE] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_AMP] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1414), + [anon_sym___extension__] = ACTIONS(1412), + [anon_sym_typedef] = ACTIONS(1412), + [anon_sym_extern] = ACTIONS(1412), + [anon_sym___attribute__] = ACTIONS(1412), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1414), + [anon_sym___declspec] = ACTIONS(1412), + [anon_sym___cdecl] = ACTIONS(1412), + [anon_sym___clrcall] = ACTIONS(1412), + [anon_sym___stdcall] = ACTIONS(1412), + [anon_sym___fastcall] = ACTIONS(1412), + [anon_sym___thiscall] = ACTIONS(1412), + [anon_sym___vectorcall] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_RBRACE] = ACTIONS(1414), + [anon_sym_signed] = ACTIONS(1412), + [anon_sym_unsigned] = ACTIONS(1412), + [anon_sym_long] = ACTIONS(1412), + [anon_sym_short] = ACTIONS(1412), + [anon_sym_static] = ACTIONS(1412), + [anon_sym_auto] = ACTIONS(1412), + [anon_sym_register] = ACTIONS(1412), + [anon_sym_inline] = ACTIONS(1412), + [anon_sym___inline] = ACTIONS(1412), + [anon_sym___inline__] = ACTIONS(1412), + [anon_sym___forceinline] = ACTIONS(1412), + [anon_sym_thread_local] = ACTIONS(1412), + [anon_sym___thread] = ACTIONS(1412), + [anon_sym_const] = ACTIONS(1412), + [anon_sym_constexpr] = ACTIONS(1412), + [anon_sym_volatile] = ACTIONS(1412), + [anon_sym_restrict] = ACTIONS(1412), + [anon_sym___restrict__] = ACTIONS(1412), + [anon_sym__Atomic] = ACTIONS(1412), + [anon_sym__Noreturn] = ACTIONS(1412), + [anon_sym_noreturn] = ACTIONS(1412), + [sym_primitive_type] = ACTIONS(1412), + [anon_sym_enum] = ACTIONS(1412), + [anon_sym_struct] = ACTIONS(1412), + [anon_sym_union] = ACTIONS(1412), + [anon_sym_if] = ACTIONS(1412), + [anon_sym_else] = ACTIONS(1412), + [anon_sym_switch] = ACTIONS(1412), + [anon_sym_case] = ACTIONS(1412), + [anon_sym_default] = ACTIONS(1412), + [anon_sym_while] = ACTIONS(1412), + [anon_sym_do] = ACTIONS(1412), + [anon_sym_for] = ACTIONS(1412), + [anon_sym_return] = ACTIONS(1412), + [anon_sym_break] = ACTIONS(1412), + [anon_sym_continue] = ACTIONS(1412), + [anon_sym_goto] = ACTIONS(1412), + [anon_sym_DASH_DASH] = ACTIONS(1414), + [anon_sym_PLUS_PLUS] = ACTIONS(1414), + [anon_sym_sizeof] = ACTIONS(1412), + [anon_sym___alignof__] = ACTIONS(1412), + [anon_sym___alignof] = ACTIONS(1412), + [anon_sym__alignof] = ACTIONS(1412), + [anon_sym_alignof] = ACTIONS(1412), + [anon_sym__Alignof] = ACTIONS(1412), + [anon_sym_offsetof] = ACTIONS(1412), + [anon_sym___builtin_va_arg] = ACTIONS(1412), + [anon_sym__Generic] = ACTIONS(1412), + [anon_sym_asm] = ACTIONS(1412), + [anon_sym___asm__] = ACTIONS(1412), + [sym_number_literal] = ACTIONS(1414), + [anon_sym_L_SQUOTE] = ACTIONS(1414), + [anon_sym_u_SQUOTE] = ACTIONS(1414), + [anon_sym_U_SQUOTE] = ACTIONS(1414), + [anon_sym_u8_SQUOTE] = ACTIONS(1414), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_L_DQUOTE] = ACTIONS(1414), + [anon_sym_u_DQUOTE] = ACTIONS(1414), + [anon_sym_U_DQUOTE] = ACTIONS(1414), + [anon_sym_u8_DQUOTE] = ACTIONS(1414), + [anon_sym_DQUOTE] = ACTIONS(1414), + [sym_true] = ACTIONS(1412), + [sym_false] = ACTIONS(1412), + [anon_sym_NULL] = ACTIONS(1412), + [anon_sym_nullptr] = ACTIONS(1412), [sym_comment] = ACTIONS(3), }, - [386] = { - [sym_identifier] = ACTIONS(1438), - [aux_sym_preproc_include_token1] = ACTIONS(1438), - [aux_sym_preproc_def_token1] = ACTIONS(1438), - [aux_sym_preproc_if_token1] = ACTIONS(1438), - [aux_sym_preproc_if_token2] = ACTIONS(1438), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), - [sym_preproc_directive] = ACTIONS(1438), - [anon_sym_LPAREN2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1440), - [anon_sym_TILDE] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_typedef] = ACTIONS(1438), - [anon_sym_extern] = ACTIONS(1438), - [anon_sym___attribute__] = ACTIONS(1438), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1440), - [anon_sym___declspec] = ACTIONS(1438), - [anon_sym___cdecl] = ACTIONS(1438), - [anon_sym___clrcall] = ACTIONS(1438), - [anon_sym___stdcall] = ACTIONS(1438), - [anon_sym___fastcall] = ACTIONS(1438), - [anon_sym___thiscall] = ACTIONS(1438), - [anon_sym___vectorcall] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_signed] = ACTIONS(1438), - [anon_sym_unsigned] = ACTIONS(1438), - [anon_sym_long] = ACTIONS(1438), - [anon_sym_short] = ACTIONS(1438), - [anon_sym_static] = ACTIONS(1438), - [anon_sym_auto] = ACTIONS(1438), - [anon_sym_register] = ACTIONS(1438), - [anon_sym_inline] = ACTIONS(1438), - [anon_sym_thread_local] = ACTIONS(1438), - [anon_sym___thread] = ACTIONS(1438), - [anon_sym_const] = ACTIONS(1438), - [anon_sym_constexpr] = ACTIONS(1438), - [anon_sym_volatile] = ACTIONS(1438), - [anon_sym_restrict] = ACTIONS(1438), - [anon_sym___restrict__] = ACTIONS(1438), - [anon_sym__Atomic] = ACTIONS(1438), - [anon_sym__Noreturn] = ACTIONS(1438), - [anon_sym_noreturn] = ACTIONS(1438), - [sym_primitive_type] = ACTIONS(1438), - [anon_sym_enum] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1438), - [anon_sym_union] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1438), - [anon_sym_switch] = ACTIONS(1438), - [anon_sym_case] = ACTIONS(1438), - [anon_sym_default] = ACTIONS(1438), - [anon_sym_while] = ACTIONS(1438), - [anon_sym_do] = ACTIONS(1438), - [anon_sym_for] = ACTIONS(1438), - [anon_sym_return] = ACTIONS(1438), - [anon_sym_break] = ACTIONS(1438), - [anon_sym_continue] = ACTIONS(1438), - [anon_sym_goto] = ACTIONS(1438), - [anon_sym_DASH_DASH] = ACTIONS(1440), - [anon_sym_PLUS_PLUS] = ACTIONS(1440), - [anon_sym_sizeof] = ACTIONS(1438), - [anon_sym_offsetof] = ACTIONS(1438), - [anon_sym__Generic] = ACTIONS(1438), - [anon_sym_asm] = ACTIONS(1438), - [anon_sym___asm__] = ACTIONS(1438), - [sym_number_literal] = ACTIONS(1440), - [anon_sym_L_SQUOTE] = ACTIONS(1440), - [anon_sym_u_SQUOTE] = ACTIONS(1440), - [anon_sym_U_SQUOTE] = ACTIONS(1440), - [anon_sym_u8_SQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1440), - [anon_sym_L_DQUOTE] = ACTIONS(1440), - [anon_sym_u_DQUOTE] = ACTIONS(1440), - [anon_sym_U_DQUOTE] = ACTIONS(1440), - [anon_sym_u8_DQUOTE] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1440), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [anon_sym_NULL] = ACTIONS(1438), - [anon_sym_nullptr] = ACTIONS(1438), + [359] = { + [sym_identifier] = ACTIONS(1308), + [aux_sym_preproc_include_token1] = ACTIONS(1308), + [aux_sym_preproc_def_token1] = ACTIONS(1308), + [aux_sym_preproc_if_token1] = ACTIONS(1308), + [aux_sym_preproc_if_token2] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), + [sym_preproc_directive] = ACTIONS(1308), + [anon_sym_LPAREN2] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym___extension__] = ACTIONS(1308), + [anon_sym_typedef] = ACTIONS(1308), + [anon_sym_extern] = ACTIONS(1308), + [anon_sym___attribute__] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), + [anon_sym___declspec] = ACTIONS(1308), + [anon_sym___cdecl] = ACTIONS(1308), + [anon_sym___clrcall] = ACTIONS(1308), + [anon_sym___stdcall] = ACTIONS(1308), + [anon_sym___fastcall] = ACTIONS(1308), + [anon_sym___thiscall] = ACTIONS(1308), + [anon_sym___vectorcall] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_signed] = ACTIONS(1308), + [anon_sym_unsigned] = ACTIONS(1308), + [anon_sym_long] = ACTIONS(1308), + [anon_sym_short] = ACTIONS(1308), + [anon_sym_static] = ACTIONS(1308), + [anon_sym_auto] = ACTIONS(1308), + [anon_sym_register] = ACTIONS(1308), + [anon_sym_inline] = ACTIONS(1308), + [anon_sym___inline] = ACTIONS(1308), + [anon_sym___inline__] = ACTIONS(1308), + [anon_sym___forceinline] = ACTIONS(1308), + [anon_sym_thread_local] = ACTIONS(1308), + [anon_sym___thread] = ACTIONS(1308), + [anon_sym_const] = ACTIONS(1308), + [anon_sym_constexpr] = ACTIONS(1308), + [anon_sym_volatile] = ACTIONS(1308), + [anon_sym_restrict] = ACTIONS(1308), + [anon_sym___restrict__] = ACTIONS(1308), + [anon_sym__Atomic] = ACTIONS(1308), + [anon_sym__Noreturn] = ACTIONS(1308), + [anon_sym_noreturn] = ACTIONS(1308), + [sym_primitive_type] = ACTIONS(1308), + [anon_sym_enum] = ACTIONS(1308), + [anon_sym_struct] = ACTIONS(1308), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_if] = ACTIONS(1308), + [anon_sym_else] = ACTIONS(1308), + [anon_sym_switch] = ACTIONS(1308), + [anon_sym_case] = ACTIONS(1308), + [anon_sym_default] = ACTIONS(1308), + [anon_sym_while] = ACTIONS(1308), + [anon_sym_do] = ACTIONS(1308), + [anon_sym_for] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1308), + [anon_sym_break] = ACTIONS(1308), + [anon_sym_continue] = ACTIONS(1308), + [anon_sym_goto] = ACTIONS(1308), + [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_sizeof] = ACTIONS(1308), + [anon_sym___alignof__] = ACTIONS(1308), + [anon_sym___alignof] = ACTIONS(1308), + [anon_sym__alignof] = ACTIONS(1308), + [anon_sym_alignof] = ACTIONS(1308), + [anon_sym__Alignof] = ACTIONS(1308), + [anon_sym_offsetof] = ACTIONS(1308), + [anon_sym___builtin_va_arg] = ACTIONS(1308), + [anon_sym__Generic] = ACTIONS(1308), + [anon_sym_asm] = ACTIONS(1308), + [anon_sym___asm__] = ACTIONS(1308), + [sym_number_literal] = ACTIONS(1310), + [anon_sym_L_SQUOTE] = ACTIONS(1310), + [anon_sym_u_SQUOTE] = ACTIONS(1310), + [anon_sym_U_SQUOTE] = ACTIONS(1310), + [anon_sym_u8_SQUOTE] = ACTIONS(1310), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_L_DQUOTE] = ACTIONS(1310), + [anon_sym_u_DQUOTE] = ACTIONS(1310), + [anon_sym_U_DQUOTE] = ACTIONS(1310), + [anon_sym_u8_DQUOTE] = ACTIONS(1310), + [anon_sym_DQUOTE] = ACTIONS(1310), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [anon_sym_NULL] = ACTIONS(1308), + [anon_sym_nullptr] = ACTIONS(1308), [sym_comment] = ACTIONS(3), }, - [387] = { - [sym_attribute_declaration] = STATE(413), - [sym_compound_statement] = STATE(253), - [sym_attributed_statement] = STATE(253), - [sym_labeled_statement] = STATE(253), - [sym_expression_statement] = STATE(253), - [sym_if_statement] = STATE(253), - [sym_switch_statement] = STATE(253), - [sym_case_statement] = STATE(253), - [sym_while_statement] = STATE(253), - [sym_do_statement] = STATE(253), - [sym_for_statement] = STATE(253), - [sym_return_statement] = STATE(253), - [sym_break_statement] = STATE(253), - [sym_continue_statement] = STATE(253), - [sym_goto_statement] = STATE(253), - [sym__expression] = STATE(1098), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1873), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(413), - [sym_identifier] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [360] = { + [sym_identifier] = ACTIONS(1308), + [aux_sym_preproc_include_token1] = ACTIONS(1308), + [aux_sym_preproc_def_token1] = ACTIONS(1308), + [aux_sym_preproc_if_token1] = ACTIONS(1308), + [aux_sym_preproc_if_token2] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), + [sym_preproc_directive] = ACTIONS(1308), + [anon_sym_LPAREN2] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym___extension__] = ACTIONS(1308), + [anon_sym_typedef] = ACTIONS(1308), + [anon_sym_extern] = ACTIONS(1308), + [anon_sym___attribute__] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), + [anon_sym___declspec] = ACTIONS(1308), + [anon_sym___cdecl] = ACTIONS(1308), + [anon_sym___clrcall] = ACTIONS(1308), + [anon_sym___stdcall] = ACTIONS(1308), + [anon_sym___fastcall] = ACTIONS(1308), + [anon_sym___thiscall] = ACTIONS(1308), + [anon_sym___vectorcall] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_signed] = ACTIONS(1308), + [anon_sym_unsigned] = ACTIONS(1308), + [anon_sym_long] = ACTIONS(1308), + [anon_sym_short] = ACTIONS(1308), + [anon_sym_static] = ACTIONS(1308), + [anon_sym_auto] = ACTIONS(1308), + [anon_sym_register] = ACTIONS(1308), + [anon_sym_inline] = ACTIONS(1308), + [anon_sym___inline] = ACTIONS(1308), + [anon_sym___inline__] = ACTIONS(1308), + [anon_sym___forceinline] = ACTIONS(1308), + [anon_sym_thread_local] = ACTIONS(1308), + [anon_sym___thread] = ACTIONS(1308), + [anon_sym_const] = ACTIONS(1308), + [anon_sym_constexpr] = ACTIONS(1308), + [anon_sym_volatile] = ACTIONS(1308), + [anon_sym_restrict] = ACTIONS(1308), + [anon_sym___restrict__] = ACTIONS(1308), + [anon_sym__Atomic] = ACTIONS(1308), + [anon_sym__Noreturn] = ACTIONS(1308), + [anon_sym_noreturn] = ACTIONS(1308), + [sym_primitive_type] = ACTIONS(1308), + [anon_sym_enum] = ACTIONS(1308), + [anon_sym_struct] = ACTIONS(1308), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_if] = ACTIONS(1308), + [anon_sym_else] = ACTIONS(1308), + [anon_sym_switch] = ACTIONS(1308), + [anon_sym_case] = ACTIONS(1308), + [anon_sym_default] = ACTIONS(1308), + [anon_sym_while] = ACTIONS(1308), + [anon_sym_do] = ACTIONS(1308), + [anon_sym_for] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1308), + [anon_sym_break] = ACTIONS(1308), + [anon_sym_continue] = ACTIONS(1308), + [anon_sym_goto] = ACTIONS(1308), + [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_sizeof] = ACTIONS(1308), + [anon_sym___alignof__] = ACTIONS(1308), + [anon_sym___alignof] = ACTIONS(1308), + [anon_sym__alignof] = ACTIONS(1308), + [anon_sym_alignof] = ACTIONS(1308), + [anon_sym__Alignof] = ACTIONS(1308), + [anon_sym_offsetof] = ACTIONS(1308), + [anon_sym___builtin_va_arg] = ACTIONS(1308), + [anon_sym__Generic] = ACTIONS(1308), + [anon_sym_asm] = ACTIONS(1308), + [anon_sym___asm__] = ACTIONS(1308), + [sym_number_literal] = ACTIONS(1310), + [anon_sym_L_SQUOTE] = ACTIONS(1310), + [anon_sym_u_SQUOTE] = ACTIONS(1310), + [anon_sym_U_SQUOTE] = ACTIONS(1310), + [anon_sym_u8_SQUOTE] = ACTIONS(1310), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_L_DQUOTE] = ACTIONS(1310), + [anon_sym_u_DQUOTE] = ACTIONS(1310), + [anon_sym_U_DQUOTE] = ACTIONS(1310), + [anon_sym_u8_DQUOTE] = ACTIONS(1310), + [anon_sym_DQUOTE] = ACTIONS(1310), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [anon_sym_NULL] = ACTIONS(1308), + [anon_sym_nullptr] = ACTIONS(1308), [sym_comment] = ACTIONS(3), }, - [388] = { + [361] = { + [sym_identifier] = ACTIONS(1408), + [aux_sym_preproc_include_token1] = ACTIONS(1408), + [aux_sym_preproc_def_token1] = ACTIONS(1408), + [aux_sym_preproc_if_token1] = ACTIONS(1408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1408), + [sym_preproc_directive] = ACTIONS(1408), + [anon_sym_LPAREN2] = ACTIONS(1410), + [anon_sym_BANG] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1410), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_STAR] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym___extension__] = ACTIONS(1408), + [anon_sym_typedef] = ACTIONS(1408), + [anon_sym_extern] = ACTIONS(1408), + [anon_sym___attribute__] = ACTIONS(1408), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1410), + [anon_sym___declspec] = ACTIONS(1408), + [anon_sym___cdecl] = ACTIONS(1408), + [anon_sym___clrcall] = ACTIONS(1408), + [anon_sym___stdcall] = ACTIONS(1408), + [anon_sym___fastcall] = ACTIONS(1408), + [anon_sym___thiscall] = ACTIONS(1408), + [anon_sym___vectorcall] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(1410), + [anon_sym_RBRACE] = ACTIONS(1410), + [anon_sym_signed] = ACTIONS(1408), + [anon_sym_unsigned] = ACTIONS(1408), + [anon_sym_long] = ACTIONS(1408), + [anon_sym_short] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_auto] = ACTIONS(1408), + [anon_sym_register] = ACTIONS(1408), + [anon_sym_inline] = ACTIONS(1408), + [anon_sym___inline] = ACTIONS(1408), + [anon_sym___inline__] = ACTIONS(1408), + [anon_sym___forceinline] = ACTIONS(1408), + [anon_sym_thread_local] = ACTIONS(1408), + [anon_sym___thread] = ACTIONS(1408), + [anon_sym_const] = ACTIONS(1408), + [anon_sym_constexpr] = ACTIONS(1408), + [anon_sym_volatile] = ACTIONS(1408), + [anon_sym_restrict] = ACTIONS(1408), + [anon_sym___restrict__] = ACTIONS(1408), + [anon_sym__Atomic] = ACTIONS(1408), + [anon_sym__Noreturn] = ACTIONS(1408), + [anon_sym_noreturn] = ACTIONS(1408), + [sym_primitive_type] = ACTIONS(1408), + [anon_sym_enum] = ACTIONS(1408), + [anon_sym_struct] = ACTIONS(1408), + [anon_sym_union] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1408), + [anon_sym_else] = ACTIONS(1408), + [anon_sym_switch] = ACTIONS(1408), + [anon_sym_case] = ACTIONS(1408), + [anon_sym_default] = ACTIONS(1408), + [anon_sym_while] = ACTIONS(1408), + [anon_sym_do] = ACTIONS(1408), + [anon_sym_for] = ACTIONS(1408), + [anon_sym_return] = ACTIONS(1408), + [anon_sym_break] = ACTIONS(1408), + [anon_sym_continue] = ACTIONS(1408), + [anon_sym_goto] = ACTIONS(1408), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_sizeof] = ACTIONS(1408), + [anon_sym___alignof__] = ACTIONS(1408), + [anon_sym___alignof] = ACTIONS(1408), + [anon_sym__alignof] = ACTIONS(1408), + [anon_sym_alignof] = ACTIONS(1408), + [anon_sym__Alignof] = ACTIONS(1408), + [anon_sym_offsetof] = ACTIONS(1408), + [anon_sym___builtin_va_arg] = ACTIONS(1408), + [anon_sym__Generic] = ACTIONS(1408), + [anon_sym_asm] = ACTIONS(1408), + [anon_sym___asm__] = ACTIONS(1408), + [sym_number_literal] = ACTIONS(1410), + [anon_sym_L_SQUOTE] = ACTIONS(1410), + [anon_sym_u_SQUOTE] = ACTIONS(1410), + [anon_sym_U_SQUOTE] = ACTIONS(1410), + [anon_sym_u8_SQUOTE] = ACTIONS(1410), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_L_DQUOTE] = ACTIONS(1410), + [anon_sym_u_DQUOTE] = ACTIONS(1410), + [anon_sym_U_DQUOTE] = ACTIONS(1410), + [anon_sym_u8_DQUOTE] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1410), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [anon_sym_NULL] = ACTIONS(1408), + [anon_sym_nullptr] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + }, + [362] = { + [ts_builtin_sym_end] = ACTIONS(1370), [sym_identifier] = ACTIONS(1368), [aux_sym_preproc_include_token1] = ACTIONS(1368), [aux_sym_preproc_def_token1] = ACTIONS(1368), [aux_sym_preproc_if_token1] = ACTIONS(1368), - [aux_sym_preproc_if_token2] = ACTIONS(1368), [aux_sym_preproc_ifdef_token1] = ACTIONS(1368), [aux_sym_preproc_ifdef_token2] = ACTIONS(1368), [sym_preproc_directive] = ACTIONS(1368), @@ -54162,6 +56531,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1370), [anon_sym_AMP] = ACTIONS(1370), [anon_sym_SEMI] = ACTIONS(1370), + [anon_sym___extension__] = ACTIONS(1368), [anon_sym_typedef] = ACTIONS(1368), [anon_sym_extern] = ACTIONS(1368), [anon_sym___attribute__] = ACTIONS(1368), @@ -54182,6 +56552,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1368), [anon_sym_register] = ACTIONS(1368), [anon_sym_inline] = ACTIONS(1368), + [anon_sym___inline] = ACTIONS(1368), + [anon_sym___inline__] = ACTIONS(1368), + [anon_sym___forceinline] = ACTIONS(1368), [anon_sym_thread_local] = ACTIONS(1368), [anon_sym___thread] = ACTIONS(1368), [anon_sym_const] = ACTIONS(1368), @@ -54197,6 +56570,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1368), [anon_sym_union] = ACTIONS(1368), [anon_sym_if] = ACTIONS(1368), + [anon_sym_else] = ACTIONS(1368), [anon_sym_switch] = ACTIONS(1368), [anon_sym_case] = ACTIONS(1368), [anon_sym_default] = ACTIONS(1368), @@ -54210,7 +56584,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1370), [anon_sym_PLUS_PLUS] = ACTIONS(1370), [anon_sym_sizeof] = ACTIONS(1368), + [anon_sym___alignof__] = ACTIONS(1368), + [anon_sym___alignof] = ACTIONS(1368), + [anon_sym__alignof] = ACTIONS(1368), + [anon_sym_alignof] = ACTIONS(1368), + [anon_sym__Alignof] = ACTIONS(1368), [anon_sym_offsetof] = ACTIONS(1368), + [anon_sym___builtin_va_arg] = ACTIONS(1368), [anon_sym__Generic] = ACTIONS(1368), [anon_sym_asm] = ACTIONS(1368), [anon_sym___asm__] = ACTIONS(1368), @@ -54231,1641 +56611,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1368), [sym_comment] = ACTIONS(3), }, - [389] = { - [sym_attribute_declaration] = STATE(375), - [sym_compound_statement] = STATE(538), - [sym_attributed_statement] = STATE(538), - [sym_labeled_statement] = STATE(538), - [sym_expression_statement] = STATE(538), - [sym_if_statement] = STATE(538), - [sym_switch_statement] = STATE(538), - [sym_case_statement] = STATE(538), - [sym_while_statement] = STATE(538), - [sym_do_statement] = STATE(538), - [sym_for_statement] = STATE(538), - [sym_return_statement] = STATE(538), - [sym_break_statement] = STATE(538), - [sym_continue_statement] = STATE(538), - [sym_goto_statement] = STATE(538), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1466), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [390] = { - [sym_attribute_declaration] = STATE(437), - [sym_compound_statement] = STATE(186), - [sym_attributed_statement] = STATE(186), - [sym_labeled_statement] = STATE(186), - [sym_expression_statement] = STATE(186), - [sym_if_statement] = STATE(186), - [sym_switch_statement] = STATE(186), - [sym_case_statement] = STATE(186), - [sym_while_statement] = STATE(186), - [sym_do_statement] = STATE(186), - [sym_for_statement] = STATE(186), - [sym_return_statement] = STATE(186), - [sym_break_statement] = STATE(186), - [sym_continue_statement] = STATE(186), - [sym_goto_statement] = STATE(186), - [sym__expression] = STATE(1077), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(437), - [sym_identifier] = ACTIONS(1474), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [391] = { - [sym_attribute_declaration] = STATE(437), - [sym_compound_statement] = STATE(187), - [sym_attributed_statement] = STATE(187), - [sym_labeled_statement] = STATE(187), - [sym_expression_statement] = STATE(187), - [sym_if_statement] = STATE(187), - [sym_switch_statement] = STATE(187), - [sym_case_statement] = STATE(187), - [sym_while_statement] = STATE(187), - [sym_do_statement] = STATE(187), - [sym_for_statement] = STATE(187), - [sym_return_statement] = STATE(187), - [sym_break_statement] = STATE(187), - [sym_continue_statement] = STATE(187), - [sym_goto_statement] = STATE(187), - [sym__expression] = STATE(1077), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(437), - [sym_identifier] = ACTIONS(1474), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [392] = { - [sym_identifier] = ACTIONS(1376), - [aux_sym_preproc_include_token1] = ACTIONS(1376), - [aux_sym_preproc_def_token1] = ACTIONS(1376), - [aux_sym_preproc_if_token1] = ACTIONS(1376), - [aux_sym_preproc_if_token2] = ACTIONS(1376), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1376), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1376), - [sym_preproc_directive] = ACTIONS(1376), - [anon_sym_LPAREN2] = ACTIONS(1378), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_AMP] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_typedef] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym___attribute__] = ACTIONS(1376), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1378), - [anon_sym___declspec] = ACTIONS(1376), - [anon_sym___cdecl] = ACTIONS(1376), - [anon_sym___clrcall] = ACTIONS(1376), - [anon_sym___stdcall] = ACTIONS(1376), - [anon_sym___fastcall] = ACTIONS(1376), - [anon_sym___thiscall] = ACTIONS(1376), - [anon_sym___vectorcall] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_signed] = ACTIONS(1376), - [anon_sym_unsigned] = ACTIONS(1376), - [anon_sym_long] = ACTIONS(1376), - [anon_sym_short] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(1376), - [anon_sym_auto] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_inline] = ACTIONS(1376), - [anon_sym_thread_local] = ACTIONS(1376), - [anon_sym___thread] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_constexpr] = ACTIONS(1376), - [anon_sym_volatile] = ACTIONS(1376), - [anon_sym_restrict] = ACTIONS(1376), - [anon_sym___restrict__] = ACTIONS(1376), - [anon_sym__Atomic] = ACTIONS(1376), - [anon_sym__Noreturn] = ACTIONS(1376), - [anon_sym_noreturn] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(1376), - [anon_sym_enum] = ACTIONS(1376), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_union] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1376), - [anon_sym_case] = ACTIONS(1376), - [anon_sym_default] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_goto] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1378), - [anon_sym_sizeof] = ACTIONS(1376), - [anon_sym_offsetof] = ACTIONS(1376), - [anon_sym__Generic] = ACTIONS(1376), - [anon_sym_asm] = ACTIONS(1376), - [anon_sym___asm__] = ACTIONS(1376), - [sym_number_literal] = ACTIONS(1378), - [anon_sym_L_SQUOTE] = ACTIONS(1378), - [anon_sym_u_SQUOTE] = ACTIONS(1378), - [anon_sym_U_SQUOTE] = ACTIONS(1378), - [anon_sym_u8_SQUOTE] = ACTIONS(1378), - [anon_sym_SQUOTE] = ACTIONS(1378), - [anon_sym_L_DQUOTE] = ACTIONS(1378), - [anon_sym_u_DQUOTE] = ACTIONS(1378), - [anon_sym_U_DQUOTE] = ACTIONS(1378), - [anon_sym_u8_DQUOTE] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym_true] = ACTIONS(1376), - [sym_false] = ACTIONS(1376), - [anon_sym_NULL] = ACTIONS(1376), - [anon_sym_nullptr] = ACTIONS(1376), - [sym_comment] = ACTIONS(3), - }, - [393] = { - [sym_attribute_declaration] = STATE(437), - [sym_compound_statement] = STATE(157), - [sym_attributed_statement] = STATE(157), - [sym_labeled_statement] = STATE(157), - [sym_expression_statement] = STATE(157), - [sym_if_statement] = STATE(157), - [sym_switch_statement] = STATE(157), - [sym_case_statement] = STATE(157), - [sym_while_statement] = STATE(157), - [sym_do_statement] = STATE(157), - [sym_for_statement] = STATE(157), - [sym_return_statement] = STATE(157), - [sym_break_statement] = STATE(157), - [sym_continue_statement] = STATE(157), - [sym_goto_statement] = STATE(157), - [sym__expression] = STATE(1077), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(437), - [sym_identifier] = ACTIONS(1474), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [394] = { - [sym_attribute_declaration] = STATE(437), - [sym_compound_statement] = STATE(191), - [sym_attributed_statement] = STATE(191), - [sym_labeled_statement] = STATE(191), - [sym_expression_statement] = STATE(191), - [sym_if_statement] = STATE(191), - [sym_switch_statement] = STATE(191), - [sym_case_statement] = STATE(191), - [sym_while_statement] = STATE(191), - [sym_do_statement] = STATE(191), - [sym_for_statement] = STATE(191), - [sym_return_statement] = STATE(191), - [sym_break_statement] = STATE(191), - [sym_continue_statement] = STATE(191), - [sym_goto_statement] = STATE(191), - [sym__expression] = STATE(1077), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(437), - [sym_identifier] = ACTIONS(1474), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [395] = { - [sym_attribute_declaration] = STATE(437), - [sym_compound_statement] = STATE(192), - [sym_attributed_statement] = STATE(192), - [sym_labeled_statement] = STATE(192), - [sym_expression_statement] = STATE(192), - [sym_if_statement] = STATE(192), - [sym_switch_statement] = STATE(192), - [sym_case_statement] = STATE(192), - [sym_while_statement] = STATE(192), - [sym_do_statement] = STATE(192), - [sym_for_statement] = STATE(192), - [sym_return_statement] = STATE(192), - [sym_break_statement] = STATE(192), - [sym_continue_statement] = STATE(192), - [sym_goto_statement] = STATE(192), - [sym__expression] = STATE(1077), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(437), - [sym_identifier] = ACTIONS(1474), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [396] = { - [sym_attribute_declaration] = STATE(413), - [sym_compound_statement] = STATE(254), - [sym_attributed_statement] = STATE(254), - [sym_labeled_statement] = STATE(254), - [sym_expression_statement] = STATE(254), - [sym_if_statement] = STATE(254), - [sym_switch_statement] = STATE(254), - [sym_case_statement] = STATE(254), - [sym_while_statement] = STATE(254), - [sym_do_statement] = STATE(254), - [sym_for_statement] = STATE(254), - [sym_return_statement] = STATE(254), - [sym_break_statement] = STATE(254), - [sym_continue_statement] = STATE(254), - [sym_goto_statement] = STATE(254), - [sym__expression] = STATE(1098), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1873), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(413), - [sym_identifier] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [397] = { - [sym_attribute_declaration] = STATE(437), - [sym_compound_statement] = STATE(194), - [sym_attributed_statement] = STATE(194), - [sym_labeled_statement] = STATE(194), - [sym_expression_statement] = STATE(194), - [sym_if_statement] = STATE(194), - [sym_switch_statement] = STATE(194), - [sym_case_statement] = STATE(194), - [sym_while_statement] = STATE(194), - [sym_do_statement] = STATE(194), - [sym_for_statement] = STATE(194), - [sym_return_statement] = STATE(194), - [sym_break_statement] = STATE(194), - [sym_continue_statement] = STATE(194), - [sym_goto_statement] = STATE(194), - [sym__expression] = STATE(1077), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(437), - [sym_identifier] = ACTIONS(1474), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [398] = { - [sym_attribute_declaration] = STATE(437), - [sym_compound_statement] = STATE(195), - [sym_attributed_statement] = STATE(195), - [sym_labeled_statement] = STATE(195), - [sym_expression_statement] = STATE(195), - [sym_if_statement] = STATE(195), - [sym_switch_statement] = STATE(195), - [sym_case_statement] = STATE(195), - [sym_while_statement] = STATE(195), - [sym_do_statement] = STATE(195), - [sym_for_statement] = STATE(195), - [sym_return_statement] = STATE(195), - [sym_break_statement] = STATE(195), - [sym_continue_statement] = STATE(195), - [sym_goto_statement] = STATE(195), - [sym__expression] = STATE(1077), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(437), - [sym_identifier] = ACTIONS(1474), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [399] = { - [sym_attribute_declaration] = STATE(437), - [sym_compound_statement] = STATE(196), - [sym_attributed_statement] = STATE(196), - [sym_labeled_statement] = STATE(196), - [sym_expression_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_switch_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_do_statement] = STATE(196), - [sym_for_statement] = STATE(196), - [sym_return_statement] = STATE(196), - [sym_break_statement] = STATE(196), - [sym_continue_statement] = STATE(196), - [sym_goto_statement] = STATE(196), - [sym__expression] = STATE(1077), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(437), - [sym_identifier] = ACTIONS(1474), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [400] = { - [sym_identifier] = ACTIONS(1384), - [aux_sym_preproc_include_token1] = ACTIONS(1384), - [aux_sym_preproc_def_token1] = ACTIONS(1384), - [aux_sym_preproc_if_token1] = ACTIONS(1384), - [aux_sym_preproc_if_token2] = ACTIONS(1384), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1384), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1384), - [sym_preproc_directive] = ACTIONS(1384), - [anon_sym_LPAREN2] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1384), - [anon_sym_STAR] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1386), - [anon_sym_typedef] = ACTIONS(1384), - [anon_sym_extern] = ACTIONS(1384), - [anon_sym___attribute__] = ACTIONS(1384), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1386), - [anon_sym___declspec] = ACTIONS(1384), - [anon_sym___cdecl] = ACTIONS(1384), - [anon_sym___clrcall] = ACTIONS(1384), - [anon_sym___stdcall] = ACTIONS(1384), - [anon_sym___fastcall] = ACTIONS(1384), - [anon_sym___thiscall] = ACTIONS(1384), - [anon_sym___vectorcall] = ACTIONS(1384), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_long] = ACTIONS(1384), - [anon_sym_short] = ACTIONS(1384), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_auto] = ACTIONS(1384), - [anon_sym_register] = ACTIONS(1384), - [anon_sym_inline] = ACTIONS(1384), - [anon_sym_thread_local] = ACTIONS(1384), - [anon_sym___thread] = ACTIONS(1384), - [anon_sym_const] = ACTIONS(1384), - [anon_sym_constexpr] = ACTIONS(1384), - [anon_sym_volatile] = ACTIONS(1384), - [anon_sym_restrict] = ACTIONS(1384), - [anon_sym___restrict__] = ACTIONS(1384), - [anon_sym__Atomic] = ACTIONS(1384), - [anon_sym__Noreturn] = ACTIONS(1384), - [anon_sym_noreturn] = ACTIONS(1384), - [sym_primitive_type] = ACTIONS(1384), - [anon_sym_enum] = ACTIONS(1384), - [anon_sym_struct] = ACTIONS(1384), - [anon_sym_union] = ACTIONS(1384), - [anon_sym_if] = ACTIONS(1384), - [anon_sym_switch] = ACTIONS(1384), - [anon_sym_case] = ACTIONS(1384), - [anon_sym_default] = ACTIONS(1384), - [anon_sym_while] = ACTIONS(1384), - [anon_sym_do] = ACTIONS(1384), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1384), - [anon_sym_break] = ACTIONS(1384), - [anon_sym_continue] = ACTIONS(1384), - [anon_sym_goto] = ACTIONS(1384), - [anon_sym_DASH_DASH] = ACTIONS(1386), - [anon_sym_PLUS_PLUS] = ACTIONS(1386), - [anon_sym_sizeof] = ACTIONS(1384), - [anon_sym_offsetof] = ACTIONS(1384), - [anon_sym__Generic] = ACTIONS(1384), - [anon_sym_asm] = ACTIONS(1384), - [anon_sym___asm__] = ACTIONS(1384), - [sym_number_literal] = ACTIONS(1386), - [anon_sym_L_SQUOTE] = ACTIONS(1386), - [anon_sym_u_SQUOTE] = ACTIONS(1386), - [anon_sym_U_SQUOTE] = ACTIONS(1386), - [anon_sym_u8_SQUOTE] = ACTIONS(1386), - [anon_sym_SQUOTE] = ACTIONS(1386), - [anon_sym_L_DQUOTE] = ACTIONS(1386), - [anon_sym_u_DQUOTE] = ACTIONS(1386), - [anon_sym_U_DQUOTE] = ACTIONS(1386), - [anon_sym_u8_DQUOTE] = ACTIONS(1386), - [anon_sym_DQUOTE] = ACTIONS(1386), - [sym_true] = ACTIONS(1384), - [sym_false] = ACTIONS(1384), - [anon_sym_NULL] = ACTIONS(1384), - [anon_sym_nullptr] = ACTIONS(1384), - [sym_comment] = ACTIONS(3), - }, - [401] = { - [sym_attribute_declaration] = STATE(437), - [sym_compound_statement] = STATE(197), - [sym_attributed_statement] = STATE(197), - [sym_labeled_statement] = STATE(197), - [sym_expression_statement] = STATE(197), - [sym_if_statement] = STATE(197), - [sym_switch_statement] = STATE(197), - [sym_case_statement] = STATE(197), - [sym_while_statement] = STATE(197), - [sym_do_statement] = STATE(197), - [sym_for_statement] = STATE(197), - [sym_return_statement] = STATE(197), - [sym_break_statement] = STATE(197), - [sym_continue_statement] = STATE(197), - [sym_goto_statement] = STATE(197), - [sym__expression] = STATE(1077), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(437), - [sym_identifier] = ACTIONS(1474), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [402] = { - [sym_attribute_declaration] = STATE(437), - [sym_compound_statement] = STATE(198), - [sym_attributed_statement] = STATE(198), - [sym_labeled_statement] = STATE(198), - [sym_expression_statement] = STATE(198), - [sym_if_statement] = STATE(198), - [sym_switch_statement] = STATE(198), - [sym_case_statement] = STATE(198), - [sym_while_statement] = STATE(198), - [sym_do_statement] = STATE(198), - [sym_for_statement] = STATE(198), - [sym_return_statement] = STATE(198), - [sym_break_statement] = STATE(198), - [sym_continue_statement] = STATE(198), - [sym_goto_statement] = STATE(198), - [sym__expression] = STATE(1077), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(437), - [sym_identifier] = ACTIONS(1474), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [403] = { - [sym_attribute_declaration] = STATE(437), - [sym_compound_statement] = STATE(199), - [sym_attributed_statement] = STATE(199), - [sym_labeled_statement] = STATE(199), - [sym_expression_statement] = STATE(199), - [sym_if_statement] = STATE(199), - [sym_switch_statement] = STATE(199), - [sym_case_statement] = STATE(199), - [sym_while_statement] = STATE(199), - [sym_do_statement] = STATE(199), - [sym_for_statement] = STATE(199), - [sym_return_statement] = STATE(199), - [sym_break_statement] = STATE(199), - [sym_continue_statement] = STATE(199), - [sym_goto_statement] = STATE(199), - [sym__expression] = STATE(1077), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(437), - [sym_identifier] = ACTIONS(1474), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [404] = { - [sym_attribute_declaration] = STATE(437), - [sym_compound_statement] = STATE(193), - [sym_attributed_statement] = STATE(193), - [sym_labeled_statement] = STATE(193), - [sym_expression_statement] = STATE(193), - [sym_if_statement] = STATE(193), - [sym_switch_statement] = STATE(193), - [sym_case_statement] = STATE(193), - [sym_while_statement] = STATE(193), - [sym_do_statement] = STATE(193), - [sym_for_statement] = STATE(193), - [sym_return_statement] = STATE(193), - [sym_break_statement] = STATE(193), - [sym_continue_statement] = STATE(193), - [sym_goto_statement] = STATE(193), - [sym__expression] = STATE(1077), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(437), - [sym_identifier] = ACTIONS(1474), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [405] = { - [sym_attribute_declaration] = STATE(413), - [sym_compound_statement] = STATE(255), - [sym_attributed_statement] = STATE(255), - [sym_labeled_statement] = STATE(255), - [sym_expression_statement] = STATE(255), - [sym_if_statement] = STATE(255), - [sym_switch_statement] = STATE(255), - [sym_case_statement] = STATE(255), - [sym_while_statement] = STATE(255), - [sym_do_statement] = STATE(255), - [sym_for_statement] = STATE(255), - [sym_return_statement] = STATE(255), - [sym_break_statement] = STATE(255), - [sym_continue_statement] = STATE(255), - [sym_goto_statement] = STATE(255), - [sym__expression] = STATE(1098), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1873), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(413), - [sym_identifier] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [406] = { - [sym_attribute_declaration] = STATE(413), - [sym_compound_statement] = STATE(262), - [sym_attributed_statement] = STATE(262), - [sym_labeled_statement] = STATE(262), - [sym_expression_statement] = STATE(262), - [sym_if_statement] = STATE(262), - [sym_switch_statement] = STATE(262), - [sym_case_statement] = STATE(262), - [sym_while_statement] = STATE(262), - [sym_do_statement] = STATE(262), - [sym_for_statement] = STATE(262), - [sym_return_statement] = STATE(262), - [sym_break_statement] = STATE(262), - [sym_continue_statement] = STATE(262), - [sym_goto_statement] = STATE(262), - [sym__expression] = STATE(1098), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1873), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(413), - [sym_identifier] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [407] = { - [sym_attribute_declaration] = STATE(488), - [sym_compound_statement] = STATE(131), - [sym_attributed_statement] = STATE(131), - [sym_labeled_statement] = STATE(131), - [sym_expression_statement] = STATE(131), - [sym_if_statement] = STATE(131), - [sym_switch_statement] = STATE(131), - [sym_case_statement] = STATE(131), - [sym_while_statement] = STATE(131), - [sym_do_statement] = STATE(131), - [sym_for_statement] = STATE(131), - [sym_return_statement] = STATE(131), - [sym_break_statement] = STATE(131), - [sym_continue_statement] = STATE(131), - [sym_goto_statement] = STATE(131), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1801), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(488), - [sym_identifier] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [363] = { + [sym_identifier] = ACTIONS(1404), + [aux_sym_preproc_include_token1] = ACTIONS(1404), + [aux_sym_preproc_def_token1] = ACTIONS(1404), + [aux_sym_preproc_if_token1] = ACTIONS(1404), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1404), + [sym_preproc_directive] = ACTIONS(1404), + [anon_sym_LPAREN2] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1406), + [anon_sym_TILDE] = ACTIONS(1406), + [anon_sym_DASH] = ACTIONS(1404), + [anon_sym_PLUS] = ACTIONS(1404), + [anon_sym_STAR] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1406), + [anon_sym_SEMI] = ACTIONS(1406), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_typedef] = ACTIONS(1404), + [anon_sym_extern] = ACTIONS(1404), + [anon_sym___attribute__] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), + [anon_sym___declspec] = ACTIONS(1404), + [anon_sym___cdecl] = ACTIONS(1404), + [anon_sym___clrcall] = ACTIONS(1404), + [anon_sym___stdcall] = ACTIONS(1404), + [anon_sym___fastcall] = ACTIONS(1404), + [anon_sym___thiscall] = ACTIONS(1404), + [anon_sym___vectorcall] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_RBRACE] = ACTIONS(1406), + [anon_sym_signed] = ACTIONS(1404), + [anon_sym_unsigned] = ACTIONS(1404), + [anon_sym_long] = ACTIONS(1404), + [anon_sym_short] = ACTIONS(1404), + [anon_sym_static] = ACTIONS(1404), + [anon_sym_auto] = ACTIONS(1404), + [anon_sym_register] = ACTIONS(1404), + [anon_sym_inline] = ACTIONS(1404), + [anon_sym___inline] = ACTIONS(1404), + [anon_sym___inline__] = ACTIONS(1404), + [anon_sym___forceinline] = ACTIONS(1404), + [anon_sym_thread_local] = ACTIONS(1404), + [anon_sym___thread] = ACTIONS(1404), + [anon_sym_const] = ACTIONS(1404), + [anon_sym_constexpr] = ACTIONS(1404), + [anon_sym_volatile] = ACTIONS(1404), + [anon_sym_restrict] = ACTIONS(1404), + [anon_sym___restrict__] = ACTIONS(1404), + [anon_sym__Atomic] = ACTIONS(1404), + [anon_sym__Noreturn] = ACTIONS(1404), + [anon_sym_noreturn] = ACTIONS(1404), + [sym_primitive_type] = ACTIONS(1404), + [anon_sym_enum] = ACTIONS(1404), + [anon_sym_struct] = ACTIONS(1404), + [anon_sym_union] = ACTIONS(1404), + [anon_sym_if] = ACTIONS(1404), + [anon_sym_else] = ACTIONS(1404), + [anon_sym_switch] = ACTIONS(1404), + [anon_sym_case] = ACTIONS(1404), + [anon_sym_default] = ACTIONS(1404), + [anon_sym_while] = ACTIONS(1404), + [anon_sym_do] = ACTIONS(1404), + [anon_sym_for] = ACTIONS(1404), + [anon_sym_return] = ACTIONS(1404), + [anon_sym_break] = ACTIONS(1404), + [anon_sym_continue] = ACTIONS(1404), + [anon_sym_goto] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1406), + [anon_sym_PLUS_PLUS] = ACTIONS(1406), + [anon_sym_sizeof] = ACTIONS(1404), + [anon_sym___alignof__] = ACTIONS(1404), + [anon_sym___alignof] = ACTIONS(1404), + [anon_sym__alignof] = ACTIONS(1404), + [anon_sym_alignof] = ACTIONS(1404), + [anon_sym__Alignof] = ACTIONS(1404), + [anon_sym_offsetof] = ACTIONS(1404), + [anon_sym___builtin_va_arg] = ACTIONS(1404), + [anon_sym__Generic] = ACTIONS(1404), + [anon_sym_asm] = ACTIONS(1404), + [anon_sym___asm__] = ACTIONS(1404), + [sym_number_literal] = ACTIONS(1406), + [anon_sym_L_SQUOTE] = ACTIONS(1406), + [anon_sym_u_SQUOTE] = ACTIONS(1406), + [anon_sym_U_SQUOTE] = ACTIONS(1406), + [anon_sym_u8_SQUOTE] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1406), + [anon_sym_L_DQUOTE] = ACTIONS(1406), + [anon_sym_u_DQUOTE] = ACTIONS(1406), + [anon_sym_U_DQUOTE] = ACTIONS(1406), + [anon_sym_u8_DQUOTE] = ACTIONS(1406), + [anon_sym_DQUOTE] = ACTIONS(1406), + [sym_true] = ACTIONS(1404), + [sym_false] = ACTIONS(1404), + [anon_sym_NULL] = ACTIONS(1404), + [anon_sym_nullptr] = ACTIONS(1404), [sym_comment] = ACTIONS(3), }, - [408] = { + [364] = { [sym_identifier] = ACTIONS(1392), [aux_sym_preproc_include_token1] = ACTIONS(1392), [aux_sym_preproc_def_token1] = ACTIONS(1392), @@ -55882,6 +56725,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1394), [anon_sym_AMP] = ACTIONS(1394), [anon_sym_SEMI] = ACTIONS(1394), + [anon_sym___extension__] = ACTIONS(1392), [anon_sym_typedef] = ACTIONS(1392), [anon_sym_extern] = ACTIONS(1392), [anon_sym___attribute__] = ACTIONS(1392), @@ -55902,6 +56746,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1392), [anon_sym_register] = ACTIONS(1392), [anon_sym_inline] = ACTIONS(1392), + [anon_sym___inline] = ACTIONS(1392), + [anon_sym___inline__] = ACTIONS(1392), + [anon_sym___forceinline] = ACTIONS(1392), [anon_sym_thread_local] = ACTIONS(1392), [anon_sym___thread] = ACTIONS(1392), [anon_sym_const] = ACTIONS(1392), @@ -55917,6 +56764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1392), [anon_sym_union] = ACTIONS(1392), [anon_sym_if] = ACTIONS(1392), + [anon_sym_else] = ACTIONS(1392), [anon_sym_switch] = ACTIONS(1392), [anon_sym_case] = ACTIONS(1392), [anon_sym_default] = ACTIONS(1392), @@ -55930,7 +56778,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1394), [anon_sym_PLUS_PLUS] = ACTIONS(1394), [anon_sym_sizeof] = ACTIONS(1392), + [anon_sym___alignof__] = ACTIONS(1392), + [anon_sym___alignof] = ACTIONS(1392), + [anon_sym__alignof] = ACTIONS(1392), + [anon_sym_alignof] = ACTIONS(1392), + [anon_sym__Alignof] = ACTIONS(1392), [anon_sym_offsetof] = ACTIONS(1392), + [anon_sym___builtin_va_arg] = ACTIONS(1392), [anon_sym__Generic] = ACTIONS(1392), [anon_sym_asm] = ACTIONS(1392), [anon_sym___asm__] = ACTIONS(1392), @@ -55951,1216 +56805,594 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1392), [sym_comment] = ACTIONS(3), }, - [409] = { - [sym_attribute_declaration] = STATE(439), - [sym_compound_statement] = STATE(205), - [sym_attributed_statement] = STATE(205), - [sym_labeled_statement] = STATE(205), - [sym_expression_statement] = STATE(205), - [sym_if_statement] = STATE(205), - [sym_switch_statement] = STATE(205), - [sym_case_statement] = STATE(205), - [sym_while_statement] = STATE(205), - [sym_do_statement] = STATE(205), - [sym_for_statement] = STATE(205), - [sym_return_statement] = STATE(205), - [sym_break_statement] = STATE(205), - [sym_continue_statement] = STATE(205), - [sym_goto_statement] = STATE(205), - [sym__expression] = STATE(1112), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [sym_identifier] = ACTIONS(1460), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(462), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [410] = { - [sym_identifier] = ACTIONS(1398), - [aux_sym_preproc_include_token1] = ACTIONS(1398), - [aux_sym_preproc_def_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token2] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), - [sym_preproc_directive] = ACTIONS(1398), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_typedef] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym___attribute__] = ACTIONS(1398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), - [anon_sym___declspec] = ACTIONS(1398), - [anon_sym___cdecl] = ACTIONS(1398), - [anon_sym___clrcall] = ACTIONS(1398), - [anon_sym___stdcall] = ACTIONS(1398), - [anon_sym___fastcall] = ACTIONS(1398), - [anon_sym___thiscall] = ACTIONS(1398), - [anon_sym___vectorcall] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_auto] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym_thread_local] = ACTIONS(1398), - [anon_sym___thread] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_constexpr] = ACTIONS(1398), - [anon_sym_volatile] = ACTIONS(1398), - [anon_sym_restrict] = ACTIONS(1398), - [anon_sym___restrict__] = ACTIONS(1398), - [anon_sym__Atomic] = ACTIONS(1398), - [anon_sym__Noreturn] = ACTIONS(1398), - [anon_sym_noreturn] = ACTIONS(1398), - [sym_primitive_type] = ACTIONS(1398), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_struct] = ACTIONS(1398), - [anon_sym_union] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_case] = ACTIONS(1398), - [anon_sym_default] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_goto] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_sizeof] = ACTIONS(1398), - [anon_sym_offsetof] = ACTIONS(1398), - [anon_sym__Generic] = ACTIONS(1398), - [anon_sym_asm] = ACTIONS(1398), - [anon_sym___asm__] = ACTIONS(1398), - [sym_number_literal] = ACTIONS(1400), - [anon_sym_L_SQUOTE] = ACTIONS(1400), - [anon_sym_u_SQUOTE] = ACTIONS(1400), - [anon_sym_U_SQUOTE] = ACTIONS(1400), - [anon_sym_u8_SQUOTE] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_L_DQUOTE] = ACTIONS(1400), - [anon_sym_u_DQUOTE] = ACTIONS(1400), - [anon_sym_U_DQUOTE] = ACTIONS(1400), - [anon_sym_u8_DQUOTE] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym_true] = ACTIONS(1398), - [sym_false] = ACTIONS(1398), - [anon_sym_NULL] = ACTIONS(1398), - [anon_sym_nullptr] = ACTIONS(1398), + [365] = { + [sym_identifier] = ACTIONS(1396), + [aux_sym_preproc_include_token1] = ACTIONS(1396), + [aux_sym_preproc_def_token1] = ACTIONS(1396), + [aux_sym_preproc_if_token1] = ACTIONS(1396), + [aux_sym_preproc_if_token2] = ACTIONS(1396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1396), + [anon_sym_LPAREN2] = ACTIONS(1398), + [anon_sym_BANG] = ACTIONS(1398), + [anon_sym_TILDE] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_PLUS] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym___extension__] = ACTIONS(1396), + [anon_sym_typedef] = ACTIONS(1396), + [anon_sym_extern] = ACTIONS(1396), + [anon_sym___attribute__] = ACTIONS(1396), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1398), + [anon_sym___declspec] = ACTIONS(1396), + [anon_sym___cdecl] = ACTIONS(1396), + [anon_sym___clrcall] = ACTIONS(1396), + [anon_sym___stdcall] = ACTIONS(1396), + [anon_sym___fastcall] = ACTIONS(1396), + [anon_sym___thiscall] = ACTIONS(1396), + [anon_sym___vectorcall] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(1398), + [anon_sym_signed] = ACTIONS(1396), + [anon_sym_unsigned] = ACTIONS(1396), + [anon_sym_long] = ACTIONS(1396), + [anon_sym_short] = ACTIONS(1396), + [anon_sym_static] = ACTIONS(1396), + [anon_sym_auto] = ACTIONS(1396), + [anon_sym_register] = ACTIONS(1396), + [anon_sym_inline] = ACTIONS(1396), + [anon_sym___inline] = ACTIONS(1396), + [anon_sym___inline__] = ACTIONS(1396), + [anon_sym___forceinline] = ACTIONS(1396), + [anon_sym_thread_local] = ACTIONS(1396), + [anon_sym___thread] = ACTIONS(1396), + [anon_sym_const] = ACTIONS(1396), + [anon_sym_constexpr] = ACTIONS(1396), + [anon_sym_volatile] = ACTIONS(1396), + [anon_sym_restrict] = ACTIONS(1396), + [anon_sym___restrict__] = ACTIONS(1396), + [anon_sym__Atomic] = ACTIONS(1396), + [anon_sym__Noreturn] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [sym_primitive_type] = ACTIONS(1396), + [anon_sym_enum] = ACTIONS(1396), + [anon_sym_struct] = ACTIONS(1396), + [anon_sym_union] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1396), + [anon_sym_else] = ACTIONS(1396), + [anon_sym_switch] = ACTIONS(1396), + [anon_sym_case] = ACTIONS(1396), + [anon_sym_default] = ACTIONS(1396), + [anon_sym_while] = ACTIONS(1396), + [anon_sym_do] = ACTIONS(1396), + [anon_sym_for] = ACTIONS(1396), + [anon_sym_return] = ACTIONS(1396), + [anon_sym_break] = ACTIONS(1396), + [anon_sym_continue] = ACTIONS(1396), + [anon_sym_goto] = ACTIONS(1396), + [anon_sym_DASH_DASH] = ACTIONS(1398), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_sizeof] = ACTIONS(1396), + [anon_sym___alignof__] = ACTIONS(1396), + [anon_sym___alignof] = ACTIONS(1396), + [anon_sym__alignof] = ACTIONS(1396), + [anon_sym_alignof] = ACTIONS(1396), + [anon_sym__Alignof] = ACTIONS(1396), + [anon_sym_offsetof] = ACTIONS(1396), + [anon_sym___builtin_va_arg] = ACTIONS(1396), + [anon_sym__Generic] = ACTIONS(1396), + [anon_sym_asm] = ACTIONS(1396), + [anon_sym___asm__] = ACTIONS(1396), + [sym_number_literal] = ACTIONS(1398), + [anon_sym_L_SQUOTE] = ACTIONS(1398), + [anon_sym_u_SQUOTE] = ACTIONS(1398), + [anon_sym_U_SQUOTE] = ACTIONS(1398), + [anon_sym_u8_SQUOTE] = ACTIONS(1398), + [anon_sym_SQUOTE] = ACTIONS(1398), + [anon_sym_L_DQUOTE] = ACTIONS(1398), + [anon_sym_u_DQUOTE] = ACTIONS(1398), + [anon_sym_U_DQUOTE] = ACTIONS(1398), + [anon_sym_u8_DQUOTE] = ACTIONS(1398), + [anon_sym_DQUOTE] = ACTIONS(1398), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [anon_sym_NULL] = ACTIONS(1396), + [anon_sym_nullptr] = ACTIONS(1396), [sym_comment] = ACTIONS(3), }, - [411] = { - [sym_attribute_declaration] = STATE(439), - [sym_compound_statement] = STATE(258), - [sym_attributed_statement] = STATE(258), - [sym_labeled_statement] = STATE(258), - [sym_expression_statement] = STATE(258), - [sym_if_statement] = STATE(258), - [sym_switch_statement] = STATE(258), - [sym_case_statement] = STATE(258), - [sym_while_statement] = STATE(258), - [sym_do_statement] = STATE(258), - [sym_for_statement] = STATE(258), - [sym_return_statement] = STATE(258), - [sym_break_statement] = STATE(258), - [sym_continue_statement] = STATE(258), - [sym_goto_statement] = STATE(258), - [sym__expression] = STATE(1112), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [sym_identifier] = ACTIONS(1460), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(462), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [366] = { + [sym_identifier] = ACTIONS(1400), + [aux_sym_preproc_include_token1] = ACTIONS(1400), + [aux_sym_preproc_def_token1] = ACTIONS(1400), + [aux_sym_preproc_if_token1] = ACTIONS(1400), + [aux_sym_preproc_if_token2] = ACTIONS(1400), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1400), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1400), + [sym_preproc_directive] = ACTIONS(1400), + [anon_sym_LPAREN2] = ACTIONS(1402), + [anon_sym_BANG] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1402), + [anon_sym_AMP] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym___extension__] = ACTIONS(1400), + [anon_sym_typedef] = ACTIONS(1400), + [anon_sym_extern] = ACTIONS(1400), + [anon_sym___attribute__] = ACTIONS(1400), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1402), + [anon_sym___declspec] = ACTIONS(1400), + [anon_sym___cdecl] = ACTIONS(1400), + [anon_sym___clrcall] = ACTIONS(1400), + [anon_sym___stdcall] = ACTIONS(1400), + [anon_sym___fastcall] = ACTIONS(1400), + [anon_sym___thiscall] = ACTIONS(1400), + [anon_sym___vectorcall] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_signed] = ACTIONS(1400), + [anon_sym_unsigned] = ACTIONS(1400), + [anon_sym_long] = ACTIONS(1400), + [anon_sym_short] = ACTIONS(1400), + [anon_sym_static] = ACTIONS(1400), + [anon_sym_auto] = ACTIONS(1400), + [anon_sym_register] = ACTIONS(1400), + [anon_sym_inline] = ACTIONS(1400), + [anon_sym___inline] = ACTIONS(1400), + [anon_sym___inline__] = ACTIONS(1400), + [anon_sym___forceinline] = ACTIONS(1400), + [anon_sym_thread_local] = ACTIONS(1400), + [anon_sym___thread] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_constexpr] = ACTIONS(1400), + [anon_sym_volatile] = ACTIONS(1400), + [anon_sym_restrict] = ACTIONS(1400), + [anon_sym___restrict__] = ACTIONS(1400), + [anon_sym__Atomic] = ACTIONS(1400), + [anon_sym__Noreturn] = ACTIONS(1400), + [anon_sym_noreturn] = ACTIONS(1400), + [sym_primitive_type] = ACTIONS(1400), + [anon_sym_enum] = ACTIONS(1400), + [anon_sym_struct] = ACTIONS(1400), + [anon_sym_union] = ACTIONS(1400), + [anon_sym_if] = ACTIONS(1400), + [anon_sym_else] = ACTIONS(1400), + [anon_sym_switch] = ACTIONS(1400), + [anon_sym_case] = ACTIONS(1400), + [anon_sym_default] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1400), + [anon_sym_do] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [anon_sym_goto] = ACTIONS(1400), + [anon_sym_DASH_DASH] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1402), + [anon_sym_sizeof] = ACTIONS(1400), + [anon_sym___alignof__] = ACTIONS(1400), + [anon_sym___alignof] = ACTIONS(1400), + [anon_sym__alignof] = ACTIONS(1400), + [anon_sym_alignof] = ACTIONS(1400), + [anon_sym__Alignof] = ACTIONS(1400), + [anon_sym_offsetof] = ACTIONS(1400), + [anon_sym___builtin_va_arg] = ACTIONS(1400), + [anon_sym__Generic] = ACTIONS(1400), + [anon_sym_asm] = ACTIONS(1400), + [anon_sym___asm__] = ACTIONS(1400), + [sym_number_literal] = ACTIONS(1402), + [anon_sym_L_SQUOTE] = ACTIONS(1402), + [anon_sym_u_SQUOTE] = ACTIONS(1402), + [anon_sym_U_SQUOTE] = ACTIONS(1402), + [anon_sym_u8_SQUOTE] = ACTIONS(1402), + [anon_sym_SQUOTE] = ACTIONS(1402), + [anon_sym_L_DQUOTE] = ACTIONS(1402), + [anon_sym_u_DQUOTE] = ACTIONS(1402), + [anon_sym_U_DQUOTE] = ACTIONS(1402), + [anon_sym_u8_DQUOTE] = ACTIONS(1402), + [anon_sym_DQUOTE] = ACTIONS(1402), + [sym_true] = ACTIONS(1400), + [sym_false] = ACTIONS(1400), + [anon_sym_NULL] = ACTIONS(1400), + [anon_sym_nullptr] = ACTIONS(1400), [sym_comment] = ACTIONS(3), }, - [412] = { - [sym_attribute_declaration] = STATE(412), - [sym_compound_statement] = STATE(275), - [sym_attributed_statement] = STATE(275), - [sym_labeled_statement] = STATE(275), - [sym_expression_statement] = STATE(275), - [sym_if_statement] = STATE(275), - [sym_switch_statement] = STATE(275), - [sym_case_statement] = STATE(275), - [sym_while_statement] = STATE(275), - [sym_do_statement] = STATE(275), - [sym_for_statement] = STATE(275), - [sym_return_statement] = STATE(275), - [sym_break_statement] = STATE(275), - [sym_continue_statement] = STATE(275), - [sym_goto_statement] = STATE(275), - [sym__expression] = STATE(1112), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(412), - [sym_identifier] = ACTIONS(1563), - [anon_sym_LPAREN2] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_STAR] = ACTIONS(1488), - [anon_sym_AMP] = ACTIONS(1488), - [anon_sym_SEMI] = ACTIONS(1566), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_if] = ACTIONS(1572), - [anon_sym_switch] = ACTIONS(1575), - [anon_sym_case] = ACTIONS(1578), - [anon_sym_default] = ACTIONS(1581), - [anon_sym_while] = ACTIONS(1584), - [anon_sym_do] = ACTIONS(1587), - [anon_sym_for] = ACTIONS(1590), - [anon_sym_return] = ACTIONS(1593), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_sizeof] = ACTIONS(1536), - [anon_sym_offsetof] = ACTIONS(1539), - [anon_sym__Generic] = ACTIONS(1542), - [anon_sym_asm] = ACTIONS(1545), - [anon_sym___asm__] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1548), - [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(1554), - [anon_sym_u_DQUOTE] = ACTIONS(1554), - [anon_sym_U_DQUOTE] = ACTIONS(1554), - [anon_sym_u8_DQUOTE] = ACTIONS(1554), - [anon_sym_DQUOTE] = ACTIONS(1554), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [anon_sym_NULL] = ACTIONS(1560), - [anon_sym_nullptr] = ACTIONS(1560), + [367] = { + [sym_identifier] = ACTIONS(1404), + [aux_sym_preproc_include_token1] = ACTIONS(1404), + [aux_sym_preproc_def_token1] = ACTIONS(1404), + [aux_sym_preproc_if_token1] = ACTIONS(1404), + [aux_sym_preproc_if_token2] = ACTIONS(1404), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1404), + [sym_preproc_directive] = ACTIONS(1404), + [anon_sym_LPAREN2] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1406), + [anon_sym_TILDE] = ACTIONS(1406), + [anon_sym_DASH] = ACTIONS(1404), + [anon_sym_PLUS] = ACTIONS(1404), + [anon_sym_STAR] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1406), + [anon_sym_SEMI] = ACTIONS(1406), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_typedef] = ACTIONS(1404), + [anon_sym_extern] = ACTIONS(1404), + [anon_sym___attribute__] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), + [anon_sym___declspec] = ACTIONS(1404), + [anon_sym___cdecl] = ACTIONS(1404), + [anon_sym___clrcall] = ACTIONS(1404), + [anon_sym___stdcall] = ACTIONS(1404), + [anon_sym___fastcall] = ACTIONS(1404), + [anon_sym___thiscall] = ACTIONS(1404), + [anon_sym___vectorcall] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_signed] = ACTIONS(1404), + [anon_sym_unsigned] = ACTIONS(1404), + [anon_sym_long] = ACTIONS(1404), + [anon_sym_short] = ACTIONS(1404), + [anon_sym_static] = ACTIONS(1404), + [anon_sym_auto] = ACTIONS(1404), + [anon_sym_register] = ACTIONS(1404), + [anon_sym_inline] = ACTIONS(1404), + [anon_sym___inline] = ACTIONS(1404), + [anon_sym___inline__] = ACTIONS(1404), + [anon_sym___forceinline] = ACTIONS(1404), + [anon_sym_thread_local] = ACTIONS(1404), + [anon_sym___thread] = ACTIONS(1404), + [anon_sym_const] = ACTIONS(1404), + [anon_sym_constexpr] = ACTIONS(1404), + [anon_sym_volatile] = ACTIONS(1404), + [anon_sym_restrict] = ACTIONS(1404), + [anon_sym___restrict__] = ACTIONS(1404), + [anon_sym__Atomic] = ACTIONS(1404), + [anon_sym__Noreturn] = ACTIONS(1404), + [anon_sym_noreturn] = ACTIONS(1404), + [sym_primitive_type] = ACTIONS(1404), + [anon_sym_enum] = ACTIONS(1404), + [anon_sym_struct] = ACTIONS(1404), + [anon_sym_union] = ACTIONS(1404), + [anon_sym_if] = ACTIONS(1404), + [anon_sym_else] = ACTIONS(1404), + [anon_sym_switch] = ACTIONS(1404), + [anon_sym_case] = ACTIONS(1404), + [anon_sym_default] = ACTIONS(1404), + [anon_sym_while] = ACTIONS(1404), + [anon_sym_do] = ACTIONS(1404), + [anon_sym_for] = ACTIONS(1404), + [anon_sym_return] = ACTIONS(1404), + [anon_sym_break] = ACTIONS(1404), + [anon_sym_continue] = ACTIONS(1404), + [anon_sym_goto] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1406), + [anon_sym_PLUS_PLUS] = ACTIONS(1406), + [anon_sym_sizeof] = ACTIONS(1404), + [anon_sym___alignof__] = ACTIONS(1404), + [anon_sym___alignof] = ACTIONS(1404), + [anon_sym__alignof] = ACTIONS(1404), + [anon_sym_alignof] = ACTIONS(1404), + [anon_sym__Alignof] = ACTIONS(1404), + [anon_sym_offsetof] = ACTIONS(1404), + [anon_sym___builtin_va_arg] = ACTIONS(1404), + [anon_sym__Generic] = ACTIONS(1404), + [anon_sym_asm] = ACTIONS(1404), + [anon_sym___asm__] = ACTIONS(1404), + [sym_number_literal] = ACTIONS(1406), + [anon_sym_L_SQUOTE] = ACTIONS(1406), + [anon_sym_u_SQUOTE] = ACTIONS(1406), + [anon_sym_U_SQUOTE] = ACTIONS(1406), + [anon_sym_u8_SQUOTE] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1406), + [anon_sym_L_DQUOTE] = ACTIONS(1406), + [anon_sym_u_DQUOTE] = ACTIONS(1406), + [anon_sym_U_DQUOTE] = ACTIONS(1406), + [anon_sym_u8_DQUOTE] = ACTIONS(1406), + [anon_sym_DQUOTE] = ACTIONS(1406), + [sym_true] = ACTIONS(1404), + [sym_false] = ACTIONS(1404), + [anon_sym_NULL] = ACTIONS(1404), + [anon_sym_nullptr] = ACTIONS(1404), [sym_comment] = ACTIONS(3), }, - [413] = { - [sym_attribute_declaration] = STATE(480), - [sym_compound_statement] = STATE(318), - [sym_attributed_statement] = STATE(318), - [sym_labeled_statement] = STATE(318), - [sym_expression_statement] = STATE(318), - [sym_if_statement] = STATE(318), - [sym_switch_statement] = STATE(318), - [sym_case_statement] = STATE(318), - [sym_while_statement] = STATE(318), - [sym_do_statement] = STATE(318), - [sym_for_statement] = STATE(318), - [sym_return_statement] = STATE(318), - [sym_break_statement] = STATE(318), - [sym_continue_statement] = STATE(318), - [sym_goto_statement] = STATE(318), - [sym__expression] = STATE(1098), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1873), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(480), - [sym_identifier] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [368] = { + [sym_identifier] = ACTIONS(1400), + [aux_sym_preproc_include_token1] = ACTIONS(1400), + [aux_sym_preproc_def_token1] = ACTIONS(1400), + [aux_sym_preproc_if_token1] = ACTIONS(1400), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1400), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1400), + [sym_preproc_directive] = ACTIONS(1400), + [anon_sym_LPAREN2] = ACTIONS(1402), + [anon_sym_BANG] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1402), + [anon_sym_AMP] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym___extension__] = ACTIONS(1400), + [anon_sym_typedef] = ACTIONS(1400), + [anon_sym_extern] = ACTIONS(1400), + [anon_sym___attribute__] = ACTIONS(1400), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1402), + [anon_sym___declspec] = ACTIONS(1400), + [anon_sym___cdecl] = ACTIONS(1400), + [anon_sym___clrcall] = ACTIONS(1400), + [anon_sym___stdcall] = ACTIONS(1400), + [anon_sym___fastcall] = ACTIONS(1400), + [anon_sym___thiscall] = ACTIONS(1400), + [anon_sym___vectorcall] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_RBRACE] = ACTIONS(1402), + [anon_sym_signed] = ACTIONS(1400), + [anon_sym_unsigned] = ACTIONS(1400), + [anon_sym_long] = ACTIONS(1400), + [anon_sym_short] = ACTIONS(1400), + [anon_sym_static] = ACTIONS(1400), + [anon_sym_auto] = ACTIONS(1400), + [anon_sym_register] = ACTIONS(1400), + [anon_sym_inline] = ACTIONS(1400), + [anon_sym___inline] = ACTIONS(1400), + [anon_sym___inline__] = ACTIONS(1400), + [anon_sym___forceinline] = ACTIONS(1400), + [anon_sym_thread_local] = ACTIONS(1400), + [anon_sym___thread] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_constexpr] = ACTIONS(1400), + [anon_sym_volatile] = ACTIONS(1400), + [anon_sym_restrict] = ACTIONS(1400), + [anon_sym___restrict__] = ACTIONS(1400), + [anon_sym__Atomic] = ACTIONS(1400), + [anon_sym__Noreturn] = ACTIONS(1400), + [anon_sym_noreturn] = ACTIONS(1400), + [sym_primitive_type] = ACTIONS(1400), + [anon_sym_enum] = ACTIONS(1400), + [anon_sym_struct] = ACTIONS(1400), + [anon_sym_union] = ACTIONS(1400), + [anon_sym_if] = ACTIONS(1400), + [anon_sym_else] = ACTIONS(1400), + [anon_sym_switch] = ACTIONS(1400), + [anon_sym_case] = ACTIONS(1400), + [anon_sym_default] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1400), + [anon_sym_do] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [anon_sym_goto] = ACTIONS(1400), + [anon_sym_DASH_DASH] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1402), + [anon_sym_sizeof] = ACTIONS(1400), + [anon_sym___alignof__] = ACTIONS(1400), + [anon_sym___alignof] = ACTIONS(1400), + [anon_sym__alignof] = ACTIONS(1400), + [anon_sym_alignof] = ACTIONS(1400), + [anon_sym__Alignof] = ACTIONS(1400), + [anon_sym_offsetof] = ACTIONS(1400), + [anon_sym___builtin_va_arg] = ACTIONS(1400), + [anon_sym__Generic] = ACTIONS(1400), + [anon_sym_asm] = ACTIONS(1400), + [anon_sym___asm__] = ACTIONS(1400), + [sym_number_literal] = ACTIONS(1402), + [anon_sym_L_SQUOTE] = ACTIONS(1402), + [anon_sym_u_SQUOTE] = ACTIONS(1402), + [anon_sym_U_SQUOTE] = ACTIONS(1402), + [anon_sym_u8_SQUOTE] = ACTIONS(1402), + [anon_sym_SQUOTE] = ACTIONS(1402), + [anon_sym_L_DQUOTE] = ACTIONS(1402), + [anon_sym_u_DQUOTE] = ACTIONS(1402), + [anon_sym_U_DQUOTE] = ACTIONS(1402), + [anon_sym_u8_DQUOTE] = ACTIONS(1402), + [anon_sym_DQUOTE] = ACTIONS(1402), + [sym_true] = ACTIONS(1400), + [sym_false] = ACTIONS(1400), + [anon_sym_NULL] = ACTIONS(1400), + [anon_sym_nullptr] = ACTIONS(1400), [sym_comment] = ACTIONS(3), }, - [414] = { - [sym_attribute_declaration] = STATE(413), - [sym_compound_statement] = STATE(244), - [sym_attributed_statement] = STATE(244), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym__expression] = STATE(1098), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1873), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(413), - [sym_identifier] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [415] = { - [sym_attribute_declaration] = STATE(439), - [sym_compound_statement] = STATE(238), - [sym_attributed_statement] = STATE(238), - [sym_labeled_statement] = STATE(238), - [sym_expression_statement] = STATE(238), - [sym_if_statement] = STATE(238), - [sym_switch_statement] = STATE(238), - [sym_case_statement] = STATE(238), - [sym_while_statement] = STATE(238), - [sym_do_statement] = STATE(238), - [sym_for_statement] = STATE(238), - [sym_return_statement] = STATE(238), - [sym_break_statement] = STATE(238), - [sym_continue_statement] = STATE(238), - [sym_goto_statement] = STATE(238), - [sym__expression] = STATE(1112), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [sym_identifier] = ACTIONS(1460), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(462), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [416] = { - [sym_attribute_declaration] = STATE(407), - [sym_compound_statement] = STATE(121), - [sym_attributed_statement] = STATE(121), - [sym_labeled_statement] = STATE(121), - [sym_expression_statement] = STATE(121), - [sym_if_statement] = STATE(121), - [sym_switch_statement] = STATE(121), - [sym_case_statement] = STATE(121), - [sym_while_statement] = STATE(121), - [sym_do_statement] = STATE(121), - [sym_for_statement] = STATE(121), - [sym_return_statement] = STATE(121), - [sym_break_statement] = STATE(121), - [sym_continue_statement] = STATE(121), - [sym_goto_statement] = STATE(121), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1801), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [sym_identifier] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [417] = { - [sym_attribute_declaration] = STATE(413), - [sym_compound_statement] = STATE(272), - [sym_attributed_statement] = STATE(272), - [sym_labeled_statement] = STATE(272), - [sym_expression_statement] = STATE(272), - [sym_if_statement] = STATE(272), - [sym_switch_statement] = STATE(272), - [sym_case_statement] = STATE(272), - [sym_while_statement] = STATE(272), - [sym_do_statement] = STATE(272), - [sym_for_statement] = STATE(272), - [sym_return_statement] = STATE(272), - [sym_break_statement] = STATE(272), - [sym_continue_statement] = STATE(272), - [sym_goto_statement] = STATE(272), - [sym__expression] = STATE(1098), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1873), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(413), - [sym_identifier] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [418] = { - [sym_identifier] = ACTIONS(1380), - [aux_sym_preproc_include_token1] = ACTIONS(1380), - [aux_sym_preproc_def_token1] = ACTIONS(1380), - [aux_sym_preproc_if_token1] = ACTIONS(1380), - [aux_sym_preproc_if_token2] = ACTIONS(1380), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), - [sym_preproc_directive] = ACTIONS(1380), - [anon_sym_LPAREN2] = ACTIONS(1382), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_TILDE] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1380), - [anon_sym_PLUS] = ACTIONS(1380), - [anon_sym_STAR] = ACTIONS(1382), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_SEMI] = ACTIONS(1382), - [anon_sym_typedef] = ACTIONS(1380), - [anon_sym_extern] = ACTIONS(1380), - [anon_sym___attribute__] = ACTIONS(1380), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), - [anon_sym___declspec] = ACTIONS(1380), - [anon_sym___cdecl] = ACTIONS(1380), - [anon_sym___clrcall] = ACTIONS(1380), - [anon_sym___stdcall] = ACTIONS(1380), - [anon_sym___fastcall] = ACTIONS(1380), - [anon_sym___thiscall] = ACTIONS(1380), - [anon_sym___vectorcall] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_signed] = ACTIONS(1380), - [anon_sym_unsigned] = ACTIONS(1380), - [anon_sym_long] = ACTIONS(1380), - [anon_sym_short] = ACTIONS(1380), - [anon_sym_static] = ACTIONS(1380), - [anon_sym_auto] = ACTIONS(1380), - [anon_sym_register] = ACTIONS(1380), - [anon_sym_inline] = ACTIONS(1380), - [anon_sym_thread_local] = ACTIONS(1380), - [anon_sym___thread] = ACTIONS(1380), - [anon_sym_const] = ACTIONS(1380), - [anon_sym_constexpr] = ACTIONS(1380), - [anon_sym_volatile] = ACTIONS(1380), - [anon_sym_restrict] = ACTIONS(1380), - [anon_sym___restrict__] = ACTIONS(1380), - [anon_sym__Atomic] = ACTIONS(1380), - [anon_sym__Noreturn] = ACTIONS(1380), - [anon_sym_noreturn] = ACTIONS(1380), - [sym_primitive_type] = ACTIONS(1380), - [anon_sym_enum] = ACTIONS(1380), - [anon_sym_struct] = ACTIONS(1380), - [anon_sym_union] = ACTIONS(1380), - [anon_sym_if] = ACTIONS(1380), - [anon_sym_switch] = ACTIONS(1380), - [anon_sym_case] = ACTIONS(1380), - [anon_sym_default] = ACTIONS(1380), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1380), - [anon_sym_for] = ACTIONS(1380), - [anon_sym_return] = ACTIONS(1380), - [anon_sym_break] = ACTIONS(1380), - [anon_sym_continue] = ACTIONS(1380), - [anon_sym_goto] = ACTIONS(1380), - [anon_sym_DASH_DASH] = ACTIONS(1382), - [anon_sym_PLUS_PLUS] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1380), - [anon_sym_offsetof] = ACTIONS(1380), - [anon_sym__Generic] = ACTIONS(1380), - [anon_sym_asm] = ACTIONS(1380), - [anon_sym___asm__] = ACTIONS(1380), - [sym_number_literal] = ACTIONS(1382), - [anon_sym_L_SQUOTE] = ACTIONS(1382), - [anon_sym_u_SQUOTE] = ACTIONS(1382), - [anon_sym_U_SQUOTE] = ACTIONS(1382), - [anon_sym_u8_SQUOTE] = ACTIONS(1382), - [anon_sym_SQUOTE] = ACTIONS(1382), - [anon_sym_L_DQUOTE] = ACTIONS(1382), - [anon_sym_u_DQUOTE] = ACTIONS(1382), - [anon_sym_U_DQUOTE] = ACTIONS(1382), - [anon_sym_u8_DQUOTE] = ACTIONS(1382), - [anon_sym_DQUOTE] = ACTIONS(1382), - [sym_true] = ACTIONS(1380), - [sym_false] = ACTIONS(1380), - [anon_sym_NULL] = ACTIONS(1380), - [anon_sym_nullptr] = ACTIONS(1380), - [sym_comment] = ACTIONS(3), - }, - [419] = { - [sym_attribute_declaration] = STATE(413), - [sym_compound_statement] = STATE(274), - [sym_attributed_statement] = STATE(274), - [sym_labeled_statement] = STATE(274), - [sym_expression_statement] = STATE(274), - [sym_if_statement] = STATE(274), - [sym_switch_statement] = STATE(274), - [sym_case_statement] = STATE(274), - [sym_while_statement] = STATE(274), - [sym_do_statement] = STATE(274), - [sym_for_statement] = STATE(274), - [sym_return_statement] = STATE(274), - [sym_break_statement] = STATE(274), - [sym_continue_statement] = STATE(274), - [sym_goto_statement] = STATE(274), - [sym__expression] = STATE(1098), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1873), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(413), - [sym_identifier] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [420] = { - [sym_attribute_declaration] = STATE(439), - [sym_compound_statement] = STATE(230), - [sym_attributed_statement] = STATE(230), - [sym_labeled_statement] = STATE(230), - [sym_expression_statement] = STATE(230), - [sym_if_statement] = STATE(230), - [sym_switch_statement] = STATE(230), - [sym_case_statement] = STATE(230), - [sym_while_statement] = STATE(230), - [sym_do_statement] = STATE(230), - [sym_for_statement] = STATE(230), - [sym_return_statement] = STATE(230), - [sym_break_statement] = STATE(230), - [sym_continue_statement] = STATE(230), - [sym_goto_statement] = STATE(230), - [sym__expression] = STATE(1112), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [sym_identifier] = ACTIONS(1460), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(462), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [421] = { - [sym_attribute_declaration] = STATE(439), - [sym_compound_statement] = STATE(229), - [sym_attributed_statement] = STATE(229), - [sym_labeled_statement] = STATE(229), - [sym_expression_statement] = STATE(229), - [sym_if_statement] = STATE(229), - [sym_switch_statement] = STATE(229), - [sym_case_statement] = STATE(229), - [sym_while_statement] = STATE(229), - [sym_do_statement] = STATE(229), - [sym_for_statement] = STATE(229), - [sym_return_statement] = STATE(229), - [sym_break_statement] = STATE(229), - [sym_continue_statement] = STATE(229), - [sym_goto_statement] = STATE(229), - [sym__expression] = STATE(1112), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [sym_identifier] = ACTIONS(1460), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(462), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [369] = { + [ts_builtin_sym_end] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1368), + [aux_sym_preproc_include_token1] = ACTIONS(1368), + [aux_sym_preproc_def_token1] = ACTIONS(1368), + [aux_sym_preproc_if_token1] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1368), + [sym_preproc_directive] = ACTIONS(1368), + [anon_sym_LPAREN2] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1370), + [anon_sym___extension__] = ACTIONS(1368), + [anon_sym_typedef] = ACTIONS(1368), + [anon_sym_extern] = ACTIONS(1368), + [anon_sym___attribute__] = ACTIONS(1368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1370), + [anon_sym___declspec] = ACTIONS(1368), + [anon_sym___cdecl] = ACTIONS(1368), + [anon_sym___clrcall] = ACTIONS(1368), + [anon_sym___stdcall] = ACTIONS(1368), + [anon_sym___fastcall] = ACTIONS(1368), + [anon_sym___thiscall] = ACTIONS(1368), + [anon_sym___vectorcall] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_signed] = ACTIONS(1368), + [anon_sym_unsigned] = ACTIONS(1368), + [anon_sym_long] = ACTIONS(1368), + [anon_sym_short] = ACTIONS(1368), + [anon_sym_static] = ACTIONS(1368), + [anon_sym_auto] = ACTIONS(1368), + [anon_sym_register] = ACTIONS(1368), + [anon_sym_inline] = ACTIONS(1368), + [anon_sym___inline] = ACTIONS(1368), + [anon_sym___inline__] = ACTIONS(1368), + [anon_sym___forceinline] = ACTIONS(1368), + [anon_sym_thread_local] = ACTIONS(1368), + [anon_sym___thread] = ACTIONS(1368), + [anon_sym_const] = ACTIONS(1368), + [anon_sym_constexpr] = ACTIONS(1368), + [anon_sym_volatile] = ACTIONS(1368), + [anon_sym_restrict] = ACTIONS(1368), + [anon_sym___restrict__] = ACTIONS(1368), + [anon_sym__Atomic] = ACTIONS(1368), + [anon_sym__Noreturn] = ACTIONS(1368), + [anon_sym_noreturn] = ACTIONS(1368), + [sym_primitive_type] = ACTIONS(1368), + [anon_sym_enum] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1368), + [anon_sym_union] = ACTIONS(1368), + [anon_sym_if] = ACTIONS(1368), + [anon_sym_else] = ACTIONS(1368), + [anon_sym_switch] = ACTIONS(1368), + [anon_sym_case] = ACTIONS(1368), + [anon_sym_default] = ACTIONS(1368), + [anon_sym_while] = ACTIONS(1368), + [anon_sym_do] = ACTIONS(1368), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1368), + [anon_sym_break] = ACTIONS(1368), + [anon_sym_continue] = ACTIONS(1368), + [anon_sym_goto] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1370), + [anon_sym_sizeof] = ACTIONS(1368), + [anon_sym___alignof__] = ACTIONS(1368), + [anon_sym___alignof] = ACTIONS(1368), + [anon_sym__alignof] = ACTIONS(1368), + [anon_sym_alignof] = ACTIONS(1368), + [anon_sym__Alignof] = ACTIONS(1368), + [anon_sym_offsetof] = ACTIONS(1368), + [anon_sym___builtin_va_arg] = ACTIONS(1368), + [anon_sym__Generic] = ACTIONS(1368), + [anon_sym_asm] = ACTIONS(1368), + [anon_sym___asm__] = ACTIONS(1368), + [sym_number_literal] = ACTIONS(1370), + [anon_sym_L_SQUOTE] = ACTIONS(1370), + [anon_sym_u_SQUOTE] = ACTIONS(1370), + [anon_sym_U_SQUOTE] = ACTIONS(1370), + [anon_sym_u8_SQUOTE] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1370), + [anon_sym_L_DQUOTE] = ACTIONS(1370), + [anon_sym_u_DQUOTE] = ACTIONS(1370), + [anon_sym_U_DQUOTE] = ACTIONS(1370), + [anon_sym_u8_DQUOTE] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [sym_true] = ACTIONS(1368), + [sym_false] = ACTIONS(1368), + [anon_sym_NULL] = ACTIONS(1368), + [anon_sym_nullptr] = ACTIONS(1368), [sym_comment] = ACTIONS(3), }, - [422] = { - [sym_attribute_declaration] = STATE(413), - [sym_compound_statement] = STATE(239), - [sym_attributed_statement] = STATE(239), - [sym_labeled_statement] = STATE(239), - [sym_expression_statement] = STATE(239), - [sym_if_statement] = STATE(239), - [sym_switch_statement] = STATE(239), - [sym_case_statement] = STATE(239), - [sym_while_statement] = STATE(239), - [sym_do_statement] = STATE(239), - [sym_for_statement] = STATE(239), - [sym_return_statement] = STATE(239), - [sym_break_statement] = STATE(239), - [sym_continue_statement] = STATE(239), - [sym_goto_statement] = STATE(239), - [sym__expression] = STATE(1098), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1873), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(413), - [sym_identifier] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [370] = { + [sym_identifier] = ACTIONS(1408), + [aux_sym_preproc_include_token1] = ACTIONS(1408), + [aux_sym_preproc_def_token1] = ACTIONS(1408), + [aux_sym_preproc_if_token1] = ACTIONS(1408), + [aux_sym_preproc_if_token2] = ACTIONS(1408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1408), + [sym_preproc_directive] = ACTIONS(1408), + [anon_sym_LPAREN2] = ACTIONS(1410), + [anon_sym_BANG] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1410), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_STAR] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym___extension__] = ACTIONS(1408), + [anon_sym_typedef] = ACTIONS(1408), + [anon_sym_extern] = ACTIONS(1408), + [anon_sym___attribute__] = ACTIONS(1408), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1410), + [anon_sym___declspec] = ACTIONS(1408), + [anon_sym___cdecl] = ACTIONS(1408), + [anon_sym___clrcall] = ACTIONS(1408), + [anon_sym___stdcall] = ACTIONS(1408), + [anon_sym___fastcall] = ACTIONS(1408), + [anon_sym___thiscall] = ACTIONS(1408), + [anon_sym___vectorcall] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(1410), + [anon_sym_signed] = ACTIONS(1408), + [anon_sym_unsigned] = ACTIONS(1408), + [anon_sym_long] = ACTIONS(1408), + [anon_sym_short] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_auto] = ACTIONS(1408), + [anon_sym_register] = ACTIONS(1408), + [anon_sym_inline] = ACTIONS(1408), + [anon_sym___inline] = ACTIONS(1408), + [anon_sym___inline__] = ACTIONS(1408), + [anon_sym___forceinline] = ACTIONS(1408), + [anon_sym_thread_local] = ACTIONS(1408), + [anon_sym___thread] = ACTIONS(1408), + [anon_sym_const] = ACTIONS(1408), + [anon_sym_constexpr] = ACTIONS(1408), + [anon_sym_volatile] = ACTIONS(1408), + [anon_sym_restrict] = ACTIONS(1408), + [anon_sym___restrict__] = ACTIONS(1408), + [anon_sym__Atomic] = ACTIONS(1408), + [anon_sym__Noreturn] = ACTIONS(1408), + [anon_sym_noreturn] = ACTIONS(1408), + [sym_primitive_type] = ACTIONS(1408), + [anon_sym_enum] = ACTIONS(1408), + [anon_sym_struct] = ACTIONS(1408), + [anon_sym_union] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1408), + [anon_sym_else] = ACTIONS(1408), + [anon_sym_switch] = ACTIONS(1408), + [anon_sym_case] = ACTIONS(1408), + [anon_sym_default] = ACTIONS(1408), + [anon_sym_while] = ACTIONS(1408), + [anon_sym_do] = ACTIONS(1408), + [anon_sym_for] = ACTIONS(1408), + [anon_sym_return] = ACTIONS(1408), + [anon_sym_break] = ACTIONS(1408), + [anon_sym_continue] = ACTIONS(1408), + [anon_sym_goto] = ACTIONS(1408), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_sizeof] = ACTIONS(1408), + [anon_sym___alignof__] = ACTIONS(1408), + [anon_sym___alignof] = ACTIONS(1408), + [anon_sym__alignof] = ACTIONS(1408), + [anon_sym_alignof] = ACTIONS(1408), + [anon_sym__Alignof] = ACTIONS(1408), + [anon_sym_offsetof] = ACTIONS(1408), + [anon_sym___builtin_va_arg] = ACTIONS(1408), + [anon_sym__Generic] = ACTIONS(1408), + [anon_sym_asm] = ACTIONS(1408), + [anon_sym___asm__] = ACTIONS(1408), + [sym_number_literal] = ACTIONS(1410), + [anon_sym_L_SQUOTE] = ACTIONS(1410), + [anon_sym_u_SQUOTE] = ACTIONS(1410), + [anon_sym_U_SQUOTE] = ACTIONS(1410), + [anon_sym_u8_SQUOTE] = ACTIONS(1410), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_L_DQUOTE] = ACTIONS(1410), + [anon_sym_u_DQUOTE] = ACTIONS(1410), + [anon_sym_U_DQUOTE] = ACTIONS(1410), + [anon_sym_u8_DQUOTE] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1410), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [anon_sym_NULL] = ACTIONS(1408), + [anon_sym_nullptr] = ACTIONS(1408), [sym_comment] = ACTIONS(3), }, - [423] = { + [371] = { + [ts_builtin_sym_end] = ACTIONS(1366), [sym_identifier] = ACTIONS(1364), [aux_sym_preproc_include_token1] = ACTIONS(1364), [aux_sym_preproc_def_token1] = ACTIONS(1364), [aux_sym_preproc_if_token1] = ACTIONS(1364), - [aux_sym_preproc_if_token2] = ACTIONS(1364), [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), [sym_preproc_directive] = ACTIONS(1364), @@ -57172,6 +57404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1366), [anon_sym_AMP] = ACTIONS(1366), [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym___extension__] = ACTIONS(1364), [anon_sym_typedef] = ACTIONS(1364), [anon_sym_extern] = ACTIONS(1364), [anon_sym___attribute__] = ACTIONS(1364), @@ -57192,6 +57425,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1364), [anon_sym_register] = ACTIONS(1364), [anon_sym_inline] = ACTIONS(1364), + [anon_sym___inline] = ACTIONS(1364), + [anon_sym___inline__] = ACTIONS(1364), + [anon_sym___forceinline] = ACTIONS(1364), [anon_sym_thread_local] = ACTIONS(1364), [anon_sym___thread] = ACTIONS(1364), [anon_sym_const] = ACTIONS(1364), @@ -57207,6 +57443,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1364), [anon_sym_union] = ACTIONS(1364), [anon_sym_if] = ACTIONS(1364), + [anon_sym_else] = ACTIONS(1364), [anon_sym_switch] = ACTIONS(1364), [anon_sym_case] = ACTIONS(1364), [anon_sym_default] = ACTIONS(1364), @@ -57220,7 +57457,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1366), [anon_sym_PLUS_PLUS] = ACTIONS(1366), [anon_sym_sizeof] = ACTIONS(1364), + [anon_sym___alignof__] = ACTIONS(1364), + [anon_sym___alignof] = ACTIONS(1364), + [anon_sym__alignof] = ACTIONS(1364), + [anon_sym_alignof] = ACTIONS(1364), + [anon_sym__Alignof] = ACTIONS(1364), [anon_sym_offsetof] = ACTIONS(1364), + [anon_sym___builtin_va_arg] = ACTIONS(1364), [anon_sym__Generic] = ACTIONS(1364), [anon_sym_asm] = ACTIONS(1364), [anon_sym___asm__] = ACTIONS(1364), @@ -57241,523 +57484,1365 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1364), [sym_comment] = ACTIONS(3), }, - [424] = { - [sym_attribute_declaration] = STATE(439), - [sym_compound_statement] = STATE(227), - [sym_attributed_statement] = STATE(227), - [sym_labeled_statement] = STATE(227), - [sym_expression_statement] = STATE(227), - [sym_if_statement] = STATE(227), - [sym_switch_statement] = STATE(227), - [sym_case_statement] = STATE(227), - [sym_while_statement] = STATE(227), - [sym_do_statement] = STATE(227), - [sym_for_statement] = STATE(227), - [sym_return_statement] = STATE(227), - [sym_break_statement] = STATE(227), - [sym_continue_statement] = STATE(227), - [sym_goto_statement] = STATE(227), - [sym__expression] = STATE(1112), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [sym_identifier] = ACTIONS(1460), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(462), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [372] = { + [sym_identifier] = ACTIONS(1412), + [aux_sym_preproc_include_token1] = ACTIONS(1412), + [aux_sym_preproc_def_token1] = ACTIONS(1412), + [aux_sym_preproc_if_token1] = ACTIONS(1412), + [aux_sym_preproc_if_token2] = ACTIONS(1412), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1412), + [sym_preproc_directive] = ACTIONS(1412), + [anon_sym_LPAREN2] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1414), + [anon_sym_TILDE] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_AMP] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1414), + [anon_sym___extension__] = ACTIONS(1412), + [anon_sym_typedef] = ACTIONS(1412), + [anon_sym_extern] = ACTIONS(1412), + [anon_sym___attribute__] = ACTIONS(1412), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1414), + [anon_sym___declspec] = ACTIONS(1412), + [anon_sym___cdecl] = ACTIONS(1412), + [anon_sym___clrcall] = ACTIONS(1412), + [anon_sym___stdcall] = ACTIONS(1412), + [anon_sym___fastcall] = ACTIONS(1412), + [anon_sym___thiscall] = ACTIONS(1412), + [anon_sym___vectorcall] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_signed] = ACTIONS(1412), + [anon_sym_unsigned] = ACTIONS(1412), + [anon_sym_long] = ACTIONS(1412), + [anon_sym_short] = ACTIONS(1412), + [anon_sym_static] = ACTIONS(1412), + [anon_sym_auto] = ACTIONS(1412), + [anon_sym_register] = ACTIONS(1412), + [anon_sym_inline] = ACTIONS(1412), + [anon_sym___inline] = ACTIONS(1412), + [anon_sym___inline__] = ACTIONS(1412), + [anon_sym___forceinline] = ACTIONS(1412), + [anon_sym_thread_local] = ACTIONS(1412), + [anon_sym___thread] = ACTIONS(1412), + [anon_sym_const] = ACTIONS(1412), + [anon_sym_constexpr] = ACTIONS(1412), + [anon_sym_volatile] = ACTIONS(1412), + [anon_sym_restrict] = ACTIONS(1412), + [anon_sym___restrict__] = ACTIONS(1412), + [anon_sym__Atomic] = ACTIONS(1412), + [anon_sym__Noreturn] = ACTIONS(1412), + [anon_sym_noreturn] = ACTIONS(1412), + [sym_primitive_type] = ACTIONS(1412), + [anon_sym_enum] = ACTIONS(1412), + [anon_sym_struct] = ACTIONS(1412), + [anon_sym_union] = ACTIONS(1412), + [anon_sym_if] = ACTIONS(1412), + [anon_sym_else] = ACTIONS(1412), + [anon_sym_switch] = ACTIONS(1412), + [anon_sym_case] = ACTIONS(1412), + [anon_sym_default] = ACTIONS(1412), + [anon_sym_while] = ACTIONS(1412), + [anon_sym_do] = ACTIONS(1412), + [anon_sym_for] = ACTIONS(1412), + [anon_sym_return] = ACTIONS(1412), + [anon_sym_break] = ACTIONS(1412), + [anon_sym_continue] = ACTIONS(1412), + [anon_sym_goto] = ACTIONS(1412), + [anon_sym_DASH_DASH] = ACTIONS(1414), + [anon_sym_PLUS_PLUS] = ACTIONS(1414), + [anon_sym_sizeof] = ACTIONS(1412), + [anon_sym___alignof__] = ACTIONS(1412), + [anon_sym___alignof] = ACTIONS(1412), + [anon_sym__alignof] = ACTIONS(1412), + [anon_sym_alignof] = ACTIONS(1412), + [anon_sym__Alignof] = ACTIONS(1412), + [anon_sym_offsetof] = ACTIONS(1412), + [anon_sym___builtin_va_arg] = ACTIONS(1412), + [anon_sym__Generic] = ACTIONS(1412), + [anon_sym_asm] = ACTIONS(1412), + [anon_sym___asm__] = ACTIONS(1412), + [sym_number_literal] = ACTIONS(1414), + [anon_sym_L_SQUOTE] = ACTIONS(1414), + [anon_sym_u_SQUOTE] = ACTIONS(1414), + [anon_sym_U_SQUOTE] = ACTIONS(1414), + [anon_sym_u8_SQUOTE] = ACTIONS(1414), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_L_DQUOTE] = ACTIONS(1414), + [anon_sym_u_DQUOTE] = ACTIONS(1414), + [anon_sym_U_DQUOTE] = ACTIONS(1414), + [anon_sym_u8_DQUOTE] = ACTIONS(1414), + [anon_sym_DQUOTE] = ACTIONS(1414), + [sym_true] = ACTIONS(1412), + [sym_false] = ACTIONS(1412), + [anon_sym_NULL] = ACTIONS(1412), + [anon_sym_nullptr] = ACTIONS(1412), [sym_comment] = ACTIONS(3), }, - [425] = { - [sym_attribute_declaration] = STATE(439), - [sym_compound_statement] = STATE(226), - [sym_attributed_statement] = STATE(226), - [sym_labeled_statement] = STATE(226), - [sym_expression_statement] = STATE(226), - [sym_if_statement] = STATE(226), - [sym_switch_statement] = STATE(226), - [sym_case_statement] = STATE(226), - [sym_while_statement] = STATE(226), - [sym_do_statement] = STATE(226), - [sym_for_statement] = STATE(226), - [sym_return_statement] = STATE(226), - [sym_break_statement] = STATE(226), - [sym_continue_statement] = STATE(226), - [sym_goto_statement] = STATE(226), - [sym__expression] = STATE(1112), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [sym_identifier] = ACTIONS(1460), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(462), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [373] = { + [sym_identifier] = ACTIONS(1416), + [aux_sym_preproc_include_token1] = ACTIONS(1416), + [aux_sym_preproc_def_token1] = ACTIONS(1416), + [aux_sym_preproc_if_token1] = ACTIONS(1416), + [aux_sym_preproc_if_token2] = ACTIONS(1416), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1416), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1416), + [sym_preproc_directive] = ACTIONS(1416), + [anon_sym_LPAREN2] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(1416), + [anon_sym_typedef] = ACTIONS(1416), + [anon_sym_extern] = ACTIONS(1416), + [anon_sym___attribute__] = ACTIONS(1416), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), + [anon_sym___declspec] = ACTIONS(1416), + [anon_sym___cdecl] = ACTIONS(1416), + [anon_sym___clrcall] = ACTIONS(1416), + [anon_sym___stdcall] = ACTIONS(1416), + [anon_sym___fastcall] = ACTIONS(1416), + [anon_sym___thiscall] = ACTIONS(1416), + [anon_sym___vectorcall] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_signed] = ACTIONS(1416), + [anon_sym_unsigned] = ACTIONS(1416), + [anon_sym_long] = ACTIONS(1416), + [anon_sym_short] = ACTIONS(1416), + [anon_sym_static] = ACTIONS(1416), + [anon_sym_auto] = ACTIONS(1416), + [anon_sym_register] = ACTIONS(1416), + [anon_sym_inline] = ACTIONS(1416), + [anon_sym___inline] = ACTIONS(1416), + [anon_sym___inline__] = ACTIONS(1416), + [anon_sym___forceinline] = ACTIONS(1416), + [anon_sym_thread_local] = ACTIONS(1416), + [anon_sym___thread] = ACTIONS(1416), + [anon_sym_const] = ACTIONS(1416), + [anon_sym_constexpr] = ACTIONS(1416), + [anon_sym_volatile] = ACTIONS(1416), + [anon_sym_restrict] = ACTIONS(1416), + [anon_sym___restrict__] = ACTIONS(1416), + [anon_sym__Atomic] = ACTIONS(1416), + [anon_sym__Noreturn] = ACTIONS(1416), + [anon_sym_noreturn] = ACTIONS(1416), + [sym_primitive_type] = ACTIONS(1416), + [anon_sym_enum] = ACTIONS(1416), + [anon_sym_struct] = ACTIONS(1416), + [anon_sym_union] = ACTIONS(1416), + [anon_sym_if] = ACTIONS(1416), + [anon_sym_else] = ACTIONS(1416), + [anon_sym_switch] = ACTIONS(1416), + [anon_sym_case] = ACTIONS(1416), + [anon_sym_default] = ACTIONS(1416), + [anon_sym_while] = ACTIONS(1416), + [anon_sym_do] = ACTIONS(1416), + [anon_sym_for] = ACTIONS(1416), + [anon_sym_return] = ACTIONS(1416), + [anon_sym_break] = ACTIONS(1416), + [anon_sym_continue] = ACTIONS(1416), + [anon_sym_goto] = ACTIONS(1416), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_sizeof] = ACTIONS(1416), + [anon_sym___alignof__] = ACTIONS(1416), + [anon_sym___alignof] = ACTIONS(1416), + [anon_sym__alignof] = ACTIONS(1416), + [anon_sym_alignof] = ACTIONS(1416), + [anon_sym__Alignof] = ACTIONS(1416), + [anon_sym_offsetof] = ACTIONS(1416), + [anon_sym___builtin_va_arg] = ACTIONS(1416), + [anon_sym__Generic] = ACTIONS(1416), + [anon_sym_asm] = ACTIONS(1416), + [anon_sym___asm__] = ACTIONS(1416), + [sym_number_literal] = ACTIONS(1418), + [anon_sym_L_SQUOTE] = ACTIONS(1418), + [anon_sym_u_SQUOTE] = ACTIONS(1418), + [anon_sym_U_SQUOTE] = ACTIONS(1418), + [anon_sym_u8_SQUOTE] = ACTIONS(1418), + [anon_sym_SQUOTE] = ACTIONS(1418), + [anon_sym_L_DQUOTE] = ACTIONS(1418), + [anon_sym_u_DQUOTE] = ACTIONS(1418), + [anon_sym_U_DQUOTE] = ACTIONS(1418), + [anon_sym_u8_DQUOTE] = ACTIONS(1418), + [anon_sym_DQUOTE] = ACTIONS(1418), + [sym_true] = ACTIONS(1416), + [sym_false] = ACTIONS(1416), + [anon_sym_NULL] = ACTIONS(1416), + [anon_sym_nullptr] = ACTIONS(1416), [sym_comment] = ACTIONS(3), }, - [426] = { - [sym_identifier] = ACTIONS(1372), - [aux_sym_preproc_include_token1] = ACTIONS(1372), - [aux_sym_preproc_def_token1] = ACTIONS(1372), - [aux_sym_preproc_if_token1] = ACTIONS(1372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), - [sym_preproc_directive] = ACTIONS(1372), - [anon_sym_LPAREN2] = ACTIONS(1374), - [anon_sym_BANG] = ACTIONS(1374), - [anon_sym_TILDE] = ACTIONS(1374), - [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_PLUS] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1374), - [anon_sym_AMP] = ACTIONS(1374), - [anon_sym_SEMI] = ACTIONS(1374), - [anon_sym_typedef] = ACTIONS(1372), - [anon_sym_extern] = ACTIONS(1372), - [anon_sym___attribute__] = ACTIONS(1372), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym___declspec] = ACTIONS(1372), - [anon_sym___cdecl] = ACTIONS(1372), - [anon_sym___clrcall] = ACTIONS(1372), - [anon_sym___stdcall] = ACTIONS(1372), - [anon_sym___fastcall] = ACTIONS(1372), - [anon_sym___thiscall] = ACTIONS(1372), - [anon_sym___vectorcall] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_RBRACE] = ACTIONS(1374), - [anon_sym_signed] = ACTIONS(1372), - [anon_sym_unsigned] = ACTIONS(1372), - [anon_sym_long] = ACTIONS(1372), - [anon_sym_short] = ACTIONS(1372), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_auto] = ACTIONS(1372), - [anon_sym_register] = ACTIONS(1372), - [anon_sym_inline] = ACTIONS(1372), - [anon_sym_thread_local] = ACTIONS(1372), - [anon_sym___thread] = ACTIONS(1372), - [anon_sym_const] = ACTIONS(1372), - [anon_sym_constexpr] = ACTIONS(1372), - [anon_sym_volatile] = ACTIONS(1372), - [anon_sym_restrict] = ACTIONS(1372), - [anon_sym___restrict__] = ACTIONS(1372), - [anon_sym__Atomic] = ACTIONS(1372), - [anon_sym__Noreturn] = ACTIONS(1372), - [anon_sym_noreturn] = ACTIONS(1372), - [sym_primitive_type] = ACTIONS(1372), - [anon_sym_enum] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1372), - [anon_sym_union] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1372), - [anon_sym_switch] = ACTIONS(1372), - [anon_sym_case] = ACTIONS(1372), - [anon_sym_default] = ACTIONS(1372), - [anon_sym_while] = ACTIONS(1372), - [anon_sym_do] = ACTIONS(1372), - [anon_sym_for] = ACTIONS(1372), - [anon_sym_return] = ACTIONS(1372), - [anon_sym_break] = ACTIONS(1372), - [anon_sym_continue] = ACTIONS(1372), - [anon_sym_goto] = ACTIONS(1372), - [anon_sym_DASH_DASH] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1374), - [anon_sym_sizeof] = ACTIONS(1372), - [anon_sym_offsetof] = ACTIONS(1372), - [anon_sym__Generic] = ACTIONS(1372), - [anon_sym_asm] = ACTIONS(1372), - [anon_sym___asm__] = ACTIONS(1372), - [sym_number_literal] = ACTIONS(1374), - [anon_sym_L_SQUOTE] = ACTIONS(1374), - [anon_sym_u_SQUOTE] = ACTIONS(1374), - [anon_sym_U_SQUOTE] = ACTIONS(1374), - [anon_sym_u8_SQUOTE] = ACTIONS(1374), - [anon_sym_SQUOTE] = ACTIONS(1374), - [anon_sym_L_DQUOTE] = ACTIONS(1374), - [anon_sym_u_DQUOTE] = ACTIONS(1374), - [anon_sym_U_DQUOTE] = ACTIONS(1374), - [anon_sym_u8_DQUOTE] = ACTIONS(1374), - [anon_sym_DQUOTE] = ACTIONS(1374), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [anon_sym_NULL] = ACTIONS(1372), - [anon_sym_nullptr] = ACTIONS(1372), + [374] = { + [sym_identifier] = ACTIONS(1396), + [aux_sym_preproc_include_token1] = ACTIONS(1396), + [aux_sym_preproc_def_token1] = ACTIONS(1396), + [aux_sym_preproc_if_token1] = ACTIONS(1396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1396), + [anon_sym_LPAREN2] = ACTIONS(1398), + [anon_sym_BANG] = ACTIONS(1398), + [anon_sym_TILDE] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_PLUS] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym___extension__] = ACTIONS(1396), + [anon_sym_typedef] = ACTIONS(1396), + [anon_sym_extern] = ACTIONS(1396), + [anon_sym___attribute__] = ACTIONS(1396), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1398), + [anon_sym___declspec] = ACTIONS(1396), + [anon_sym___cdecl] = ACTIONS(1396), + [anon_sym___clrcall] = ACTIONS(1396), + [anon_sym___stdcall] = ACTIONS(1396), + [anon_sym___fastcall] = ACTIONS(1396), + [anon_sym___thiscall] = ACTIONS(1396), + [anon_sym___vectorcall] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(1398), + [anon_sym_RBRACE] = ACTIONS(1398), + [anon_sym_signed] = ACTIONS(1396), + [anon_sym_unsigned] = ACTIONS(1396), + [anon_sym_long] = ACTIONS(1396), + [anon_sym_short] = ACTIONS(1396), + [anon_sym_static] = ACTIONS(1396), + [anon_sym_auto] = ACTIONS(1396), + [anon_sym_register] = ACTIONS(1396), + [anon_sym_inline] = ACTIONS(1396), + [anon_sym___inline] = ACTIONS(1396), + [anon_sym___inline__] = ACTIONS(1396), + [anon_sym___forceinline] = ACTIONS(1396), + [anon_sym_thread_local] = ACTIONS(1396), + [anon_sym___thread] = ACTIONS(1396), + [anon_sym_const] = ACTIONS(1396), + [anon_sym_constexpr] = ACTIONS(1396), + [anon_sym_volatile] = ACTIONS(1396), + [anon_sym_restrict] = ACTIONS(1396), + [anon_sym___restrict__] = ACTIONS(1396), + [anon_sym__Atomic] = ACTIONS(1396), + [anon_sym__Noreturn] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [sym_primitive_type] = ACTIONS(1396), + [anon_sym_enum] = ACTIONS(1396), + [anon_sym_struct] = ACTIONS(1396), + [anon_sym_union] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1396), + [anon_sym_else] = ACTIONS(1396), + [anon_sym_switch] = ACTIONS(1396), + [anon_sym_case] = ACTIONS(1396), + [anon_sym_default] = ACTIONS(1396), + [anon_sym_while] = ACTIONS(1396), + [anon_sym_do] = ACTIONS(1396), + [anon_sym_for] = ACTIONS(1396), + [anon_sym_return] = ACTIONS(1396), + [anon_sym_break] = ACTIONS(1396), + [anon_sym_continue] = ACTIONS(1396), + [anon_sym_goto] = ACTIONS(1396), + [anon_sym_DASH_DASH] = ACTIONS(1398), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_sizeof] = ACTIONS(1396), + [anon_sym___alignof__] = ACTIONS(1396), + [anon_sym___alignof] = ACTIONS(1396), + [anon_sym__alignof] = ACTIONS(1396), + [anon_sym_alignof] = ACTIONS(1396), + [anon_sym__Alignof] = ACTIONS(1396), + [anon_sym_offsetof] = ACTIONS(1396), + [anon_sym___builtin_va_arg] = ACTIONS(1396), + [anon_sym__Generic] = ACTIONS(1396), + [anon_sym_asm] = ACTIONS(1396), + [anon_sym___asm__] = ACTIONS(1396), + [sym_number_literal] = ACTIONS(1398), + [anon_sym_L_SQUOTE] = ACTIONS(1398), + [anon_sym_u_SQUOTE] = ACTIONS(1398), + [anon_sym_U_SQUOTE] = ACTIONS(1398), + [anon_sym_u8_SQUOTE] = ACTIONS(1398), + [anon_sym_SQUOTE] = ACTIONS(1398), + [anon_sym_L_DQUOTE] = ACTIONS(1398), + [anon_sym_u_DQUOTE] = ACTIONS(1398), + [anon_sym_U_DQUOTE] = ACTIONS(1398), + [anon_sym_u8_DQUOTE] = ACTIONS(1398), + [anon_sym_DQUOTE] = ACTIONS(1398), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [anon_sym_NULL] = ACTIONS(1396), + [anon_sym_nullptr] = ACTIONS(1396), [sym_comment] = ACTIONS(3), }, - [427] = { - [sym_attribute_declaration] = STATE(439), - [sym_compound_statement] = STATE(343), - [sym_attributed_statement] = STATE(343), - [sym_labeled_statement] = STATE(343), - [sym_expression_statement] = STATE(343), - [sym_if_statement] = STATE(343), - [sym_switch_statement] = STATE(343), - [sym_case_statement] = STATE(343), - [sym_while_statement] = STATE(343), - [sym_do_statement] = STATE(343), - [sym_for_statement] = STATE(343), - [sym_return_statement] = STATE(343), - [sym_break_statement] = STATE(343), - [sym_continue_statement] = STATE(343), - [sym_goto_statement] = STATE(343), - [sym__expression] = STATE(1112), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [sym_identifier] = ACTIONS(1460), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(462), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [375] = { + [sym_identifier] = ACTIONS(1420), + [aux_sym_preproc_include_token1] = ACTIONS(1420), + [aux_sym_preproc_def_token1] = ACTIONS(1420), + [aux_sym_preproc_if_token1] = ACTIONS(1420), + [aux_sym_preproc_if_token2] = ACTIONS(1420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1420), + [sym_preproc_directive] = ACTIONS(1420), + [anon_sym_LPAREN2] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_DASH] = ACTIONS(1420), + [anon_sym_PLUS] = ACTIONS(1420), + [anon_sym_STAR] = ACTIONS(1422), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_SEMI] = ACTIONS(1422), + [anon_sym___extension__] = ACTIONS(1420), + [anon_sym_typedef] = ACTIONS(1420), + [anon_sym_extern] = ACTIONS(1420), + [anon_sym___attribute__] = ACTIONS(1420), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1422), + [anon_sym___declspec] = ACTIONS(1420), + [anon_sym___cdecl] = ACTIONS(1420), + [anon_sym___clrcall] = ACTIONS(1420), + [anon_sym___stdcall] = ACTIONS(1420), + [anon_sym___fastcall] = ACTIONS(1420), + [anon_sym___thiscall] = ACTIONS(1420), + [anon_sym___vectorcall] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1422), + [anon_sym_signed] = ACTIONS(1420), + [anon_sym_unsigned] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_static] = ACTIONS(1420), + [anon_sym_auto] = ACTIONS(1420), + [anon_sym_register] = ACTIONS(1420), + [anon_sym_inline] = ACTIONS(1420), + [anon_sym___inline] = ACTIONS(1420), + [anon_sym___inline__] = ACTIONS(1420), + [anon_sym___forceinline] = ACTIONS(1420), + [anon_sym_thread_local] = ACTIONS(1420), + [anon_sym___thread] = ACTIONS(1420), + [anon_sym_const] = ACTIONS(1420), + [anon_sym_constexpr] = ACTIONS(1420), + [anon_sym_volatile] = ACTIONS(1420), + [anon_sym_restrict] = ACTIONS(1420), + [anon_sym___restrict__] = ACTIONS(1420), + [anon_sym__Atomic] = ACTIONS(1420), + [anon_sym__Noreturn] = ACTIONS(1420), + [anon_sym_noreturn] = ACTIONS(1420), + [sym_primitive_type] = ACTIONS(1420), + [anon_sym_enum] = ACTIONS(1420), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_union] = ACTIONS(1420), + [anon_sym_if] = ACTIONS(1420), + [anon_sym_else] = ACTIONS(1420), + [anon_sym_switch] = ACTIONS(1420), + [anon_sym_case] = ACTIONS(1420), + [anon_sym_default] = ACTIONS(1420), + [anon_sym_while] = ACTIONS(1420), + [anon_sym_do] = ACTIONS(1420), + [anon_sym_for] = ACTIONS(1420), + [anon_sym_return] = ACTIONS(1420), + [anon_sym_break] = ACTIONS(1420), + [anon_sym_continue] = ACTIONS(1420), + [anon_sym_goto] = ACTIONS(1420), + [anon_sym_DASH_DASH] = ACTIONS(1422), + [anon_sym_PLUS_PLUS] = ACTIONS(1422), + [anon_sym_sizeof] = ACTIONS(1420), + [anon_sym___alignof__] = ACTIONS(1420), + [anon_sym___alignof] = ACTIONS(1420), + [anon_sym__alignof] = ACTIONS(1420), + [anon_sym_alignof] = ACTIONS(1420), + [anon_sym__Alignof] = ACTIONS(1420), + [anon_sym_offsetof] = ACTIONS(1420), + [anon_sym___builtin_va_arg] = ACTIONS(1420), + [anon_sym__Generic] = ACTIONS(1420), + [anon_sym_asm] = ACTIONS(1420), + [anon_sym___asm__] = ACTIONS(1420), + [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(1420), + [sym_false] = ACTIONS(1420), + [anon_sym_NULL] = ACTIONS(1420), + [anon_sym_nullptr] = ACTIONS(1420), [sym_comment] = ACTIONS(3), }, - [428] = { - [sym_attribute_declaration] = STATE(439), - [sym_compound_statement] = STATE(265), - [sym_attributed_statement] = STATE(265), - [sym_labeled_statement] = STATE(265), - [sym_expression_statement] = STATE(265), - [sym_if_statement] = STATE(265), - [sym_switch_statement] = STATE(265), - [sym_case_statement] = STATE(265), - [sym_while_statement] = STATE(265), - [sym_do_statement] = STATE(265), - [sym_for_statement] = STATE(265), - [sym_return_statement] = STATE(265), - [sym_break_statement] = STATE(265), - [sym_continue_statement] = STATE(265), - [sym_goto_statement] = STATE(265), - [sym__expression] = STATE(1112), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [sym_identifier] = ACTIONS(1460), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(462), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [376] = { + [sym_identifier] = ACTIONS(1424), + [aux_sym_preproc_include_token1] = ACTIONS(1424), + [aux_sym_preproc_def_token1] = ACTIONS(1424), + [aux_sym_preproc_if_token1] = ACTIONS(1424), + [aux_sym_preproc_if_token2] = ACTIONS(1424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), + [sym_preproc_directive] = ACTIONS(1424), + [anon_sym_LPAREN2] = ACTIONS(1426), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym___extension__] = ACTIONS(1424), + [anon_sym_typedef] = ACTIONS(1424), + [anon_sym_extern] = ACTIONS(1424), + [anon_sym___attribute__] = ACTIONS(1424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1426), + [anon_sym___declspec] = ACTIONS(1424), + [anon_sym___cdecl] = ACTIONS(1424), + [anon_sym___clrcall] = ACTIONS(1424), + [anon_sym___stdcall] = ACTIONS(1424), + [anon_sym___fastcall] = ACTIONS(1424), + [anon_sym___thiscall] = ACTIONS(1424), + [anon_sym___vectorcall] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_signed] = ACTIONS(1424), + [anon_sym_unsigned] = ACTIONS(1424), + [anon_sym_long] = ACTIONS(1424), + [anon_sym_short] = ACTIONS(1424), + [anon_sym_static] = ACTIONS(1424), + [anon_sym_auto] = ACTIONS(1424), + [anon_sym_register] = ACTIONS(1424), + [anon_sym_inline] = ACTIONS(1424), + [anon_sym___inline] = ACTIONS(1424), + [anon_sym___inline__] = ACTIONS(1424), + [anon_sym___forceinline] = ACTIONS(1424), + [anon_sym_thread_local] = ACTIONS(1424), + [anon_sym___thread] = ACTIONS(1424), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_constexpr] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_restrict] = ACTIONS(1424), + [anon_sym___restrict__] = ACTIONS(1424), + [anon_sym__Atomic] = ACTIONS(1424), + [anon_sym__Noreturn] = ACTIONS(1424), + [anon_sym_noreturn] = ACTIONS(1424), + [sym_primitive_type] = ACTIONS(1424), + [anon_sym_enum] = ACTIONS(1424), + [anon_sym_struct] = ACTIONS(1424), + [anon_sym_union] = ACTIONS(1424), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_else] = ACTIONS(1424), + [anon_sym_switch] = ACTIONS(1424), + [anon_sym_case] = ACTIONS(1424), + [anon_sym_default] = ACTIONS(1424), + [anon_sym_while] = ACTIONS(1424), + [anon_sym_do] = ACTIONS(1424), + [anon_sym_for] = ACTIONS(1424), + [anon_sym_return] = ACTIONS(1424), + [anon_sym_break] = ACTIONS(1424), + [anon_sym_continue] = ACTIONS(1424), + [anon_sym_goto] = ACTIONS(1424), + [anon_sym_DASH_DASH] = ACTIONS(1426), + [anon_sym_PLUS_PLUS] = ACTIONS(1426), + [anon_sym_sizeof] = ACTIONS(1424), + [anon_sym___alignof__] = ACTIONS(1424), + [anon_sym___alignof] = ACTIONS(1424), + [anon_sym__alignof] = ACTIONS(1424), + [anon_sym_alignof] = ACTIONS(1424), + [anon_sym__Alignof] = ACTIONS(1424), + [anon_sym_offsetof] = ACTIONS(1424), + [anon_sym___builtin_va_arg] = ACTIONS(1424), + [anon_sym__Generic] = ACTIONS(1424), + [anon_sym_asm] = ACTIONS(1424), + [anon_sym___asm__] = ACTIONS(1424), + [sym_number_literal] = ACTIONS(1426), + [anon_sym_L_SQUOTE] = ACTIONS(1426), + [anon_sym_u_SQUOTE] = ACTIONS(1426), + [anon_sym_U_SQUOTE] = ACTIONS(1426), + [anon_sym_u8_SQUOTE] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1426), + [anon_sym_L_DQUOTE] = ACTIONS(1426), + [anon_sym_u_DQUOTE] = ACTIONS(1426), + [anon_sym_U_DQUOTE] = ACTIONS(1426), + [anon_sym_u8_DQUOTE] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [sym_true] = ACTIONS(1424), + [sym_false] = ACTIONS(1424), + [anon_sym_NULL] = ACTIONS(1424), + [anon_sym_nullptr] = ACTIONS(1424), [sym_comment] = ACTIONS(3), }, - [429] = { - [sym_attribute_declaration] = STATE(439), - [sym_compound_statement] = STATE(267), - [sym_attributed_statement] = STATE(267), - [sym_labeled_statement] = STATE(267), - [sym_expression_statement] = STATE(267), - [sym_if_statement] = STATE(267), - [sym_switch_statement] = STATE(267), - [sym_case_statement] = STATE(267), - [sym_while_statement] = STATE(267), - [sym_do_statement] = STATE(267), - [sym_for_statement] = STATE(267), - [sym_return_statement] = STATE(267), - [sym_break_statement] = STATE(267), - [sym_continue_statement] = STATE(267), - [sym_goto_statement] = STATE(267), - [sym__expression] = STATE(1112), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(439), + [377] = { + [sym_identifier] = ACTIONS(1428), + [aux_sym_preproc_include_token1] = ACTIONS(1428), + [aux_sym_preproc_def_token1] = ACTIONS(1428), + [aux_sym_preproc_if_token1] = ACTIONS(1428), + [aux_sym_preproc_if_token2] = ACTIONS(1428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1428), + [sym_preproc_directive] = ACTIONS(1428), + [anon_sym_LPAREN2] = ACTIONS(1430), + [anon_sym_BANG] = ACTIONS(1430), + [anon_sym_TILDE] = ACTIONS(1430), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym___extension__] = ACTIONS(1428), + [anon_sym_typedef] = ACTIONS(1428), + [anon_sym_extern] = ACTIONS(1428), + [anon_sym___attribute__] = ACTIONS(1428), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1430), + [anon_sym___declspec] = ACTIONS(1428), + [anon_sym___cdecl] = ACTIONS(1428), + [anon_sym___clrcall] = ACTIONS(1428), + [anon_sym___stdcall] = ACTIONS(1428), + [anon_sym___fastcall] = ACTIONS(1428), + [anon_sym___thiscall] = ACTIONS(1428), + [anon_sym___vectorcall] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_signed] = ACTIONS(1428), + [anon_sym_unsigned] = ACTIONS(1428), + [anon_sym_long] = ACTIONS(1428), + [anon_sym_short] = ACTIONS(1428), + [anon_sym_static] = ACTIONS(1428), + [anon_sym_auto] = ACTIONS(1428), + [anon_sym_register] = ACTIONS(1428), + [anon_sym_inline] = ACTIONS(1428), + [anon_sym___inline] = ACTIONS(1428), + [anon_sym___inline__] = ACTIONS(1428), + [anon_sym___forceinline] = ACTIONS(1428), + [anon_sym_thread_local] = ACTIONS(1428), + [anon_sym___thread] = ACTIONS(1428), + [anon_sym_const] = ACTIONS(1428), + [anon_sym_constexpr] = ACTIONS(1428), + [anon_sym_volatile] = ACTIONS(1428), + [anon_sym_restrict] = ACTIONS(1428), + [anon_sym___restrict__] = ACTIONS(1428), + [anon_sym__Atomic] = ACTIONS(1428), + [anon_sym__Noreturn] = ACTIONS(1428), + [anon_sym_noreturn] = ACTIONS(1428), + [sym_primitive_type] = ACTIONS(1428), + [anon_sym_enum] = ACTIONS(1428), + [anon_sym_struct] = ACTIONS(1428), + [anon_sym_union] = ACTIONS(1428), + [anon_sym_if] = ACTIONS(1428), + [anon_sym_else] = ACTIONS(1428), + [anon_sym_switch] = ACTIONS(1428), + [anon_sym_case] = ACTIONS(1428), + [anon_sym_default] = ACTIONS(1428), + [anon_sym_while] = ACTIONS(1428), + [anon_sym_do] = ACTIONS(1428), + [anon_sym_for] = ACTIONS(1428), + [anon_sym_return] = ACTIONS(1428), + [anon_sym_break] = ACTIONS(1428), + [anon_sym_continue] = ACTIONS(1428), + [anon_sym_goto] = ACTIONS(1428), + [anon_sym_DASH_DASH] = ACTIONS(1430), + [anon_sym_PLUS_PLUS] = ACTIONS(1430), + [anon_sym_sizeof] = ACTIONS(1428), + [anon_sym___alignof__] = ACTIONS(1428), + [anon_sym___alignof] = ACTIONS(1428), + [anon_sym__alignof] = ACTIONS(1428), + [anon_sym_alignof] = ACTIONS(1428), + [anon_sym__Alignof] = ACTIONS(1428), + [anon_sym_offsetof] = ACTIONS(1428), + [anon_sym___builtin_va_arg] = ACTIONS(1428), + [anon_sym__Generic] = ACTIONS(1428), + [anon_sym_asm] = ACTIONS(1428), + [anon_sym___asm__] = ACTIONS(1428), + [sym_number_literal] = ACTIONS(1430), + [anon_sym_L_SQUOTE] = ACTIONS(1430), + [anon_sym_u_SQUOTE] = ACTIONS(1430), + [anon_sym_U_SQUOTE] = ACTIONS(1430), + [anon_sym_u8_SQUOTE] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(1430), + [anon_sym_L_DQUOTE] = ACTIONS(1430), + [anon_sym_u_DQUOTE] = ACTIONS(1430), + [anon_sym_U_DQUOTE] = ACTIONS(1430), + [anon_sym_u8_DQUOTE] = ACTIONS(1430), + [anon_sym_DQUOTE] = ACTIONS(1430), + [sym_true] = ACTIONS(1428), + [sym_false] = ACTIONS(1428), + [anon_sym_NULL] = ACTIONS(1428), + [anon_sym_nullptr] = ACTIONS(1428), + [sym_comment] = ACTIONS(3), + }, + [378] = { + [sym_identifier] = ACTIONS(1432), + [aux_sym_preproc_include_token1] = ACTIONS(1432), + [aux_sym_preproc_def_token1] = ACTIONS(1432), + [aux_sym_preproc_if_token1] = ACTIONS(1432), + [aux_sym_preproc_if_token2] = ACTIONS(1432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), + [sym_preproc_directive] = ACTIONS(1432), + [anon_sym_LPAREN2] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym___extension__] = ACTIONS(1432), + [anon_sym_typedef] = ACTIONS(1432), + [anon_sym_extern] = ACTIONS(1432), + [anon_sym___attribute__] = ACTIONS(1432), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1434), + [anon_sym___declspec] = ACTIONS(1432), + [anon_sym___cdecl] = ACTIONS(1432), + [anon_sym___clrcall] = ACTIONS(1432), + [anon_sym___stdcall] = ACTIONS(1432), + [anon_sym___fastcall] = ACTIONS(1432), + [anon_sym___thiscall] = ACTIONS(1432), + [anon_sym___vectorcall] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_signed] = ACTIONS(1432), + [anon_sym_unsigned] = ACTIONS(1432), + [anon_sym_long] = ACTIONS(1432), + [anon_sym_short] = ACTIONS(1432), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_auto] = ACTIONS(1432), + [anon_sym_register] = ACTIONS(1432), + [anon_sym_inline] = ACTIONS(1432), + [anon_sym___inline] = ACTIONS(1432), + [anon_sym___inline__] = ACTIONS(1432), + [anon_sym___forceinline] = ACTIONS(1432), + [anon_sym_thread_local] = ACTIONS(1432), + [anon_sym___thread] = ACTIONS(1432), + [anon_sym_const] = ACTIONS(1432), + [anon_sym_constexpr] = ACTIONS(1432), + [anon_sym_volatile] = ACTIONS(1432), + [anon_sym_restrict] = ACTIONS(1432), + [anon_sym___restrict__] = ACTIONS(1432), + [anon_sym__Atomic] = ACTIONS(1432), + [anon_sym__Noreturn] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [sym_primitive_type] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [anon_sym_struct] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(1432), + [anon_sym_switch] = ACTIONS(1432), + [anon_sym_case] = ACTIONS(1432), + [anon_sym_default] = ACTIONS(1432), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_do] = ACTIONS(1432), + [anon_sym_for] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_break] = ACTIONS(1432), + [anon_sym_continue] = ACTIONS(1432), + [anon_sym_goto] = ACTIONS(1432), + [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_PLUS_PLUS] = ACTIONS(1434), + [anon_sym_sizeof] = ACTIONS(1432), + [anon_sym___alignof__] = ACTIONS(1432), + [anon_sym___alignof] = ACTIONS(1432), + [anon_sym__alignof] = ACTIONS(1432), + [anon_sym_alignof] = ACTIONS(1432), + [anon_sym__Alignof] = ACTIONS(1432), + [anon_sym_offsetof] = ACTIONS(1432), + [anon_sym___builtin_va_arg] = ACTIONS(1432), + [anon_sym__Generic] = ACTIONS(1432), + [anon_sym_asm] = ACTIONS(1432), + [anon_sym___asm__] = ACTIONS(1432), + [sym_number_literal] = ACTIONS(1434), + [anon_sym_L_SQUOTE] = ACTIONS(1434), + [anon_sym_u_SQUOTE] = ACTIONS(1434), + [anon_sym_U_SQUOTE] = ACTIONS(1434), + [anon_sym_u8_SQUOTE] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(1434), + [anon_sym_L_DQUOTE] = ACTIONS(1434), + [anon_sym_u_DQUOTE] = ACTIONS(1434), + [anon_sym_U_DQUOTE] = ACTIONS(1434), + [anon_sym_u8_DQUOTE] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(1434), + [sym_true] = ACTIONS(1432), + [sym_false] = ACTIONS(1432), + [anon_sym_NULL] = ACTIONS(1432), + [anon_sym_nullptr] = ACTIONS(1432), + [sym_comment] = ACTIONS(3), + }, + [379] = { + [sym_identifier] = ACTIONS(1436), + [aux_sym_preproc_include_token1] = ACTIONS(1436), + [aux_sym_preproc_def_token1] = ACTIONS(1436), + [aux_sym_preproc_if_token1] = ACTIONS(1436), + [aux_sym_preproc_if_token2] = ACTIONS(1436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1436), + [sym_preproc_directive] = ACTIONS(1436), + [anon_sym_LPAREN2] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym___extension__] = ACTIONS(1436), + [anon_sym_typedef] = ACTIONS(1436), + [anon_sym_extern] = ACTIONS(1436), + [anon_sym___attribute__] = ACTIONS(1436), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1438), + [anon_sym___declspec] = ACTIONS(1436), + [anon_sym___cdecl] = ACTIONS(1436), + [anon_sym___clrcall] = ACTIONS(1436), + [anon_sym___stdcall] = ACTIONS(1436), + [anon_sym___fastcall] = ACTIONS(1436), + [anon_sym___thiscall] = ACTIONS(1436), + [anon_sym___vectorcall] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_signed] = ACTIONS(1436), + [anon_sym_unsigned] = ACTIONS(1436), + [anon_sym_long] = ACTIONS(1436), + [anon_sym_short] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_auto] = ACTIONS(1436), + [anon_sym_register] = ACTIONS(1436), + [anon_sym_inline] = ACTIONS(1436), + [anon_sym___inline] = ACTIONS(1436), + [anon_sym___inline__] = ACTIONS(1436), + [anon_sym___forceinline] = ACTIONS(1436), + [anon_sym_thread_local] = ACTIONS(1436), + [anon_sym___thread] = ACTIONS(1436), + [anon_sym_const] = ACTIONS(1436), + [anon_sym_constexpr] = ACTIONS(1436), + [anon_sym_volatile] = ACTIONS(1436), + [anon_sym_restrict] = ACTIONS(1436), + [anon_sym___restrict__] = ACTIONS(1436), + [anon_sym__Atomic] = ACTIONS(1436), + [anon_sym__Noreturn] = ACTIONS(1436), + [anon_sym_noreturn] = ACTIONS(1436), + [sym_primitive_type] = ACTIONS(1436), + [anon_sym_enum] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1436), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_else] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1436), + [anon_sym_case] = ACTIONS(1436), + [anon_sym_default] = ACTIONS(1436), + [anon_sym_while] = ACTIONS(1436), + [anon_sym_do] = ACTIONS(1436), + [anon_sym_for] = ACTIONS(1436), + [anon_sym_return] = ACTIONS(1436), + [anon_sym_break] = ACTIONS(1436), + [anon_sym_continue] = ACTIONS(1436), + [anon_sym_goto] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1438), + [anon_sym_PLUS_PLUS] = ACTIONS(1438), + [anon_sym_sizeof] = ACTIONS(1436), + [anon_sym___alignof__] = ACTIONS(1436), + [anon_sym___alignof] = ACTIONS(1436), + [anon_sym__alignof] = ACTIONS(1436), + [anon_sym_alignof] = ACTIONS(1436), + [anon_sym__Alignof] = ACTIONS(1436), + [anon_sym_offsetof] = ACTIONS(1436), + [anon_sym___builtin_va_arg] = ACTIONS(1436), + [anon_sym__Generic] = ACTIONS(1436), + [anon_sym_asm] = ACTIONS(1436), + [anon_sym___asm__] = ACTIONS(1436), + [sym_number_literal] = ACTIONS(1438), + [anon_sym_L_SQUOTE] = ACTIONS(1438), + [anon_sym_u_SQUOTE] = ACTIONS(1438), + [anon_sym_U_SQUOTE] = ACTIONS(1438), + [anon_sym_u8_SQUOTE] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_L_DQUOTE] = ACTIONS(1438), + [anon_sym_u_DQUOTE] = ACTIONS(1438), + [anon_sym_U_DQUOTE] = ACTIONS(1438), + [anon_sym_u8_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [sym_true] = ACTIONS(1436), + [sym_false] = ACTIONS(1436), + [anon_sym_NULL] = ACTIONS(1436), + [anon_sym_nullptr] = ACTIONS(1436), + [sym_comment] = ACTIONS(3), + }, + [380] = { + [sym_identifier] = ACTIONS(1440), + [aux_sym_preproc_include_token1] = ACTIONS(1440), + [aux_sym_preproc_def_token1] = ACTIONS(1440), + [aux_sym_preproc_if_token1] = ACTIONS(1440), + [aux_sym_preproc_if_token2] = ACTIONS(1440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1440), + [sym_preproc_directive] = ACTIONS(1440), + [anon_sym_LPAREN2] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym___extension__] = ACTIONS(1440), + [anon_sym_typedef] = ACTIONS(1440), + [anon_sym_extern] = ACTIONS(1440), + [anon_sym___attribute__] = ACTIONS(1440), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1442), + [anon_sym___declspec] = ACTIONS(1440), + [anon_sym___cdecl] = ACTIONS(1440), + [anon_sym___clrcall] = ACTIONS(1440), + [anon_sym___stdcall] = ACTIONS(1440), + [anon_sym___fastcall] = ACTIONS(1440), + [anon_sym___thiscall] = ACTIONS(1440), + [anon_sym___vectorcall] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_signed] = ACTIONS(1440), + [anon_sym_unsigned] = ACTIONS(1440), + [anon_sym_long] = ACTIONS(1440), + [anon_sym_short] = ACTIONS(1440), + [anon_sym_static] = ACTIONS(1440), + [anon_sym_auto] = ACTIONS(1440), + [anon_sym_register] = ACTIONS(1440), + [anon_sym_inline] = ACTIONS(1440), + [anon_sym___inline] = ACTIONS(1440), + [anon_sym___inline__] = ACTIONS(1440), + [anon_sym___forceinline] = ACTIONS(1440), + [anon_sym_thread_local] = ACTIONS(1440), + [anon_sym___thread] = ACTIONS(1440), + [anon_sym_const] = ACTIONS(1440), + [anon_sym_constexpr] = ACTIONS(1440), + [anon_sym_volatile] = ACTIONS(1440), + [anon_sym_restrict] = ACTIONS(1440), + [anon_sym___restrict__] = ACTIONS(1440), + [anon_sym__Atomic] = ACTIONS(1440), + [anon_sym__Noreturn] = ACTIONS(1440), + [anon_sym_noreturn] = ACTIONS(1440), + [sym_primitive_type] = ACTIONS(1440), + [anon_sym_enum] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_union] = ACTIONS(1440), + [anon_sym_if] = ACTIONS(1440), + [anon_sym_else] = ACTIONS(1440), + [anon_sym_switch] = ACTIONS(1440), + [anon_sym_case] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1440), + [anon_sym_while] = ACTIONS(1440), + [anon_sym_do] = ACTIONS(1440), + [anon_sym_for] = ACTIONS(1440), + [anon_sym_return] = ACTIONS(1440), + [anon_sym_break] = ACTIONS(1440), + [anon_sym_continue] = ACTIONS(1440), + [anon_sym_goto] = ACTIONS(1440), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_sizeof] = ACTIONS(1440), + [anon_sym___alignof__] = ACTIONS(1440), + [anon_sym___alignof] = ACTIONS(1440), + [anon_sym__alignof] = ACTIONS(1440), + [anon_sym_alignof] = ACTIONS(1440), + [anon_sym__Alignof] = ACTIONS(1440), + [anon_sym_offsetof] = ACTIONS(1440), + [anon_sym___builtin_va_arg] = ACTIONS(1440), + [anon_sym__Generic] = ACTIONS(1440), + [anon_sym_asm] = ACTIONS(1440), + [anon_sym___asm__] = ACTIONS(1440), + [sym_number_literal] = ACTIONS(1442), + [anon_sym_L_SQUOTE] = ACTIONS(1442), + [anon_sym_u_SQUOTE] = ACTIONS(1442), + [anon_sym_U_SQUOTE] = ACTIONS(1442), + [anon_sym_u8_SQUOTE] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_L_DQUOTE] = ACTIONS(1442), + [anon_sym_u_DQUOTE] = ACTIONS(1442), + [anon_sym_U_DQUOTE] = ACTIONS(1442), + [anon_sym_u8_DQUOTE] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [sym_true] = ACTIONS(1440), + [sym_false] = ACTIONS(1440), + [anon_sym_NULL] = ACTIONS(1440), + [anon_sym_nullptr] = ACTIONS(1440), + [sym_comment] = ACTIONS(3), + }, + [381] = { + [sym_identifier] = ACTIONS(1444), + [aux_sym_preproc_include_token1] = ACTIONS(1444), + [aux_sym_preproc_def_token1] = ACTIONS(1444), + [aux_sym_preproc_if_token1] = ACTIONS(1444), + [aux_sym_preproc_if_token2] = ACTIONS(1444), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1444), + [sym_preproc_directive] = ACTIONS(1444), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [anon_sym_TILDE] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym___extension__] = ACTIONS(1444), + [anon_sym_typedef] = ACTIONS(1444), + [anon_sym_extern] = ACTIONS(1444), + [anon_sym___attribute__] = ACTIONS(1444), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), + [anon_sym___declspec] = ACTIONS(1444), + [anon_sym___cdecl] = ACTIONS(1444), + [anon_sym___clrcall] = ACTIONS(1444), + [anon_sym___stdcall] = ACTIONS(1444), + [anon_sym___fastcall] = ACTIONS(1444), + [anon_sym___thiscall] = ACTIONS(1444), + [anon_sym___vectorcall] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_signed] = ACTIONS(1444), + [anon_sym_unsigned] = ACTIONS(1444), + [anon_sym_long] = ACTIONS(1444), + [anon_sym_short] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_auto] = ACTIONS(1444), + [anon_sym_register] = ACTIONS(1444), + [anon_sym_inline] = ACTIONS(1444), + [anon_sym___inline] = ACTIONS(1444), + [anon_sym___inline__] = ACTIONS(1444), + [anon_sym___forceinline] = ACTIONS(1444), + [anon_sym_thread_local] = ACTIONS(1444), + [anon_sym___thread] = ACTIONS(1444), + [anon_sym_const] = ACTIONS(1444), + [anon_sym_constexpr] = ACTIONS(1444), + [anon_sym_volatile] = ACTIONS(1444), + [anon_sym_restrict] = ACTIONS(1444), + [anon_sym___restrict__] = ACTIONS(1444), + [anon_sym__Atomic] = ACTIONS(1444), + [anon_sym__Noreturn] = ACTIONS(1444), + [anon_sym_noreturn] = ACTIONS(1444), + [sym_primitive_type] = ACTIONS(1444), + [anon_sym_enum] = ACTIONS(1444), + [anon_sym_struct] = ACTIONS(1444), + [anon_sym_union] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_else] = ACTIONS(1444), + [anon_sym_switch] = ACTIONS(1444), + [anon_sym_case] = ACTIONS(1444), + [anon_sym_default] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_do] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_goto] = ACTIONS(1444), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_sizeof] = ACTIONS(1444), + [anon_sym___alignof__] = ACTIONS(1444), + [anon_sym___alignof] = ACTIONS(1444), + [anon_sym__alignof] = ACTIONS(1444), + [anon_sym_alignof] = ACTIONS(1444), + [anon_sym__Alignof] = ACTIONS(1444), + [anon_sym_offsetof] = ACTIONS(1444), + [anon_sym___builtin_va_arg] = ACTIONS(1444), + [anon_sym__Generic] = ACTIONS(1444), + [anon_sym_asm] = ACTIONS(1444), + [anon_sym___asm__] = ACTIONS(1444), + [sym_number_literal] = ACTIONS(1446), + [anon_sym_L_SQUOTE] = ACTIONS(1446), + [anon_sym_u_SQUOTE] = ACTIONS(1446), + [anon_sym_U_SQUOTE] = ACTIONS(1446), + [anon_sym_u8_SQUOTE] = ACTIONS(1446), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_L_DQUOTE] = ACTIONS(1446), + [anon_sym_u_DQUOTE] = ACTIONS(1446), + [anon_sym_U_DQUOTE] = ACTIONS(1446), + [anon_sym_u8_DQUOTE] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1446), + [sym_true] = ACTIONS(1444), + [sym_false] = ACTIONS(1444), + [anon_sym_NULL] = ACTIONS(1444), + [anon_sym_nullptr] = ACTIONS(1444), + [sym_comment] = ACTIONS(3), + }, + [382] = { + [sym_identifier] = ACTIONS(1448), + [aux_sym_preproc_include_token1] = ACTIONS(1448), + [aux_sym_preproc_def_token1] = ACTIONS(1448), + [aux_sym_preproc_if_token1] = ACTIONS(1448), + [aux_sym_preproc_if_token2] = ACTIONS(1448), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1448), + [sym_preproc_directive] = ACTIONS(1448), + [anon_sym_LPAREN2] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym___extension__] = ACTIONS(1448), + [anon_sym_typedef] = ACTIONS(1448), + [anon_sym_extern] = ACTIONS(1448), + [anon_sym___attribute__] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), + [anon_sym___declspec] = ACTIONS(1448), + [anon_sym___cdecl] = ACTIONS(1448), + [anon_sym___clrcall] = ACTIONS(1448), + [anon_sym___stdcall] = ACTIONS(1448), + [anon_sym___fastcall] = ACTIONS(1448), + [anon_sym___thiscall] = ACTIONS(1448), + [anon_sym___vectorcall] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_signed] = ACTIONS(1448), + [anon_sym_unsigned] = ACTIONS(1448), + [anon_sym_long] = ACTIONS(1448), + [anon_sym_short] = ACTIONS(1448), + [anon_sym_static] = ACTIONS(1448), + [anon_sym_auto] = ACTIONS(1448), + [anon_sym_register] = ACTIONS(1448), + [anon_sym_inline] = ACTIONS(1448), + [anon_sym___inline] = ACTIONS(1448), + [anon_sym___inline__] = ACTIONS(1448), + [anon_sym___forceinline] = ACTIONS(1448), + [anon_sym_thread_local] = ACTIONS(1448), + [anon_sym___thread] = ACTIONS(1448), + [anon_sym_const] = ACTIONS(1448), + [anon_sym_constexpr] = ACTIONS(1448), + [anon_sym_volatile] = ACTIONS(1448), + [anon_sym_restrict] = ACTIONS(1448), + [anon_sym___restrict__] = ACTIONS(1448), + [anon_sym__Atomic] = ACTIONS(1448), + [anon_sym__Noreturn] = ACTIONS(1448), + [anon_sym_noreturn] = ACTIONS(1448), + [sym_primitive_type] = ACTIONS(1448), + [anon_sym_enum] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1448), + [anon_sym_union] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_else] = ACTIONS(1448), + [anon_sym_switch] = ACTIONS(1448), + [anon_sym_case] = ACTIONS(1448), + [anon_sym_default] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_do] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_return] = ACTIONS(1448), + [anon_sym_break] = ACTIONS(1448), + [anon_sym_continue] = ACTIONS(1448), + [anon_sym_goto] = ACTIONS(1448), + [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_PLUS_PLUS] = ACTIONS(1450), + [anon_sym_sizeof] = ACTIONS(1448), + [anon_sym___alignof__] = ACTIONS(1448), + [anon_sym___alignof] = ACTIONS(1448), + [anon_sym__alignof] = ACTIONS(1448), + [anon_sym_alignof] = ACTIONS(1448), + [anon_sym__Alignof] = ACTIONS(1448), + [anon_sym_offsetof] = ACTIONS(1448), + [anon_sym___builtin_va_arg] = ACTIONS(1448), + [anon_sym__Generic] = ACTIONS(1448), + [anon_sym_asm] = ACTIONS(1448), + [anon_sym___asm__] = ACTIONS(1448), + [sym_number_literal] = ACTIONS(1450), + [anon_sym_L_SQUOTE] = ACTIONS(1450), + [anon_sym_u_SQUOTE] = ACTIONS(1450), + [anon_sym_U_SQUOTE] = ACTIONS(1450), + [anon_sym_u8_SQUOTE] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1450), + [anon_sym_L_DQUOTE] = ACTIONS(1450), + [anon_sym_u_DQUOTE] = ACTIONS(1450), + [anon_sym_U_DQUOTE] = ACTIONS(1450), + [anon_sym_u8_DQUOTE] = ACTIONS(1450), + [anon_sym_DQUOTE] = ACTIONS(1450), + [sym_true] = ACTIONS(1448), + [sym_false] = ACTIONS(1448), + [anon_sym_NULL] = ACTIONS(1448), + [anon_sym_nullptr] = ACTIONS(1448), + [sym_comment] = ACTIONS(3), + }, + [383] = { + [sym_identifier] = ACTIONS(1452), + [aux_sym_preproc_include_token1] = ACTIONS(1452), + [aux_sym_preproc_def_token1] = ACTIONS(1452), + [aux_sym_preproc_if_token1] = ACTIONS(1452), + [aux_sym_preproc_if_token2] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), + [sym_preproc_directive] = ACTIONS(1452), + [anon_sym_LPAREN2] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_TILDE] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym___extension__] = ACTIONS(1452), + [anon_sym_typedef] = ACTIONS(1452), + [anon_sym_extern] = ACTIONS(1452), + [anon_sym___attribute__] = ACTIONS(1452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym___declspec] = ACTIONS(1452), + [anon_sym___cdecl] = ACTIONS(1452), + [anon_sym___clrcall] = ACTIONS(1452), + [anon_sym___stdcall] = ACTIONS(1452), + [anon_sym___fastcall] = ACTIONS(1452), + [anon_sym___thiscall] = ACTIONS(1452), + [anon_sym___vectorcall] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_signed] = ACTIONS(1452), + [anon_sym_unsigned] = ACTIONS(1452), + [anon_sym_long] = ACTIONS(1452), + [anon_sym_short] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1452), + [anon_sym_auto] = ACTIONS(1452), + [anon_sym_register] = ACTIONS(1452), + [anon_sym_inline] = ACTIONS(1452), + [anon_sym___inline] = ACTIONS(1452), + [anon_sym___inline__] = ACTIONS(1452), + [anon_sym___forceinline] = ACTIONS(1452), + [anon_sym_thread_local] = ACTIONS(1452), + [anon_sym___thread] = ACTIONS(1452), + [anon_sym_const] = ACTIONS(1452), + [anon_sym_constexpr] = ACTIONS(1452), + [anon_sym_volatile] = ACTIONS(1452), + [anon_sym_restrict] = ACTIONS(1452), + [anon_sym___restrict__] = ACTIONS(1452), + [anon_sym__Atomic] = ACTIONS(1452), + [anon_sym__Noreturn] = ACTIONS(1452), + [anon_sym_noreturn] = ACTIONS(1452), + [sym_primitive_type] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1452), + [anon_sym_union] = ACTIONS(1452), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_else] = ACTIONS(1452), + [anon_sym_switch] = ACTIONS(1452), + [anon_sym_case] = ACTIONS(1452), + [anon_sym_default] = ACTIONS(1452), + [anon_sym_while] = ACTIONS(1452), + [anon_sym_do] = ACTIONS(1452), + [anon_sym_for] = ACTIONS(1452), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_goto] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_sizeof] = ACTIONS(1452), + [anon_sym___alignof__] = ACTIONS(1452), + [anon_sym___alignof] = ACTIONS(1452), + [anon_sym__alignof] = ACTIONS(1452), + [anon_sym_alignof] = ACTIONS(1452), + [anon_sym__Alignof] = ACTIONS(1452), + [anon_sym_offsetof] = ACTIONS(1452), + [anon_sym___builtin_va_arg] = ACTIONS(1452), + [anon_sym__Generic] = ACTIONS(1452), + [anon_sym_asm] = ACTIONS(1452), + [anon_sym___asm__] = ACTIONS(1452), + [sym_number_literal] = ACTIONS(1454), + [anon_sym_L_SQUOTE] = ACTIONS(1454), + [anon_sym_u_SQUOTE] = ACTIONS(1454), + [anon_sym_U_SQUOTE] = ACTIONS(1454), + [anon_sym_u8_SQUOTE] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_L_DQUOTE] = ACTIONS(1454), + [anon_sym_u_DQUOTE] = ACTIONS(1454), + [anon_sym_U_DQUOTE] = ACTIONS(1454), + [anon_sym_u8_DQUOTE] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [sym_true] = ACTIONS(1452), + [sym_false] = ACTIONS(1452), + [anon_sym_NULL] = ACTIONS(1452), + [anon_sym_nullptr] = ACTIONS(1452), + [sym_comment] = ACTIONS(3), + }, + [384] = { + [sym_identifier] = ACTIONS(1456), + [aux_sym_preproc_include_token1] = ACTIONS(1456), + [aux_sym_preproc_def_token1] = ACTIONS(1456), + [aux_sym_preproc_if_token1] = ACTIONS(1456), + [aux_sym_preproc_if_token2] = ACTIONS(1456), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1456), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1456), + [sym_preproc_directive] = ACTIONS(1456), + [anon_sym_LPAREN2] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_TILDE] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1456), + [anon_sym_PLUS] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym___extension__] = ACTIONS(1456), + [anon_sym_typedef] = ACTIONS(1456), + [anon_sym_extern] = ACTIONS(1456), + [anon_sym___attribute__] = ACTIONS(1456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1458), + [anon_sym___declspec] = ACTIONS(1456), + [anon_sym___cdecl] = ACTIONS(1456), + [anon_sym___clrcall] = ACTIONS(1456), + [anon_sym___stdcall] = ACTIONS(1456), + [anon_sym___fastcall] = ACTIONS(1456), + [anon_sym___thiscall] = ACTIONS(1456), + [anon_sym___vectorcall] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_signed] = ACTIONS(1456), + [anon_sym_unsigned] = ACTIONS(1456), + [anon_sym_long] = ACTIONS(1456), + [anon_sym_short] = ACTIONS(1456), + [anon_sym_static] = ACTIONS(1456), + [anon_sym_auto] = ACTIONS(1456), + [anon_sym_register] = ACTIONS(1456), + [anon_sym_inline] = ACTIONS(1456), + [anon_sym___inline] = ACTIONS(1456), + [anon_sym___inline__] = ACTIONS(1456), + [anon_sym___forceinline] = ACTIONS(1456), + [anon_sym_thread_local] = ACTIONS(1456), + [anon_sym___thread] = ACTIONS(1456), + [anon_sym_const] = ACTIONS(1456), + [anon_sym_constexpr] = ACTIONS(1456), + [anon_sym_volatile] = ACTIONS(1456), + [anon_sym_restrict] = ACTIONS(1456), + [anon_sym___restrict__] = ACTIONS(1456), + [anon_sym__Atomic] = ACTIONS(1456), + [anon_sym__Noreturn] = ACTIONS(1456), + [anon_sym_noreturn] = ACTIONS(1456), + [sym_primitive_type] = ACTIONS(1456), + [anon_sym_enum] = ACTIONS(1456), + [anon_sym_struct] = ACTIONS(1456), + [anon_sym_union] = ACTIONS(1456), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_else] = ACTIONS(1456), + [anon_sym_switch] = ACTIONS(1456), + [anon_sym_case] = ACTIONS(1456), + [anon_sym_default] = ACTIONS(1456), + [anon_sym_while] = ACTIONS(1456), + [anon_sym_do] = ACTIONS(1456), + [anon_sym_for] = ACTIONS(1456), + [anon_sym_return] = ACTIONS(1456), + [anon_sym_break] = ACTIONS(1456), + [anon_sym_continue] = ACTIONS(1456), + [anon_sym_goto] = ACTIONS(1456), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_sizeof] = ACTIONS(1456), + [anon_sym___alignof__] = ACTIONS(1456), + [anon_sym___alignof] = ACTIONS(1456), + [anon_sym__alignof] = ACTIONS(1456), + [anon_sym_alignof] = ACTIONS(1456), + [anon_sym__Alignof] = ACTIONS(1456), + [anon_sym_offsetof] = ACTIONS(1456), + [anon_sym___builtin_va_arg] = ACTIONS(1456), + [anon_sym__Generic] = ACTIONS(1456), + [anon_sym_asm] = ACTIONS(1456), + [anon_sym___asm__] = ACTIONS(1456), + [sym_number_literal] = ACTIONS(1458), + [anon_sym_L_SQUOTE] = ACTIONS(1458), + [anon_sym_u_SQUOTE] = ACTIONS(1458), + [anon_sym_U_SQUOTE] = ACTIONS(1458), + [anon_sym_u8_SQUOTE] = ACTIONS(1458), + [anon_sym_SQUOTE] = ACTIONS(1458), + [anon_sym_L_DQUOTE] = ACTIONS(1458), + [anon_sym_u_DQUOTE] = ACTIONS(1458), + [anon_sym_U_DQUOTE] = ACTIONS(1458), + [anon_sym_u8_DQUOTE] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [sym_true] = ACTIONS(1456), + [sym_false] = ACTIONS(1456), + [anon_sym_NULL] = ACTIONS(1456), + [anon_sym_nullptr] = ACTIONS(1456), + [sym_comment] = ACTIONS(3), + }, + [385] = { [sym_identifier] = ACTIONS(1460), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(456), + [aux_sym_preproc_include_token1] = ACTIONS(1460), + [aux_sym_preproc_def_token1] = ACTIONS(1460), + [aux_sym_preproc_if_token1] = ACTIONS(1460), + [aux_sym_preproc_if_token2] = ACTIONS(1460), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1460), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1460), + [sym_preproc_directive] = ACTIONS(1460), + [anon_sym_LPAREN2] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1460), + [anon_sym_STAR] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym___extension__] = ACTIONS(1460), + [anon_sym_typedef] = ACTIONS(1460), + [anon_sym_extern] = ACTIONS(1460), + [anon_sym___attribute__] = ACTIONS(1460), [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(462), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym___declspec] = ACTIONS(1460), + [anon_sym___cdecl] = ACTIONS(1460), + [anon_sym___clrcall] = ACTIONS(1460), + [anon_sym___stdcall] = ACTIONS(1460), + [anon_sym___fastcall] = ACTIONS(1460), + [anon_sym___thiscall] = ACTIONS(1460), + [anon_sym___vectorcall] = ACTIONS(1460), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_signed] = ACTIONS(1460), + [anon_sym_unsigned] = ACTIONS(1460), + [anon_sym_long] = ACTIONS(1460), + [anon_sym_short] = ACTIONS(1460), + [anon_sym_static] = ACTIONS(1460), + [anon_sym_auto] = ACTIONS(1460), + [anon_sym_register] = ACTIONS(1460), + [anon_sym_inline] = ACTIONS(1460), + [anon_sym___inline] = ACTIONS(1460), + [anon_sym___inline__] = ACTIONS(1460), + [anon_sym___forceinline] = ACTIONS(1460), + [anon_sym_thread_local] = ACTIONS(1460), + [anon_sym___thread] = ACTIONS(1460), + [anon_sym_const] = ACTIONS(1460), + [anon_sym_constexpr] = ACTIONS(1460), + [anon_sym_volatile] = ACTIONS(1460), + [anon_sym_restrict] = ACTIONS(1460), + [anon_sym___restrict__] = ACTIONS(1460), + [anon_sym__Atomic] = ACTIONS(1460), + [anon_sym__Noreturn] = ACTIONS(1460), + [anon_sym_noreturn] = ACTIONS(1460), + [sym_primitive_type] = ACTIONS(1460), + [anon_sym_enum] = ACTIONS(1460), + [anon_sym_struct] = ACTIONS(1460), + [anon_sym_union] = ACTIONS(1460), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_else] = ACTIONS(1460), + [anon_sym_switch] = ACTIONS(1460), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(1460), + [anon_sym_do] = ACTIONS(1460), + [anon_sym_for] = ACTIONS(1460), + [anon_sym_return] = ACTIONS(1460), + [anon_sym_break] = ACTIONS(1460), + [anon_sym_continue] = ACTIONS(1460), + [anon_sym_goto] = ACTIONS(1460), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_sizeof] = ACTIONS(1460), + [anon_sym___alignof__] = ACTIONS(1460), + [anon_sym___alignof] = ACTIONS(1460), + [anon_sym__alignof] = ACTIONS(1460), + [anon_sym_alignof] = ACTIONS(1460), + [anon_sym__Alignof] = ACTIONS(1460), + [anon_sym_offsetof] = ACTIONS(1460), + [anon_sym___builtin_va_arg] = ACTIONS(1460), + [anon_sym__Generic] = ACTIONS(1460), + [anon_sym_asm] = ACTIONS(1460), + [anon_sym___asm__] = ACTIONS(1460), + [sym_number_literal] = ACTIONS(1462), + [anon_sym_L_SQUOTE] = ACTIONS(1462), + [anon_sym_u_SQUOTE] = ACTIONS(1462), + [anon_sym_U_SQUOTE] = ACTIONS(1462), + [anon_sym_u8_SQUOTE] = ACTIONS(1462), + [anon_sym_SQUOTE] = ACTIONS(1462), + [anon_sym_L_DQUOTE] = ACTIONS(1462), + [anon_sym_u_DQUOTE] = ACTIONS(1462), + [anon_sym_U_DQUOTE] = ACTIONS(1462), + [anon_sym_u8_DQUOTE] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1462), + [sym_true] = ACTIONS(1460), + [sym_false] = ACTIONS(1460), + [anon_sym_NULL] = ACTIONS(1460), + [anon_sym_nullptr] = ACTIONS(1460), [sym_comment] = ACTIONS(3), }, - [430] = { + [386] = { [sym_identifier] = ACTIONS(1388), [aux_sym_preproc_include_token1] = ACTIONS(1388), [aux_sym_preproc_def_token1] = ACTIONS(1388), @@ -57774,6 +58859,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1390), [anon_sym_AMP] = ACTIONS(1390), [anon_sym_SEMI] = ACTIONS(1390), + [anon_sym___extension__] = ACTIONS(1388), [anon_sym_typedef] = ACTIONS(1388), [anon_sym_extern] = ACTIONS(1388), [anon_sym___attribute__] = ACTIONS(1388), @@ -57794,6 +58880,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1388), [anon_sym_register] = ACTIONS(1388), [anon_sym_inline] = ACTIONS(1388), + [anon_sym___inline] = ACTIONS(1388), + [anon_sym___inline__] = ACTIONS(1388), + [anon_sym___forceinline] = ACTIONS(1388), [anon_sym_thread_local] = ACTIONS(1388), [anon_sym___thread] = ACTIONS(1388), [anon_sym_const] = ACTIONS(1388), @@ -57809,6 +58898,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1388), [anon_sym_union] = ACTIONS(1388), [anon_sym_if] = ACTIONS(1388), + [anon_sym_else] = ACTIONS(1388), [anon_sym_switch] = ACTIONS(1388), [anon_sym_case] = ACTIONS(1388), [anon_sym_default] = ACTIONS(1388), @@ -57822,7 +58912,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1390), [anon_sym_PLUS_PLUS] = ACTIONS(1390), [anon_sym_sizeof] = ACTIONS(1388), + [anon_sym___alignof__] = ACTIONS(1388), + [anon_sym___alignof] = ACTIONS(1388), + [anon_sym__alignof] = ACTIONS(1388), + [anon_sym_alignof] = ACTIONS(1388), + [anon_sym__Alignof] = ACTIONS(1388), [anon_sym_offsetof] = ACTIONS(1388), + [anon_sym___builtin_va_arg] = ACTIONS(1388), [anon_sym__Generic] = ACTIONS(1388), [anon_sym_asm] = ACTIONS(1388), [anon_sym___asm__] = ACTIONS(1388), @@ -57843,3361 +58939,1851 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1388), [sym_comment] = ACTIONS(3), }, - [431] = { - [sym_attribute_declaration] = STATE(439), - [sym_compound_statement] = STATE(271), - [sym_attributed_statement] = STATE(271), - [sym_labeled_statement] = STATE(271), - [sym_expression_statement] = STATE(271), - [sym_if_statement] = STATE(271), - [sym_switch_statement] = STATE(271), - [sym_case_statement] = STATE(271), - [sym_while_statement] = STATE(271), - [sym_do_statement] = STATE(271), - [sym_for_statement] = STATE(271), - [sym_return_statement] = STATE(271), - [sym_break_statement] = STATE(271), - [sym_continue_statement] = STATE(271), - [sym_goto_statement] = STATE(271), - [sym__expression] = STATE(1112), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [sym_identifier] = ACTIONS(1460), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(462), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [432] = { - [sym_attribute_declaration] = STATE(439), - [sym_compound_statement] = STATE(273), - [sym_attributed_statement] = STATE(273), - [sym_labeled_statement] = STATE(273), - [sym_expression_statement] = STATE(273), - [sym_if_statement] = STATE(273), - [sym_switch_statement] = STATE(273), - [sym_case_statement] = STATE(273), - [sym_while_statement] = STATE(273), - [sym_do_statement] = STATE(273), - [sym_for_statement] = STATE(273), - [sym_return_statement] = STATE(273), - [sym_break_statement] = STATE(273), - [sym_continue_statement] = STATE(273), - [sym_goto_statement] = STATE(273), - [sym__expression] = STATE(1112), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [sym_identifier] = ACTIONS(1460), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(462), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [433] = { - [sym_attribute_declaration] = STATE(439), - [sym_compound_statement] = STATE(281), - [sym_attributed_statement] = STATE(281), - [sym_labeled_statement] = STATE(281), - [sym_expression_statement] = STATE(281), - [sym_if_statement] = STATE(281), - [sym_switch_statement] = STATE(281), - [sym_case_statement] = STATE(281), - [sym_while_statement] = STATE(281), - [sym_do_statement] = STATE(281), - [sym_for_statement] = STATE(281), - [sym_return_statement] = STATE(281), - [sym_break_statement] = STATE(281), - [sym_continue_statement] = STATE(281), - [sym_goto_statement] = STATE(281), - [sym__expression] = STATE(1112), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [sym_identifier] = ACTIONS(1460), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(462), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [387] = { + [sym_identifier] = ACTIONS(1384), + [aux_sym_preproc_include_token1] = ACTIONS(1384), + [aux_sym_preproc_def_token1] = ACTIONS(1384), + [aux_sym_preproc_if_token1] = ACTIONS(1384), + [aux_sym_preproc_if_token2] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1384), + [sym_preproc_directive] = ACTIONS(1384), + [anon_sym_LPAREN2] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1386), + [anon_sym_SEMI] = ACTIONS(1386), + [anon_sym___extension__] = ACTIONS(1384), + [anon_sym_typedef] = ACTIONS(1384), + [anon_sym_extern] = ACTIONS(1384), + [anon_sym___attribute__] = ACTIONS(1384), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1386), + [anon_sym___declspec] = ACTIONS(1384), + [anon_sym___cdecl] = ACTIONS(1384), + [anon_sym___clrcall] = ACTIONS(1384), + [anon_sym___stdcall] = ACTIONS(1384), + [anon_sym___fastcall] = ACTIONS(1384), + [anon_sym___thiscall] = ACTIONS(1384), + [anon_sym___vectorcall] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_long] = ACTIONS(1384), + [anon_sym_short] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1384), + [anon_sym_auto] = ACTIONS(1384), + [anon_sym_register] = ACTIONS(1384), + [anon_sym_inline] = ACTIONS(1384), + [anon_sym___inline] = ACTIONS(1384), + [anon_sym___inline__] = ACTIONS(1384), + [anon_sym___forceinline] = ACTIONS(1384), + [anon_sym_thread_local] = ACTIONS(1384), + [anon_sym___thread] = ACTIONS(1384), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_constexpr] = ACTIONS(1384), + [anon_sym_volatile] = ACTIONS(1384), + [anon_sym_restrict] = ACTIONS(1384), + [anon_sym___restrict__] = ACTIONS(1384), + [anon_sym__Atomic] = ACTIONS(1384), + [anon_sym__Noreturn] = ACTIONS(1384), + [anon_sym_noreturn] = ACTIONS(1384), + [sym_primitive_type] = ACTIONS(1384), + [anon_sym_enum] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_union] = ACTIONS(1384), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_else] = ACTIONS(1384), + [anon_sym_switch] = ACTIONS(1384), + [anon_sym_case] = ACTIONS(1384), + [anon_sym_default] = ACTIONS(1384), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_do] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_return] = ACTIONS(1384), + [anon_sym_break] = ACTIONS(1384), + [anon_sym_continue] = ACTIONS(1384), + [anon_sym_goto] = ACTIONS(1384), + [anon_sym_DASH_DASH] = ACTIONS(1386), + [anon_sym_PLUS_PLUS] = ACTIONS(1386), + [anon_sym_sizeof] = ACTIONS(1384), + [anon_sym___alignof__] = ACTIONS(1384), + [anon_sym___alignof] = ACTIONS(1384), + [anon_sym__alignof] = ACTIONS(1384), + [anon_sym_alignof] = ACTIONS(1384), + [anon_sym__Alignof] = ACTIONS(1384), + [anon_sym_offsetof] = ACTIONS(1384), + [anon_sym___builtin_va_arg] = ACTIONS(1384), + [anon_sym__Generic] = ACTIONS(1384), + [anon_sym_asm] = ACTIONS(1384), + [anon_sym___asm__] = ACTIONS(1384), + [sym_number_literal] = ACTIONS(1386), + [anon_sym_L_SQUOTE] = ACTIONS(1386), + [anon_sym_u_SQUOTE] = ACTIONS(1386), + [anon_sym_U_SQUOTE] = ACTIONS(1386), + [anon_sym_u8_SQUOTE] = ACTIONS(1386), + [anon_sym_SQUOTE] = ACTIONS(1386), + [anon_sym_L_DQUOTE] = ACTIONS(1386), + [anon_sym_u_DQUOTE] = ACTIONS(1386), + [anon_sym_U_DQUOTE] = ACTIONS(1386), + [anon_sym_u8_DQUOTE] = ACTIONS(1386), + [anon_sym_DQUOTE] = ACTIONS(1386), + [sym_true] = ACTIONS(1384), + [sym_false] = ACTIONS(1384), + [anon_sym_NULL] = ACTIONS(1384), + [anon_sym_nullptr] = ACTIONS(1384), [sym_comment] = ACTIONS(3), }, - [434] = { - [sym_attribute_declaration] = STATE(439), - [sym_compound_statement] = STATE(284), - [sym_attributed_statement] = STATE(284), - [sym_labeled_statement] = STATE(284), - [sym_expression_statement] = STATE(284), - [sym_if_statement] = STATE(284), - [sym_switch_statement] = STATE(284), - [sym_case_statement] = STATE(284), - [sym_while_statement] = STATE(284), - [sym_do_statement] = STATE(284), - [sym_for_statement] = STATE(284), - [sym_return_statement] = STATE(284), - [sym_break_statement] = STATE(284), - [sym_continue_statement] = STATE(284), - [sym_goto_statement] = STATE(284), - [sym__expression] = STATE(1112), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [sym_identifier] = ACTIONS(1460), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(462), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [388] = { + [ts_builtin_sym_end] = ACTIONS(1338), + [sym_identifier] = ACTIONS(1336), + [aux_sym_preproc_include_token1] = ACTIONS(1336), + [aux_sym_preproc_def_token1] = ACTIONS(1336), + [aux_sym_preproc_if_token1] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), + [sym_preproc_directive] = ACTIONS(1336), + [anon_sym_LPAREN2] = ACTIONS(1338), + [anon_sym_BANG] = ACTIONS(1338), + [anon_sym_TILDE] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1338), + [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym___extension__] = ACTIONS(1336), + [anon_sym_typedef] = ACTIONS(1336), + [anon_sym_extern] = ACTIONS(1336), + [anon_sym___attribute__] = ACTIONS(1336), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), + [anon_sym___declspec] = ACTIONS(1336), + [anon_sym___cdecl] = ACTIONS(1336), + [anon_sym___clrcall] = ACTIONS(1336), + [anon_sym___stdcall] = ACTIONS(1336), + [anon_sym___fastcall] = ACTIONS(1336), + [anon_sym___thiscall] = ACTIONS(1336), + [anon_sym___vectorcall] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1338), + [anon_sym_signed] = ACTIONS(1336), + [anon_sym_unsigned] = ACTIONS(1336), + [anon_sym_long] = ACTIONS(1336), + [anon_sym_short] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(1336), + [anon_sym_auto] = ACTIONS(1336), + [anon_sym_register] = ACTIONS(1336), + [anon_sym_inline] = ACTIONS(1336), + [anon_sym___inline] = ACTIONS(1336), + [anon_sym___inline__] = ACTIONS(1336), + [anon_sym___forceinline] = ACTIONS(1336), + [anon_sym_thread_local] = ACTIONS(1336), + [anon_sym___thread] = ACTIONS(1336), + [anon_sym_const] = ACTIONS(1336), + [anon_sym_constexpr] = ACTIONS(1336), + [anon_sym_volatile] = ACTIONS(1336), + [anon_sym_restrict] = ACTIONS(1336), + [anon_sym___restrict__] = ACTIONS(1336), + [anon_sym__Atomic] = ACTIONS(1336), + [anon_sym__Noreturn] = ACTIONS(1336), + [anon_sym_noreturn] = ACTIONS(1336), + [sym_primitive_type] = ACTIONS(1336), + [anon_sym_enum] = ACTIONS(1336), + [anon_sym_struct] = ACTIONS(1336), + [anon_sym_union] = ACTIONS(1336), + [anon_sym_if] = ACTIONS(1336), + [anon_sym_else] = ACTIONS(1336), + [anon_sym_switch] = ACTIONS(1336), + [anon_sym_case] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1336), + [anon_sym_while] = ACTIONS(1336), + [anon_sym_do] = ACTIONS(1336), + [anon_sym_for] = ACTIONS(1336), + [anon_sym_return] = ACTIONS(1336), + [anon_sym_break] = ACTIONS(1336), + [anon_sym_continue] = ACTIONS(1336), + [anon_sym_goto] = ACTIONS(1336), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_sizeof] = ACTIONS(1336), + [anon_sym___alignof__] = ACTIONS(1336), + [anon_sym___alignof] = ACTIONS(1336), + [anon_sym__alignof] = ACTIONS(1336), + [anon_sym_alignof] = ACTIONS(1336), + [anon_sym__Alignof] = ACTIONS(1336), + [anon_sym_offsetof] = ACTIONS(1336), + [anon_sym___builtin_va_arg] = ACTIONS(1336), + [anon_sym__Generic] = ACTIONS(1336), + [anon_sym_asm] = ACTIONS(1336), + [anon_sym___asm__] = ACTIONS(1336), + [sym_number_literal] = ACTIONS(1338), + [anon_sym_L_SQUOTE] = ACTIONS(1338), + [anon_sym_u_SQUOTE] = ACTIONS(1338), + [anon_sym_U_SQUOTE] = ACTIONS(1338), + [anon_sym_u8_SQUOTE] = ACTIONS(1338), + [anon_sym_SQUOTE] = ACTIONS(1338), + [anon_sym_L_DQUOTE] = ACTIONS(1338), + [anon_sym_u_DQUOTE] = ACTIONS(1338), + [anon_sym_U_DQUOTE] = ACTIONS(1338), + [anon_sym_u8_DQUOTE] = ACTIONS(1338), + [anon_sym_DQUOTE] = ACTIONS(1338), + [sym_true] = ACTIONS(1336), + [sym_false] = ACTIONS(1336), + [anon_sym_NULL] = ACTIONS(1336), + [anon_sym_nullptr] = ACTIONS(1336), [sym_comment] = ACTIONS(3), }, - [435] = { - [sym_attribute_declaration] = STATE(439), - [sym_compound_statement] = STATE(285), - [sym_attributed_statement] = STATE(285), - [sym_labeled_statement] = STATE(285), - [sym_expression_statement] = STATE(285), - [sym_if_statement] = STATE(285), - [sym_switch_statement] = STATE(285), - [sym_case_statement] = STATE(285), - [sym_while_statement] = STATE(285), - [sym_do_statement] = STATE(285), - [sym_for_statement] = STATE(285), - [sym_return_statement] = STATE(285), - [sym_break_statement] = STATE(285), - [sym_continue_statement] = STATE(285), - [sym_goto_statement] = STATE(285), - [sym__expression] = STATE(1112), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [sym_identifier] = ACTIONS(1460), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(462), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [389] = { + [sym_identifier] = ACTIONS(1392), + [aux_sym_preproc_include_token1] = ACTIONS(1392), + [aux_sym_preproc_def_token1] = ACTIONS(1392), + [aux_sym_preproc_if_token1] = ACTIONS(1392), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1392), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1392), + [sym_preproc_directive] = ACTIONS(1392), + [anon_sym_LPAREN2] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_TILDE] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_STAR] = ACTIONS(1394), + [anon_sym_AMP] = ACTIONS(1394), + [anon_sym_SEMI] = ACTIONS(1394), + [anon_sym___extension__] = ACTIONS(1392), + [anon_sym_typedef] = ACTIONS(1392), + [anon_sym_extern] = ACTIONS(1392), + [anon_sym___attribute__] = ACTIONS(1392), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1394), + [anon_sym___declspec] = ACTIONS(1392), + [anon_sym___cdecl] = ACTIONS(1392), + [anon_sym___clrcall] = ACTIONS(1392), + [anon_sym___stdcall] = ACTIONS(1392), + [anon_sym___fastcall] = ACTIONS(1392), + [anon_sym___thiscall] = ACTIONS(1392), + [anon_sym___vectorcall] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_RBRACE] = ACTIONS(1394), + [anon_sym_signed] = ACTIONS(1392), + [anon_sym_unsigned] = ACTIONS(1392), + [anon_sym_long] = ACTIONS(1392), + [anon_sym_short] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_auto] = ACTIONS(1392), + [anon_sym_register] = ACTIONS(1392), + [anon_sym_inline] = ACTIONS(1392), + [anon_sym___inline] = ACTIONS(1392), + [anon_sym___inline__] = ACTIONS(1392), + [anon_sym___forceinline] = ACTIONS(1392), + [anon_sym_thread_local] = ACTIONS(1392), + [anon_sym___thread] = ACTIONS(1392), + [anon_sym_const] = ACTIONS(1392), + [anon_sym_constexpr] = ACTIONS(1392), + [anon_sym_volatile] = ACTIONS(1392), + [anon_sym_restrict] = ACTIONS(1392), + [anon_sym___restrict__] = ACTIONS(1392), + [anon_sym__Atomic] = ACTIONS(1392), + [anon_sym__Noreturn] = ACTIONS(1392), + [anon_sym_noreturn] = ACTIONS(1392), + [sym_primitive_type] = ACTIONS(1392), + [anon_sym_enum] = ACTIONS(1392), + [anon_sym_struct] = ACTIONS(1392), + [anon_sym_union] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1392), + [anon_sym_else] = ACTIONS(1392), + [anon_sym_switch] = ACTIONS(1392), + [anon_sym_case] = ACTIONS(1392), + [anon_sym_default] = ACTIONS(1392), + [anon_sym_while] = ACTIONS(1392), + [anon_sym_do] = ACTIONS(1392), + [anon_sym_for] = ACTIONS(1392), + [anon_sym_return] = ACTIONS(1392), + [anon_sym_break] = ACTIONS(1392), + [anon_sym_continue] = ACTIONS(1392), + [anon_sym_goto] = ACTIONS(1392), + [anon_sym_DASH_DASH] = ACTIONS(1394), + [anon_sym_PLUS_PLUS] = ACTIONS(1394), + [anon_sym_sizeof] = ACTIONS(1392), + [anon_sym___alignof__] = ACTIONS(1392), + [anon_sym___alignof] = ACTIONS(1392), + [anon_sym__alignof] = ACTIONS(1392), + [anon_sym_alignof] = ACTIONS(1392), + [anon_sym__Alignof] = ACTIONS(1392), + [anon_sym_offsetof] = ACTIONS(1392), + [anon_sym___builtin_va_arg] = ACTIONS(1392), + [anon_sym__Generic] = ACTIONS(1392), + [anon_sym_asm] = ACTIONS(1392), + [anon_sym___asm__] = ACTIONS(1392), + [sym_number_literal] = ACTIONS(1394), + [anon_sym_L_SQUOTE] = ACTIONS(1394), + [anon_sym_u_SQUOTE] = ACTIONS(1394), + [anon_sym_U_SQUOTE] = ACTIONS(1394), + [anon_sym_u8_SQUOTE] = ACTIONS(1394), + [anon_sym_SQUOTE] = ACTIONS(1394), + [anon_sym_L_DQUOTE] = ACTIONS(1394), + [anon_sym_u_DQUOTE] = ACTIONS(1394), + [anon_sym_U_DQUOTE] = ACTIONS(1394), + [anon_sym_u8_DQUOTE] = ACTIONS(1394), + [anon_sym_DQUOTE] = ACTIONS(1394), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [anon_sym_NULL] = ACTIONS(1392), + [anon_sym_nullptr] = ACTIONS(1392), [sym_comment] = ACTIONS(3), }, - [436] = { - [sym_identifier] = ACTIONS(1418), - [aux_sym_preproc_include_token1] = ACTIONS(1418), - [aux_sym_preproc_def_token1] = ACTIONS(1418), - [aux_sym_preproc_if_token1] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), - [sym_preproc_directive] = ACTIONS(1418), - [anon_sym_LPAREN2] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_typedef] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym___attribute__] = ACTIONS(1418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), - [anon_sym___declspec] = ACTIONS(1418), - [anon_sym___cdecl] = ACTIONS(1418), - [anon_sym___clrcall] = ACTIONS(1418), - [anon_sym___stdcall] = ACTIONS(1418), - [anon_sym___fastcall] = ACTIONS(1418), - [anon_sym___thiscall] = ACTIONS(1418), - [anon_sym___vectorcall] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_signed] = ACTIONS(1418), - [anon_sym_unsigned] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_auto] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_inline] = ACTIONS(1418), - [anon_sym_thread_local] = ACTIONS(1418), - [anon_sym___thread] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_constexpr] = ACTIONS(1418), - [anon_sym_volatile] = ACTIONS(1418), - [anon_sym_restrict] = ACTIONS(1418), - [anon_sym___restrict__] = ACTIONS(1418), - [anon_sym__Atomic] = ACTIONS(1418), - [anon_sym__Noreturn] = ACTIONS(1418), - [anon_sym_noreturn] = ACTIONS(1418), - [sym_primitive_type] = ACTIONS(1418), - [anon_sym_enum] = ACTIONS(1418), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_union] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_case] = ACTIONS(1418), - [anon_sym_default] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_goto] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_sizeof] = ACTIONS(1418), - [anon_sym_offsetof] = ACTIONS(1418), - [anon_sym__Generic] = ACTIONS(1418), - [anon_sym_asm] = ACTIONS(1418), - [anon_sym___asm__] = ACTIONS(1418), - [sym_number_literal] = ACTIONS(1420), - [anon_sym_L_SQUOTE] = ACTIONS(1420), - [anon_sym_u_SQUOTE] = ACTIONS(1420), - [anon_sym_U_SQUOTE] = ACTIONS(1420), - [anon_sym_u8_SQUOTE] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_L_DQUOTE] = ACTIONS(1420), - [anon_sym_u_DQUOTE] = ACTIONS(1420), - [anon_sym_U_DQUOTE] = ACTIONS(1420), - [anon_sym_u8_DQUOTE] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1420), - [sym_true] = ACTIONS(1418), - [sym_false] = ACTIONS(1418), - [anon_sym_NULL] = ACTIONS(1418), - [anon_sym_nullptr] = ACTIONS(1418), + [390] = { + [sym_identifier] = ACTIONS(1376), + [aux_sym_preproc_include_token1] = ACTIONS(1376), + [aux_sym_preproc_def_token1] = ACTIONS(1376), + [aux_sym_preproc_if_token1] = ACTIONS(1376), + [aux_sym_preproc_if_token2] = ACTIONS(1376), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1376), + [sym_preproc_directive] = ACTIONS(1376), + [anon_sym_LPAREN2] = ACTIONS(1378), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_TILDE] = ACTIONS(1378), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_AMP] = ACTIONS(1378), + [anon_sym_SEMI] = ACTIONS(1378), + [anon_sym___extension__] = ACTIONS(1376), + [anon_sym_typedef] = ACTIONS(1376), + [anon_sym_extern] = ACTIONS(1376), + [anon_sym___attribute__] = ACTIONS(1376), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1378), + [anon_sym___declspec] = ACTIONS(1376), + [anon_sym___cdecl] = ACTIONS(1376), + [anon_sym___clrcall] = ACTIONS(1376), + [anon_sym___stdcall] = ACTIONS(1376), + [anon_sym___fastcall] = ACTIONS(1376), + [anon_sym___thiscall] = ACTIONS(1376), + [anon_sym___vectorcall] = ACTIONS(1376), + [anon_sym_LBRACE] = ACTIONS(1378), + [anon_sym_signed] = ACTIONS(1376), + [anon_sym_unsigned] = ACTIONS(1376), + [anon_sym_long] = ACTIONS(1376), + [anon_sym_short] = ACTIONS(1376), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_auto] = ACTIONS(1376), + [anon_sym_register] = ACTIONS(1376), + [anon_sym_inline] = ACTIONS(1376), + [anon_sym___inline] = ACTIONS(1376), + [anon_sym___inline__] = ACTIONS(1376), + [anon_sym___forceinline] = ACTIONS(1376), + [anon_sym_thread_local] = ACTIONS(1376), + [anon_sym___thread] = ACTIONS(1376), + [anon_sym_const] = ACTIONS(1376), + [anon_sym_constexpr] = ACTIONS(1376), + [anon_sym_volatile] = ACTIONS(1376), + [anon_sym_restrict] = ACTIONS(1376), + [anon_sym___restrict__] = ACTIONS(1376), + [anon_sym__Atomic] = ACTIONS(1376), + [anon_sym__Noreturn] = ACTIONS(1376), + [anon_sym_noreturn] = ACTIONS(1376), + [sym_primitive_type] = ACTIONS(1376), + [anon_sym_enum] = ACTIONS(1376), + [anon_sym_struct] = ACTIONS(1376), + [anon_sym_union] = ACTIONS(1376), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_else] = ACTIONS(1376), + [anon_sym_switch] = ACTIONS(1376), + [anon_sym_case] = ACTIONS(1376), + [anon_sym_default] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(1376), + [anon_sym_do] = ACTIONS(1376), + [anon_sym_for] = ACTIONS(1376), + [anon_sym_return] = ACTIONS(1376), + [anon_sym_break] = ACTIONS(1376), + [anon_sym_continue] = ACTIONS(1376), + [anon_sym_goto] = ACTIONS(1376), + [anon_sym_DASH_DASH] = ACTIONS(1378), + [anon_sym_PLUS_PLUS] = ACTIONS(1378), + [anon_sym_sizeof] = ACTIONS(1376), + [anon_sym___alignof__] = ACTIONS(1376), + [anon_sym___alignof] = ACTIONS(1376), + [anon_sym__alignof] = ACTIONS(1376), + [anon_sym_alignof] = ACTIONS(1376), + [anon_sym__Alignof] = ACTIONS(1376), + [anon_sym_offsetof] = ACTIONS(1376), + [anon_sym___builtin_va_arg] = ACTIONS(1376), + [anon_sym__Generic] = ACTIONS(1376), + [anon_sym_asm] = ACTIONS(1376), + [anon_sym___asm__] = ACTIONS(1376), + [sym_number_literal] = ACTIONS(1378), + [anon_sym_L_SQUOTE] = ACTIONS(1378), + [anon_sym_u_SQUOTE] = ACTIONS(1378), + [anon_sym_U_SQUOTE] = ACTIONS(1378), + [anon_sym_u8_SQUOTE] = ACTIONS(1378), + [anon_sym_SQUOTE] = ACTIONS(1378), + [anon_sym_L_DQUOTE] = ACTIONS(1378), + [anon_sym_u_DQUOTE] = ACTIONS(1378), + [anon_sym_U_DQUOTE] = ACTIONS(1378), + [anon_sym_u8_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE] = ACTIONS(1378), + [sym_true] = ACTIONS(1376), + [sym_false] = ACTIONS(1376), + [anon_sym_NULL] = ACTIONS(1376), + [anon_sym_nullptr] = ACTIONS(1376), [sym_comment] = ACTIONS(3), }, - [437] = { - [sym_attribute_declaration] = STATE(382), - [sym_compound_statement] = STATE(190), - [sym_attributed_statement] = STATE(190), - [sym_labeled_statement] = STATE(190), - [sym_expression_statement] = STATE(190), - [sym_if_statement] = STATE(190), - [sym_switch_statement] = STATE(190), - [sym_case_statement] = STATE(190), - [sym_while_statement] = STATE(190), - [sym_do_statement] = STATE(190), - [sym_for_statement] = STATE(190), - [sym_return_statement] = STATE(190), - [sym_break_statement] = STATE(190), - [sym_continue_statement] = STATE(190), - [sym_goto_statement] = STATE(190), - [sym__expression] = STATE(1077), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(382), - [sym_identifier] = ACTIONS(1474), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(183), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [391] = { + [sym_identifier] = ACTIONS(1244), + [aux_sym_preproc_include_token1] = ACTIONS(1244), + [aux_sym_preproc_def_token1] = ACTIONS(1244), + [aux_sym_preproc_if_token1] = ACTIONS(1244), + [aux_sym_preproc_if_token2] = ACTIONS(1244), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1244), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1244), + [sym_preproc_directive] = ACTIONS(1244), + [anon_sym_LPAREN2] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1246), + [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_PLUS] = ACTIONS(1244), + [anon_sym_STAR] = ACTIONS(1246), + [anon_sym_AMP] = ACTIONS(1246), + [anon_sym_SEMI] = ACTIONS(1246), + [anon_sym___extension__] = ACTIONS(1244), + [anon_sym_typedef] = ACTIONS(1244), + [anon_sym_extern] = ACTIONS(1244), + [anon_sym___attribute__] = ACTIONS(1244), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1246), + [anon_sym___declspec] = ACTIONS(1244), + [anon_sym___cdecl] = ACTIONS(1244), + [anon_sym___clrcall] = ACTIONS(1244), + [anon_sym___stdcall] = ACTIONS(1244), + [anon_sym___fastcall] = ACTIONS(1244), + [anon_sym___thiscall] = ACTIONS(1244), + [anon_sym___vectorcall] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1246), + [anon_sym_signed] = ACTIONS(1244), + [anon_sym_unsigned] = ACTIONS(1244), + [anon_sym_long] = ACTIONS(1244), + [anon_sym_short] = ACTIONS(1244), + [anon_sym_static] = ACTIONS(1244), + [anon_sym_auto] = ACTIONS(1244), + [anon_sym_register] = ACTIONS(1244), + [anon_sym_inline] = ACTIONS(1244), + [anon_sym___inline] = ACTIONS(1244), + [anon_sym___inline__] = ACTIONS(1244), + [anon_sym___forceinline] = ACTIONS(1244), + [anon_sym_thread_local] = ACTIONS(1244), + [anon_sym___thread] = ACTIONS(1244), + [anon_sym_const] = ACTIONS(1244), + [anon_sym_constexpr] = ACTIONS(1244), + [anon_sym_volatile] = ACTIONS(1244), + [anon_sym_restrict] = ACTIONS(1244), + [anon_sym___restrict__] = ACTIONS(1244), + [anon_sym__Atomic] = ACTIONS(1244), + [anon_sym__Noreturn] = ACTIONS(1244), + [anon_sym_noreturn] = ACTIONS(1244), + [sym_primitive_type] = ACTIONS(1244), + [anon_sym_enum] = ACTIONS(1244), + [anon_sym_struct] = ACTIONS(1244), + [anon_sym_union] = ACTIONS(1244), + [anon_sym_if] = ACTIONS(1244), + [anon_sym_else] = ACTIONS(1244), + [anon_sym_switch] = ACTIONS(1244), + [anon_sym_case] = ACTIONS(1244), + [anon_sym_default] = ACTIONS(1244), + [anon_sym_while] = ACTIONS(1244), + [anon_sym_do] = ACTIONS(1244), + [anon_sym_for] = ACTIONS(1244), + [anon_sym_return] = ACTIONS(1244), + [anon_sym_break] = ACTIONS(1244), + [anon_sym_continue] = ACTIONS(1244), + [anon_sym_goto] = ACTIONS(1244), + [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_PLUS_PLUS] = ACTIONS(1246), + [anon_sym_sizeof] = ACTIONS(1244), + [anon_sym___alignof__] = ACTIONS(1244), + [anon_sym___alignof] = ACTIONS(1244), + [anon_sym__alignof] = ACTIONS(1244), + [anon_sym_alignof] = ACTIONS(1244), + [anon_sym__Alignof] = ACTIONS(1244), + [anon_sym_offsetof] = ACTIONS(1244), + [anon_sym___builtin_va_arg] = ACTIONS(1244), + [anon_sym__Generic] = ACTIONS(1244), + [anon_sym_asm] = ACTIONS(1244), + [anon_sym___asm__] = ACTIONS(1244), + [sym_number_literal] = ACTIONS(1246), + [anon_sym_L_SQUOTE] = ACTIONS(1246), + [anon_sym_u_SQUOTE] = ACTIONS(1246), + [anon_sym_U_SQUOTE] = ACTIONS(1246), + [anon_sym_u8_SQUOTE] = ACTIONS(1246), + [anon_sym_SQUOTE] = ACTIONS(1246), + [anon_sym_L_DQUOTE] = ACTIONS(1246), + [anon_sym_u_DQUOTE] = ACTIONS(1246), + [anon_sym_U_DQUOTE] = ACTIONS(1246), + [anon_sym_u8_DQUOTE] = ACTIONS(1246), + [anon_sym_DQUOTE] = ACTIONS(1246), + [sym_true] = ACTIONS(1244), + [sym_false] = ACTIONS(1244), + [anon_sym_NULL] = ACTIONS(1244), + [anon_sym_nullptr] = ACTIONS(1244), [sym_comment] = ACTIONS(3), }, - [438] = { - [sym_attribute_declaration] = STATE(375), - [sym_compound_statement] = STATE(1805), - [sym_attributed_statement] = STATE(1805), - [sym_labeled_statement] = STATE(1805), - [sym_expression_statement] = STATE(1805), - [sym_if_statement] = STATE(1805), - [sym_switch_statement] = STATE(1805), - [sym_case_statement] = STATE(1805), - [sym_while_statement] = STATE(1805), - [sym_do_statement] = STATE(1805), - [sym_for_statement] = STATE(1805), - [sym_return_statement] = STATE(1805), - [sym_break_statement] = STATE(1805), - [sym_continue_statement] = STATE(1805), - [sym_goto_statement] = STATE(1805), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1466), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [439] = { - [sym_attribute_declaration] = STATE(412), - [sym_compound_statement] = STATE(275), - [sym_attributed_statement] = STATE(275), - [sym_labeled_statement] = STATE(275), - [sym_expression_statement] = STATE(275), - [sym_if_statement] = STATE(275), - [sym_switch_statement] = STATE(275), - [sym_case_statement] = STATE(275), - [sym_while_statement] = STATE(275), - [sym_do_statement] = STATE(275), - [sym_for_statement] = STATE(275), - [sym_return_statement] = STATE(275), - [sym_break_statement] = STATE(275), - [sym_continue_statement] = STATE(275), - [sym_goto_statement] = STATE(275), - [sym__expression] = STATE(1112), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(412), - [sym_identifier] = ACTIONS(1460), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(462), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [440] = { - [sym_identifier] = ACTIONS(1418), - [aux_sym_preproc_include_token1] = ACTIONS(1418), - [aux_sym_preproc_def_token1] = ACTIONS(1418), - [aux_sym_preproc_if_token1] = ACTIONS(1418), - [aux_sym_preproc_if_token2] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), - [sym_preproc_directive] = ACTIONS(1418), - [anon_sym_LPAREN2] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_typedef] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym___attribute__] = ACTIONS(1418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), - [anon_sym___declspec] = ACTIONS(1418), - [anon_sym___cdecl] = ACTIONS(1418), - [anon_sym___clrcall] = ACTIONS(1418), - [anon_sym___stdcall] = ACTIONS(1418), - [anon_sym___fastcall] = ACTIONS(1418), - [anon_sym___thiscall] = ACTIONS(1418), - [anon_sym___vectorcall] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_signed] = ACTIONS(1418), - [anon_sym_unsigned] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_auto] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_inline] = ACTIONS(1418), - [anon_sym_thread_local] = ACTIONS(1418), - [anon_sym___thread] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_constexpr] = ACTIONS(1418), - [anon_sym_volatile] = ACTIONS(1418), - [anon_sym_restrict] = ACTIONS(1418), - [anon_sym___restrict__] = ACTIONS(1418), - [anon_sym__Atomic] = ACTIONS(1418), - [anon_sym__Noreturn] = ACTIONS(1418), - [anon_sym_noreturn] = ACTIONS(1418), - [sym_primitive_type] = ACTIONS(1418), - [anon_sym_enum] = ACTIONS(1418), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_union] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_case] = ACTIONS(1418), - [anon_sym_default] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_goto] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_sizeof] = ACTIONS(1418), - [anon_sym_offsetof] = ACTIONS(1418), - [anon_sym__Generic] = ACTIONS(1418), - [anon_sym_asm] = ACTIONS(1418), - [anon_sym___asm__] = ACTIONS(1418), - [sym_number_literal] = ACTIONS(1420), - [anon_sym_L_SQUOTE] = ACTIONS(1420), - [anon_sym_u_SQUOTE] = ACTIONS(1420), - [anon_sym_U_SQUOTE] = ACTIONS(1420), - [anon_sym_u8_SQUOTE] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_L_DQUOTE] = ACTIONS(1420), - [anon_sym_u_DQUOTE] = ACTIONS(1420), - [anon_sym_U_DQUOTE] = ACTIONS(1420), - [anon_sym_u8_DQUOTE] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1420), - [sym_true] = ACTIONS(1418), - [sym_false] = ACTIONS(1418), - [anon_sym_NULL] = ACTIONS(1418), - [anon_sym_nullptr] = ACTIONS(1418), - [sym_comment] = ACTIONS(3), - }, - [441] = { - [sym_identifier] = ACTIONS(1360), - [aux_sym_preproc_include_token1] = ACTIONS(1360), - [aux_sym_preproc_def_token1] = ACTIONS(1360), - [aux_sym_preproc_if_token1] = ACTIONS(1360), - [aux_sym_preproc_if_token2] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), - [sym_preproc_directive] = ACTIONS(1360), - [anon_sym_LPAREN2] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1362), - [anon_sym_TILDE] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_SEMI] = ACTIONS(1362), - [anon_sym_typedef] = ACTIONS(1360), - [anon_sym_extern] = ACTIONS(1360), - [anon_sym___attribute__] = ACTIONS(1360), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), - [anon_sym___declspec] = ACTIONS(1360), - [anon_sym___cdecl] = ACTIONS(1360), - [anon_sym___clrcall] = ACTIONS(1360), - [anon_sym___stdcall] = ACTIONS(1360), - [anon_sym___fastcall] = ACTIONS(1360), - [anon_sym___thiscall] = ACTIONS(1360), - [anon_sym___vectorcall] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_signed] = ACTIONS(1360), - [anon_sym_unsigned] = ACTIONS(1360), - [anon_sym_long] = ACTIONS(1360), - [anon_sym_short] = ACTIONS(1360), - [anon_sym_static] = ACTIONS(1360), - [anon_sym_auto] = ACTIONS(1360), - [anon_sym_register] = ACTIONS(1360), - [anon_sym_inline] = ACTIONS(1360), - [anon_sym_thread_local] = ACTIONS(1360), - [anon_sym___thread] = ACTIONS(1360), - [anon_sym_const] = ACTIONS(1360), - [anon_sym_constexpr] = ACTIONS(1360), - [anon_sym_volatile] = ACTIONS(1360), - [anon_sym_restrict] = ACTIONS(1360), - [anon_sym___restrict__] = ACTIONS(1360), - [anon_sym__Atomic] = ACTIONS(1360), - [anon_sym__Noreturn] = ACTIONS(1360), - [anon_sym_noreturn] = ACTIONS(1360), - [sym_primitive_type] = ACTIONS(1360), - [anon_sym_enum] = ACTIONS(1360), - [anon_sym_struct] = ACTIONS(1360), - [anon_sym_union] = ACTIONS(1360), - [anon_sym_if] = ACTIONS(1360), - [anon_sym_switch] = ACTIONS(1360), - [anon_sym_case] = ACTIONS(1360), - [anon_sym_default] = ACTIONS(1360), - [anon_sym_while] = ACTIONS(1360), - [anon_sym_do] = ACTIONS(1360), - [anon_sym_for] = ACTIONS(1360), - [anon_sym_return] = ACTIONS(1360), - [anon_sym_break] = ACTIONS(1360), - [anon_sym_continue] = ACTIONS(1360), - [anon_sym_goto] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1360), - [anon_sym_offsetof] = ACTIONS(1360), - [anon_sym__Generic] = ACTIONS(1360), - [anon_sym_asm] = ACTIONS(1360), - [anon_sym___asm__] = ACTIONS(1360), - [sym_number_literal] = ACTIONS(1362), - [anon_sym_L_SQUOTE] = ACTIONS(1362), - [anon_sym_u_SQUOTE] = ACTIONS(1362), - [anon_sym_U_SQUOTE] = ACTIONS(1362), - [anon_sym_u8_SQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1362), - [anon_sym_L_DQUOTE] = ACTIONS(1362), - [anon_sym_u_DQUOTE] = ACTIONS(1362), - [anon_sym_U_DQUOTE] = ACTIONS(1362), - [anon_sym_u8_DQUOTE] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym_true] = ACTIONS(1360), - [sym_false] = ACTIONS(1360), - [anon_sym_NULL] = ACTIONS(1360), - [anon_sym_nullptr] = ACTIONS(1360), - [sym_comment] = ACTIONS(3), - }, - [442] = { - [sym_attribute_declaration] = STATE(498), - [sym_compound_statement] = STATE(212), - [sym_attributed_statement] = STATE(212), - [sym_labeled_statement] = STATE(212), - [sym_expression_statement] = STATE(212), - [sym_if_statement] = STATE(212), - [sym_switch_statement] = STATE(212), - [sym_case_statement] = STATE(212), - [sym_while_statement] = STATE(212), - [sym_do_statement] = STATE(212), - [sym_for_statement] = STATE(212), - [sym_return_statement] = STATE(212), - [sym_break_statement] = STATE(212), - [sym_continue_statement] = STATE(212), - [sym_goto_statement] = STATE(212), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [sym_identifier] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [443] = { - [sym_attribute_declaration] = STATE(375), - [sym_compound_statement] = STATE(1984), - [sym_attributed_statement] = STATE(1984), - [sym_labeled_statement] = STATE(1984), - [sym_expression_statement] = STATE(1984), - [sym_if_statement] = STATE(1984), - [sym_switch_statement] = STATE(1984), - [sym_case_statement] = STATE(1984), - [sym_while_statement] = STATE(1984), - [sym_do_statement] = STATE(1984), - [sym_for_statement] = STATE(1984), - [sym_return_statement] = STATE(1984), - [sym_break_statement] = STATE(1984), - [sym_continue_statement] = STATE(1984), - [sym_goto_statement] = STATE(1984), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1466), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [444] = { - [sym_attribute_declaration] = STATE(498), - [sym_compound_statement] = STATE(341), - [sym_attributed_statement] = STATE(341), - [sym_labeled_statement] = STATE(341), - [sym_expression_statement] = STATE(341), - [sym_if_statement] = STATE(341), - [sym_switch_statement] = STATE(341), - [sym_case_statement] = STATE(341), - [sym_while_statement] = STATE(341), - [sym_do_statement] = STATE(341), - [sym_for_statement] = STATE(341), - [sym_return_statement] = STATE(341), - [sym_break_statement] = STATE(341), - [sym_continue_statement] = STATE(341), - [sym_goto_statement] = STATE(341), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [sym_identifier] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [392] = { + [sym_identifier] = ACTIONS(1348), + [aux_sym_preproc_include_token1] = ACTIONS(1348), + [aux_sym_preproc_def_token1] = ACTIONS(1348), + [aux_sym_preproc_if_token1] = ACTIONS(1348), + [aux_sym_preproc_if_token2] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1348), + [sym_preproc_directive] = ACTIONS(1348), + [anon_sym_LPAREN2] = ACTIONS(1350), + [anon_sym_BANG] = ACTIONS(1350), + [anon_sym_TILDE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym___extension__] = ACTIONS(1348), + [anon_sym_typedef] = ACTIONS(1348), + [anon_sym_extern] = ACTIONS(1348), + [anon_sym___attribute__] = ACTIONS(1348), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), + [anon_sym___declspec] = ACTIONS(1348), + [anon_sym___cdecl] = ACTIONS(1348), + [anon_sym___clrcall] = ACTIONS(1348), + [anon_sym___stdcall] = ACTIONS(1348), + [anon_sym___fastcall] = ACTIONS(1348), + [anon_sym___thiscall] = ACTIONS(1348), + [anon_sym___vectorcall] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_signed] = ACTIONS(1348), + [anon_sym_unsigned] = ACTIONS(1348), + [anon_sym_long] = ACTIONS(1348), + [anon_sym_short] = ACTIONS(1348), + [anon_sym_static] = ACTIONS(1348), + [anon_sym_auto] = ACTIONS(1348), + [anon_sym_register] = ACTIONS(1348), + [anon_sym_inline] = ACTIONS(1348), + [anon_sym___inline] = ACTIONS(1348), + [anon_sym___inline__] = ACTIONS(1348), + [anon_sym___forceinline] = ACTIONS(1348), + [anon_sym_thread_local] = ACTIONS(1348), + [anon_sym___thread] = ACTIONS(1348), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_constexpr] = ACTIONS(1348), + [anon_sym_volatile] = ACTIONS(1348), + [anon_sym_restrict] = ACTIONS(1348), + [anon_sym___restrict__] = ACTIONS(1348), + [anon_sym__Atomic] = ACTIONS(1348), + [anon_sym__Noreturn] = ACTIONS(1348), + [anon_sym_noreturn] = ACTIONS(1348), + [sym_primitive_type] = ACTIONS(1348), + [anon_sym_enum] = ACTIONS(1348), + [anon_sym_struct] = ACTIONS(1348), + [anon_sym_union] = ACTIONS(1348), + [anon_sym_if] = ACTIONS(1348), + [anon_sym_else] = ACTIONS(1348), + [anon_sym_switch] = ACTIONS(1348), + [anon_sym_case] = ACTIONS(1348), + [anon_sym_default] = ACTIONS(1348), + [anon_sym_while] = ACTIONS(1348), + [anon_sym_do] = ACTIONS(1348), + [anon_sym_for] = ACTIONS(1348), + [anon_sym_return] = ACTIONS(1348), + [anon_sym_break] = ACTIONS(1348), + [anon_sym_continue] = ACTIONS(1348), + [anon_sym_goto] = ACTIONS(1348), + [anon_sym_DASH_DASH] = ACTIONS(1350), + [anon_sym_PLUS_PLUS] = ACTIONS(1350), + [anon_sym_sizeof] = ACTIONS(1348), + [anon_sym___alignof__] = ACTIONS(1348), + [anon_sym___alignof] = ACTIONS(1348), + [anon_sym__alignof] = ACTIONS(1348), + [anon_sym_alignof] = ACTIONS(1348), + [anon_sym__Alignof] = ACTIONS(1348), + [anon_sym_offsetof] = ACTIONS(1348), + [anon_sym___builtin_va_arg] = ACTIONS(1348), + [anon_sym__Generic] = ACTIONS(1348), + [anon_sym_asm] = ACTIONS(1348), + [anon_sym___asm__] = ACTIONS(1348), + [sym_number_literal] = ACTIONS(1350), + [anon_sym_L_SQUOTE] = ACTIONS(1350), + [anon_sym_u_SQUOTE] = ACTIONS(1350), + [anon_sym_U_SQUOTE] = ACTIONS(1350), + [anon_sym_u8_SQUOTE] = ACTIONS(1350), + [anon_sym_SQUOTE] = ACTIONS(1350), + [anon_sym_L_DQUOTE] = ACTIONS(1350), + [anon_sym_u_DQUOTE] = ACTIONS(1350), + [anon_sym_U_DQUOTE] = ACTIONS(1350), + [anon_sym_u8_DQUOTE] = ACTIONS(1350), + [anon_sym_DQUOTE] = ACTIONS(1350), + [sym_true] = ACTIONS(1348), + [sym_false] = ACTIONS(1348), + [anon_sym_NULL] = ACTIONS(1348), + [anon_sym_nullptr] = ACTIONS(1348), [sym_comment] = ACTIONS(3), }, - [445] = { - [sym_attribute_declaration] = STATE(498), - [sym_compound_statement] = STATE(298), - [sym_attributed_statement] = STATE(298), - [sym_labeled_statement] = STATE(298), - [sym_expression_statement] = STATE(298), - [sym_if_statement] = STATE(298), - [sym_switch_statement] = STATE(298), - [sym_case_statement] = STATE(298), - [sym_while_statement] = STATE(298), - [sym_do_statement] = STATE(298), - [sym_for_statement] = STATE(298), - [sym_return_statement] = STATE(298), - [sym_break_statement] = STATE(298), - [sym_continue_statement] = STATE(298), - [sym_goto_statement] = STATE(298), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [sym_identifier] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [393] = { + [sym_identifier] = ACTIONS(1344), + [aux_sym_preproc_include_token1] = ACTIONS(1344), + [aux_sym_preproc_def_token1] = ACTIONS(1344), + [aux_sym_preproc_if_token1] = ACTIONS(1344), + [aux_sym_preproc_if_token2] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), + [sym_preproc_directive] = ACTIONS(1344), + [anon_sym_LPAREN2] = ACTIONS(1346), + [anon_sym_BANG] = ACTIONS(1346), + [anon_sym_TILDE] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1344), + [anon_sym_PLUS] = ACTIONS(1344), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1346), + [anon_sym___extension__] = ACTIONS(1344), + [anon_sym_typedef] = ACTIONS(1344), + [anon_sym_extern] = ACTIONS(1344), + [anon_sym___attribute__] = ACTIONS(1344), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), + [anon_sym___declspec] = ACTIONS(1344), + [anon_sym___cdecl] = ACTIONS(1344), + [anon_sym___clrcall] = ACTIONS(1344), + [anon_sym___stdcall] = ACTIONS(1344), + [anon_sym___fastcall] = ACTIONS(1344), + [anon_sym___thiscall] = ACTIONS(1344), + [anon_sym___vectorcall] = ACTIONS(1344), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_signed] = ACTIONS(1344), + [anon_sym_unsigned] = ACTIONS(1344), + [anon_sym_long] = ACTIONS(1344), + [anon_sym_short] = ACTIONS(1344), + [anon_sym_static] = ACTIONS(1344), + [anon_sym_auto] = ACTIONS(1344), + [anon_sym_register] = ACTIONS(1344), + [anon_sym_inline] = ACTIONS(1344), + [anon_sym___inline] = ACTIONS(1344), + [anon_sym___inline__] = ACTIONS(1344), + [anon_sym___forceinline] = ACTIONS(1344), + [anon_sym_thread_local] = ACTIONS(1344), + [anon_sym___thread] = ACTIONS(1344), + [anon_sym_const] = ACTIONS(1344), + [anon_sym_constexpr] = ACTIONS(1344), + [anon_sym_volatile] = ACTIONS(1344), + [anon_sym_restrict] = ACTIONS(1344), + [anon_sym___restrict__] = ACTIONS(1344), + [anon_sym__Atomic] = ACTIONS(1344), + [anon_sym__Noreturn] = ACTIONS(1344), + [anon_sym_noreturn] = ACTIONS(1344), + [sym_primitive_type] = ACTIONS(1344), + [anon_sym_enum] = ACTIONS(1344), + [anon_sym_struct] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_else] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(1344), + [anon_sym_case] = ACTIONS(1344), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_while] = ACTIONS(1344), + [anon_sym_do] = ACTIONS(1344), + [anon_sym_for] = ACTIONS(1344), + [anon_sym_return] = ACTIONS(1344), + [anon_sym_break] = ACTIONS(1344), + [anon_sym_continue] = ACTIONS(1344), + [anon_sym_goto] = ACTIONS(1344), + [anon_sym_DASH_DASH] = ACTIONS(1346), + [anon_sym_PLUS_PLUS] = ACTIONS(1346), + [anon_sym_sizeof] = ACTIONS(1344), + [anon_sym___alignof__] = ACTIONS(1344), + [anon_sym___alignof] = ACTIONS(1344), + [anon_sym__alignof] = ACTIONS(1344), + [anon_sym_alignof] = ACTIONS(1344), + [anon_sym__Alignof] = ACTIONS(1344), + [anon_sym_offsetof] = ACTIONS(1344), + [anon_sym___builtin_va_arg] = ACTIONS(1344), + [anon_sym__Generic] = ACTIONS(1344), + [anon_sym_asm] = ACTIONS(1344), + [anon_sym___asm__] = ACTIONS(1344), + [sym_number_literal] = ACTIONS(1346), + [anon_sym_L_SQUOTE] = ACTIONS(1346), + [anon_sym_u_SQUOTE] = ACTIONS(1346), + [anon_sym_U_SQUOTE] = ACTIONS(1346), + [anon_sym_u8_SQUOTE] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1346), + [anon_sym_L_DQUOTE] = ACTIONS(1346), + [anon_sym_u_DQUOTE] = ACTIONS(1346), + [anon_sym_U_DQUOTE] = ACTIONS(1346), + [anon_sym_u8_DQUOTE] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1346), + [sym_true] = ACTIONS(1344), + [sym_false] = ACTIONS(1344), + [anon_sym_NULL] = ACTIONS(1344), + [anon_sym_nullptr] = ACTIONS(1344), [sym_comment] = ACTIONS(3), }, - [446] = { - [sym_attribute_declaration] = STATE(407), - [sym_compound_statement] = STATE(122), - [sym_attributed_statement] = STATE(122), - [sym_labeled_statement] = STATE(122), - [sym_expression_statement] = STATE(122), - [sym_if_statement] = STATE(122), - [sym_switch_statement] = STATE(122), - [sym_case_statement] = STATE(122), - [sym_while_statement] = STATE(122), - [sym_do_statement] = STATE(122), - [sym_for_statement] = STATE(122), - [sym_return_statement] = STATE(122), - [sym_break_statement] = STATE(122), - [sym_continue_statement] = STATE(122), - [sym_goto_statement] = STATE(122), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1801), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [sym_identifier] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [394] = { + [sym_identifier] = ACTIONS(1340), + [aux_sym_preproc_include_token1] = ACTIONS(1340), + [aux_sym_preproc_def_token1] = ACTIONS(1340), + [aux_sym_preproc_if_token1] = ACTIONS(1340), + [aux_sym_preproc_if_token2] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), + [sym_preproc_directive] = ACTIONS(1340), + [anon_sym_LPAREN2] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym___extension__] = ACTIONS(1340), + [anon_sym_typedef] = ACTIONS(1340), + [anon_sym_extern] = ACTIONS(1340), + [anon_sym___attribute__] = ACTIONS(1340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), + [anon_sym___declspec] = ACTIONS(1340), + [anon_sym___cdecl] = ACTIONS(1340), + [anon_sym___clrcall] = ACTIONS(1340), + [anon_sym___stdcall] = ACTIONS(1340), + [anon_sym___fastcall] = ACTIONS(1340), + [anon_sym___thiscall] = ACTIONS(1340), + [anon_sym___vectorcall] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(1342), + [anon_sym_signed] = ACTIONS(1340), + [anon_sym_unsigned] = ACTIONS(1340), + [anon_sym_long] = ACTIONS(1340), + [anon_sym_short] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_auto] = ACTIONS(1340), + [anon_sym_register] = ACTIONS(1340), + [anon_sym_inline] = ACTIONS(1340), + [anon_sym___inline] = ACTIONS(1340), + [anon_sym___inline__] = ACTIONS(1340), + [anon_sym___forceinline] = ACTIONS(1340), + [anon_sym_thread_local] = ACTIONS(1340), + [anon_sym___thread] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_constexpr] = ACTIONS(1340), + [anon_sym_volatile] = ACTIONS(1340), + [anon_sym_restrict] = ACTIONS(1340), + [anon_sym___restrict__] = ACTIONS(1340), + [anon_sym__Atomic] = ACTIONS(1340), + [anon_sym__Noreturn] = ACTIONS(1340), + [anon_sym_noreturn] = ACTIONS(1340), + [sym_primitive_type] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_else] = ACTIONS(1340), + [anon_sym_switch] = ACTIONS(1340), + [anon_sym_case] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [anon_sym_do] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_goto] = ACTIONS(1340), + [anon_sym_DASH_DASH] = ACTIONS(1342), + [anon_sym_PLUS_PLUS] = ACTIONS(1342), + [anon_sym_sizeof] = ACTIONS(1340), + [anon_sym___alignof__] = ACTIONS(1340), + [anon_sym___alignof] = ACTIONS(1340), + [anon_sym__alignof] = ACTIONS(1340), + [anon_sym_alignof] = ACTIONS(1340), + [anon_sym__Alignof] = ACTIONS(1340), + [anon_sym_offsetof] = ACTIONS(1340), + [anon_sym___builtin_va_arg] = ACTIONS(1340), + [anon_sym__Generic] = ACTIONS(1340), + [anon_sym_asm] = ACTIONS(1340), + [anon_sym___asm__] = ACTIONS(1340), + [sym_number_literal] = ACTIONS(1342), + [anon_sym_L_SQUOTE] = ACTIONS(1342), + [anon_sym_u_SQUOTE] = ACTIONS(1342), + [anon_sym_U_SQUOTE] = ACTIONS(1342), + [anon_sym_u8_SQUOTE] = ACTIONS(1342), + [anon_sym_SQUOTE] = ACTIONS(1342), + [anon_sym_L_DQUOTE] = ACTIONS(1342), + [anon_sym_u_DQUOTE] = ACTIONS(1342), + [anon_sym_U_DQUOTE] = ACTIONS(1342), + [anon_sym_u8_DQUOTE] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1342), + [sym_true] = ACTIONS(1340), + [sym_false] = ACTIONS(1340), + [anon_sym_NULL] = ACTIONS(1340), + [anon_sym_nullptr] = ACTIONS(1340), [sym_comment] = ACTIONS(3), }, - [447] = { - [sym_attribute_declaration] = STATE(375), - [sym_compound_statement] = STATE(272), - [sym_attributed_statement] = STATE(272), - [sym_labeled_statement] = STATE(272), - [sym_expression_statement] = STATE(272), - [sym_if_statement] = STATE(272), - [sym_switch_statement] = STATE(272), - [sym_case_statement] = STATE(272), - [sym_while_statement] = STATE(272), - [sym_do_statement] = STATE(272), - [sym_for_statement] = STATE(272), - [sym_return_statement] = STATE(272), - [sym_break_statement] = STATE(272), - [sym_continue_statement] = STATE(272), - [sym_goto_statement] = STATE(272), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1466), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [395] = { + [ts_builtin_sym_end] = ACTIONS(1258), + [sym_identifier] = ACTIONS(1256), + [aux_sym_preproc_include_token1] = ACTIONS(1256), + [aux_sym_preproc_def_token1] = ACTIONS(1256), + [aux_sym_preproc_if_token1] = ACTIONS(1256), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1256), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1256), + [sym_preproc_directive] = ACTIONS(1256), + [anon_sym_LPAREN2] = ACTIONS(1258), + [anon_sym_BANG] = ACTIONS(1258), + [anon_sym_TILDE] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_STAR] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1258), + [anon_sym___extension__] = ACTIONS(1256), + [anon_sym_typedef] = ACTIONS(1256), + [anon_sym_extern] = ACTIONS(1256), + [anon_sym___attribute__] = ACTIONS(1256), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1258), + [anon_sym___declspec] = ACTIONS(1256), + [anon_sym___cdecl] = ACTIONS(1256), + [anon_sym___clrcall] = ACTIONS(1256), + [anon_sym___stdcall] = ACTIONS(1256), + [anon_sym___fastcall] = ACTIONS(1256), + [anon_sym___thiscall] = ACTIONS(1256), + [anon_sym___vectorcall] = ACTIONS(1256), + [anon_sym_LBRACE] = ACTIONS(1258), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_long] = ACTIONS(1256), + [anon_sym_short] = ACTIONS(1256), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_auto] = ACTIONS(1256), + [anon_sym_register] = ACTIONS(1256), + [anon_sym_inline] = ACTIONS(1256), + [anon_sym___inline] = ACTIONS(1256), + [anon_sym___inline__] = ACTIONS(1256), + [anon_sym___forceinline] = ACTIONS(1256), + [anon_sym_thread_local] = ACTIONS(1256), + [anon_sym___thread] = ACTIONS(1256), + [anon_sym_const] = ACTIONS(1256), + [anon_sym_constexpr] = ACTIONS(1256), + [anon_sym_volatile] = ACTIONS(1256), + [anon_sym_restrict] = ACTIONS(1256), + [anon_sym___restrict__] = ACTIONS(1256), + [anon_sym__Atomic] = ACTIONS(1256), + [anon_sym__Noreturn] = ACTIONS(1256), + [anon_sym_noreturn] = ACTIONS(1256), + [sym_primitive_type] = ACTIONS(1256), + [anon_sym_enum] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1256), + [anon_sym_union] = ACTIONS(1256), + [anon_sym_if] = ACTIONS(1256), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_switch] = ACTIONS(1256), + [anon_sym_case] = ACTIONS(1256), + [anon_sym_default] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1256), + [anon_sym_do] = ACTIONS(1256), + [anon_sym_for] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1256), + [anon_sym_break] = ACTIONS(1256), + [anon_sym_continue] = ACTIONS(1256), + [anon_sym_goto] = ACTIONS(1256), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_sizeof] = ACTIONS(1256), + [anon_sym___alignof__] = ACTIONS(1256), + [anon_sym___alignof] = ACTIONS(1256), + [anon_sym__alignof] = ACTIONS(1256), + [anon_sym_alignof] = ACTIONS(1256), + [anon_sym__Alignof] = ACTIONS(1256), + [anon_sym_offsetof] = ACTIONS(1256), + [anon_sym___builtin_va_arg] = ACTIONS(1256), + [anon_sym__Generic] = ACTIONS(1256), + [anon_sym_asm] = ACTIONS(1256), + [anon_sym___asm__] = ACTIONS(1256), + [sym_number_literal] = ACTIONS(1258), + [anon_sym_L_SQUOTE] = ACTIONS(1258), + [anon_sym_u_SQUOTE] = ACTIONS(1258), + [anon_sym_U_SQUOTE] = ACTIONS(1258), + [anon_sym_u8_SQUOTE] = ACTIONS(1258), + [anon_sym_SQUOTE] = ACTIONS(1258), + [anon_sym_L_DQUOTE] = ACTIONS(1258), + [anon_sym_u_DQUOTE] = ACTIONS(1258), + [anon_sym_U_DQUOTE] = ACTIONS(1258), + [anon_sym_u8_DQUOTE] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(1258), + [sym_true] = ACTIONS(1256), + [sym_false] = ACTIONS(1256), + [anon_sym_NULL] = ACTIONS(1256), + [anon_sym_nullptr] = ACTIONS(1256), [sym_comment] = ACTIONS(3), }, - [448] = { - [sym_attribute_declaration] = STATE(407), - [sym_compound_statement] = STATE(120), - [sym_attributed_statement] = STATE(120), - [sym_labeled_statement] = STATE(120), - [sym_expression_statement] = STATE(120), - [sym_if_statement] = STATE(120), - [sym_switch_statement] = STATE(120), - [sym_case_statement] = STATE(120), - [sym_while_statement] = STATE(120), - [sym_do_statement] = STATE(120), - [sym_for_statement] = STATE(120), - [sym_return_statement] = STATE(120), - [sym_break_statement] = STATE(120), - [sym_continue_statement] = STATE(120), - [sym_goto_statement] = STATE(120), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1801), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [sym_identifier] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [449] = { - [sym_identifier] = ACTIONS(1372), - [aux_sym_preproc_include_token1] = ACTIONS(1372), - [aux_sym_preproc_def_token1] = ACTIONS(1372), - [aux_sym_preproc_if_token1] = ACTIONS(1372), - [aux_sym_preproc_if_token2] = ACTIONS(1372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), - [sym_preproc_directive] = ACTIONS(1372), - [anon_sym_LPAREN2] = ACTIONS(1374), - [anon_sym_BANG] = ACTIONS(1374), - [anon_sym_TILDE] = ACTIONS(1374), - [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_PLUS] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1374), - [anon_sym_AMP] = ACTIONS(1374), - [anon_sym_SEMI] = ACTIONS(1374), - [anon_sym_typedef] = ACTIONS(1372), - [anon_sym_extern] = ACTIONS(1372), - [anon_sym___attribute__] = ACTIONS(1372), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym___declspec] = ACTIONS(1372), - [anon_sym___cdecl] = ACTIONS(1372), - [anon_sym___clrcall] = ACTIONS(1372), - [anon_sym___stdcall] = ACTIONS(1372), - [anon_sym___fastcall] = ACTIONS(1372), - [anon_sym___thiscall] = ACTIONS(1372), - [anon_sym___vectorcall] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_signed] = ACTIONS(1372), - [anon_sym_unsigned] = ACTIONS(1372), - [anon_sym_long] = ACTIONS(1372), - [anon_sym_short] = ACTIONS(1372), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_auto] = ACTIONS(1372), - [anon_sym_register] = ACTIONS(1372), - [anon_sym_inline] = ACTIONS(1372), - [anon_sym_thread_local] = ACTIONS(1372), - [anon_sym___thread] = ACTIONS(1372), - [anon_sym_const] = ACTIONS(1372), - [anon_sym_constexpr] = ACTIONS(1372), - [anon_sym_volatile] = ACTIONS(1372), - [anon_sym_restrict] = ACTIONS(1372), - [anon_sym___restrict__] = ACTIONS(1372), - [anon_sym__Atomic] = ACTIONS(1372), - [anon_sym__Noreturn] = ACTIONS(1372), - [anon_sym_noreturn] = ACTIONS(1372), - [sym_primitive_type] = ACTIONS(1372), - [anon_sym_enum] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1372), - [anon_sym_union] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1372), - [anon_sym_switch] = ACTIONS(1372), - [anon_sym_case] = ACTIONS(1372), - [anon_sym_default] = ACTIONS(1372), - [anon_sym_while] = ACTIONS(1372), - [anon_sym_do] = ACTIONS(1372), - [anon_sym_for] = ACTIONS(1372), - [anon_sym_return] = ACTIONS(1372), - [anon_sym_break] = ACTIONS(1372), - [anon_sym_continue] = ACTIONS(1372), - [anon_sym_goto] = ACTIONS(1372), - [anon_sym_DASH_DASH] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1374), - [anon_sym_sizeof] = ACTIONS(1372), - [anon_sym_offsetof] = ACTIONS(1372), - [anon_sym__Generic] = ACTIONS(1372), - [anon_sym_asm] = ACTIONS(1372), - [anon_sym___asm__] = ACTIONS(1372), - [sym_number_literal] = ACTIONS(1374), - [anon_sym_L_SQUOTE] = ACTIONS(1374), - [anon_sym_u_SQUOTE] = ACTIONS(1374), - [anon_sym_U_SQUOTE] = ACTIONS(1374), - [anon_sym_u8_SQUOTE] = ACTIONS(1374), - [anon_sym_SQUOTE] = ACTIONS(1374), - [anon_sym_L_DQUOTE] = ACTIONS(1374), - [anon_sym_u_DQUOTE] = ACTIONS(1374), - [anon_sym_U_DQUOTE] = ACTIONS(1374), - [anon_sym_u8_DQUOTE] = ACTIONS(1374), - [anon_sym_DQUOTE] = ACTIONS(1374), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [anon_sym_NULL] = ACTIONS(1372), - [anon_sym_nullptr] = ACTIONS(1372), - [sym_comment] = ACTIONS(3), - }, - [450] = { - [sym_attribute_declaration] = STATE(498), - [sym_compound_statement] = STATE(340), - [sym_attributed_statement] = STATE(340), - [sym_labeled_statement] = STATE(340), - [sym_expression_statement] = STATE(340), - [sym_if_statement] = STATE(340), - [sym_switch_statement] = STATE(340), - [sym_case_statement] = STATE(340), - [sym_while_statement] = STATE(340), - [sym_do_statement] = STATE(340), - [sym_for_statement] = STATE(340), - [sym_return_statement] = STATE(340), - [sym_break_statement] = STATE(340), - [sym_continue_statement] = STATE(340), - [sym_goto_statement] = STATE(340), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [sym_identifier] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [451] = { - [sym_attribute_declaration] = STATE(498), - [sym_compound_statement] = STATE(339), - [sym_attributed_statement] = STATE(339), - [sym_labeled_statement] = STATE(339), - [sym_expression_statement] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_switch_statement] = STATE(339), - [sym_case_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_do_statement] = STATE(339), - [sym_for_statement] = STATE(339), - [sym_return_statement] = STATE(339), - [sym_break_statement] = STATE(339), - [sym_continue_statement] = STATE(339), - [sym_goto_statement] = STATE(339), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [sym_identifier] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [396] = { + [sym_identifier] = ACTIONS(1332), + [aux_sym_preproc_include_token1] = ACTIONS(1332), + [aux_sym_preproc_def_token1] = ACTIONS(1332), + [aux_sym_preproc_if_token1] = ACTIONS(1332), + [aux_sym_preproc_if_token2] = ACTIONS(1332), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), + [sym_preproc_directive] = ACTIONS(1332), + [anon_sym_LPAREN2] = ACTIONS(1334), + [anon_sym_BANG] = ACTIONS(1334), + [anon_sym_TILDE] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1332), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1334), + [anon_sym___extension__] = ACTIONS(1332), + [anon_sym_typedef] = ACTIONS(1332), + [anon_sym_extern] = ACTIONS(1332), + [anon_sym___attribute__] = ACTIONS(1332), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), + [anon_sym___declspec] = ACTIONS(1332), + [anon_sym___cdecl] = ACTIONS(1332), + [anon_sym___clrcall] = ACTIONS(1332), + [anon_sym___stdcall] = ACTIONS(1332), + [anon_sym___fastcall] = ACTIONS(1332), + [anon_sym___thiscall] = ACTIONS(1332), + [anon_sym___vectorcall] = ACTIONS(1332), + [anon_sym_LBRACE] = ACTIONS(1334), + [anon_sym_signed] = ACTIONS(1332), + [anon_sym_unsigned] = ACTIONS(1332), + [anon_sym_long] = ACTIONS(1332), + [anon_sym_short] = ACTIONS(1332), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_auto] = ACTIONS(1332), + [anon_sym_register] = ACTIONS(1332), + [anon_sym_inline] = ACTIONS(1332), + [anon_sym___inline] = ACTIONS(1332), + [anon_sym___inline__] = ACTIONS(1332), + [anon_sym___forceinline] = ACTIONS(1332), + [anon_sym_thread_local] = ACTIONS(1332), + [anon_sym___thread] = ACTIONS(1332), + [anon_sym_const] = ACTIONS(1332), + [anon_sym_constexpr] = ACTIONS(1332), + [anon_sym_volatile] = ACTIONS(1332), + [anon_sym_restrict] = ACTIONS(1332), + [anon_sym___restrict__] = ACTIONS(1332), + [anon_sym__Atomic] = ACTIONS(1332), + [anon_sym__Noreturn] = ACTIONS(1332), + [anon_sym_noreturn] = ACTIONS(1332), + [sym_primitive_type] = ACTIONS(1332), + [anon_sym_enum] = ACTIONS(1332), + [anon_sym_struct] = ACTIONS(1332), + [anon_sym_union] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(1332), + [anon_sym_else] = ACTIONS(1332), + [anon_sym_switch] = ACTIONS(1332), + [anon_sym_case] = ACTIONS(1332), + [anon_sym_default] = ACTIONS(1332), + [anon_sym_while] = ACTIONS(1332), + [anon_sym_do] = ACTIONS(1332), + [anon_sym_for] = ACTIONS(1332), + [anon_sym_return] = ACTIONS(1332), + [anon_sym_break] = ACTIONS(1332), + [anon_sym_continue] = ACTIONS(1332), + [anon_sym_goto] = ACTIONS(1332), + [anon_sym_DASH_DASH] = ACTIONS(1334), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_sizeof] = ACTIONS(1332), + [anon_sym___alignof__] = ACTIONS(1332), + [anon_sym___alignof] = ACTIONS(1332), + [anon_sym__alignof] = ACTIONS(1332), + [anon_sym_alignof] = ACTIONS(1332), + [anon_sym__Alignof] = ACTIONS(1332), + [anon_sym_offsetof] = ACTIONS(1332), + [anon_sym___builtin_va_arg] = ACTIONS(1332), + [anon_sym__Generic] = ACTIONS(1332), + [anon_sym_asm] = ACTIONS(1332), + [anon_sym___asm__] = ACTIONS(1332), + [sym_number_literal] = ACTIONS(1334), + [anon_sym_L_SQUOTE] = ACTIONS(1334), + [anon_sym_u_SQUOTE] = ACTIONS(1334), + [anon_sym_U_SQUOTE] = ACTIONS(1334), + [anon_sym_u8_SQUOTE] = ACTIONS(1334), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_L_DQUOTE] = ACTIONS(1334), + [anon_sym_u_DQUOTE] = ACTIONS(1334), + [anon_sym_U_DQUOTE] = ACTIONS(1334), + [anon_sym_u8_DQUOTE] = ACTIONS(1334), + [anon_sym_DQUOTE] = ACTIONS(1334), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [anon_sym_NULL] = ACTIONS(1332), + [anon_sym_nullptr] = ACTIONS(1332), [sym_comment] = ACTIONS(3), }, - [452] = { - [sym_attribute_declaration] = STATE(407), - [sym_compound_statement] = STATE(119), - [sym_attributed_statement] = STATE(119), - [sym_labeled_statement] = STATE(119), - [sym_expression_statement] = STATE(119), - [sym_if_statement] = STATE(119), - [sym_switch_statement] = STATE(119), - [sym_case_statement] = STATE(119), - [sym_while_statement] = STATE(119), - [sym_do_statement] = STATE(119), - [sym_for_statement] = STATE(119), - [sym_return_statement] = STATE(119), - [sym_break_statement] = STATE(119), - [sym_continue_statement] = STATE(119), - [sym_goto_statement] = STATE(119), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1801), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [sym_identifier] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [397] = { + [sym_identifier] = ACTIONS(1328), + [aux_sym_preproc_include_token1] = ACTIONS(1328), + [aux_sym_preproc_def_token1] = ACTIONS(1328), + [aux_sym_preproc_if_token1] = ACTIONS(1328), + [aux_sym_preproc_if_token2] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), + [sym_preproc_directive] = ACTIONS(1328), + [anon_sym_LPAREN2] = ACTIONS(1330), + [anon_sym_BANG] = ACTIONS(1330), + [anon_sym_TILDE] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1328), + [anon_sym_STAR] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1330), + [anon_sym_SEMI] = ACTIONS(1330), + [anon_sym___extension__] = ACTIONS(1328), + [anon_sym_typedef] = ACTIONS(1328), + [anon_sym_extern] = ACTIONS(1328), + [anon_sym___attribute__] = ACTIONS(1328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), + [anon_sym___declspec] = ACTIONS(1328), + [anon_sym___cdecl] = ACTIONS(1328), + [anon_sym___clrcall] = ACTIONS(1328), + [anon_sym___stdcall] = ACTIONS(1328), + [anon_sym___fastcall] = ACTIONS(1328), + [anon_sym___thiscall] = ACTIONS(1328), + [anon_sym___vectorcall] = ACTIONS(1328), + [anon_sym_LBRACE] = ACTIONS(1330), + [anon_sym_signed] = ACTIONS(1328), + [anon_sym_unsigned] = ACTIONS(1328), + [anon_sym_long] = ACTIONS(1328), + [anon_sym_short] = ACTIONS(1328), + [anon_sym_static] = ACTIONS(1328), + [anon_sym_auto] = ACTIONS(1328), + [anon_sym_register] = ACTIONS(1328), + [anon_sym_inline] = ACTIONS(1328), + [anon_sym___inline] = ACTIONS(1328), + [anon_sym___inline__] = ACTIONS(1328), + [anon_sym___forceinline] = ACTIONS(1328), + [anon_sym_thread_local] = ACTIONS(1328), + [anon_sym___thread] = ACTIONS(1328), + [anon_sym_const] = ACTIONS(1328), + [anon_sym_constexpr] = ACTIONS(1328), + [anon_sym_volatile] = ACTIONS(1328), + [anon_sym_restrict] = ACTIONS(1328), + [anon_sym___restrict__] = ACTIONS(1328), + [anon_sym__Atomic] = ACTIONS(1328), + [anon_sym__Noreturn] = ACTIONS(1328), + [anon_sym_noreturn] = ACTIONS(1328), + [sym_primitive_type] = ACTIONS(1328), + [anon_sym_enum] = ACTIONS(1328), + [anon_sym_struct] = ACTIONS(1328), + [anon_sym_union] = ACTIONS(1328), + [anon_sym_if] = ACTIONS(1328), + [anon_sym_else] = ACTIONS(1328), + [anon_sym_switch] = ACTIONS(1328), + [anon_sym_case] = ACTIONS(1328), + [anon_sym_default] = ACTIONS(1328), + [anon_sym_while] = ACTIONS(1328), + [anon_sym_do] = ACTIONS(1328), + [anon_sym_for] = ACTIONS(1328), + [anon_sym_return] = ACTIONS(1328), + [anon_sym_break] = ACTIONS(1328), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1328), + [anon_sym_DASH_DASH] = ACTIONS(1330), + [anon_sym_PLUS_PLUS] = ACTIONS(1330), + [anon_sym_sizeof] = ACTIONS(1328), + [anon_sym___alignof__] = ACTIONS(1328), + [anon_sym___alignof] = ACTIONS(1328), + [anon_sym__alignof] = ACTIONS(1328), + [anon_sym_alignof] = ACTIONS(1328), + [anon_sym__Alignof] = ACTIONS(1328), + [anon_sym_offsetof] = ACTIONS(1328), + [anon_sym___builtin_va_arg] = ACTIONS(1328), + [anon_sym__Generic] = ACTIONS(1328), + [anon_sym_asm] = ACTIONS(1328), + [anon_sym___asm__] = ACTIONS(1328), + [sym_number_literal] = ACTIONS(1330), + [anon_sym_L_SQUOTE] = ACTIONS(1330), + [anon_sym_u_SQUOTE] = ACTIONS(1330), + [anon_sym_U_SQUOTE] = ACTIONS(1330), + [anon_sym_u8_SQUOTE] = ACTIONS(1330), + [anon_sym_SQUOTE] = ACTIONS(1330), + [anon_sym_L_DQUOTE] = ACTIONS(1330), + [anon_sym_u_DQUOTE] = ACTIONS(1330), + [anon_sym_U_DQUOTE] = ACTIONS(1330), + [anon_sym_u8_DQUOTE] = ACTIONS(1330), + [anon_sym_DQUOTE] = ACTIONS(1330), + [sym_true] = ACTIONS(1328), + [sym_false] = ACTIONS(1328), + [anon_sym_NULL] = ACTIONS(1328), + [anon_sym_nullptr] = ACTIONS(1328), [sym_comment] = ACTIONS(3), }, - [453] = { - [sym_attribute_declaration] = STATE(407), - [sym_compound_statement] = STATE(118), - [sym_attributed_statement] = STATE(118), - [sym_labeled_statement] = STATE(118), - [sym_expression_statement] = STATE(118), - [sym_if_statement] = STATE(118), - [sym_switch_statement] = STATE(118), - [sym_case_statement] = STATE(118), - [sym_while_statement] = STATE(118), - [sym_do_statement] = STATE(118), - [sym_for_statement] = STATE(118), - [sym_return_statement] = STATE(118), - [sym_break_statement] = STATE(118), - [sym_continue_statement] = STATE(118), - [sym_goto_statement] = STATE(118), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1801), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [sym_identifier] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [398] = { + [sym_identifier] = ACTIONS(1324), + [aux_sym_preproc_include_token1] = ACTIONS(1324), + [aux_sym_preproc_def_token1] = ACTIONS(1324), + [aux_sym_preproc_if_token1] = ACTIONS(1324), + [aux_sym_preproc_if_token2] = ACTIONS(1324), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), + [sym_preproc_directive] = ACTIONS(1324), + [anon_sym_LPAREN2] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1324), + [anon_sym_STAR] = ACTIONS(1326), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_SEMI] = ACTIONS(1326), + [anon_sym___extension__] = ACTIONS(1324), + [anon_sym_typedef] = ACTIONS(1324), + [anon_sym_extern] = ACTIONS(1324), + [anon_sym___attribute__] = ACTIONS(1324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), + [anon_sym___declspec] = ACTIONS(1324), + [anon_sym___cdecl] = ACTIONS(1324), + [anon_sym___clrcall] = ACTIONS(1324), + [anon_sym___stdcall] = ACTIONS(1324), + [anon_sym___fastcall] = ACTIONS(1324), + [anon_sym___thiscall] = ACTIONS(1324), + [anon_sym___vectorcall] = ACTIONS(1324), + [anon_sym_LBRACE] = ACTIONS(1326), + [anon_sym_signed] = ACTIONS(1324), + [anon_sym_unsigned] = ACTIONS(1324), + [anon_sym_long] = ACTIONS(1324), + [anon_sym_short] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(1324), + [anon_sym_auto] = ACTIONS(1324), + [anon_sym_register] = ACTIONS(1324), + [anon_sym_inline] = ACTIONS(1324), + [anon_sym___inline] = ACTIONS(1324), + [anon_sym___inline__] = ACTIONS(1324), + [anon_sym___forceinline] = ACTIONS(1324), + [anon_sym_thread_local] = ACTIONS(1324), + [anon_sym___thread] = ACTIONS(1324), + [anon_sym_const] = ACTIONS(1324), + [anon_sym_constexpr] = ACTIONS(1324), + [anon_sym_volatile] = ACTIONS(1324), + [anon_sym_restrict] = ACTIONS(1324), + [anon_sym___restrict__] = ACTIONS(1324), + [anon_sym__Atomic] = ACTIONS(1324), + [anon_sym__Noreturn] = ACTIONS(1324), + [anon_sym_noreturn] = ACTIONS(1324), + [sym_primitive_type] = ACTIONS(1324), + [anon_sym_enum] = ACTIONS(1324), + [anon_sym_struct] = ACTIONS(1324), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_if] = ACTIONS(1324), + [anon_sym_else] = ACTIONS(1324), + [anon_sym_switch] = ACTIONS(1324), + [anon_sym_case] = ACTIONS(1324), + [anon_sym_default] = ACTIONS(1324), + [anon_sym_while] = ACTIONS(1324), + [anon_sym_do] = ACTIONS(1324), + [anon_sym_for] = ACTIONS(1324), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1324), + [anon_sym_continue] = ACTIONS(1324), + [anon_sym_goto] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1326), + [anon_sym_PLUS_PLUS] = ACTIONS(1326), + [anon_sym_sizeof] = ACTIONS(1324), + [anon_sym___alignof__] = ACTIONS(1324), + [anon_sym___alignof] = ACTIONS(1324), + [anon_sym__alignof] = ACTIONS(1324), + [anon_sym_alignof] = ACTIONS(1324), + [anon_sym__Alignof] = ACTIONS(1324), + [anon_sym_offsetof] = ACTIONS(1324), + [anon_sym___builtin_va_arg] = ACTIONS(1324), + [anon_sym__Generic] = ACTIONS(1324), + [anon_sym_asm] = ACTIONS(1324), + [anon_sym___asm__] = ACTIONS(1324), + [sym_number_literal] = ACTIONS(1326), + [anon_sym_L_SQUOTE] = ACTIONS(1326), + [anon_sym_u_SQUOTE] = ACTIONS(1326), + [anon_sym_U_SQUOTE] = ACTIONS(1326), + [anon_sym_u8_SQUOTE] = ACTIONS(1326), + [anon_sym_SQUOTE] = ACTIONS(1326), + [anon_sym_L_DQUOTE] = ACTIONS(1326), + [anon_sym_u_DQUOTE] = ACTIONS(1326), + [anon_sym_U_DQUOTE] = ACTIONS(1326), + [anon_sym_u8_DQUOTE] = ACTIONS(1326), + [anon_sym_DQUOTE] = ACTIONS(1326), + [sym_true] = ACTIONS(1324), + [sym_false] = ACTIONS(1324), + [anon_sym_NULL] = ACTIONS(1324), + [anon_sym_nullptr] = ACTIONS(1324), [sym_comment] = ACTIONS(3), }, - [454] = { - [sym_attribute_declaration] = STATE(498), - [sym_compound_statement] = STATE(224), - [sym_attributed_statement] = STATE(224), - [sym_labeled_statement] = STATE(224), - [sym_expression_statement] = STATE(224), - [sym_if_statement] = STATE(224), - [sym_switch_statement] = STATE(224), - [sym_case_statement] = STATE(224), - [sym_while_statement] = STATE(224), - [sym_do_statement] = STATE(224), - [sym_for_statement] = STATE(224), - [sym_return_statement] = STATE(224), - [sym_break_statement] = STATE(224), - [sym_continue_statement] = STATE(224), - [sym_goto_statement] = STATE(224), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [sym_identifier] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [399] = { + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym___builtin_va_arg] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, - [455] = { - [sym_attribute_declaration] = STATE(407), - [sym_compound_statement] = STATE(117), - [sym_attributed_statement] = STATE(117), - [sym_labeled_statement] = STATE(117), - [sym_expression_statement] = STATE(117), - [sym_if_statement] = STATE(117), - [sym_switch_statement] = STATE(117), - [sym_case_statement] = STATE(117), - [sym_while_statement] = STATE(117), - [sym_do_statement] = STATE(117), - [sym_for_statement] = STATE(117), - [sym_return_statement] = STATE(117), - [sym_break_statement] = STATE(117), - [sym_continue_statement] = STATE(117), - [sym_goto_statement] = STATE(117), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1801), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [sym_identifier] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [456] = { - [sym_attribute_declaration] = STATE(407), - [sym_compound_statement] = STATE(116), - [sym_attributed_statement] = STATE(116), - [sym_labeled_statement] = STATE(116), - [sym_expression_statement] = STATE(116), - [sym_if_statement] = STATE(116), - [sym_switch_statement] = STATE(116), - [sym_case_statement] = STATE(116), - [sym_while_statement] = STATE(116), - [sym_do_statement] = STATE(116), - [sym_for_statement] = STATE(116), - [sym_return_statement] = STATE(116), - [sym_break_statement] = STATE(116), - [sym_continue_statement] = STATE(116), - [sym_goto_statement] = STATE(116), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1801), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [sym_identifier] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [457] = { - [sym_attribute_declaration] = STATE(407), - [sym_compound_statement] = STATE(115), - [sym_attributed_statement] = STATE(115), - [sym_labeled_statement] = STATE(115), - [sym_expression_statement] = STATE(115), - [sym_if_statement] = STATE(115), - [sym_switch_statement] = STATE(115), - [sym_case_statement] = STATE(115), - [sym_while_statement] = STATE(115), - [sym_do_statement] = STATE(115), - [sym_for_statement] = STATE(115), - [sym_return_statement] = STATE(115), - [sym_break_statement] = STATE(115), - [sym_continue_statement] = STATE(115), - [sym_goto_statement] = STATE(115), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1801), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [sym_identifier] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [400] = { + [ts_builtin_sym_end] = ACTIONS(1250), + [sym_identifier] = ACTIONS(1248), + [aux_sym_preproc_include_token1] = ACTIONS(1248), + [aux_sym_preproc_def_token1] = ACTIONS(1248), + [aux_sym_preproc_if_token1] = ACTIONS(1248), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1248), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1248), + [sym_preproc_directive] = ACTIONS(1248), + [anon_sym_LPAREN2] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1250), + [anon_sym_TILDE] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_PLUS] = ACTIONS(1248), + [anon_sym_STAR] = ACTIONS(1250), + [anon_sym_AMP] = ACTIONS(1250), + [anon_sym_SEMI] = ACTIONS(1250), + [anon_sym___extension__] = ACTIONS(1248), + [anon_sym_typedef] = ACTIONS(1248), + [anon_sym_extern] = ACTIONS(1248), + [anon_sym___attribute__] = ACTIONS(1248), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1250), + [anon_sym___declspec] = ACTIONS(1248), + [anon_sym___cdecl] = ACTIONS(1248), + [anon_sym___clrcall] = ACTIONS(1248), + [anon_sym___stdcall] = ACTIONS(1248), + [anon_sym___fastcall] = ACTIONS(1248), + [anon_sym___thiscall] = ACTIONS(1248), + [anon_sym___vectorcall] = ACTIONS(1248), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_signed] = ACTIONS(1248), + [anon_sym_unsigned] = ACTIONS(1248), + [anon_sym_long] = ACTIONS(1248), + [anon_sym_short] = ACTIONS(1248), + [anon_sym_static] = ACTIONS(1248), + [anon_sym_auto] = ACTIONS(1248), + [anon_sym_register] = ACTIONS(1248), + [anon_sym_inline] = ACTIONS(1248), + [anon_sym___inline] = ACTIONS(1248), + [anon_sym___inline__] = ACTIONS(1248), + [anon_sym___forceinline] = ACTIONS(1248), + [anon_sym_thread_local] = ACTIONS(1248), + [anon_sym___thread] = ACTIONS(1248), + [anon_sym_const] = ACTIONS(1248), + [anon_sym_constexpr] = ACTIONS(1248), + [anon_sym_volatile] = ACTIONS(1248), + [anon_sym_restrict] = ACTIONS(1248), + [anon_sym___restrict__] = ACTIONS(1248), + [anon_sym__Atomic] = ACTIONS(1248), + [anon_sym__Noreturn] = ACTIONS(1248), + [anon_sym_noreturn] = ACTIONS(1248), + [sym_primitive_type] = ACTIONS(1248), + [anon_sym_enum] = ACTIONS(1248), + [anon_sym_struct] = ACTIONS(1248), + [anon_sym_union] = ACTIONS(1248), + [anon_sym_if] = ACTIONS(1248), + [anon_sym_else] = ACTIONS(1248), + [anon_sym_switch] = ACTIONS(1248), + [anon_sym_case] = ACTIONS(1248), + [anon_sym_default] = ACTIONS(1248), + [anon_sym_while] = ACTIONS(1248), + [anon_sym_do] = ACTIONS(1248), + [anon_sym_for] = ACTIONS(1248), + [anon_sym_return] = ACTIONS(1248), + [anon_sym_break] = ACTIONS(1248), + [anon_sym_continue] = ACTIONS(1248), + [anon_sym_goto] = ACTIONS(1248), + [anon_sym_DASH_DASH] = ACTIONS(1250), + [anon_sym_PLUS_PLUS] = ACTIONS(1250), + [anon_sym_sizeof] = ACTIONS(1248), + [anon_sym___alignof__] = ACTIONS(1248), + [anon_sym___alignof] = ACTIONS(1248), + [anon_sym__alignof] = ACTIONS(1248), + [anon_sym_alignof] = ACTIONS(1248), + [anon_sym__Alignof] = ACTIONS(1248), + [anon_sym_offsetof] = ACTIONS(1248), + [anon_sym___builtin_va_arg] = ACTIONS(1248), + [anon_sym__Generic] = ACTIONS(1248), + [anon_sym_asm] = ACTIONS(1248), + [anon_sym___asm__] = ACTIONS(1248), + [sym_number_literal] = ACTIONS(1250), + [anon_sym_L_SQUOTE] = ACTIONS(1250), + [anon_sym_u_SQUOTE] = ACTIONS(1250), + [anon_sym_U_SQUOTE] = ACTIONS(1250), + [anon_sym_u8_SQUOTE] = ACTIONS(1250), + [anon_sym_SQUOTE] = ACTIONS(1250), + [anon_sym_L_DQUOTE] = ACTIONS(1250), + [anon_sym_u_DQUOTE] = ACTIONS(1250), + [anon_sym_U_DQUOTE] = ACTIONS(1250), + [anon_sym_u8_DQUOTE] = ACTIONS(1250), + [anon_sym_DQUOTE] = ACTIONS(1250), + [sym_true] = ACTIONS(1248), + [sym_false] = ACTIONS(1248), + [anon_sym_NULL] = ACTIONS(1248), + [anon_sym_nullptr] = ACTIONS(1248), [sym_comment] = ACTIONS(3), }, - [458] = { - [sym_attribute_declaration] = STATE(407), - [sym_compound_statement] = STATE(114), - [sym_attributed_statement] = STATE(114), - [sym_labeled_statement] = STATE(114), - [sym_expression_statement] = STATE(114), - [sym_if_statement] = STATE(114), - [sym_switch_statement] = STATE(114), - [sym_case_statement] = STATE(114), - [sym_while_statement] = STATE(114), - [sym_do_statement] = STATE(114), - [sym_for_statement] = STATE(114), - [sym_return_statement] = STATE(114), - [sym_break_statement] = STATE(114), - [sym_continue_statement] = STATE(114), - [sym_goto_statement] = STATE(114), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1801), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [sym_identifier] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [401] = { + [sym_identifier] = ACTIONS(1316), + [aux_sym_preproc_include_token1] = ACTIONS(1316), + [aux_sym_preproc_def_token1] = ACTIONS(1316), + [aux_sym_preproc_if_token1] = ACTIONS(1316), + [aux_sym_preproc_if_token2] = ACTIONS(1316), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), + [sym_preproc_directive] = ACTIONS(1316), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym___extension__] = ACTIONS(1316), + [anon_sym_typedef] = ACTIONS(1316), + [anon_sym_extern] = ACTIONS(1316), + [anon_sym___attribute__] = ACTIONS(1316), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), + [anon_sym___declspec] = ACTIONS(1316), + [anon_sym___cdecl] = ACTIONS(1316), + [anon_sym___clrcall] = ACTIONS(1316), + [anon_sym___stdcall] = ACTIONS(1316), + [anon_sym___fastcall] = ACTIONS(1316), + [anon_sym___thiscall] = ACTIONS(1316), + [anon_sym___vectorcall] = ACTIONS(1316), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_signed] = ACTIONS(1316), + [anon_sym_unsigned] = ACTIONS(1316), + [anon_sym_long] = ACTIONS(1316), + [anon_sym_short] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1316), + [anon_sym_auto] = ACTIONS(1316), + [anon_sym_register] = ACTIONS(1316), + [anon_sym_inline] = ACTIONS(1316), + [anon_sym___inline] = ACTIONS(1316), + [anon_sym___inline__] = ACTIONS(1316), + [anon_sym___forceinline] = ACTIONS(1316), + [anon_sym_thread_local] = ACTIONS(1316), + [anon_sym___thread] = ACTIONS(1316), + [anon_sym_const] = ACTIONS(1316), + [anon_sym_constexpr] = ACTIONS(1316), + [anon_sym_volatile] = ACTIONS(1316), + [anon_sym_restrict] = ACTIONS(1316), + [anon_sym___restrict__] = ACTIONS(1316), + [anon_sym__Atomic] = ACTIONS(1316), + [anon_sym__Noreturn] = ACTIONS(1316), + [anon_sym_noreturn] = ACTIONS(1316), + [sym_primitive_type] = ACTIONS(1316), + [anon_sym_enum] = ACTIONS(1316), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_union] = ACTIONS(1316), + [anon_sym_if] = ACTIONS(1316), + [anon_sym_else] = ACTIONS(1316), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_case] = ACTIONS(1316), + [anon_sym_default] = ACTIONS(1316), + [anon_sym_while] = ACTIONS(1316), + [anon_sym_do] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1316), + [anon_sym_break] = ACTIONS(1316), + [anon_sym_continue] = ACTIONS(1316), + [anon_sym_goto] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1318), + [anon_sym_PLUS_PLUS] = ACTIONS(1318), + [anon_sym_sizeof] = ACTIONS(1316), + [anon_sym___alignof__] = ACTIONS(1316), + [anon_sym___alignof] = ACTIONS(1316), + [anon_sym__alignof] = ACTIONS(1316), + [anon_sym_alignof] = ACTIONS(1316), + [anon_sym__Alignof] = ACTIONS(1316), + [anon_sym_offsetof] = ACTIONS(1316), + [anon_sym___builtin_va_arg] = ACTIONS(1316), + [anon_sym__Generic] = ACTIONS(1316), + [anon_sym_asm] = ACTIONS(1316), + [anon_sym___asm__] = ACTIONS(1316), + [sym_number_literal] = ACTIONS(1318), + [anon_sym_L_SQUOTE] = ACTIONS(1318), + [anon_sym_u_SQUOTE] = ACTIONS(1318), + [anon_sym_U_SQUOTE] = ACTIONS(1318), + [anon_sym_u8_SQUOTE] = ACTIONS(1318), + [anon_sym_SQUOTE] = ACTIONS(1318), + [anon_sym_L_DQUOTE] = ACTIONS(1318), + [anon_sym_u_DQUOTE] = ACTIONS(1318), + [anon_sym_U_DQUOTE] = ACTIONS(1318), + [anon_sym_u8_DQUOTE] = ACTIONS(1318), + [anon_sym_DQUOTE] = ACTIONS(1318), + [sym_true] = ACTIONS(1316), + [sym_false] = ACTIONS(1316), + [anon_sym_NULL] = ACTIONS(1316), + [anon_sym_nullptr] = ACTIONS(1316), [sym_comment] = ACTIONS(3), }, - [459] = { - [sym_attribute_declaration] = STATE(498), - [sym_compound_statement] = STATE(304), - [sym_attributed_statement] = STATE(304), - [sym_labeled_statement] = STATE(304), - [sym_expression_statement] = STATE(304), - [sym_if_statement] = STATE(304), - [sym_switch_statement] = STATE(304), - [sym_case_statement] = STATE(304), - [sym_while_statement] = STATE(304), - [sym_do_statement] = STATE(304), - [sym_for_statement] = STATE(304), - [sym_return_statement] = STATE(304), - [sym_break_statement] = STATE(304), - [sym_continue_statement] = STATE(304), - [sym_goto_statement] = STATE(304), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [sym_identifier] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [402] = { + [sym_identifier] = ACTIONS(1312), + [aux_sym_preproc_include_token1] = ACTIONS(1312), + [aux_sym_preproc_def_token1] = ACTIONS(1312), + [aux_sym_preproc_if_token1] = ACTIONS(1312), + [aux_sym_preproc_if_token2] = ACTIONS(1312), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), + [sym_preproc_directive] = ACTIONS(1312), + [anon_sym_LPAREN2] = ACTIONS(1314), + [anon_sym_BANG] = ACTIONS(1314), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1314), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_SEMI] = ACTIONS(1314), + [anon_sym___extension__] = ACTIONS(1312), + [anon_sym_typedef] = ACTIONS(1312), + [anon_sym_extern] = ACTIONS(1312), + [anon_sym___attribute__] = ACTIONS(1312), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), + [anon_sym___declspec] = ACTIONS(1312), + [anon_sym___cdecl] = ACTIONS(1312), + [anon_sym___clrcall] = ACTIONS(1312), + [anon_sym___stdcall] = ACTIONS(1312), + [anon_sym___fastcall] = ACTIONS(1312), + [anon_sym___thiscall] = ACTIONS(1312), + [anon_sym___vectorcall] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(1314), + [anon_sym_signed] = ACTIONS(1312), + [anon_sym_unsigned] = ACTIONS(1312), + [anon_sym_long] = ACTIONS(1312), + [anon_sym_short] = ACTIONS(1312), + [anon_sym_static] = ACTIONS(1312), + [anon_sym_auto] = ACTIONS(1312), + [anon_sym_register] = ACTIONS(1312), + [anon_sym_inline] = ACTIONS(1312), + [anon_sym___inline] = ACTIONS(1312), + [anon_sym___inline__] = ACTIONS(1312), + [anon_sym___forceinline] = ACTIONS(1312), + [anon_sym_thread_local] = ACTIONS(1312), + [anon_sym___thread] = ACTIONS(1312), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_constexpr] = ACTIONS(1312), + [anon_sym_volatile] = ACTIONS(1312), + [anon_sym_restrict] = ACTIONS(1312), + [anon_sym___restrict__] = ACTIONS(1312), + [anon_sym__Atomic] = ACTIONS(1312), + [anon_sym__Noreturn] = ACTIONS(1312), + [anon_sym_noreturn] = ACTIONS(1312), + [sym_primitive_type] = ACTIONS(1312), + [anon_sym_enum] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1312), + [anon_sym_union] = ACTIONS(1312), + [anon_sym_if] = ACTIONS(1312), + [anon_sym_else] = ACTIONS(1312), + [anon_sym_switch] = ACTIONS(1312), + [anon_sym_case] = ACTIONS(1312), + [anon_sym_default] = ACTIONS(1312), + [anon_sym_while] = ACTIONS(1312), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_for] = ACTIONS(1312), + [anon_sym_return] = ACTIONS(1312), + [anon_sym_break] = ACTIONS(1312), + [anon_sym_continue] = ACTIONS(1312), + [anon_sym_goto] = ACTIONS(1312), + [anon_sym_DASH_DASH] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1314), + [anon_sym_sizeof] = ACTIONS(1312), + [anon_sym___alignof__] = ACTIONS(1312), + [anon_sym___alignof] = ACTIONS(1312), + [anon_sym__alignof] = ACTIONS(1312), + [anon_sym_alignof] = ACTIONS(1312), + [anon_sym__Alignof] = ACTIONS(1312), + [anon_sym_offsetof] = ACTIONS(1312), + [anon_sym___builtin_va_arg] = ACTIONS(1312), + [anon_sym__Generic] = ACTIONS(1312), + [anon_sym_asm] = ACTIONS(1312), + [anon_sym___asm__] = ACTIONS(1312), + [sym_number_literal] = ACTIONS(1314), + [anon_sym_L_SQUOTE] = ACTIONS(1314), + [anon_sym_u_SQUOTE] = ACTIONS(1314), + [anon_sym_U_SQUOTE] = ACTIONS(1314), + [anon_sym_u8_SQUOTE] = ACTIONS(1314), + [anon_sym_SQUOTE] = ACTIONS(1314), + [anon_sym_L_DQUOTE] = ACTIONS(1314), + [anon_sym_u_DQUOTE] = ACTIONS(1314), + [anon_sym_U_DQUOTE] = ACTIONS(1314), + [anon_sym_u8_DQUOTE] = ACTIONS(1314), + [anon_sym_DQUOTE] = ACTIONS(1314), + [sym_true] = ACTIONS(1312), + [sym_false] = ACTIONS(1312), + [anon_sym_NULL] = ACTIONS(1312), + [anon_sym_nullptr] = ACTIONS(1312), [sym_comment] = ACTIONS(3), }, - [460] = { - [sym_attribute_declaration] = STATE(498), - [sym_compound_statement] = STATE(337), - [sym_attributed_statement] = STATE(337), - [sym_labeled_statement] = STATE(337), - [sym_expression_statement] = STATE(337), - [sym_if_statement] = STATE(337), - [sym_switch_statement] = STATE(337), - [sym_case_statement] = STATE(337), - [sym_while_statement] = STATE(337), - [sym_do_statement] = STATE(337), - [sym_for_statement] = STATE(337), - [sym_return_statement] = STATE(337), - [sym_break_statement] = STATE(337), - [sym_continue_statement] = STATE(337), - [sym_goto_statement] = STATE(337), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [sym_identifier] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [403] = { + [ts_builtin_sym_end] = ACTIONS(1374), + [sym_identifier] = ACTIONS(1372), + [aux_sym_preproc_include_token1] = ACTIONS(1372), + [aux_sym_preproc_def_token1] = ACTIONS(1372), + [aux_sym_preproc_if_token1] = ACTIONS(1372), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), + [sym_preproc_directive] = ACTIONS(1372), + [anon_sym_LPAREN2] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_TILDE] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_STAR] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym___extension__] = ACTIONS(1372), + [anon_sym_typedef] = ACTIONS(1372), + [anon_sym_extern] = ACTIONS(1372), + [anon_sym___attribute__] = ACTIONS(1372), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), + [anon_sym___declspec] = ACTIONS(1372), + [anon_sym___cdecl] = ACTIONS(1372), + [anon_sym___clrcall] = ACTIONS(1372), + [anon_sym___stdcall] = ACTIONS(1372), + [anon_sym___fastcall] = ACTIONS(1372), + [anon_sym___thiscall] = ACTIONS(1372), + [anon_sym___vectorcall] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_signed] = ACTIONS(1372), + [anon_sym_unsigned] = ACTIONS(1372), + [anon_sym_long] = ACTIONS(1372), + [anon_sym_short] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_auto] = ACTIONS(1372), + [anon_sym_register] = ACTIONS(1372), + [anon_sym_inline] = ACTIONS(1372), + [anon_sym___inline] = ACTIONS(1372), + [anon_sym___inline__] = ACTIONS(1372), + [anon_sym___forceinline] = ACTIONS(1372), + [anon_sym_thread_local] = ACTIONS(1372), + [anon_sym___thread] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1372), + [anon_sym_constexpr] = ACTIONS(1372), + [anon_sym_volatile] = ACTIONS(1372), + [anon_sym_restrict] = ACTIONS(1372), + [anon_sym___restrict__] = ACTIONS(1372), + [anon_sym__Atomic] = ACTIONS(1372), + [anon_sym__Noreturn] = ACTIONS(1372), + [anon_sym_noreturn] = ACTIONS(1372), + [sym_primitive_type] = ACTIONS(1372), + [anon_sym_enum] = ACTIONS(1372), + [anon_sym_struct] = ACTIONS(1372), + [anon_sym_union] = ACTIONS(1372), + [anon_sym_if] = ACTIONS(1372), + [anon_sym_else] = ACTIONS(1372), + [anon_sym_switch] = ACTIONS(1372), + [anon_sym_case] = ACTIONS(1372), + [anon_sym_default] = ACTIONS(1372), + [anon_sym_while] = ACTIONS(1372), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_for] = ACTIONS(1372), + [anon_sym_return] = ACTIONS(1372), + [anon_sym_break] = ACTIONS(1372), + [anon_sym_continue] = ACTIONS(1372), + [anon_sym_goto] = ACTIONS(1372), + [anon_sym_DASH_DASH] = ACTIONS(1374), + [anon_sym_PLUS_PLUS] = ACTIONS(1374), + [anon_sym_sizeof] = ACTIONS(1372), + [anon_sym___alignof__] = ACTIONS(1372), + [anon_sym___alignof] = ACTIONS(1372), + [anon_sym__alignof] = ACTIONS(1372), + [anon_sym_alignof] = ACTIONS(1372), + [anon_sym__Alignof] = ACTIONS(1372), + [anon_sym_offsetof] = ACTIONS(1372), + [anon_sym___builtin_va_arg] = ACTIONS(1372), + [anon_sym__Generic] = ACTIONS(1372), + [anon_sym_asm] = ACTIONS(1372), + [anon_sym___asm__] = ACTIONS(1372), + [sym_number_literal] = ACTIONS(1374), + [anon_sym_L_SQUOTE] = ACTIONS(1374), + [anon_sym_u_SQUOTE] = ACTIONS(1374), + [anon_sym_U_SQUOTE] = ACTIONS(1374), + [anon_sym_u8_SQUOTE] = ACTIONS(1374), + [anon_sym_SQUOTE] = ACTIONS(1374), + [anon_sym_L_DQUOTE] = ACTIONS(1374), + [anon_sym_u_DQUOTE] = ACTIONS(1374), + [anon_sym_U_DQUOTE] = ACTIONS(1374), + [anon_sym_u8_DQUOTE] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_true] = ACTIONS(1372), + [sym_false] = ACTIONS(1372), + [anon_sym_NULL] = ACTIONS(1372), + [anon_sym_nullptr] = ACTIONS(1372), [sym_comment] = ACTIONS(3), }, - [461] = { - [sym_attribute_declaration] = STATE(407), - [sym_compound_statement] = STATE(113), - [sym_attributed_statement] = STATE(113), - [sym_labeled_statement] = STATE(113), - [sym_expression_statement] = STATE(113), - [sym_if_statement] = STATE(113), - [sym_switch_statement] = STATE(113), - [sym_case_statement] = STATE(113), - [sym_while_statement] = STATE(113), - [sym_do_statement] = STATE(113), - [sym_for_statement] = STATE(113), - [sym_return_statement] = STATE(113), - [sym_break_statement] = STATE(113), - [sym_continue_statement] = STATE(113), - [sym_goto_statement] = STATE(113), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1801), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [sym_identifier] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [404] = { + [sym_identifier] = ACTIONS(1276), + [aux_sym_preproc_include_token1] = ACTIONS(1276), + [aux_sym_preproc_def_token1] = ACTIONS(1276), + [aux_sym_preproc_if_token1] = ACTIONS(1276), + [aux_sym_preproc_if_token2] = ACTIONS(1276), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), + [sym_preproc_directive] = ACTIONS(1276), + [anon_sym_LPAREN2] = ACTIONS(1278), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_DASH] = ACTIONS(1276), + [anon_sym_PLUS] = ACTIONS(1276), + [anon_sym_STAR] = ACTIONS(1278), + [anon_sym_AMP] = ACTIONS(1278), + [anon_sym_SEMI] = ACTIONS(1278), + [anon_sym___extension__] = ACTIONS(1276), + [anon_sym_typedef] = ACTIONS(1276), + [anon_sym_extern] = ACTIONS(1276), + [anon_sym___attribute__] = ACTIONS(1276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1278), + [anon_sym___declspec] = ACTIONS(1276), + [anon_sym___cdecl] = ACTIONS(1276), + [anon_sym___clrcall] = ACTIONS(1276), + [anon_sym___stdcall] = ACTIONS(1276), + [anon_sym___fastcall] = ACTIONS(1276), + [anon_sym___thiscall] = ACTIONS(1276), + [anon_sym___vectorcall] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(1278), + [anon_sym_signed] = ACTIONS(1276), + [anon_sym_unsigned] = ACTIONS(1276), + [anon_sym_long] = ACTIONS(1276), + [anon_sym_short] = ACTIONS(1276), + [anon_sym_static] = ACTIONS(1276), + [anon_sym_auto] = ACTIONS(1276), + [anon_sym_register] = ACTIONS(1276), + [anon_sym_inline] = ACTIONS(1276), + [anon_sym___inline] = ACTIONS(1276), + [anon_sym___inline__] = ACTIONS(1276), + [anon_sym___forceinline] = ACTIONS(1276), + [anon_sym_thread_local] = ACTIONS(1276), + [anon_sym___thread] = ACTIONS(1276), + [anon_sym_const] = ACTIONS(1276), + [anon_sym_constexpr] = ACTIONS(1276), + [anon_sym_volatile] = ACTIONS(1276), + [anon_sym_restrict] = ACTIONS(1276), + [anon_sym___restrict__] = ACTIONS(1276), + [anon_sym__Atomic] = ACTIONS(1276), + [anon_sym__Noreturn] = ACTIONS(1276), + [anon_sym_noreturn] = ACTIONS(1276), + [sym_primitive_type] = ACTIONS(1276), + [anon_sym_enum] = ACTIONS(1276), + [anon_sym_struct] = ACTIONS(1276), + [anon_sym_union] = ACTIONS(1276), + [anon_sym_if] = ACTIONS(1276), + [anon_sym_else] = ACTIONS(1276), + [anon_sym_switch] = ACTIONS(1276), + [anon_sym_case] = ACTIONS(1276), + [anon_sym_default] = ACTIONS(1276), + [anon_sym_while] = ACTIONS(1276), + [anon_sym_do] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1276), + [anon_sym_return] = ACTIONS(1276), + [anon_sym_break] = ACTIONS(1276), + [anon_sym_continue] = ACTIONS(1276), + [anon_sym_goto] = ACTIONS(1276), + [anon_sym_DASH_DASH] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1278), + [anon_sym_sizeof] = ACTIONS(1276), + [anon_sym___alignof__] = ACTIONS(1276), + [anon_sym___alignof] = ACTIONS(1276), + [anon_sym__alignof] = ACTIONS(1276), + [anon_sym_alignof] = ACTIONS(1276), + [anon_sym__Alignof] = ACTIONS(1276), + [anon_sym_offsetof] = ACTIONS(1276), + [anon_sym___builtin_va_arg] = ACTIONS(1276), + [anon_sym__Generic] = ACTIONS(1276), + [anon_sym_asm] = ACTIONS(1276), + [anon_sym___asm__] = ACTIONS(1276), + [sym_number_literal] = ACTIONS(1278), + [anon_sym_L_SQUOTE] = ACTIONS(1278), + [anon_sym_u_SQUOTE] = ACTIONS(1278), + [anon_sym_U_SQUOTE] = ACTIONS(1278), + [anon_sym_u8_SQUOTE] = ACTIONS(1278), + [anon_sym_SQUOTE] = ACTIONS(1278), + [anon_sym_L_DQUOTE] = ACTIONS(1278), + [anon_sym_u_DQUOTE] = ACTIONS(1278), + [anon_sym_U_DQUOTE] = ACTIONS(1278), + [anon_sym_u8_DQUOTE] = ACTIONS(1278), + [anon_sym_DQUOTE] = ACTIONS(1278), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [anon_sym_NULL] = ACTIONS(1276), + [anon_sym_nullptr] = ACTIONS(1276), [sym_comment] = ACTIONS(3), }, - [462] = { - [sym_identifier] = ACTIONS(1388), - [aux_sym_preproc_include_token1] = ACTIONS(1388), - [aux_sym_preproc_def_token1] = ACTIONS(1388), - [aux_sym_preproc_if_token1] = ACTIONS(1388), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1388), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1388), - [sym_preproc_directive] = ACTIONS(1388), - [anon_sym_LPAREN2] = ACTIONS(1390), - [anon_sym_BANG] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1388), - [anon_sym_PLUS] = ACTIONS(1388), - [anon_sym_STAR] = ACTIONS(1390), - [anon_sym_AMP] = ACTIONS(1390), - [anon_sym_SEMI] = ACTIONS(1390), - [anon_sym_typedef] = ACTIONS(1388), - [anon_sym_extern] = ACTIONS(1388), - [anon_sym___attribute__] = ACTIONS(1388), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1390), - [anon_sym___declspec] = ACTIONS(1388), - [anon_sym___cdecl] = ACTIONS(1388), - [anon_sym___clrcall] = ACTIONS(1388), - [anon_sym___stdcall] = ACTIONS(1388), - [anon_sym___fastcall] = ACTIONS(1388), - [anon_sym___thiscall] = ACTIONS(1388), - [anon_sym___vectorcall] = ACTIONS(1388), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_RBRACE] = ACTIONS(1390), - [anon_sym_signed] = ACTIONS(1388), - [anon_sym_unsigned] = ACTIONS(1388), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_short] = ACTIONS(1388), - [anon_sym_static] = ACTIONS(1388), - [anon_sym_auto] = ACTIONS(1388), - [anon_sym_register] = ACTIONS(1388), - [anon_sym_inline] = ACTIONS(1388), - [anon_sym_thread_local] = ACTIONS(1388), - [anon_sym___thread] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1388), - [anon_sym_constexpr] = ACTIONS(1388), - [anon_sym_volatile] = ACTIONS(1388), - [anon_sym_restrict] = ACTIONS(1388), - [anon_sym___restrict__] = ACTIONS(1388), - [anon_sym__Atomic] = ACTIONS(1388), - [anon_sym__Noreturn] = ACTIONS(1388), - [anon_sym_noreturn] = ACTIONS(1388), - [sym_primitive_type] = ACTIONS(1388), - [anon_sym_enum] = ACTIONS(1388), - [anon_sym_struct] = ACTIONS(1388), - [anon_sym_union] = ACTIONS(1388), - [anon_sym_if] = ACTIONS(1388), - [anon_sym_switch] = ACTIONS(1388), - [anon_sym_case] = ACTIONS(1388), - [anon_sym_default] = ACTIONS(1388), - [anon_sym_while] = ACTIONS(1388), - [anon_sym_do] = ACTIONS(1388), - [anon_sym_for] = ACTIONS(1388), - [anon_sym_return] = ACTIONS(1388), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1388), - [anon_sym_goto] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1390), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1388), - [anon_sym_offsetof] = ACTIONS(1388), - [anon_sym__Generic] = ACTIONS(1388), - [anon_sym_asm] = ACTIONS(1388), - [anon_sym___asm__] = ACTIONS(1388), - [sym_number_literal] = ACTIONS(1390), - [anon_sym_L_SQUOTE] = ACTIONS(1390), - [anon_sym_u_SQUOTE] = ACTIONS(1390), - [anon_sym_U_SQUOTE] = ACTIONS(1390), - [anon_sym_u8_SQUOTE] = ACTIONS(1390), - [anon_sym_SQUOTE] = ACTIONS(1390), - [anon_sym_L_DQUOTE] = ACTIONS(1390), - [anon_sym_u_DQUOTE] = ACTIONS(1390), - [anon_sym_U_DQUOTE] = ACTIONS(1390), - [anon_sym_u8_DQUOTE] = ACTIONS(1390), - [anon_sym_DQUOTE] = ACTIONS(1390), - [sym_true] = ACTIONS(1388), - [sym_false] = ACTIONS(1388), - [anon_sym_NULL] = ACTIONS(1388), - [anon_sym_nullptr] = ACTIONS(1388), - [sym_comment] = ACTIONS(3), - }, - [463] = { - [sym_attribute_declaration] = STATE(407), - [sym_compound_statement] = STATE(112), - [sym_attributed_statement] = STATE(112), - [sym_labeled_statement] = STATE(112), - [sym_expression_statement] = STATE(112), - [sym_if_statement] = STATE(112), - [sym_switch_statement] = STATE(112), - [sym_case_statement] = STATE(112), - [sym_while_statement] = STATE(112), - [sym_do_statement] = STATE(112), - [sym_for_statement] = STATE(112), - [sym_return_statement] = STATE(112), - [sym_break_statement] = STATE(112), - [sym_continue_statement] = STATE(112), - [sym_goto_statement] = STATE(112), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1801), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [sym_identifier] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [464] = { - [sym_attribute_declaration] = STATE(498), - [sym_compound_statement] = STATE(336), - [sym_attributed_statement] = STATE(336), - [sym_labeled_statement] = STATE(336), - [sym_expression_statement] = STATE(336), - [sym_if_statement] = STATE(336), - [sym_switch_statement] = STATE(336), - [sym_case_statement] = STATE(336), - [sym_while_statement] = STATE(336), - [sym_do_statement] = STATE(336), - [sym_for_statement] = STATE(336), - [sym_return_statement] = STATE(336), - [sym_break_statement] = STATE(336), - [sym_continue_statement] = STATE(336), - [sym_goto_statement] = STATE(336), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [sym_identifier] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [465] = { - [sym_attribute_declaration] = STATE(498), - [sym_compound_statement] = STATE(333), - [sym_attributed_statement] = STATE(333), - [sym_labeled_statement] = STATE(333), - [sym_expression_statement] = STATE(333), - [sym_if_statement] = STATE(333), - [sym_switch_statement] = STATE(333), - [sym_case_statement] = STATE(333), - [sym_while_statement] = STATE(333), - [sym_do_statement] = STATE(333), - [sym_for_statement] = STATE(333), - [sym_return_statement] = STATE(333), - [sym_break_statement] = STATE(333), - [sym_continue_statement] = STATE(333), - [sym_goto_statement] = STATE(333), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [sym_identifier] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [466] = { - [sym_attribute_declaration] = STATE(498), - [sym_compound_statement] = STATE(332), - [sym_attributed_statement] = STATE(332), - [sym_labeled_statement] = STATE(332), - [sym_expression_statement] = STATE(332), - [sym_if_statement] = STATE(332), - [sym_switch_statement] = STATE(332), - [sym_case_statement] = STATE(332), - [sym_while_statement] = STATE(332), - [sym_do_statement] = STATE(332), - [sym_for_statement] = STATE(332), - [sym_return_statement] = STATE(332), - [sym_break_statement] = STATE(332), - [sym_continue_statement] = STATE(332), - [sym_goto_statement] = STATE(332), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [sym_identifier] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [467] = { - [sym_attribute_declaration] = STATE(467), - [sym_compound_statement] = STATE(291), - [sym_attributed_statement] = STATE(291), - [sym_labeled_statement] = STATE(291), - [sym_expression_statement] = STATE(291), - [sym_if_statement] = STATE(291), - [sym_switch_statement] = STATE(291), - [sym_case_statement] = STATE(291), - [sym_while_statement] = STATE(291), - [sym_do_statement] = STATE(291), - [sym_for_statement] = STATE(291), - [sym_return_statement] = STATE(291), - [sym_break_statement] = STATE(291), - [sym_continue_statement] = STATE(291), - [sym_goto_statement] = STATE(291), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(467), - [sym_identifier] = ACTIONS(1607), - [anon_sym_LPAREN2] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_STAR] = ACTIONS(1488), - [anon_sym_AMP] = ACTIONS(1488), - [anon_sym_SEMI] = ACTIONS(1610), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_if] = ACTIONS(1616), - [anon_sym_switch] = ACTIONS(1619), - [anon_sym_case] = ACTIONS(1622), - [anon_sym_default] = ACTIONS(1625), - [anon_sym_while] = ACTIONS(1628), - [anon_sym_do] = ACTIONS(1631), - [anon_sym_for] = ACTIONS(1634), - [anon_sym_return] = ACTIONS(1637), - [anon_sym_break] = ACTIONS(1640), - [anon_sym_continue] = ACTIONS(1643), - [anon_sym_goto] = ACTIONS(1646), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_sizeof] = ACTIONS(1536), - [anon_sym_offsetof] = ACTIONS(1539), - [anon_sym__Generic] = ACTIONS(1542), - [anon_sym_asm] = ACTIONS(1545), - [anon_sym___asm__] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1548), - [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(1554), - [anon_sym_u_DQUOTE] = ACTIONS(1554), - [anon_sym_U_DQUOTE] = ACTIONS(1554), - [anon_sym_u8_DQUOTE] = ACTIONS(1554), - [anon_sym_DQUOTE] = ACTIONS(1554), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [anon_sym_NULL] = ACTIONS(1560), - [anon_sym_nullptr] = ACTIONS(1560), - [sym_comment] = ACTIONS(3), - }, - [468] = { - [sym_attribute_declaration] = STATE(498), - [sym_compound_statement] = STATE(330), - [sym_attributed_statement] = STATE(330), - [sym_labeled_statement] = STATE(330), - [sym_expression_statement] = STATE(330), - [sym_if_statement] = STATE(330), - [sym_switch_statement] = STATE(330), - [sym_case_statement] = STATE(330), - [sym_while_statement] = STATE(330), - [sym_do_statement] = STATE(330), - [sym_for_statement] = STATE(330), - [sym_return_statement] = STATE(330), - [sym_break_statement] = STATE(330), - [sym_continue_statement] = STATE(330), - [sym_goto_statement] = STATE(330), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [sym_identifier] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [469] = { - [sym_attribute_declaration] = STATE(498), - [sym_compound_statement] = STATE(329), - [sym_attributed_statement] = STATE(329), - [sym_labeled_statement] = STATE(329), - [sym_expression_statement] = STATE(329), - [sym_if_statement] = STATE(329), - [sym_switch_statement] = STATE(329), - [sym_case_statement] = STATE(329), - [sym_while_statement] = STATE(329), - [sym_do_statement] = STATE(329), - [sym_for_statement] = STATE(329), - [sym_return_statement] = STATE(329), - [sym_break_statement] = STATE(329), - [sym_continue_statement] = STATE(329), - [sym_goto_statement] = STATE(329), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [sym_identifier] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [405] = { + [sym_identifier] = ACTIONS(1272), + [aux_sym_preproc_include_token1] = ACTIONS(1272), + [aux_sym_preproc_def_token1] = ACTIONS(1272), + [aux_sym_preproc_if_token1] = ACTIONS(1272), + [aux_sym_preproc_if_token2] = ACTIONS(1272), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1272), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1272), + [sym_preproc_directive] = ACTIONS(1272), + [anon_sym_LPAREN2] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1274), + [anon_sym_TILDE] = ACTIONS(1274), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_STAR] = ACTIONS(1274), + [anon_sym_AMP] = ACTIONS(1274), + [anon_sym_SEMI] = ACTIONS(1274), + [anon_sym___extension__] = ACTIONS(1272), + [anon_sym_typedef] = ACTIONS(1272), + [anon_sym_extern] = ACTIONS(1272), + [anon_sym___attribute__] = ACTIONS(1272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1274), + [anon_sym___declspec] = ACTIONS(1272), + [anon_sym___cdecl] = ACTIONS(1272), + [anon_sym___clrcall] = ACTIONS(1272), + [anon_sym___stdcall] = ACTIONS(1272), + [anon_sym___fastcall] = ACTIONS(1272), + [anon_sym___thiscall] = ACTIONS(1272), + [anon_sym___vectorcall] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1274), + [anon_sym_signed] = ACTIONS(1272), + [anon_sym_unsigned] = ACTIONS(1272), + [anon_sym_long] = ACTIONS(1272), + [anon_sym_short] = ACTIONS(1272), + [anon_sym_static] = ACTIONS(1272), + [anon_sym_auto] = ACTIONS(1272), + [anon_sym_register] = ACTIONS(1272), + [anon_sym_inline] = ACTIONS(1272), + [anon_sym___inline] = ACTIONS(1272), + [anon_sym___inline__] = ACTIONS(1272), + [anon_sym___forceinline] = ACTIONS(1272), + [anon_sym_thread_local] = ACTIONS(1272), + [anon_sym___thread] = ACTIONS(1272), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_constexpr] = ACTIONS(1272), + [anon_sym_volatile] = ACTIONS(1272), + [anon_sym_restrict] = ACTIONS(1272), + [anon_sym___restrict__] = ACTIONS(1272), + [anon_sym__Atomic] = ACTIONS(1272), + [anon_sym__Noreturn] = ACTIONS(1272), + [anon_sym_noreturn] = ACTIONS(1272), + [sym_primitive_type] = ACTIONS(1272), + [anon_sym_enum] = ACTIONS(1272), + [anon_sym_struct] = ACTIONS(1272), + [anon_sym_union] = ACTIONS(1272), + [anon_sym_if] = ACTIONS(1272), + [anon_sym_else] = ACTIONS(1272), + [anon_sym_switch] = ACTIONS(1272), + [anon_sym_case] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1272), + [anon_sym_while] = ACTIONS(1272), + [anon_sym_do] = ACTIONS(1272), + [anon_sym_for] = ACTIONS(1272), + [anon_sym_return] = ACTIONS(1272), + [anon_sym_break] = ACTIONS(1272), + [anon_sym_continue] = ACTIONS(1272), + [anon_sym_goto] = ACTIONS(1272), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_sizeof] = ACTIONS(1272), + [anon_sym___alignof__] = ACTIONS(1272), + [anon_sym___alignof] = ACTIONS(1272), + [anon_sym__alignof] = ACTIONS(1272), + [anon_sym_alignof] = ACTIONS(1272), + [anon_sym__Alignof] = ACTIONS(1272), + [anon_sym_offsetof] = ACTIONS(1272), + [anon_sym___builtin_va_arg] = ACTIONS(1272), + [anon_sym__Generic] = ACTIONS(1272), + [anon_sym_asm] = ACTIONS(1272), + [anon_sym___asm__] = ACTIONS(1272), + [sym_number_literal] = ACTIONS(1274), + [anon_sym_L_SQUOTE] = ACTIONS(1274), + [anon_sym_u_SQUOTE] = ACTIONS(1274), + [anon_sym_U_SQUOTE] = ACTIONS(1274), + [anon_sym_u8_SQUOTE] = ACTIONS(1274), + [anon_sym_SQUOTE] = ACTIONS(1274), + [anon_sym_L_DQUOTE] = ACTIONS(1274), + [anon_sym_u_DQUOTE] = ACTIONS(1274), + [anon_sym_U_DQUOTE] = ACTIONS(1274), + [anon_sym_u8_DQUOTE] = ACTIONS(1274), + [anon_sym_DQUOTE] = ACTIONS(1274), + [sym_true] = ACTIONS(1272), + [sym_false] = ACTIONS(1272), + [anon_sym_NULL] = ACTIONS(1272), + [anon_sym_nullptr] = ACTIONS(1272), [sym_comment] = ACTIONS(3), }, - [470] = { + [406] = { + [ts_builtin_sym_end] = ACTIONS(1358), [sym_identifier] = ACTIONS(1356), [aux_sym_preproc_include_token1] = ACTIONS(1356), [aux_sym_preproc_def_token1] = ACTIONS(1356), @@ -61213,6 +60799,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1358), [anon_sym_AMP] = ACTIONS(1358), [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym___extension__] = ACTIONS(1356), [anon_sym_typedef] = ACTIONS(1356), [anon_sym_extern] = ACTIONS(1356), [anon_sym___attribute__] = ACTIONS(1356), @@ -61225,7 +60812,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1356), [anon_sym___vectorcall] = ACTIONS(1356), [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1358), [anon_sym_signed] = ACTIONS(1356), [anon_sym_unsigned] = ACTIONS(1356), [anon_sym_long] = ACTIONS(1356), @@ -61234,6 +60820,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_auto] = ACTIONS(1356), [anon_sym_register] = ACTIONS(1356), [anon_sym_inline] = ACTIONS(1356), + [anon_sym___inline] = ACTIONS(1356), + [anon_sym___inline__] = ACTIONS(1356), + [anon_sym___forceinline] = ACTIONS(1356), [anon_sym_thread_local] = ACTIONS(1356), [anon_sym___thread] = ACTIONS(1356), [anon_sym_const] = ACTIONS(1356), @@ -61249,6 +60838,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1356), [anon_sym_union] = ACTIONS(1356), [anon_sym_if] = ACTIONS(1356), + [anon_sym_else] = ACTIONS(1356), [anon_sym_switch] = ACTIONS(1356), [anon_sym_case] = ACTIONS(1356), [anon_sym_default] = ACTIONS(1356), @@ -61262,7 +60852,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1358), [anon_sym_PLUS_PLUS] = ACTIONS(1358), [anon_sym_sizeof] = ACTIONS(1356), + [anon_sym___alignof__] = ACTIONS(1356), + [anon_sym___alignof] = ACTIONS(1356), + [anon_sym__alignof] = ACTIONS(1356), + [anon_sym_alignof] = ACTIONS(1356), + [anon_sym__Alignof] = ACTIONS(1356), [anon_sym_offsetof] = ACTIONS(1356), + [anon_sym___builtin_va_arg] = ACTIONS(1356), [anon_sym__Generic] = ACTIONS(1356), [anon_sym_asm] = ACTIONS(1356), [anon_sym___asm__] = ACTIONS(1356), @@ -61283,4749 +60879,8303 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1356), [sym_comment] = ACTIONS(3), }, - [471] = { - [sym_identifier] = ACTIONS(1360), - [aux_sym_preproc_include_token1] = ACTIONS(1360), - [aux_sym_preproc_def_token1] = ACTIONS(1360), - [aux_sym_preproc_if_token1] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), - [sym_preproc_directive] = ACTIONS(1360), - [anon_sym_LPAREN2] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1362), - [anon_sym_TILDE] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_SEMI] = ACTIONS(1362), - [anon_sym_typedef] = ACTIONS(1360), - [anon_sym_extern] = ACTIONS(1360), - [anon_sym___attribute__] = ACTIONS(1360), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), - [anon_sym___declspec] = ACTIONS(1360), - [anon_sym___cdecl] = ACTIONS(1360), - [anon_sym___clrcall] = ACTIONS(1360), - [anon_sym___stdcall] = ACTIONS(1360), - [anon_sym___fastcall] = ACTIONS(1360), - [anon_sym___thiscall] = ACTIONS(1360), - [anon_sym___vectorcall] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_RBRACE] = ACTIONS(1362), - [anon_sym_signed] = ACTIONS(1360), - [anon_sym_unsigned] = ACTIONS(1360), - [anon_sym_long] = ACTIONS(1360), - [anon_sym_short] = ACTIONS(1360), - [anon_sym_static] = ACTIONS(1360), - [anon_sym_auto] = ACTIONS(1360), - [anon_sym_register] = ACTIONS(1360), - [anon_sym_inline] = ACTIONS(1360), - [anon_sym_thread_local] = ACTIONS(1360), - [anon_sym___thread] = ACTIONS(1360), - [anon_sym_const] = ACTIONS(1360), - [anon_sym_constexpr] = ACTIONS(1360), - [anon_sym_volatile] = ACTIONS(1360), - [anon_sym_restrict] = ACTIONS(1360), - [anon_sym___restrict__] = ACTIONS(1360), - [anon_sym__Atomic] = ACTIONS(1360), - [anon_sym__Noreturn] = ACTIONS(1360), - [anon_sym_noreturn] = ACTIONS(1360), - [sym_primitive_type] = ACTIONS(1360), - [anon_sym_enum] = ACTIONS(1360), - [anon_sym_struct] = ACTIONS(1360), - [anon_sym_union] = ACTIONS(1360), - [anon_sym_if] = ACTIONS(1360), - [anon_sym_switch] = ACTIONS(1360), - [anon_sym_case] = ACTIONS(1360), - [anon_sym_default] = ACTIONS(1360), - [anon_sym_while] = ACTIONS(1360), - [anon_sym_do] = ACTIONS(1360), - [anon_sym_for] = ACTIONS(1360), - [anon_sym_return] = ACTIONS(1360), - [anon_sym_break] = ACTIONS(1360), - [anon_sym_continue] = ACTIONS(1360), - [anon_sym_goto] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1360), - [anon_sym_offsetof] = ACTIONS(1360), - [anon_sym__Generic] = ACTIONS(1360), - [anon_sym_asm] = ACTIONS(1360), - [anon_sym___asm__] = ACTIONS(1360), - [sym_number_literal] = ACTIONS(1362), - [anon_sym_L_SQUOTE] = ACTIONS(1362), - [anon_sym_u_SQUOTE] = ACTIONS(1362), - [anon_sym_U_SQUOTE] = ACTIONS(1362), - [anon_sym_u8_SQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1362), - [anon_sym_L_DQUOTE] = ACTIONS(1362), - [anon_sym_u_DQUOTE] = ACTIONS(1362), - [anon_sym_U_DQUOTE] = ACTIONS(1362), - [anon_sym_u8_DQUOTE] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym_true] = ACTIONS(1360), - [sym_false] = ACTIONS(1360), - [anon_sym_NULL] = ACTIONS(1360), - [anon_sym_nullptr] = ACTIONS(1360), + [407] = { + [sym_identifier] = ACTIONS(1268), + [aux_sym_preproc_include_token1] = ACTIONS(1268), + [aux_sym_preproc_def_token1] = ACTIONS(1268), + [aux_sym_preproc_if_token1] = ACTIONS(1268), + [aux_sym_preproc_if_token2] = ACTIONS(1268), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1268), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1268), + [sym_preproc_directive] = ACTIONS(1268), + [anon_sym_LPAREN2] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1270), + [anon_sym_TILDE] = ACTIONS(1270), + [anon_sym_DASH] = ACTIONS(1268), + [anon_sym_PLUS] = ACTIONS(1268), + [anon_sym_STAR] = ACTIONS(1270), + [anon_sym_AMP] = ACTIONS(1270), + [anon_sym_SEMI] = ACTIONS(1270), + [anon_sym___extension__] = ACTIONS(1268), + [anon_sym_typedef] = ACTIONS(1268), + [anon_sym_extern] = ACTIONS(1268), + [anon_sym___attribute__] = ACTIONS(1268), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1270), + [anon_sym___declspec] = ACTIONS(1268), + [anon_sym___cdecl] = ACTIONS(1268), + [anon_sym___clrcall] = ACTIONS(1268), + [anon_sym___stdcall] = ACTIONS(1268), + [anon_sym___fastcall] = ACTIONS(1268), + [anon_sym___thiscall] = ACTIONS(1268), + [anon_sym___vectorcall] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_signed] = ACTIONS(1268), + [anon_sym_unsigned] = ACTIONS(1268), + [anon_sym_long] = ACTIONS(1268), + [anon_sym_short] = ACTIONS(1268), + [anon_sym_static] = ACTIONS(1268), + [anon_sym_auto] = ACTIONS(1268), + [anon_sym_register] = ACTIONS(1268), + [anon_sym_inline] = ACTIONS(1268), + [anon_sym___inline] = ACTIONS(1268), + [anon_sym___inline__] = ACTIONS(1268), + [anon_sym___forceinline] = ACTIONS(1268), + [anon_sym_thread_local] = ACTIONS(1268), + [anon_sym___thread] = ACTIONS(1268), + [anon_sym_const] = ACTIONS(1268), + [anon_sym_constexpr] = ACTIONS(1268), + [anon_sym_volatile] = ACTIONS(1268), + [anon_sym_restrict] = ACTIONS(1268), + [anon_sym___restrict__] = ACTIONS(1268), + [anon_sym__Atomic] = ACTIONS(1268), + [anon_sym__Noreturn] = ACTIONS(1268), + [anon_sym_noreturn] = ACTIONS(1268), + [sym_primitive_type] = ACTIONS(1268), + [anon_sym_enum] = ACTIONS(1268), + [anon_sym_struct] = ACTIONS(1268), + [anon_sym_union] = ACTIONS(1268), + [anon_sym_if] = ACTIONS(1268), + [anon_sym_else] = ACTIONS(1268), + [anon_sym_switch] = ACTIONS(1268), + [anon_sym_case] = ACTIONS(1268), + [anon_sym_default] = ACTIONS(1268), + [anon_sym_while] = ACTIONS(1268), + [anon_sym_do] = ACTIONS(1268), + [anon_sym_for] = ACTIONS(1268), + [anon_sym_return] = ACTIONS(1268), + [anon_sym_break] = ACTIONS(1268), + [anon_sym_continue] = ACTIONS(1268), + [anon_sym_goto] = ACTIONS(1268), + [anon_sym_DASH_DASH] = ACTIONS(1270), + [anon_sym_PLUS_PLUS] = ACTIONS(1270), + [anon_sym_sizeof] = ACTIONS(1268), + [anon_sym___alignof__] = ACTIONS(1268), + [anon_sym___alignof] = ACTIONS(1268), + [anon_sym__alignof] = ACTIONS(1268), + [anon_sym_alignof] = ACTIONS(1268), + [anon_sym__Alignof] = ACTIONS(1268), + [anon_sym_offsetof] = ACTIONS(1268), + [anon_sym___builtin_va_arg] = ACTIONS(1268), + [anon_sym__Generic] = ACTIONS(1268), + [anon_sym_asm] = ACTIONS(1268), + [anon_sym___asm__] = ACTIONS(1268), + [sym_number_literal] = ACTIONS(1270), + [anon_sym_L_SQUOTE] = ACTIONS(1270), + [anon_sym_u_SQUOTE] = ACTIONS(1270), + [anon_sym_U_SQUOTE] = ACTIONS(1270), + [anon_sym_u8_SQUOTE] = ACTIONS(1270), + [anon_sym_SQUOTE] = ACTIONS(1270), + [anon_sym_L_DQUOTE] = ACTIONS(1270), + [anon_sym_u_DQUOTE] = ACTIONS(1270), + [anon_sym_U_DQUOTE] = ACTIONS(1270), + [anon_sym_u8_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1270), + [sym_true] = ACTIONS(1268), + [sym_false] = ACTIONS(1268), + [anon_sym_NULL] = ACTIONS(1268), + [anon_sym_nullptr] = ACTIONS(1268), [sym_comment] = ACTIONS(3), }, - [472] = { - [sym_identifier] = ACTIONS(1364), - [aux_sym_preproc_include_token1] = ACTIONS(1364), - [aux_sym_preproc_def_token1] = ACTIONS(1364), - [aux_sym_preproc_if_token1] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), - [sym_preproc_directive] = ACTIONS(1364), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(1366), - [anon_sym_TILDE] = ACTIONS(1366), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_AMP] = ACTIONS(1366), - [anon_sym_SEMI] = ACTIONS(1366), - [anon_sym_typedef] = ACTIONS(1364), - [anon_sym_extern] = ACTIONS(1364), - [anon_sym___attribute__] = ACTIONS(1364), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1366), - [anon_sym___declspec] = ACTIONS(1364), - [anon_sym___cdecl] = ACTIONS(1364), - [anon_sym___clrcall] = ACTIONS(1364), - [anon_sym___stdcall] = ACTIONS(1364), - [anon_sym___fastcall] = ACTIONS(1364), - [anon_sym___thiscall] = ACTIONS(1364), - [anon_sym___vectorcall] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_RBRACE] = ACTIONS(1366), - [anon_sym_signed] = ACTIONS(1364), - [anon_sym_unsigned] = ACTIONS(1364), - [anon_sym_long] = ACTIONS(1364), - [anon_sym_short] = ACTIONS(1364), - [anon_sym_static] = ACTIONS(1364), - [anon_sym_auto] = ACTIONS(1364), - [anon_sym_register] = ACTIONS(1364), - [anon_sym_inline] = ACTIONS(1364), - [anon_sym_thread_local] = ACTIONS(1364), - [anon_sym___thread] = ACTIONS(1364), - [anon_sym_const] = ACTIONS(1364), - [anon_sym_constexpr] = ACTIONS(1364), - [anon_sym_volatile] = ACTIONS(1364), - [anon_sym_restrict] = ACTIONS(1364), - [anon_sym___restrict__] = ACTIONS(1364), - [anon_sym__Atomic] = ACTIONS(1364), - [anon_sym__Noreturn] = ACTIONS(1364), - [anon_sym_noreturn] = ACTIONS(1364), - [sym_primitive_type] = ACTIONS(1364), - [anon_sym_enum] = ACTIONS(1364), - [anon_sym_struct] = ACTIONS(1364), - [anon_sym_union] = ACTIONS(1364), - [anon_sym_if] = ACTIONS(1364), - [anon_sym_switch] = ACTIONS(1364), - [anon_sym_case] = ACTIONS(1364), - [anon_sym_default] = ACTIONS(1364), - [anon_sym_while] = ACTIONS(1364), - [anon_sym_do] = ACTIONS(1364), - [anon_sym_for] = ACTIONS(1364), - [anon_sym_return] = ACTIONS(1364), - [anon_sym_break] = ACTIONS(1364), - [anon_sym_continue] = ACTIONS(1364), - [anon_sym_goto] = ACTIONS(1364), - [anon_sym_DASH_DASH] = ACTIONS(1366), - [anon_sym_PLUS_PLUS] = ACTIONS(1366), - [anon_sym_sizeof] = ACTIONS(1364), - [anon_sym_offsetof] = ACTIONS(1364), - [anon_sym__Generic] = ACTIONS(1364), - [anon_sym_asm] = ACTIONS(1364), - [anon_sym___asm__] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(1366), - [anon_sym_L_SQUOTE] = ACTIONS(1366), - [anon_sym_u_SQUOTE] = ACTIONS(1366), - [anon_sym_U_SQUOTE] = ACTIONS(1366), - [anon_sym_u8_SQUOTE] = ACTIONS(1366), - [anon_sym_SQUOTE] = ACTIONS(1366), - [anon_sym_L_DQUOTE] = ACTIONS(1366), - [anon_sym_u_DQUOTE] = ACTIONS(1366), - [anon_sym_U_DQUOTE] = ACTIONS(1366), - [anon_sym_u8_DQUOTE] = ACTIONS(1366), - [anon_sym_DQUOTE] = ACTIONS(1366), - [sym_true] = ACTIONS(1364), - [sym_false] = ACTIONS(1364), - [anon_sym_NULL] = ACTIONS(1364), - [anon_sym_nullptr] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - }, - [473] = { - [sym_attribute_declaration] = STATE(473), - [sym_compound_statement] = STATE(318), - [sym_attributed_statement] = STATE(318), - [sym_labeled_statement] = STATE(318), - [sym_expression_statement] = STATE(318), - [sym_if_statement] = STATE(318), - [sym_switch_statement] = STATE(318), - [sym_case_statement] = STATE(318), - [sym_while_statement] = STATE(318), - [sym_do_statement] = STATE(318), - [sym_for_statement] = STATE(318), - [sym_return_statement] = STATE(318), - [sym_break_statement] = STATE(318), - [sym_continue_statement] = STATE(318), - [sym_goto_statement] = STATE(318), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(473), - [sym_identifier] = ACTIONS(1649), - [anon_sym_LPAREN2] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_STAR] = ACTIONS(1488), - [anon_sym_AMP] = ACTIONS(1488), - [anon_sym_SEMI] = ACTIONS(1610), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), - [anon_sym_LBRACE] = ACTIONS(1652), - [anon_sym_if] = ACTIONS(1655), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_case] = ACTIONS(1661), - [anon_sym_default] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1673), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1679), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_goto] = ACTIONS(1685), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_sizeof] = ACTIONS(1536), - [anon_sym_offsetof] = ACTIONS(1539), - [anon_sym__Generic] = ACTIONS(1542), - [anon_sym_asm] = ACTIONS(1545), - [anon_sym___asm__] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1548), - [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(1554), - [anon_sym_u_DQUOTE] = ACTIONS(1554), - [anon_sym_U_DQUOTE] = ACTIONS(1554), - [anon_sym_u8_DQUOTE] = ACTIONS(1554), - [anon_sym_DQUOTE] = ACTIONS(1554), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [anon_sym_NULL] = ACTIONS(1560), - [anon_sym_nullptr] = ACTIONS(1560), - [sym_comment] = ACTIONS(3), - }, - [474] = { - [sym_attribute_declaration] = STATE(375), - [sym_compound_statement] = STATE(2017), - [sym_attributed_statement] = STATE(2017), - [sym_labeled_statement] = STATE(2017), - [sym_expression_statement] = STATE(2017), - [sym_if_statement] = STATE(2017), - [sym_switch_statement] = STATE(2017), - [sym_case_statement] = STATE(2017), - [sym_while_statement] = STATE(2017), - [sym_do_statement] = STATE(2017), - [sym_for_statement] = STATE(2017), - [sym_return_statement] = STATE(2017), - [sym_break_statement] = STATE(2017), - [sym_continue_statement] = STATE(2017), - [sym_goto_statement] = STATE(2017), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1466), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [475] = { - [sym_identifier] = ACTIONS(1410), - [aux_sym_preproc_include_token1] = ACTIONS(1410), - [aux_sym_preproc_def_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token1] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), - [sym_preproc_directive] = ACTIONS(1410), - [anon_sym_LPAREN2] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym_typedef] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym___attribute__] = ACTIONS(1410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), - [anon_sym___declspec] = ACTIONS(1410), - [anon_sym___cdecl] = ACTIONS(1410), - [anon_sym___clrcall] = ACTIONS(1410), - [anon_sym___stdcall] = ACTIONS(1410), - [anon_sym___fastcall] = ACTIONS(1410), - [anon_sym___thiscall] = ACTIONS(1410), - [anon_sym___vectorcall] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(1412), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_auto] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), - [anon_sym_thread_local] = ACTIONS(1410), - [anon_sym___thread] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_constexpr] = ACTIONS(1410), - [anon_sym_volatile] = ACTIONS(1410), - [anon_sym_restrict] = ACTIONS(1410), - [anon_sym___restrict__] = ACTIONS(1410), - [anon_sym__Atomic] = ACTIONS(1410), - [anon_sym__Noreturn] = ACTIONS(1410), - [anon_sym_noreturn] = ACTIONS(1410), - [sym_primitive_type] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_case] = ACTIONS(1410), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_goto] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_sizeof] = ACTIONS(1410), - [anon_sym_offsetof] = ACTIONS(1410), - [anon_sym__Generic] = ACTIONS(1410), - [anon_sym_asm] = ACTIONS(1410), - [anon_sym___asm__] = ACTIONS(1410), - [sym_number_literal] = ACTIONS(1412), - [anon_sym_L_SQUOTE] = ACTIONS(1412), - [anon_sym_u_SQUOTE] = ACTIONS(1412), - [anon_sym_U_SQUOTE] = ACTIONS(1412), - [anon_sym_u8_SQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_L_DQUOTE] = ACTIONS(1412), - [anon_sym_u_DQUOTE] = ACTIONS(1412), - [anon_sym_U_DQUOTE] = ACTIONS(1412), - [anon_sym_u8_DQUOTE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [sym_true] = ACTIONS(1410), - [sym_false] = ACTIONS(1410), - [anon_sym_NULL] = ACTIONS(1410), - [anon_sym_nullptr] = ACTIONS(1410), - [sym_comment] = ACTIONS(3), - }, - [476] = { - [sym_attribute_declaration] = STATE(498), - [sym_compound_statement] = STATE(327), - [sym_attributed_statement] = STATE(327), - [sym_labeled_statement] = STATE(327), - [sym_expression_statement] = STATE(327), - [sym_if_statement] = STATE(327), - [sym_switch_statement] = STATE(327), - [sym_case_statement] = STATE(327), - [sym_while_statement] = STATE(327), - [sym_do_statement] = STATE(327), - [sym_for_statement] = STATE(327), - [sym_return_statement] = STATE(327), - [sym_break_statement] = STATE(327), - [sym_continue_statement] = STATE(327), - [sym_goto_statement] = STATE(327), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [sym_identifier] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [477] = { - [sym_attribute_declaration] = STATE(498), - [sym_compound_statement] = STATE(326), - [sym_attributed_statement] = STATE(326), - [sym_labeled_statement] = STATE(326), - [sym_expression_statement] = STATE(326), - [sym_if_statement] = STATE(326), - [sym_switch_statement] = STATE(326), - [sym_case_statement] = STATE(326), - [sym_while_statement] = STATE(326), - [sym_do_statement] = STATE(326), - [sym_for_statement] = STATE(326), - [sym_return_statement] = STATE(326), - [sym_break_statement] = STATE(326), - [sym_continue_statement] = STATE(326), - [sym_goto_statement] = STATE(326), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [sym_identifier] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [478] = { - [sym_identifier] = ACTIONS(1414), - [aux_sym_preproc_include_token1] = ACTIONS(1414), - [aux_sym_preproc_def_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), - [sym_preproc_directive] = ACTIONS(1414), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym_typedef] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym___attribute__] = ACTIONS(1414), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), - [anon_sym___declspec] = ACTIONS(1414), - [anon_sym___cdecl] = ACTIONS(1414), - [anon_sym___clrcall] = ACTIONS(1414), - [anon_sym___stdcall] = ACTIONS(1414), - [anon_sym___fastcall] = ACTIONS(1414), - [anon_sym___thiscall] = ACTIONS(1414), - [anon_sym___vectorcall] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_RBRACE] = ACTIONS(1416), - [anon_sym_signed] = ACTIONS(1414), - [anon_sym_unsigned] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_short] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_auto] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_inline] = ACTIONS(1414), - [anon_sym_thread_local] = ACTIONS(1414), - [anon_sym___thread] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_constexpr] = ACTIONS(1414), - [anon_sym_volatile] = ACTIONS(1414), - [anon_sym_restrict] = ACTIONS(1414), - [anon_sym___restrict__] = ACTIONS(1414), - [anon_sym__Atomic] = ACTIONS(1414), - [anon_sym__Noreturn] = ACTIONS(1414), - [anon_sym_noreturn] = ACTIONS(1414), - [sym_primitive_type] = ACTIONS(1414), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_case] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_goto] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_sizeof] = ACTIONS(1414), - [anon_sym_offsetof] = ACTIONS(1414), - [anon_sym__Generic] = ACTIONS(1414), - [anon_sym_asm] = ACTIONS(1414), - [anon_sym___asm__] = ACTIONS(1414), - [sym_number_literal] = ACTIONS(1416), - [anon_sym_L_SQUOTE] = ACTIONS(1416), - [anon_sym_u_SQUOTE] = ACTIONS(1416), - [anon_sym_U_SQUOTE] = ACTIONS(1416), - [anon_sym_u8_SQUOTE] = ACTIONS(1416), - [anon_sym_SQUOTE] = ACTIONS(1416), - [anon_sym_L_DQUOTE] = ACTIONS(1416), - [anon_sym_u_DQUOTE] = ACTIONS(1416), - [anon_sym_U_DQUOTE] = ACTIONS(1416), - [anon_sym_u8_DQUOTE] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [sym_true] = ACTIONS(1414), - [sym_false] = ACTIONS(1414), - [anon_sym_NULL] = ACTIONS(1414), - [anon_sym_nullptr] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - }, - [479] = { - [sym_attribute_declaration] = STATE(407), - [sym_compound_statement] = STATE(104), - [sym_attributed_statement] = STATE(104), - [sym_labeled_statement] = STATE(104), - [sym_expression_statement] = STATE(104), - [sym_if_statement] = STATE(104), - [sym_switch_statement] = STATE(104), - [sym_case_statement] = STATE(104), - [sym_while_statement] = STATE(104), - [sym_do_statement] = STATE(104), - [sym_for_statement] = STATE(104), - [sym_return_statement] = STATE(104), - [sym_break_statement] = STATE(104), - [sym_continue_statement] = STATE(104), - [sym_goto_statement] = STATE(104), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1801), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [sym_identifier] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [480] = { - [sym_attribute_declaration] = STATE(480), - [sym_compound_statement] = STATE(318), - [sym_attributed_statement] = STATE(318), - [sym_labeled_statement] = STATE(318), - [sym_expression_statement] = STATE(318), - [sym_if_statement] = STATE(318), - [sym_switch_statement] = STATE(318), - [sym_case_statement] = STATE(318), - [sym_while_statement] = STATE(318), - [sym_do_statement] = STATE(318), - [sym_for_statement] = STATE(318), - [sym_return_statement] = STATE(318), - [sym_break_statement] = STATE(318), - [sym_continue_statement] = STATE(318), - [sym_goto_statement] = STATE(318), - [sym__expression] = STATE(1098), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1873), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(480), - [sym_identifier] = ACTIONS(1688), - [anon_sym_LPAREN2] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_STAR] = ACTIONS(1488), - [anon_sym_AMP] = ACTIONS(1488), - [anon_sym_SEMI] = ACTIONS(1691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), - [anon_sym_LBRACE] = ACTIONS(1652), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_case] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1700), - [anon_sym_while] = ACTIONS(1703), - [anon_sym_do] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1706), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1679), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_goto] = ACTIONS(1685), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_sizeof] = ACTIONS(1536), - [anon_sym_offsetof] = ACTIONS(1539), - [anon_sym__Generic] = ACTIONS(1542), - [anon_sym_asm] = ACTIONS(1545), - [anon_sym___asm__] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1548), - [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(1554), - [anon_sym_u_DQUOTE] = ACTIONS(1554), - [anon_sym_U_DQUOTE] = ACTIONS(1554), - [anon_sym_u8_DQUOTE] = ACTIONS(1554), - [anon_sym_DQUOTE] = ACTIONS(1554), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [anon_sym_NULL] = ACTIONS(1560), - [anon_sym_nullptr] = ACTIONS(1560), - [sym_comment] = ACTIONS(3), - }, - [481] = { - [sym_identifier] = ACTIONS(1422), - [aux_sym_preproc_include_token1] = ACTIONS(1422), - [aux_sym_preproc_def_token1] = ACTIONS(1422), - [aux_sym_preproc_if_token1] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), - [sym_preproc_directive] = ACTIONS(1422), - [anon_sym_LPAREN2] = ACTIONS(1424), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_TILDE] = ACTIONS(1424), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1424), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym_typedef] = ACTIONS(1422), - [anon_sym_extern] = ACTIONS(1422), - [anon_sym___attribute__] = ACTIONS(1422), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym___declspec] = ACTIONS(1422), - [anon_sym___cdecl] = ACTIONS(1422), - [anon_sym___clrcall] = ACTIONS(1422), - [anon_sym___stdcall] = ACTIONS(1422), - [anon_sym___fastcall] = ACTIONS(1422), - [anon_sym___thiscall] = ACTIONS(1422), - [anon_sym___vectorcall] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(1424), - [anon_sym_signed] = ACTIONS(1422), - [anon_sym_unsigned] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_short] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_auto] = ACTIONS(1422), - [anon_sym_register] = ACTIONS(1422), - [anon_sym_inline] = ACTIONS(1422), - [anon_sym_thread_local] = ACTIONS(1422), - [anon_sym___thread] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_constexpr] = ACTIONS(1422), - [anon_sym_volatile] = ACTIONS(1422), - [anon_sym_restrict] = ACTIONS(1422), - [anon_sym___restrict__] = ACTIONS(1422), - [anon_sym__Atomic] = ACTIONS(1422), - [anon_sym__Noreturn] = ACTIONS(1422), - [anon_sym_noreturn] = ACTIONS(1422), - [sym_primitive_type] = ACTIONS(1422), - [anon_sym_enum] = ACTIONS(1422), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_union] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_case] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_do] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_goto] = ACTIONS(1422), - [anon_sym_DASH_DASH] = ACTIONS(1424), - [anon_sym_PLUS_PLUS] = ACTIONS(1424), - [anon_sym_sizeof] = ACTIONS(1422), - [anon_sym_offsetof] = ACTIONS(1422), - [anon_sym__Generic] = ACTIONS(1422), - [anon_sym_asm] = ACTIONS(1422), - [anon_sym___asm__] = ACTIONS(1422), - [sym_number_literal] = ACTIONS(1424), - [anon_sym_L_SQUOTE] = ACTIONS(1424), - [anon_sym_u_SQUOTE] = ACTIONS(1424), - [anon_sym_U_SQUOTE] = ACTIONS(1424), - [anon_sym_u8_SQUOTE] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_L_DQUOTE] = ACTIONS(1424), - [anon_sym_u_DQUOTE] = ACTIONS(1424), - [anon_sym_U_DQUOTE] = ACTIONS(1424), - [anon_sym_u8_DQUOTE] = ACTIONS(1424), - [anon_sym_DQUOTE] = ACTIONS(1424), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [anon_sym_NULL] = ACTIONS(1422), - [anon_sym_nullptr] = ACTIONS(1422), + [408] = { + [sym_identifier] = ACTIONS(1264), + [aux_sym_preproc_include_token1] = ACTIONS(1264), + [aux_sym_preproc_def_token1] = ACTIONS(1264), + [aux_sym_preproc_if_token1] = ACTIONS(1264), + [aux_sym_preproc_if_token2] = ACTIONS(1264), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1264), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1264), + [sym_preproc_directive] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(1266), + [anon_sym_BANG] = ACTIONS(1266), + [anon_sym_TILDE] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1264), + [anon_sym_PLUS] = ACTIONS(1264), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_AMP] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1266), + [anon_sym___extension__] = ACTIONS(1264), + [anon_sym_typedef] = ACTIONS(1264), + [anon_sym_extern] = ACTIONS(1264), + [anon_sym___attribute__] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1266), + [anon_sym___declspec] = ACTIONS(1264), + [anon_sym___cdecl] = ACTIONS(1264), + [anon_sym___clrcall] = ACTIONS(1264), + [anon_sym___stdcall] = ACTIONS(1264), + [anon_sym___fastcall] = ACTIONS(1264), + [anon_sym___thiscall] = ACTIONS(1264), + [anon_sym___vectorcall] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_signed] = ACTIONS(1264), + [anon_sym_unsigned] = ACTIONS(1264), + [anon_sym_long] = ACTIONS(1264), + [anon_sym_short] = ACTIONS(1264), + [anon_sym_static] = ACTIONS(1264), + [anon_sym_auto] = ACTIONS(1264), + [anon_sym_register] = ACTIONS(1264), + [anon_sym_inline] = ACTIONS(1264), + [anon_sym___inline] = ACTIONS(1264), + [anon_sym___inline__] = ACTIONS(1264), + [anon_sym___forceinline] = ACTIONS(1264), + [anon_sym_thread_local] = ACTIONS(1264), + [anon_sym___thread] = ACTIONS(1264), + [anon_sym_const] = ACTIONS(1264), + [anon_sym_constexpr] = ACTIONS(1264), + [anon_sym_volatile] = ACTIONS(1264), + [anon_sym_restrict] = ACTIONS(1264), + [anon_sym___restrict__] = ACTIONS(1264), + [anon_sym__Atomic] = ACTIONS(1264), + [anon_sym__Noreturn] = ACTIONS(1264), + [anon_sym_noreturn] = ACTIONS(1264), + [sym_primitive_type] = ACTIONS(1264), + [anon_sym_enum] = ACTIONS(1264), + [anon_sym_struct] = ACTIONS(1264), + [anon_sym_union] = ACTIONS(1264), + [anon_sym_if] = ACTIONS(1264), + [anon_sym_else] = ACTIONS(1264), + [anon_sym_switch] = ACTIONS(1264), + [anon_sym_case] = ACTIONS(1264), + [anon_sym_default] = ACTIONS(1264), + [anon_sym_while] = ACTIONS(1264), + [anon_sym_do] = ACTIONS(1264), + [anon_sym_for] = ACTIONS(1264), + [anon_sym_return] = ACTIONS(1264), + [anon_sym_break] = ACTIONS(1264), + [anon_sym_continue] = ACTIONS(1264), + [anon_sym_goto] = ACTIONS(1264), + [anon_sym_DASH_DASH] = ACTIONS(1266), + [anon_sym_PLUS_PLUS] = ACTIONS(1266), + [anon_sym_sizeof] = ACTIONS(1264), + [anon_sym___alignof__] = ACTIONS(1264), + [anon_sym___alignof] = ACTIONS(1264), + [anon_sym__alignof] = ACTIONS(1264), + [anon_sym_alignof] = ACTIONS(1264), + [anon_sym__Alignof] = ACTIONS(1264), + [anon_sym_offsetof] = ACTIONS(1264), + [anon_sym___builtin_va_arg] = ACTIONS(1264), + [anon_sym__Generic] = ACTIONS(1264), + [anon_sym_asm] = ACTIONS(1264), + [anon_sym___asm__] = ACTIONS(1264), + [sym_number_literal] = ACTIONS(1266), + [anon_sym_L_SQUOTE] = ACTIONS(1266), + [anon_sym_u_SQUOTE] = ACTIONS(1266), + [anon_sym_U_SQUOTE] = ACTIONS(1266), + [anon_sym_u8_SQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1266), + [anon_sym_L_DQUOTE] = ACTIONS(1266), + [anon_sym_u_DQUOTE] = ACTIONS(1266), + [anon_sym_U_DQUOTE] = ACTIONS(1266), + [anon_sym_u8_DQUOTE] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym_true] = ACTIONS(1264), + [sym_false] = ACTIONS(1264), + [anon_sym_NULL] = ACTIONS(1264), + [anon_sym_nullptr] = ACTIONS(1264), [sym_comment] = ACTIONS(3), }, - [482] = { - [sym_identifier] = ACTIONS(1426), - [aux_sym_preproc_include_token1] = ACTIONS(1426), - [aux_sym_preproc_def_token1] = ACTIONS(1426), - [aux_sym_preproc_if_token1] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), - [sym_preproc_directive] = ACTIONS(1426), - [anon_sym_LPAREN2] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym_typedef] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym___attribute__] = ACTIONS(1426), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), - [anon_sym___declspec] = ACTIONS(1426), - [anon_sym___cdecl] = ACTIONS(1426), - [anon_sym___clrcall] = ACTIONS(1426), - [anon_sym___stdcall] = ACTIONS(1426), - [anon_sym___fastcall] = ACTIONS(1426), - [anon_sym___thiscall] = ACTIONS(1426), - [anon_sym___vectorcall] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_RBRACE] = ACTIONS(1428), - [anon_sym_signed] = ACTIONS(1426), - [anon_sym_unsigned] = ACTIONS(1426), - [anon_sym_long] = ACTIONS(1426), - [anon_sym_short] = ACTIONS(1426), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_auto] = ACTIONS(1426), - [anon_sym_register] = ACTIONS(1426), - [anon_sym_inline] = ACTIONS(1426), - [anon_sym_thread_local] = ACTIONS(1426), - [anon_sym___thread] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_constexpr] = ACTIONS(1426), - [anon_sym_volatile] = ACTIONS(1426), - [anon_sym_restrict] = ACTIONS(1426), - [anon_sym___restrict__] = ACTIONS(1426), - [anon_sym__Atomic] = ACTIONS(1426), - [anon_sym__Noreturn] = ACTIONS(1426), - [anon_sym_noreturn] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(1426), - [anon_sym_enum] = ACTIONS(1426), - [anon_sym_struct] = ACTIONS(1426), - [anon_sym_union] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_switch] = ACTIONS(1426), - [anon_sym_case] = ACTIONS(1426), - [anon_sym_default] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_do] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_goto] = ACTIONS(1426), - [anon_sym_DASH_DASH] = ACTIONS(1428), - [anon_sym_PLUS_PLUS] = ACTIONS(1428), - [anon_sym_sizeof] = ACTIONS(1426), - [anon_sym_offsetof] = ACTIONS(1426), - [anon_sym__Generic] = ACTIONS(1426), - [anon_sym_asm] = ACTIONS(1426), - [anon_sym___asm__] = ACTIONS(1426), - [sym_number_literal] = ACTIONS(1428), - [anon_sym_L_SQUOTE] = ACTIONS(1428), - [anon_sym_u_SQUOTE] = ACTIONS(1428), - [anon_sym_U_SQUOTE] = ACTIONS(1428), - [anon_sym_u8_SQUOTE] = ACTIONS(1428), - [anon_sym_SQUOTE] = ACTIONS(1428), - [anon_sym_L_DQUOTE] = ACTIONS(1428), - [anon_sym_u_DQUOTE] = ACTIONS(1428), - [anon_sym_U_DQUOTE] = ACTIONS(1428), - [anon_sym_u8_DQUOTE] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [sym_true] = ACTIONS(1426), - [sym_false] = ACTIONS(1426), - [anon_sym_NULL] = ACTIONS(1426), - [anon_sym_nullptr] = ACTIONS(1426), + [409] = { + [sym_identifier] = ACTIONS(1260), + [aux_sym_preproc_include_token1] = ACTIONS(1260), + [aux_sym_preproc_def_token1] = ACTIONS(1260), + [aux_sym_preproc_if_token1] = ACTIONS(1260), + [aux_sym_preproc_if_token2] = ACTIONS(1260), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1260), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1260), + [sym_preproc_directive] = ACTIONS(1260), + [anon_sym_LPAREN2] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_STAR] = ACTIONS(1262), + [anon_sym_AMP] = ACTIONS(1262), + [anon_sym_SEMI] = ACTIONS(1262), + [anon_sym___extension__] = ACTIONS(1260), + [anon_sym_typedef] = ACTIONS(1260), + [anon_sym_extern] = ACTIONS(1260), + [anon_sym___attribute__] = ACTIONS(1260), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1262), + [anon_sym___declspec] = ACTIONS(1260), + [anon_sym___cdecl] = ACTIONS(1260), + [anon_sym___clrcall] = ACTIONS(1260), + [anon_sym___stdcall] = ACTIONS(1260), + [anon_sym___fastcall] = ACTIONS(1260), + [anon_sym___thiscall] = ACTIONS(1260), + [anon_sym___vectorcall] = ACTIONS(1260), + [anon_sym_LBRACE] = ACTIONS(1262), + [anon_sym_signed] = ACTIONS(1260), + [anon_sym_unsigned] = ACTIONS(1260), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_short] = ACTIONS(1260), + [anon_sym_static] = ACTIONS(1260), + [anon_sym_auto] = ACTIONS(1260), + [anon_sym_register] = ACTIONS(1260), + [anon_sym_inline] = ACTIONS(1260), + [anon_sym___inline] = ACTIONS(1260), + [anon_sym___inline__] = ACTIONS(1260), + [anon_sym___forceinline] = ACTIONS(1260), + [anon_sym_thread_local] = ACTIONS(1260), + [anon_sym___thread] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1260), + [anon_sym_constexpr] = ACTIONS(1260), + [anon_sym_volatile] = ACTIONS(1260), + [anon_sym_restrict] = ACTIONS(1260), + [anon_sym___restrict__] = ACTIONS(1260), + [anon_sym__Atomic] = ACTIONS(1260), + [anon_sym__Noreturn] = ACTIONS(1260), + [anon_sym_noreturn] = ACTIONS(1260), + [sym_primitive_type] = ACTIONS(1260), + [anon_sym_enum] = ACTIONS(1260), + [anon_sym_struct] = ACTIONS(1260), + [anon_sym_union] = ACTIONS(1260), + [anon_sym_if] = ACTIONS(1260), + [anon_sym_else] = ACTIONS(1260), + [anon_sym_switch] = ACTIONS(1260), + [anon_sym_case] = ACTIONS(1260), + [anon_sym_default] = ACTIONS(1260), + [anon_sym_while] = ACTIONS(1260), + [anon_sym_do] = ACTIONS(1260), + [anon_sym_for] = ACTIONS(1260), + [anon_sym_return] = ACTIONS(1260), + [anon_sym_break] = ACTIONS(1260), + [anon_sym_continue] = ACTIONS(1260), + [anon_sym_goto] = ACTIONS(1260), + [anon_sym_DASH_DASH] = ACTIONS(1262), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1260), + [anon_sym___alignof__] = ACTIONS(1260), + [anon_sym___alignof] = ACTIONS(1260), + [anon_sym__alignof] = ACTIONS(1260), + [anon_sym_alignof] = ACTIONS(1260), + [anon_sym__Alignof] = ACTIONS(1260), + [anon_sym_offsetof] = ACTIONS(1260), + [anon_sym___builtin_va_arg] = ACTIONS(1260), + [anon_sym__Generic] = ACTIONS(1260), + [anon_sym_asm] = ACTIONS(1260), + [anon_sym___asm__] = ACTIONS(1260), + [sym_number_literal] = ACTIONS(1262), + [anon_sym_L_SQUOTE] = ACTIONS(1262), + [anon_sym_u_SQUOTE] = ACTIONS(1262), + [anon_sym_U_SQUOTE] = ACTIONS(1262), + [anon_sym_u8_SQUOTE] = ACTIONS(1262), + [anon_sym_SQUOTE] = ACTIONS(1262), + [anon_sym_L_DQUOTE] = ACTIONS(1262), + [anon_sym_u_DQUOTE] = ACTIONS(1262), + [anon_sym_U_DQUOTE] = ACTIONS(1262), + [anon_sym_u8_DQUOTE] = ACTIONS(1262), + [anon_sym_DQUOTE] = ACTIONS(1262), + [sym_true] = ACTIONS(1260), + [sym_false] = ACTIONS(1260), + [anon_sym_NULL] = ACTIONS(1260), + [anon_sym_nullptr] = ACTIONS(1260), [sym_comment] = ACTIONS(3), }, - [483] = { - [sym_identifier] = ACTIONS(1430), - [aux_sym_preproc_include_token1] = ACTIONS(1430), - [aux_sym_preproc_def_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token1] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), - [sym_preproc_directive] = ACTIONS(1430), - [anon_sym_LPAREN2] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym_typedef] = ACTIONS(1430), - [anon_sym_extern] = ACTIONS(1430), - [anon_sym___attribute__] = ACTIONS(1430), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), - [anon_sym___declspec] = ACTIONS(1430), - [anon_sym___cdecl] = ACTIONS(1430), - [anon_sym___clrcall] = ACTIONS(1430), - [anon_sym___stdcall] = ACTIONS(1430), - [anon_sym___fastcall] = ACTIONS(1430), - [anon_sym___thiscall] = ACTIONS(1430), - [anon_sym___vectorcall] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1432), - [anon_sym_signed] = ACTIONS(1430), - [anon_sym_unsigned] = ACTIONS(1430), - [anon_sym_long] = ACTIONS(1430), - [anon_sym_short] = ACTIONS(1430), - [anon_sym_static] = ACTIONS(1430), - [anon_sym_auto] = ACTIONS(1430), - [anon_sym_register] = ACTIONS(1430), - [anon_sym_inline] = ACTIONS(1430), - [anon_sym_thread_local] = ACTIONS(1430), - [anon_sym___thread] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_constexpr] = ACTIONS(1430), - [anon_sym_volatile] = ACTIONS(1430), - [anon_sym_restrict] = ACTIONS(1430), - [anon_sym___restrict__] = ACTIONS(1430), - [anon_sym__Atomic] = ACTIONS(1430), - [anon_sym__Noreturn] = ACTIONS(1430), - [anon_sym_noreturn] = ACTIONS(1430), - [sym_primitive_type] = ACTIONS(1430), - [anon_sym_enum] = ACTIONS(1430), - [anon_sym_struct] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_switch] = ACTIONS(1430), - [anon_sym_case] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_goto] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1432), - [anon_sym_sizeof] = ACTIONS(1430), - [anon_sym_offsetof] = ACTIONS(1430), - [anon_sym__Generic] = ACTIONS(1430), - [anon_sym_asm] = ACTIONS(1430), - [anon_sym___asm__] = ACTIONS(1430), - [sym_number_literal] = ACTIONS(1432), - [anon_sym_L_SQUOTE] = ACTIONS(1432), - [anon_sym_u_SQUOTE] = ACTIONS(1432), - [anon_sym_U_SQUOTE] = ACTIONS(1432), - [anon_sym_u8_SQUOTE] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1432), - [anon_sym_L_DQUOTE] = ACTIONS(1432), - [anon_sym_u_DQUOTE] = ACTIONS(1432), - [anon_sym_U_DQUOTE] = ACTIONS(1432), - [anon_sym_u8_DQUOTE] = ACTIONS(1432), - [anon_sym_DQUOTE] = ACTIONS(1432), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [anon_sym_NULL] = ACTIONS(1430), - [anon_sym_nullptr] = ACTIONS(1430), + [410] = { + [sym_identifier] = ACTIONS(1380), + [aux_sym_preproc_include_token1] = ACTIONS(1380), + [aux_sym_preproc_def_token1] = ACTIONS(1380), + [aux_sym_preproc_if_token1] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), + [sym_preproc_directive] = ACTIONS(1380), + [anon_sym_LPAREN2] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_STAR] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym___extension__] = ACTIONS(1380), + [anon_sym_typedef] = ACTIONS(1380), + [anon_sym_extern] = ACTIONS(1380), + [anon_sym___attribute__] = ACTIONS(1380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym___declspec] = ACTIONS(1380), + [anon_sym___cdecl] = ACTIONS(1380), + [anon_sym___clrcall] = ACTIONS(1380), + [anon_sym___stdcall] = ACTIONS(1380), + [anon_sym___fastcall] = ACTIONS(1380), + [anon_sym___thiscall] = ACTIONS(1380), + [anon_sym___vectorcall] = ACTIONS(1380), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_RBRACE] = ACTIONS(1382), + [anon_sym_signed] = ACTIONS(1380), + [anon_sym_unsigned] = ACTIONS(1380), + [anon_sym_long] = ACTIONS(1380), + [anon_sym_short] = ACTIONS(1380), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_auto] = ACTIONS(1380), + [anon_sym_register] = ACTIONS(1380), + [anon_sym_inline] = ACTIONS(1380), + [anon_sym___inline] = ACTIONS(1380), + [anon_sym___inline__] = ACTIONS(1380), + [anon_sym___forceinline] = ACTIONS(1380), + [anon_sym_thread_local] = ACTIONS(1380), + [anon_sym___thread] = ACTIONS(1380), + [anon_sym_const] = ACTIONS(1380), + [anon_sym_constexpr] = ACTIONS(1380), + [anon_sym_volatile] = ACTIONS(1380), + [anon_sym_restrict] = ACTIONS(1380), + [anon_sym___restrict__] = ACTIONS(1380), + [anon_sym__Atomic] = ACTIONS(1380), + [anon_sym__Noreturn] = ACTIONS(1380), + [anon_sym_noreturn] = ACTIONS(1380), + [sym_primitive_type] = ACTIONS(1380), + [anon_sym_enum] = ACTIONS(1380), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_union] = ACTIONS(1380), + [anon_sym_if] = ACTIONS(1380), + [anon_sym_else] = ACTIONS(1380), + [anon_sym_switch] = ACTIONS(1380), + [anon_sym_case] = ACTIONS(1380), + [anon_sym_default] = ACTIONS(1380), + [anon_sym_while] = ACTIONS(1380), + [anon_sym_do] = ACTIONS(1380), + [anon_sym_for] = ACTIONS(1380), + [anon_sym_return] = ACTIONS(1380), + [anon_sym_break] = ACTIONS(1380), + [anon_sym_continue] = ACTIONS(1380), + [anon_sym_goto] = ACTIONS(1380), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1380), + [anon_sym___alignof__] = ACTIONS(1380), + [anon_sym___alignof] = ACTIONS(1380), + [anon_sym__alignof] = ACTIONS(1380), + [anon_sym_alignof] = ACTIONS(1380), + [anon_sym__Alignof] = ACTIONS(1380), + [anon_sym_offsetof] = ACTIONS(1380), + [anon_sym___builtin_va_arg] = ACTIONS(1380), + [anon_sym__Generic] = ACTIONS(1380), + [anon_sym_asm] = ACTIONS(1380), + [anon_sym___asm__] = ACTIONS(1380), + [sym_number_literal] = ACTIONS(1382), + [anon_sym_L_SQUOTE] = ACTIONS(1382), + [anon_sym_u_SQUOTE] = ACTIONS(1382), + [anon_sym_U_SQUOTE] = ACTIONS(1382), + [anon_sym_u8_SQUOTE] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [anon_sym_L_DQUOTE] = ACTIONS(1382), + [anon_sym_u_DQUOTE] = ACTIONS(1382), + [anon_sym_U_DQUOTE] = ACTIONS(1382), + [anon_sym_u8_DQUOTE] = ACTIONS(1382), + [anon_sym_DQUOTE] = ACTIONS(1382), + [sym_true] = ACTIONS(1380), + [sym_false] = ACTIONS(1380), + [anon_sym_NULL] = ACTIONS(1380), + [anon_sym_nullptr] = ACTIONS(1380), [sym_comment] = ACTIONS(3), }, - [484] = { - [sym_identifier] = ACTIONS(1434), - [aux_sym_preproc_include_token1] = ACTIONS(1434), - [aux_sym_preproc_def_token1] = ACTIONS(1434), - [aux_sym_preproc_if_token1] = ACTIONS(1434), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), - [sym_preproc_directive] = ACTIONS(1434), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1436), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1434), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1436), - [anon_sym_typedef] = ACTIONS(1434), - [anon_sym_extern] = ACTIONS(1434), - [anon_sym___attribute__] = ACTIONS(1434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1436), - [anon_sym___declspec] = ACTIONS(1434), - [anon_sym___cdecl] = ACTIONS(1434), - [anon_sym___clrcall] = ACTIONS(1434), - [anon_sym___stdcall] = ACTIONS(1434), - [anon_sym___fastcall] = ACTIONS(1434), - [anon_sym___thiscall] = ACTIONS(1434), - [anon_sym___vectorcall] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_RBRACE] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1434), - [anon_sym_unsigned] = ACTIONS(1434), - [anon_sym_long] = ACTIONS(1434), - [anon_sym_short] = ACTIONS(1434), - [anon_sym_static] = ACTIONS(1434), - [anon_sym_auto] = ACTIONS(1434), - [anon_sym_register] = ACTIONS(1434), - [anon_sym_inline] = ACTIONS(1434), - [anon_sym_thread_local] = ACTIONS(1434), - [anon_sym___thread] = ACTIONS(1434), - [anon_sym_const] = ACTIONS(1434), - [anon_sym_constexpr] = ACTIONS(1434), - [anon_sym_volatile] = ACTIONS(1434), - [anon_sym_restrict] = ACTIONS(1434), - [anon_sym___restrict__] = ACTIONS(1434), - [anon_sym__Atomic] = ACTIONS(1434), - [anon_sym__Noreturn] = ACTIONS(1434), - [anon_sym_noreturn] = ACTIONS(1434), - [sym_primitive_type] = ACTIONS(1434), - [anon_sym_enum] = ACTIONS(1434), - [anon_sym_struct] = ACTIONS(1434), - [anon_sym_union] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_switch] = ACTIONS(1434), - [anon_sym_case] = ACTIONS(1434), - [anon_sym_default] = ACTIONS(1434), - [anon_sym_while] = ACTIONS(1434), - [anon_sym_do] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1434), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_goto] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1436), - [anon_sym_PLUS_PLUS] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1434), - [anon_sym_offsetof] = ACTIONS(1434), - [anon_sym__Generic] = ACTIONS(1434), - [anon_sym_asm] = ACTIONS(1434), - [anon_sym___asm__] = ACTIONS(1434), - [sym_number_literal] = ACTIONS(1436), - [anon_sym_L_SQUOTE] = ACTIONS(1436), - [anon_sym_u_SQUOTE] = ACTIONS(1436), - [anon_sym_U_SQUOTE] = ACTIONS(1436), - [anon_sym_u8_SQUOTE] = ACTIONS(1436), - [anon_sym_SQUOTE] = ACTIONS(1436), - [anon_sym_L_DQUOTE] = ACTIONS(1436), - [anon_sym_u_DQUOTE] = ACTIONS(1436), - [anon_sym_U_DQUOTE] = ACTIONS(1436), - [anon_sym_u8_DQUOTE] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1436), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [anon_sym_NULL] = ACTIONS(1434), - [anon_sym_nullptr] = ACTIONS(1434), + [411] = { + [sym_identifier] = ACTIONS(1252), + [aux_sym_preproc_include_token1] = ACTIONS(1252), + [aux_sym_preproc_def_token1] = ACTIONS(1252), + [aux_sym_preproc_if_token1] = ACTIONS(1252), + [aux_sym_preproc_if_token2] = ACTIONS(1252), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1252), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1252), + [sym_preproc_directive] = ACTIONS(1252), + [anon_sym_LPAREN2] = ACTIONS(1254), + [anon_sym_BANG] = ACTIONS(1254), + [anon_sym_TILDE] = ACTIONS(1254), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1252), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(1252), + [anon_sym_typedef] = ACTIONS(1252), + [anon_sym_extern] = ACTIONS(1252), + [anon_sym___attribute__] = ACTIONS(1252), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1254), + [anon_sym___declspec] = ACTIONS(1252), + [anon_sym___cdecl] = ACTIONS(1252), + [anon_sym___clrcall] = ACTIONS(1252), + [anon_sym___stdcall] = ACTIONS(1252), + [anon_sym___fastcall] = ACTIONS(1252), + [anon_sym___thiscall] = ACTIONS(1252), + [anon_sym___vectorcall] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_signed] = ACTIONS(1252), + [anon_sym_unsigned] = ACTIONS(1252), + [anon_sym_long] = ACTIONS(1252), + [anon_sym_short] = ACTIONS(1252), + [anon_sym_static] = ACTIONS(1252), + [anon_sym_auto] = ACTIONS(1252), + [anon_sym_register] = ACTIONS(1252), + [anon_sym_inline] = ACTIONS(1252), + [anon_sym___inline] = ACTIONS(1252), + [anon_sym___inline__] = ACTIONS(1252), + [anon_sym___forceinline] = ACTIONS(1252), + [anon_sym_thread_local] = ACTIONS(1252), + [anon_sym___thread] = ACTIONS(1252), + [anon_sym_const] = ACTIONS(1252), + [anon_sym_constexpr] = ACTIONS(1252), + [anon_sym_volatile] = ACTIONS(1252), + [anon_sym_restrict] = ACTIONS(1252), + [anon_sym___restrict__] = ACTIONS(1252), + [anon_sym__Atomic] = ACTIONS(1252), + [anon_sym__Noreturn] = ACTIONS(1252), + [anon_sym_noreturn] = ACTIONS(1252), + [sym_primitive_type] = ACTIONS(1252), + [anon_sym_enum] = ACTIONS(1252), + [anon_sym_struct] = ACTIONS(1252), + [anon_sym_union] = ACTIONS(1252), + [anon_sym_if] = ACTIONS(1252), + [anon_sym_else] = ACTIONS(1252), + [anon_sym_switch] = ACTIONS(1252), + [anon_sym_case] = ACTIONS(1252), + [anon_sym_default] = ACTIONS(1252), + [anon_sym_while] = ACTIONS(1252), + [anon_sym_do] = ACTIONS(1252), + [anon_sym_for] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1252), + [anon_sym_break] = ACTIONS(1252), + [anon_sym_continue] = ACTIONS(1252), + [anon_sym_goto] = ACTIONS(1252), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1252), + [anon_sym___alignof__] = ACTIONS(1252), + [anon_sym___alignof] = ACTIONS(1252), + [anon_sym__alignof] = ACTIONS(1252), + [anon_sym_alignof] = ACTIONS(1252), + [anon_sym__Alignof] = ACTIONS(1252), + [anon_sym_offsetof] = ACTIONS(1252), + [anon_sym___builtin_va_arg] = ACTIONS(1252), + [anon_sym__Generic] = ACTIONS(1252), + [anon_sym_asm] = ACTIONS(1252), + [anon_sym___asm__] = ACTIONS(1252), + [sym_number_literal] = ACTIONS(1254), + [anon_sym_L_SQUOTE] = ACTIONS(1254), + [anon_sym_u_SQUOTE] = ACTIONS(1254), + [anon_sym_U_SQUOTE] = ACTIONS(1254), + [anon_sym_u8_SQUOTE] = ACTIONS(1254), + [anon_sym_SQUOTE] = ACTIONS(1254), + [anon_sym_L_DQUOTE] = ACTIONS(1254), + [anon_sym_u_DQUOTE] = ACTIONS(1254), + [anon_sym_U_DQUOTE] = ACTIONS(1254), + [anon_sym_u8_DQUOTE] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(1254), + [sym_true] = ACTIONS(1252), + [sym_false] = ACTIONS(1252), + [anon_sym_NULL] = ACTIONS(1252), + [anon_sym_nullptr] = ACTIONS(1252), [sym_comment] = ACTIONS(3), }, - [485] = { - [sym_identifier] = ACTIONS(1438), - [aux_sym_preproc_include_token1] = ACTIONS(1438), - [aux_sym_preproc_def_token1] = ACTIONS(1438), - [aux_sym_preproc_if_token1] = ACTIONS(1438), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), - [sym_preproc_directive] = ACTIONS(1438), - [anon_sym_LPAREN2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1440), - [anon_sym_TILDE] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_typedef] = ACTIONS(1438), - [anon_sym_extern] = ACTIONS(1438), - [anon_sym___attribute__] = ACTIONS(1438), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1440), - [anon_sym___declspec] = ACTIONS(1438), - [anon_sym___cdecl] = ACTIONS(1438), - [anon_sym___clrcall] = ACTIONS(1438), - [anon_sym___stdcall] = ACTIONS(1438), - [anon_sym___fastcall] = ACTIONS(1438), - [anon_sym___thiscall] = ACTIONS(1438), - [anon_sym___vectorcall] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_signed] = ACTIONS(1438), - [anon_sym_unsigned] = ACTIONS(1438), - [anon_sym_long] = ACTIONS(1438), - [anon_sym_short] = ACTIONS(1438), - [anon_sym_static] = ACTIONS(1438), - [anon_sym_auto] = ACTIONS(1438), - [anon_sym_register] = ACTIONS(1438), - [anon_sym_inline] = ACTIONS(1438), - [anon_sym_thread_local] = ACTIONS(1438), - [anon_sym___thread] = ACTIONS(1438), - [anon_sym_const] = ACTIONS(1438), - [anon_sym_constexpr] = ACTIONS(1438), - [anon_sym_volatile] = ACTIONS(1438), - [anon_sym_restrict] = ACTIONS(1438), - [anon_sym___restrict__] = ACTIONS(1438), - [anon_sym__Atomic] = ACTIONS(1438), - [anon_sym__Noreturn] = ACTIONS(1438), - [anon_sym_noreturn] = ACTIONS(1438), - [sym_primitive_type] = ACTIONS(1438), - [anon_sym_enum] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1438), - [anon_sym_union] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1438), - [anon_sym_switch] = ACTIONS(1438), - [anon_sym_case] = ACTIONS(1438), - [anon_sym_default] = ACTIONS(1438), - [anon_sym_while] = ACTIONS(1438), - [anon_sym_do] = ACTIONS(1438), - [anon_sym_for] = ACTIONS(1438), - [anon_sym_return] = ACTIONS(1438), - [anon_sym_break] = ACTIONS(1438), - [anon_sym_continue] = ACTIONS(1438), - [anon_sym_goto] = ACTIONS(1438), - [anon_sym_DASH_DASH] = ACTIONS(1440), - [anon_sym_PLUS_PLUS] = ACTIONS(1440), - [anon_sym_sizeof] = ACTIONS(1438), - [anon_sym_offsetof] = ACTIONS(1438), - [anon_sym__Generic] = ACTIONS(1438), - [anon_sym_asm] = ACTIONS(1438), - [anon_sym___asm__] = ACTIONS(1438), - [sym_number_literal] = ACTIONS(1440), - [anon_sym_L_SQUOTE] = ACTIONS(1440), - [anon_sym_u_SQUOTE] = ACTIONS(1440), - [anon_sym_U_SQUOTE] = ACTIONS(1440), - [anon_sym_u8_SQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1440), - [anon_sym_L_DQUOTE] = ACTIONS(1440), - [anon_sym_u_DQUOTE] = ACTIONS(1440), - [anon_sym_U_DQUOTE] = ACTIONS(1440), - [anon_sym_u8_DQUOTE] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1440), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [anon_sym_NULL] = ACTIONS(1438), - [anon_sym_nullptr] = ACTIONS(1438), + [412] = { + [sym_identifier] = ACTIONS(1380), + [aux_sym_preproc_include_token1] = ACTIONS(1380), + [aux_sym_preproc_def_token1] = ACTIONS(1380), + [aux_sym_preproc_if_token1] = ACTIONS(1380), + [aux_sym_preproc_if_token2] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), + [sym_preproc_directive] = ACTIONS(1380), + [anon_sym_LPAREN2] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_STAR] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym___extension__] = ACTIONS(1380), + [anon_sym_typedef] = ACTIONS(1380), + [anon_sym_extern] = ACTIONS(1380), + [anon_sym___attribute__] = ACTIONS(1380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym___declspec] = ACTIONS(1380), + [anon_sym___cdecl] = ACTIONS(1380), + [anon_sym___clrcall] = ACTIONS(1380), + [anon_sym___stdcall] = ACTIONS(1380), + [anon_sym___fastcall] = ACTIONS(1380), + [anon_sym___thiscall] = ACTIONS(1380), + [anon_sym___vectorcall] = ACTIONS(1380), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_signed] = ACTIONS(1380), + [anon_sym_unsigned] = ACTIONS(1380), + [anon_sym_long] = ACTIONS(1380), + [anon_sym_short] = ACTIONS(1380), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_auto] = ACTIONS(1380), + [anon_sym_register] = ACTIONS(1380), + [anon_sym_inline] = ACTIONS(1380), + [anon_sym___inline] = ACTIONS(1380), + [anon_sym___inline__] = ACTIONS(1380), + [anon_sym___forceinline] = ACTIONS(1380), + [anon_sym_thread_local] = ACTIONS(1380), + [anon_sym___thread] = ACTIONS(1380), + [anon_sym_const] = ACTIONS(1380), + [anon_sym_constexpr] = ACTIONS(1380), + [anon_sym_volatile] = ACTIONS(1380), + [anon_sym_restrict] = ACTIONS(1380), + [anon_sym___restrict__] = ACTIONS(1380), + [anon_sym__Atomic] = ACTIONS(1380), + [anon_sym__Noreturn] = ACTIONS(1380), + [anon_sym_noreturn] = ACTIONS(1380), + [sym_primitive_type] = ACTIONS(1380), + [anon_sym_enum] = ACTIONS(1380), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_union] = ACTIONS(1380), + [anon_sym_if] = ACTIONS(1380), + [anon_sym_else] = ACTIONS(1380), + [anon_sym_switch] = ACTIONS(1380), + [anon_sym_case] = ACTIONS(1380), + [anon_sym_default] = ACTIONS(1380), + [anon_sym_while] = ACTIONS(1380), + [anon_sym_do] = ACTIONS(1380), + [anon_sym_for] = ACTIONS(1380), + [anon_sym_return] = ACTIONS(1380), + [anon_sym_break] = ACTIONS(1380), + [anon_sym_continue] = ACTIONS(1380), + [anon_sym_goto] = ACTIONS(1380), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1380), + [anon_sym___alignof__] = ACTIONS(1380), + [anon_sym___alignof] = ACTIONS(1380), + [anon_sym__alignof] = ACTIONS(1380), + [anon_sym_alignof] = ACTIONS(1380), + [anon_sym__Alignof] = ACTIONS(1380), + [anon_sym_offsetof] = ACTIONS(1380), + [anon_sym___builtin_va_arg] = ACTIONS(1380), + [anon_sym__Generic] = ACTIONS(1380), + [anon_sym_asm] = ACTIONS(1380), + [anon_sym___asm__] = ACTIONS(1380), + [sym_number_literal] = ACTIONS(1382), + [anon_sym_L_SQUOTE] = ACTIONS(1382), + [anon_sym_u_SQUOTE] = ACTIONS(1382), + [anon_sym_U_SQUOTE] = ACTIONS(1382), + [anon_sym_u8_SQUOTE] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [anon_sym_L_DQUOTE] = ACTIONS(1382), + [anon_sym_u_DQUOTE] = ACTIONS(1382), + [anon_sym_U_DQUOTE] = ACTIONS(1382), + [anon_sym_u8_DQUOTE] = ACTIONS(1382), + [anon_sym_DQUOTE] = ACTIONS(1382), + [sym_true] = ACTIONS(1380), + [sym_false] = ACTIONS(1380), + [anon_sym_NULL] = ACTIONS(1380), + [anon_sym_nullptr] = ACTIONS(1380), [sym_comment] = ACTIONS(3), }, - [486] = { - [sym_attribute_declaration] = STATE(498), - [sym_compound_statement] = STATE(320), - [sym_attributed_statement] = STATE(320), - [sym_labeled_statement] = STATE(320), - [sym_expression_statement] = STATE(320), - [sym_if_statement] = STATE(320), - [sym_switch_statement] = STATE(320), - [sym_case_statement] = STATE(320), - [sym_while_statement] = STATE(320), - [sym_do_statement] = STATE(320), - [sym_for_statement] = STATE(320), - [sym_return_statement] = STATE(320), - [sym_break_statement] = STATE(320), - [sym_continue_statement] = STATE(320), - [sym_goto_statement] = STATE(320), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(498), - [sym_identifier] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [487] = { - [sym_identifier] = ACTIONS(1368), - [aux_sym_preproc_include_token1] = ACTIONS(1368), - [aux_sym_preproc_def_token1] = ACTIONS(1368), - [aux_sym_preproc_if_token1] = ACTIONS(1368), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1368), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1368), - [sym_preproc_directive] = ACTIONS(1368), - [anon_sym_LPAREN2] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_typedef] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym___attribute__] = ACTIONS(1368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1370), - [anon_sym___declspec] = ACTIONS(1368), - [anon_sym___cdecl] = ACTIONS(1368), - [anon_sym___clrcall] = ACTIONS(1368), - [anon_sym___stdcall] = ACTIONS(1368), - [anon_sym___fastcall] = ACTIONS(1368), - [anon_sym___thiscall] = ACTIONS(1368), - [anon_sym___vectorcall] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_signed] = ACTIONS(1368), - [anon_sym_unsigned] = ACTIONS(1368), - [anon_sym_long] = ACTIONS(1368), - [anon_sym_short] = ACTIONS(1368), - [anon_sym_static] = ACTIONS(1368), - [anon_sym_auto] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_inline] = ACTIONS(1368), - [anon_sym_thread_local] = ACTIONS(1368), - [anon_sym___thread] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_constexpr] = ACTIONS(1368), - [anon_sym_volatile] = ACTIONS(1368), - [anon_sym_restrict] = ACTIONS(1368), - [anon_sym___restrict__] = ACTIONS(1368), - [anon_sym__Atomic] = ACTIONS(1368), - [anon_sym__Noreturn] = ACTIONS(1368), - [anon_sym_noreturn] = ACTIONS(1368), - [sym_primitive_type] = ACTIONS(1368), - [anon_sym_enum] = ACTIONS(1368), - [anon_sym_struct] = ACTIONS(1368), - [anon_sym_union] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_switch] = ACTIONS(1368), - [anon_sym_case] = ACTIONS(1368), - [anon_sym_default] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_goto] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_sizeof] = ACTIONS(1368), - [anon_sym_offsetof] = ACTIONS(1368), - [anon_sym__Generic] = ACTIONS(1368), - [anon_sym_asm] = ACTIONS(1368), - [anon_sym___asm__] = ACTIONS(1368), - [sym_number_literal] = ACTIONS(1370), - [anon_sym_L_SQUOTE] = ACTIONS(1370), - [anon_sym_u_SQUOTE] = ACTIONS(1370), - [anon_sym_U_SQUOTE] = ACTIONS(1370), - [anon_sym_u8_SQUOTE] = ACTIONS(1370), - [anon_sym_SQUOTE] = ACTIONS(1370), - [anon_sym_L_DQUOTE] = ACTIONS(1370), - [anon_sym_u_DQUOTE] = ACTIONS(1370), - [anon_sym_U_DQUOTE] = ACTIONS(1370), - [anon_sym_u8_DQUOTE] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym_true] = ACTIONS(1368), - [sym_false] = ACTIONS(1368), - [anon_sym_NULL] = ACTIONS(1368), - [anon_sym_nullptr] = ACTIONS(1368), + [413] = { + [sym_identifier] = ACTIONS(1360), + [aux_sym_preproc_include_token1] = ACTIONS(1360), + [aux_sym_preproc_def_token1] = ACTIONS(1360), + [aux_sym_preproc_if_token1] = ACTIONS(1360), + [aux_sym_preproc_if_token2] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), + [sym_preproc_directive] = ACTIONS(1360), + [anon_sym_LPAREN2] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [anon_sym_TILDE] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym___extension__] = ACTIONS(1360), + [anon_sym_typedef] = ACTIONS(1360), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym___attribute__] = ACTIONS(1360), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), + [anon_sym___declspec] = ACTIONS(1360), + [anon_sym___cdecl] = ACTIONS(1360), + [anon_sym___clrcall] = ACTIONS(1360), + [anon_sym___stdcall] = ACTIONS(1360), + [anon_sym___fastcall] = ACTIONS(1360), + [anon_sym___thiscall] = ACTIONS(1360), + [anon_sym___vectorcall] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_signed] = ACTIONS(1360), + [anon_sym_unsigned] = ACTIONS(1360), + [anon_sym_long] = ACTIONS(1360), + [anon_sym_short] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_auto] = ACTIONS(1360), + [anon_sym_register] = ACTIONS(1360), + [anon_sym_inline] = ACTIONS(1360), + [anon_sym___inline] = ACTIONS(1360), + [anon_sym___inline__] = ACTIONS(1360), + [anon_sym___forceinline] = ACTIONS(1360), + [anon_sym_thread_local] = ACTIONS(1360), + [anon_sym___thread] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_constexpr] = ACTIONS(1360), + [anon_sym_volatile] = ACTIONS(1360), + [anon_sym_restrict] = ACTIONS(1360), + [anon_sym___restrict__] = ACTIONS(1360), + [anon_sym__Atomic] = ACTIONS(1360), + [anon_sym__Noreturn] = ACTIONS(1360), + [anon_sym_noreturn] = ACTIONS(1360), + [sym_primitive_type] = ACTIONS(1360), + [anon_sym_enum] = ACTIONS(1360), + [anon_sym_struct] = ACTIONS(1360), + [anon_sym_union] = ACTIONS(1360), + [anon_sym_if] = ACTIONS(1360), + [anon_sym_else] = ACTIONS(1360), + [anon_sym_switch] = ACTIONS(1360), + [anon_sym_case] = ACTIONS(1360), + [anon_sym_default] = ACTIONS(1360), + [anon_sym_while] = ACTIONS(1360), + [anon_sym_do] = ACTIONS(1360), + [anon_sym_for] = ACTIONS(1360), + [anon_sym_return] = ACTIONS(1360), + [anon_sym_break] = ACTIONS(1360), + [anon_sym_continue] = ACTIONS(1360), + [anon_sym_goto] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1362), + [anon_sym_PLUS_PLUS] = ACTIONS(1362), + [anon_sym_sizeof] = ACTIONS(1360), + [anon_sym___alignof__] = ACTIONS(1360), + [anon_sym___alignof] = ACTIONS(1360), + [anon_sym__alignof] = ACTIONS(1360), + [anon_sym_alignof] = ACTIONS(1360), + [anon_sym__Alignof] = ACTIONS(1360), + [anon_sym_offsetof] = ACTIONS(1360), + [anon_sym___builtin_va_arg] = ACTIONS(1360), + [anon_sym__Generic] = ACTIONS(1360), + [anon_sym_asm] = ACTIONS(1360), + [anon_sym___asm__] = ACTIONS(1360), + [sym_number_literal] = ACTIONS(1362), + [anon_sym_L_SQUOTE] = ACTIONS(1362), + [anon_sym_u_SQUOTE] = ACTIONS(1362), + [anon_sym_U_SQUOTE] = ACTIONS(1362), + [anon_sym_u8_SQUOTE] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_L_DQUOTE] = ACTIONS(1362), + [anon_sym_u_DQUOTE] = ACTIONS(1362), + [anon_sym_U_DQUOTE] = ACTIONS(1362), + [anon_sym_u8_DQUOTE] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym_true] = ACTIONS(1360), + [sym_false] = ACTIONS(1360), + [anon_sym_NULL] = ACTIONS(1360), + [anon_sym_nullptr] = ACTIONS(1360), [sym_comment] = ACTIONS(3), }, - [488] = { - [sym_attribute_declaration] = STATE(488), - [sym_compound_statement] = STATE(131), - [sym_attributed_statement] = STATE(131), - [sym_labeled_statement] = STATE(131), - [sym_expression_statement] = STATE(131), - [sym_if_statement] = STATE(131), - [sym_switch_statement] = STATE(131), - [sym_case_statement] = STATE(131), - [sym_while_statement] = STATE(131), - [sym_do_statement] = STATE(131), - [sym_for_statement] = STATE(131), - [sym_return_statement] = STATE(131), - [sym_break_statement] = STATE(131), - [sym_continue_statement] = STATE(131), - [sym_goto_statement] = STATE(131), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1801), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(488), - [sym_identifier] = ACTIONS(1709), - [anon_sym_LPAREN2] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_STAR] = ACTIONS(1488), - [anon_sym_AMP] = ACTIONS(1488), - [anon_sym_SEMI] = ACTIONS(1712), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), - [anon_sym_LBRACE] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_switch] = ACTIONS(1721), - [anon_sym_case] = ACTIONS(1724), - [anon_sym_default] = ACTIONS(1727), - [anon_sym_while] = ACTIONS(1730), - [anon_sym_do] = ACTIONS(1733), - [anon_sym_for] = ACTIONS(1736), - [anon_sym_return] = ACTIONS(1739), - [anon_sym_break] = ACTIONS(1742), - [anon_sym_continue] = ACTIONS(1745), - [anon_sym_goto] = ACTIONS(1748), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_sizeof] = ACTIONS(1536), - [anon_sym_offsetof] = ACTIONS(1539), - [anon_sym__Generic] = ACTIONS(1542), - [anon_sym_asm] = ACTIONS(1545), - [anon_sym___asm__] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1548), - [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(1554), - [anon_sym_u_DQUOTE] = ACTIONS(1554), - [anon_sym_U_DQUOTE] = ACTIONS(1554), - [anon_sym_u8_DQUOTE] = ACTIONS(1554), - [anon_sym_DQUOTE] = ACTIONS(1554), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [anon_sym_NULL] = ACTIONS(1560), - [anon_sym_nullptr] = ACTIONS(1560), + [414] = { + [sym_identifier] = ACTIONS(1356), + [aux_sym_preproc_include_token1] = ACTIONS(1356), + [aux_sym_preproc_def_token1] = ACTIONS(1356), + [aux_sym_preproc_if_token1] = ACTIONS(1356), + [aux_sym_preproc_if_token2] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), + [sym_preproc_directive] = ACTIONS(1356), + [anon_sym_LPAREN2] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym___extension__] = ACTIONS(1356), + [anon_sym_typedef] = ACTIONS(1356), + [anon_sym_extern] = ACTIONS(1356), + [anon_sym___attribute__] = ACTIONS(1356), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1358), + [anon_sym___declspec] = ACTIONS(1356), + [anon_sym___cdecl] = ACTIONS(1356), + [anon_sym___clrcall] = ACTIONS(1356), + [anon_sym___stdcall] = ACTIONS(1356), + [anon_sym___fastcall] = ACTIONS(1356), + [anon_sym___thiscall] = ACTIONS(1356), + [anon_sym___vectorcall] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_signed] = ACTIONS(1356), + [anon_sym_unsigned] = ACTIONS(1356), + [anon_sym_long] = ACTIONS(1356), + [anon_sym_short] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1356), + [anon_sym_auto] = ACTIONS(1356), + [anon_sym_register] = ACTIONS(1356), + [anon_sym_inline] = ACTIONS(1356), + [anon_sym___inline] = ACTIONS(1356), + [anon_sym___inline__] = ACTIONS(1356), + [anon_sym___forceinline] = ACTIONS(1356), + [anon_sym_thread_local] = ACTIONS(1356), + [anon_sym___thread] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1356), + [anon_sym_constexpr] = ACTIONS(1356), + [anon_sym_volatile] = ACTIONS(1356), + [anon_sym_restrict] = ACTIONS(1356), + [anon_sym___restrict__] = ACTIONS(1356), + [anon_sym__Atomic] = ACTIONS(1356), + [anon_sym__Noreturn] = ACTIONS(1356), + [anon_sym_noreturn] = ACTIONS(1356), + [sym_primitive_type] = ACTIONS(1356), + [anon_sym_enum] = ACTIONS(1356), + [anon_sym_struct] = ACTIONS(1356), + [anon_sym_union] = ACTIONS(1356), + [anon_sym_if] = ACTIONS(1356), + [anon_sym_else] = ACTIONS(1356), + [anon_sym_switch] = ACTIONS(1356), + [anon_sym_case] = ACTIONS(1356), + [anon_sym_default] = ACTIONS(1356), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_do] = ACTIONS(1356), + [anon_sym_for] = ACTIONS(1356), + [anon_sym_return] = ACTIONS(1356), + [anon_sym_break] = ACTIONS(1356), + [anon_sym_continue] = ACTIONS(1356), + [anon_sym_goto] = ACTIONS(1356), + [anon_sym_DASH_DASH] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1358), + [anon_sym_sizeof] = ACTIONS(1356), + [anon_sym___alignof__] = ACTIONS(1356), + [anon_sym___alignof] = ACTIONS(1356), + [anon_sym__alignof] = ACTIONS(1356), + [anon_sym_alignof] = ACTIONS(1356), + [anon_sym__Alignof] = ACTIONS(1356), + [anon_sym_offsetof] = ACTIONS(1356), + [anon_sym___builtin_va_arg] = ACTIONS(1356), + [anon_sym__Generic] = ACTIONS(1356), + [anon_sym_asm] = ACTIONS(1356), + [anon_sym___asm__] = ACTIONS(1356), + [sym_number_literal] = ACTIONS(1358), + [anon_sym_L_SQUOTE] = ACTIONS(1358), + [anon_sym_u_SQUOTE] = ACTIONS(1358), + [anon_sym_U_SQUOTE] = ACTIONS(1358), + [anon_sym_u8_SQUOTE] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), + [anon_sym_L_DQUOTE] = ACTIONS(1358), + [anon_sym_u_DQUOTE] = ACTIONS(1358), + [anon_sym_U_DQUOTE] = ACTIONS(1358), + [anon_sym_u8_DQUOTE] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [sym_true] = ACTIONS(1356), + [sym_false] = ACTIONS(1356), + [anon_sym_NULL] = ACTIONS(1356), + [anon_sym_nullptr] = ACTIONS(1356), [sym_comment] = ACTIONS(3), }, - [489] = { - [sym_identifier] = ACTIONS(1376), - [aux_sym_preproc_include_token1] = ACTIONS(1376), - [aux_sym_preproc_def_token1] = ACTIONS(1376), - [aux_sym_preproc_if_token1] = ACTIONS(1376), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1376), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1376), - [sym_preproc_directive] = ACTIONS(1376), - [anon_sym_LPAREN2] = ACTIONS(1378), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_AMP] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_typedef] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym___attribute__] = ACTIONS(1376), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1378), - [anon_sym___declspec] = ACTIONS(1376), - [anon_sym___cdecl] = ACTIONS(1376), - [anon_sym___clrcall] = ACTIONS(1376), - [anon_sym___stdcall] = ACTIONS(1376), - [anon_sym___fastcall] = ACTIONS(1376), - [anon_sym___thiscall] = ACTIONS(1376), - [anon_sym___vectorcall] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_signed] = ACTIONS(1376), - [anon_sym_unsigned] = ACTIONS(1376), - [anon_sym_long] = ACTIONS(1376), - [anon_sym_short] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(1376), - [anon_sym_auto] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_inline] = ACTIONS(1376), - [anon_sym_thread_local] = ACTIONS(1376), - [anon_sym___thread] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_constexpr] = ACTIONS(1376), - [anon_sym_volatile] = ACTIONS(1376), - [anon_sym_restrict] = ACTIONS(1376), - [anon_sym___restrict__] = ACTIONS(1376), - [anon_sym__Atomic] = ACTIONS(1376), - [anon_sym__Noreturn] = ACTIONS(1376), - [anon_sym_noreturn] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(1376), - [anon_sym_enum] = ACTIONS(1376), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_union] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1376), - [anon_sym_case] = ACTIONS(1376), - [anon_sym_default] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_goto] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1378), - [anon_sym_sizeof] = ACTIONS(1376), - [anon_sym_offsetof] = ACTIONS(1376), - [anon_sym__Generic] = ACTIONS(1376), - [anon_sym_asm] = ACTIONS(1376), - [anon_sym___asm__] = ACTIONS(1376), - [sym_number_literal] = ACTIONS(1378), - [anon_sym_L_SQUOTE] = ACTIONS(1378), - [anon_sym_u_SQUOTE] = ACTIONS(1378), - [anon_sym_U_SQUOTE] = ACTIONS(1378), - [anon_sym_u8_SQUOTE] = ACTIONS(1378), - [anon_sym_SQUOTE] = ACTIONS(1378), - [anon_sym_L_DQUOTE] = ACTIONS(1378), - [anon_sym_u_DQUOTE] = ACTIONS(1378), - [anon_sym_U_DQUOTE] = ACTIONS(1378), - [anon_sym_u8_DQUOTE] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym_true] = ACTIONS(1376), - [sym_false] = ACTIONS(1376), - [anon_sym_NULL] = ACTIONS(1376), - [anon_sym_nullptr] = ACTIONS(1376), + [415] = { + [sym_identifier] = ACTIONS(1372), + [aux_sym_preproc_include_token1] = ACTIONS(1372), + [aux_sym_preproc_def_token1] = ACTIONS(1372), + [aux_sym_preproc_if_token1] = ACTIONS(1372), + [aux_sym_preproc_if_token2] = ACTIONS(1372), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), + [sym_preproc_directive] = ACTIONS(1372), + [anon_sym_LPAREN2] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_TILDE] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_STAR] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym___extension__] = ACTIONS(1372), + [anon_sym_typedef] = ACTIONS(1372), + [anon_sym_extern] = ACTIONS(1372), + [anon_sym___attribute__] = ACTIONS(1372), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), + [anon_sym___declspec] = ACTIONS(1372), + [anon_sym___cdecl] = ACTIONS(1372), + [anon_sym___clrcall] = ACTIONS(1372), + [anon_sym___stdcall] = ACTIONS(1372), + [anon_sym___fastcall] = ACTIONS(1372), + [anon_sym___thiscall] = ACTIONS(1372), + [anon_sym___vectorcall] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_signed] = ACTIONS(1372), + [anon_sym_unsigned] = ACTIONS(1372), + [anon_sym_long] = ACTIONS(1372), + [anon_sym_short] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_auto] = ACTIONS(1372), + [anon_sym_register] = ACTIONS(1372), + [anon_sym_inline] = ACTIONS(1372), + [anon_sym___inline] = ACTIONS(1372), + [anon_sym___inline__] = ACTIONS(1372), + [anon_sym___forceinline] = ACTIONS(1372), + [anon_sym_thread_local] = ACTIONS(1372), + [anon_sym___thread] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1372), + [anon_sym_constexpr] = ACTIONS(1372), + [anon_sym_volatile] = ACTIONS(1372), + [anon_sym_restrict] = ACTIONS(1372), + [anon_sym___restrict__] = ACTIONS(1372), + [anon_sym__Atomic] = ACTIONS(1372), + [anon_sym__Noreturn] = ACTIONS(1372), + [anon_sym_noreturn] = ACTIONS(1372), + [sym_primitive_type] = ACTIONS(1372), + [anon_sym_enum] = ACTIONS(1372), + [anon_sym_struct] = ACTIONS(1372), + [anon_sym_union] = ACTIONS(1372), + [anon_sym_if] = ACTIONS(1372), + [anon_sym_else] = ACTIONS(1372), + [anon_sym_switch] = ACTIONS(1372), + [anon_sym_case] = ACTIONS(1372), + [anon_sym_default] = ACTIONS(1372), + [anon_sym_while] = ACTIONS(1372), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_for] = ACTIONS(1372), + [anon_sym_return] = ACTIONS(1372), + [anon_sym_break] = ACTIONS(1372), + [anon_sym_continue] = ACTIONS(1372), + [anon_sym_goto] = ACTIONS(1372), + [anon_sym_DASH_DASH] = ACTIONS(1374), + [anon_sym_PLUS_PLUS] = ACTIONS(1374), + [anon_sym_sizeof] = ACTIONS(1372), + [anon_sym___alignof__] = ACTIONS(1372), + [anon_sym___alignof] = ACTIONS(1372), + [anon_sym__alignof] = ACTIONS(1372), + [anon_sym_alignof] = ACTIONS(1372), + [anon_sym__Alignof] = ACTIONS(1372), + [anon_sym_offsetof] = ACTIONS(1372), + [anon_sym___builtin_va_arg] = ACTIONS(1372), + [anon_sym__Generic] = ACTIONS(1372), + [anon_sym_asm] = ACTIONS(1372), + [anon_sym___asm__] = ACTIONS(1372), + [sym_number_literal] = ACTIONS(1374), + [anon_sym_L_SQUOTE] = ACTIONS(1374), + [anon_sym_u_SQUOTE] = ACTIONS(1374), + [anon_sym_U_SQUOTE] = ACTIONS(1374), + [anon_sym_u8_SQUOTE] = ACTIONS(1374), + [anon_sym_SQUOTE] = ACTIONS(1374), + [anon_sym_L_DQUOTE] = ACTIONS(1374), + [anon_sym_u_DQUOTE] = ACTIONS(1374), + [anon_sym_U_DQUOTE] = ACTIONS(1374), + [anon_sym_u8_DQUOTE] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_true] = ACTIONS(1372), + [sym_false] = ACTIONS(1372), + [anon_sym_NULL] = ACTIONS(1372), + [anon_sym_nullptr] = ACTIONS(1372), [sym_comment] = ACTIONS(3), }, - [490] = { - [sym_identifier] = ACTIONS(1384), - [aux_sym_preproc_include_token1] = ACTIONS(1384), - [aux_sym_preproc_def_token1] = ACTIONS(1384), - [aux_sym_preproc_if_token1] = ACTIONS(1384), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1384), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1384), - [sym_preproc_directive] = ACTIONS(1384), - [anon_sym_LPAREN2] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1384), - [anon_sym_STAR] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1386), - [anon_sym_typedef] = ACTIONS(1384), - [anon_sym_extern] = ACTIONS(1384), - [anon_sym___attribute__] = ACTIONS(1384), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1386), - [anon_sym___declspec] = ACTIONS(1384), - [anon_sym___cdecl] = ACTIONS(1384), - [anon_sym___clrcall] = ACTIONS(1384), - [anon_sym___stdcall] = ACTIONS(1384), - [anon_sym___fastcall] = ACTIONS(1384), - [anon_sym___thiscall] = ACTIONS(1384), - [anon_sym___vectorcall] = ACTIONS(1384), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_RBRACE] = ACTIONS(1386), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_long] = ACTIONS(1384), - [anon_sym_short] = ACTIONS(1384), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_auto] = ACTIONS(1384), - [anon_sym_register] = ACTIONS(1384), - [anon_sym_inline] = ACTIONS(1384), - [anon_sym_thread_local] = ACTIONS(1384), - [anon_sym___thread] = ACTIONS(1384), - [anon_sym_const] = ACTIONS(1384), - [anon_sym_constexpr] = ACTIONS(1384), - [anon_sym_volatile] = ACTIONS(1384), - [anon_sym_restrict] = ACTIONS(1384), - [anon_sym___restrict__] = ACTIONS(1384), - [anon_sym__Atomic] = ACTIONS(1384), - [anon_sym__Noreturn] = ACTIONS(1384), - [anon_sym_noreturn] = ACTIONS(1384), - [sym_primitive_type] = ACTIONS(1384), - [anon_sym_enum] = ACTIONS(1384), - [anon_sym_struct] = ACTIONS(1384), - [anon_sym_union] = ACTIONS(1384), - [anon_sym_if] = ACTIONS(1384), - [anon_sym_switch] = ACTIONS(1384), - [anon_sym_case] = ACTIONS(1384), - [anon_sym_default] = ACTIONS(1384), - [anon_sym_while] = ACTIONS(1384), - [anon_sym_do] = ACTIONS(1384), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1384), - [anon_sym_break] = ACTIONS(1384), - [anon_sym_continue] = ACTIONS(1384), - [anon_sym_goto] = ACTIONS(1384), - [anon_sym_DASH_DASH] = ACTIONS(1386), - [anon_sym_PLUS_PLUS] = ACTIONS(1386), - [anon_sym_sizeof] = ACTIONS(1384), - [anon_sym_offsetof] = ACTIONS(1384), - [anon_sym__Generic] = ACTIONS(1384), - [anon_sym_asm] = ACTIONS(1384), - [anon_sym___asm__] = ACTIONS(1384), - [sym_number_literal] = ACTIONS(1386), - [anon_sym_L_SQUOTE] = ACTIONS(1386), - [anon_sym_u_SQUOTE] = ACTIONS(1386), - [anon_sym_U_SQUOTE] = ACTIONS(1386), - [anon_sym_u8_SQUOTE] = ACTIONS(1386), - [anon_sym_SQUOTE] = ACTIONS(1386), - [anon_sym_L_DQUOTE] = ACTIONS(1386), - [anon_sym_u_DQUOTE] = ACTIONS(1386), - [anon_sym_U_DQUOTE] = ACTIONS(1386), - [anon_sym_u8_DQUOTE] = ACTIONS(1386), - [anon_sym_DQUOTE] = ACTIONS(1386), - [sym_true] = ACTIONS(1384), - [sym_false] = ACTIONS(1384), - [anon_sym_NULL] = ACTIONS(1384), - [anon_sym_nullptr] = ACTIONS(1384), - [sym_comment] = ACTIONS(3), - }, - [491] = { - [sym_identifier] = ACTIONS(1392), - [aux_sym_preproc_include_token1] = ACTIONS(1392), - [aux_sym_preproc_def_token1] = ACTIONS(1392), - [aux_sym_preproc_if_token1] = ACTIONS(1392), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1392), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1392), - [sym_preproc_directive] = ACTIONS(1392), - [anon_sym_LPAREN2] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_TILDE] = ACTIONS(1394), - [anon_sym_DASH] = ACTIONS(1392), - [anon_sym_PLUS] = ACTIONS(1392), - [anon_sym_STAR] = ACTIONS(1394), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_SEMI] = ACTIONS(1394), - [anon_sym_typedef] = ACTIONS(1392), - [anon_sym_extern] = ACTIONS(1392), - [anon_sym___attribute__] = ACTIONS(1392), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1394), - [anon_sym___declspec] = ACTIONS(1392), - [anon_sym___cdecl] = ACTIONS(1392), - [anon_sym___clrcall] = ACTIONS(1392), - [anon_sym___stdcall] = ACTIONS(1392), - [anon_sym___fastcall] = ACTIONS(1392), - [anon_sym___thiscall] = ACTIONS(1392), - [anon_sym___vectorcall] = ACTIONS(1392), - [anon_sym_LBRACE] = ACTIONS(1394), - [anon_sym_RBRACE] = ACTIONS(1394), - [anon_sym_signed] = ACTIONS(1392), - [anon_sym_unsigned] = ACTIONS(1392), - [anon_sym_long] = ACTIONS(1392), - [anon_sym_short] = ACTIONS(1392), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_auto] = ACTIONS(1392), - [anon_sym_register] = ACTIONS(1392), - [anon_sym_inline] = ACTIONS(1392), - [anon_sym_thread_local] = ACTIONS(1392), - [anon_sym___thread] = ACTIONS(1392), - [anon_sym_const] = ACTIONS(1392), - [anon_sym_constexpr] = ACTIONS(1392), - [anon_sym_volatile] = ACTIONS(1392), - [anon_sym_restrict] = ACTIONS(1392), - [anon_sym___restrict__] = ACTIONS(1392), - [anon_sym__Atomic] = ACTIONS(1392), - [anon_sym__Noreturn] = ACTIONS(1392), - [anon_sym_noreturn] = ACTIONS(1392), - [sym_primitive_type] = ACTIONS(1392), - [anon_sym_enum] = ACTIONS(1392), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_union] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1392), - [anon_sym_switch] = ACTIONS(1392), - [anon_sym_case] = ACTIONS(1392), - [anon_sym_default] = ACTIONS(1392), - [anon_sym_while] = ACTIONS(1392), - [anon_sym_do] = ACTIONS(1392), - [anon_sym_for] = ACTIONS(1392), - [anon_sym_return] = ACTIONS(1392), - [anon_sym_break] = ACTIONS(1392), - [anon_sym_continue] = ACTIONS(1392), - [anon_sym_goto] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(1394), - [anon_sym_PLUS_PLUS] = ACTIONS(1394), - [anon_sym_sizeof] = ACTIONS(1392), - [anon_sym_offsetof] = ACTIONS(1392), - [anon_sym__Generic] = ACTIONS(1392), - [anon_sym_asm] = ACTIONS(1392), - [anon_sym___asm__] = ACTIONS(1392), - [sym_number_literal] = ACTIONS(1394), - [anon_sym_L_SQUOTE] = ACTIONS(1394), - [anon_sym_u_SQUOTE] = ACTIONS(1394), - [anon_sym_U_SQUOTE] = ACTIONS(1394), - [anon_sym_u8_SQUOTE] = ACTIONS(1394), - [anon_sym_SQUOTE] = ACTIONS(1394), - [anon_sym_L_DQUOTE] = ACTIONS(1394), - [anon_sym_u_DQUOTE] = ACTIONS(1394), - [anon_sym_U_DQUOTE] = ACTIONS(1394), - [anon_sym_u8_DQUOTE] = ACTIONS(1394), - [anon_sym_DQUOTE] = ACTIONS(1394), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [anon_sym_NULL] = ACTIONS(1392), - [anon_sym_nullptr] = ACTIONS(1392), - [sym_comment] = ACTIONS(3), - }, - [492] = { - [sym_identifier] = ACTIONS(1402), - [aux_sym_preproc_include_token1] = ACTIONS(1402), - [aux_sym_preproc_def_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), - [sym_preproc_directive] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym___attribute__] = ACTIONS(1402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), - [anon_sym___declspec] = ACTIONS(1402), - [anon_sym___cdecl] = ACTIONS(1402), - [anon_sym___clrcall] = ACTIONS(1402), - [anon_sym___stdcall] = ACTIONS(1402), - [anon_sym___fastcall] = ACTIONS(1402), - [anon_sym___thiscall] = ACTIONS(1402), - [anon_sym___vectorcall] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_RBRACE] = ACTIONS(1404), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym_thread_local] = ACTIONS(1402), - [anon_sym___thread] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_constexpr] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_restrict] = ACTIONS(1402), - [anon_sym___restrict__] = ACTIONS(1402), - [anon_sym__Atomic] = ACTIONS(1402), - [anon_sym__Noreturn] = ACTIONS(1402), - [anon_sym_noreturn] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_case] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_goto] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1402), - [anon_sym_offsetof] = ACTIONS(1402), - [anon_sym__Generic] = ACTIONS(1402), - [anon_sym_asm] = ACTIONS(1402), - [anon_sym___asm__] = ACTIONS(1402), - [sym_number_literal] = ACTIONS(1404), - [anon_sym_L_SQUOTE] = ACTIONS(1404), - [anon_sym_u_SQUOTE] = ACTIONS(1404), - [anon_sym_U_SQUOTE] = ACTIONS(1404), - [anon_sym_u8_SQUOTE] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_L_DQUOTE] = ACTIONS(1404), - [anon_sym_u_DQUOTE] = ACTIONS(1404), - [anon_sym_U_DQUOTE] = ACTIONS(1404), - [anon_sym_u8_DQUOTE] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [sym_true] = ACTIONS(1402), - [sym_false] = ACTIONS(1402), - [anon_sym_NULL] = ACTIONS(1402), - [anon_sym_nullptr] = ACTIONS(1402), - [sym_comment] = ACTIONS(3), - }, - [493] = { - [sym_identifier] = ACTIONS(1406), - [aux_sym_preproc_include_token1] = ACTIONS(1406), - [aux_sym_preproc_def_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), - [sym_preproc_directive] = ACTIONS(1406), - [anon_sym_LPAREN2] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym_typedef] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym___attribute__] = ACTIONS(1406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), - [anon_sym___declspec] = ACTIONS(1406), - [anon_sym___cdecl] = ACTIONS(1406), - [anon_sym___clrcall] = ACTIONS(1406), - [anon_sym___stdcall] = ACTIONS(1406), - [anon_sym___fastcall] = ACTIONS(1406), - [anon_sym___thiscall] = ACTIONS(1406), - [anon_sym___vectorcall] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_RBRACE] = ACTIONS(1408), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_auto] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym_thread_local] = ACTIONS(1406), - [anon_sym___thread] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_constexpr] = ACTIONS(1406), - [anon_sym_volatile] = ACTIONS(1406), - [anon_sym_restrict] = ACTIONS(1406), - [anon_sym___restrict__] = ACTIONS(1406), - [anon_sym__Atomic] = ACTIONS(1406), - [anon_sym__Noreturn] = ACTIONS(1406), - [anon_sym_noreturn] = ACTIONS(1406), - [sym_primitive_type] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_union] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_case] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_goto] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_sizeof] = ACTIONS(1406), - [anon_sym_offsetof] = ACTIONS(1406), - [anon_sym__Generic] = ACTIONS(1406), - [anon_sym_asm] = ACTIONS(1406), - [anon_sym___asm__] = ACTIONS(1406), - [sym_number_literal] = ACTIONS(1408), - [anon_sym_L_SQUOTE] = ACTIONS(1408), - [anon_sym_u_SQUOTE] = ACTIONS(1408), - [anon_sym_U_SQUOTE] = ACTIONS(1408), - [anon_sym_u8_SQUOTE] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_L_DQUOTE] = ACTIONS(1408), - [anon_sym_u_DQUOTE] = ACTIONS(1408), - [anon_sym_U_DQUOTE] = ACTIONS(1408), - [anon_sym_u8_DQUOTE] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [sym_true] = ACTIONS(1406), - [sym_false] = ACTIONS(1406), - [anon_sym_NULL] = ACTIONS(1406), - [anon_sym_nullptr] = ACTIONS(1406), - [sym_comment] = ACTIONS(3), - }, - [494] = { - [sym_attribute_declaration] = STATE(407), - [sym_compound_statement] = STATE(96), - [sym_attributed_statement] = STATE(96), - [sym_labeled_statement] = STATE(96), - [sym_expression_statement] = STATE(96), - [sym_if_statement] = STATE(96), - [sym_switch_statement] = STATE(96), - [sym_case_statement] = STATE(96), - [sym_while_statement] = STATE(96), - [sym_do_statement] = STATE(96), - [sym_for_statement] = STATE(96), - [sym_return_statement] = STATE(96), - [sym_break_statement] = STATE(96), - [sym_continue_statement] = STATE(96), - [sym_goto_statement] = STATE(96), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1801), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [sym_identifier] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [495] = { - [sym_identifier] = ACTIONS(1398), - [aux_sym_preproc_include_token1] = ACTIONS(1398), - [aux_sym_preproc_def_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token1] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), - [sym_preproc_directive] = ACTIONS(1398), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_typedef] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym___attribute__] = ACTIONS(1398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), - [anon_sym___declspec] = ACTIONS(1398), - [anon_sym___cdecl] = ACTIONS(1398), - [anon_sym___clrcall] = ACTIONS(1398), - [anon_sym___stdcall] = ACTIONS(1398), - [anon_sym___fastcall] = ACTIONS(1398), - [anon_sym___thiscall] = ACTIONS(1398), - [anon_sym___vectorcall] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_auto] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym_thread_local] = ACTIONS(1398), - [anon_sym___thread] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_constexpr] = ACTIONS(1398), - [anon_sym_volatile] = ACTIONS(1398), - [anon_sym_restrict] = ACTIONS(1398), - [anon_sym___restrict__] = ACTIONS(1398), - [anon_sym__Atomic] = ACTIONS(1398), - [anon_sym__Noreturn] = ACTIONS(1398), - [anon_sym_noreturn] = ACTIONS(1398), - [sym_primitive_type] = ACTIONS(1398), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_struct] = ACTIONS(1398), - [anon_sym_union] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_case] = ACTIONS(1398), - [anon_sym_default] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_goto] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_sizeof] = ACTIONS(1398), - [anon_sym_offsetof] = ACTIONS(1398), - [anon_sym__Generic] = ACTIONS(1398), - [anon_sym_asm] = ACTIONS(1398), - [anon_sym___asm__] = ACTIONS(1398), - [sym_number_literal] = ACTIONS(1400), - [anon_sym_L_SQUOTE] = ACTIONS(1400), - [anon_sym_u_SQUOTE] = ACTIONS(1400), - [anon_sym_U_SQUOTE] = ACTIONS(1400), - [anon_sym_u8_SQUOTE] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_L_DQUOTE] = ACTIONS(1400), - [anon_sym_u_DQUOTE] = ACTIONS(1400), - [anon_sym_U_DQUOTE] = ACTIONS(1400), - [anon_sym_u8_DQUOTE] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym_true] = ACTIONS(1398), - [sym_false] = ACTIONS(1398), - [anon_sym_NULL] = ACTIONS(1398), - [anon_sym_nullptr] = ACTIONS(1398), + [416] = { + [sym_identifier] = ACTIONS(1352), + [aux_sym_preproc_include_token1] = ACTIONS(1352), + [aux_sym_preproc_def_token1] = ACTIONS(1352), + [aux_sym_preproc_if_token1] = ACTIONS(1352), + [aux_sym_preproc_if_token2] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), + [sym_preproc_directive] = ACTIONS(1352), + [anon_sym_LPAREN2] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_PLUS] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym___extension__] = ACTIONS(1352), + [anon_sym_typedef] = ACTIONS(1352), + [anon_sym_extern] = ACTIONS(1352), + [anon_sym___attribute__] = ACTIONS(1352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), + [anon_sym___declspec] = ACTIONS(1352), + [anon_sym___cdecl] = ACTIONS(1352), + [anon_sym___clrcall] = ACTIONS(1352), + [anon_sym___stdcall] = ACTIONS(1352), + [anon_sym___fastcall] = ACTIONS(1352), + [anon_sym___thiscall] = ACTIONS(1352), + [anon_sym___vectorcall] = ACTIONS(1352), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_long] = ACTIONS(1352), + [anon_sym_short] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_auto] = ACTIONS(1352), + [anon_sym_register] = ACTIONS(1352), + [anon_sym_inline] = ACTIONS(1352), + [anon_sym___inline] = ACTIONS(1352), + [anon_sym___inline__] = ACTIONS(1352), + [anon_sym___forceinline] = ACTIONS(1352), + [anon_sym_thread_local] = ACTIONS(1352), + [anon_sym___thread] = ACTIONS(1352), + [anon_sym_const] = ACTIONS(1352), + [anon_sym_constexpr] = ACTIONS(1352), + [anon_sym_volatile] = ACTIONS(1352), + [anon_sym_restrict] = ACTIONS(1352), + [anon_sym___restrict__] = ACTIONS(1352), + [anon_sym__Atomic] = ACTIONS(1352), + [anon_sym__Noreturn] = ACTIONS(1352), + [anon_sym_noreturn] = ACTIONS(1352), + [sym_primitive_type] = ACTIONS(1352), + [anon_sym_enum] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1352), + [anon_sym_union] = ACTIONS(1352), + [anon_sym_if] = ACTIONS(1352), + [anon_sym_else] = ACTIONS(1352), + [anon_sym_switch] = ACTIONS(1352), + [anon_sym_case] = ACTIONS(1352), + [anon_sym_default] = ACTIONS(1352), + [anon_sym_while] = ACTIONS(1352), + [anon_sym_do] = ACTIONS(1352), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(1352), + [anon_sym_break] = ACTIONS(1352), + [anon_sym_continue] = ACTIONS(1352), + [anon_sym_goto] = ACTIONS(1352), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_sizeof] = ACTIONS(1352), + [anon_sym___alignof__] = ACTIONS(1352), + [anon_sym___alignof] = ACTIONS(1352), + [anon_sym__alignof] = ACTIONS(1352), + [anon_sym_alignof] = ACTIONS(1352), + [anon_sym__Alignof] = ACTIONS(1352), + [anon_sym_offsetof] = ACTIONS(1352), + [anon_sym___builtin_va_arg] = ACTIONS(1352), + [anon_sym__Generic] = ACTIONS(1352), + [anon_sym_asm] = ACTIONS(1352), + [anon_sym___asm__] = ACTIONS(1352), + [sym_number_literal] = ACTIONS(1354), + [anon_sym_L_SQUOTE] = ACTIONS(1354), + [anon_sym_u_SQUOTE] = ACTIONS(1354), + [anon_sym_U_SQUOTE] = ACTIONS(1354), + [anon_sym_u8_SQUOTE] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [anon_sym_L_DQUOTE] = ACTIONS(1354), + [anon_sym_u_DQUOTE] = ACTIONS(1354), + [anon_sym_U_DQUOTE] = ACTIONS(1354), + [anon_sym_u8_DQUOTE] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1354), + [sym_true] = ACTIONS(1352), + [sym_false] = ACTIONS(1352), + [anon_sym_NULL] = ACTIONS(1352), + [anon_sym_nullptr] = ACTIONS(1352), [sym_comment] = ACTIONS(3), }, - [496] = { - [sym_attribute_declaration] = STATE(407), - [sym_compound_statement] = STATE(103), - [sym_attributed_statement] = STATE(103), - [sym_labeled_statement] = STATE(103), - [sym_expression_statement] = STATE(103), - [sym_if_statement] = STATE(103), - [sym_switch_statement] = STATE(103), - [sym_case_statement] = STATE(103), - [sym_while_statement] = STATE(103), - [sym_do_statement] = STATE(103), - [sym_for_statement] = STATE(103), - [sym_return_statement] = STATE(103), - [sym_break_statement] = STATE(103), - [sym_continue_statement] = STATE(103), - [sym_goto_statement] = STATE(103), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1801), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [sym_identifier] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [417] = { + [sym_identifier] = ACTIONS(1248), + [aux_sym_preproc_include_token1] = ACTIONS(1248), + [aux_sym_preproc_def_token1] = ACTIONS(1248), + [aux_sym_preproc_if_token1] = ACTIONS(1248), + [aux_sym_preproc_if_token2] = ACTIONS(1248), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1248), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1248), + [sym_preproc_directive] = ACTIONS(1248), + [anon_sym_LPAREN2] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1250), + [anon_sym_TILDE] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_PLUS] = ACTIONS(1248), + [anon_sym_STAR] = ACTIONS(1250), + [anon_sym_AMP] = ACTIONS(1250), + [anon_sym_SEMI] = ACTIONS(1250), + [anon_sym___extension__] = ACTIONS(1248), + [anon_sym_typedef] = ACTIONS(1248), + [anon_sym_extern] = ACTIONS(1248), + [anon_sym___attribute__] = ACTIONS(1248), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1250), + [anon_sym___declspec] = ACTIONS(1248), + [anon_sym___cdecl] = ACTIONS(1248), + [anon_sym___clrcall] = ACTIONS(1248), + [anon_sym___stdcall] = ACTIONS(1248), + [anon_sym___fastcall] = ACTIONS(1248), + [anon_sym___thiscall] = ACTIONS(1248), + [anon_sym___vectorcall] = ACTIONS(1248), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_signed] = ACTIONS(1248), + [anon_sym_unsigned] = ACTIONS(1248), + [anon_sym_long] = ACTIONS(1248), + [anon_sym_short] = ACTIONS(1248), + [anon_sym_static] = ACTIONS(1248), + [anon_sym_auto] = ACTIONS(1248), + [anon_sym_register] = ACTIONS(1248), + [anon_sym_inline] = ACTIONS(1248), + [anon_sym___inline] = ACTIONS(1248), + [anon_sym___inline__] = ACTIONS(1248), + [anon_sym___forceinline] = ACTIONS(1248), + [anon_sym_thread_local] = ACTIONS(1248), + [anon_sym___thread] = ACTIONS(1248), + [anon_sym_const] = ACTIONS(1248), + [anon_sym_constexpr] = ACTIONS(1248), + [anon_sym_volatile] = ACTIONS(1248), + [anon_sym_restrict] = ACTIONS(1248), + [anon_sym___restrict__] = ACTIONS(1248), + [anon_sym__Atomic] = ACTIONS(1248), + [anon_sym__Noreturn] = ACTIONS(1248), + [anon_sym_noreturn] = ACTIONS(1248), + [sym_primitive_type] = ACTIONS(1248), + [anon_sym_enum] = ACTIONS(1248), + [anon_sym_struct] = ACTIONS(1248), + [anon_sym_union] = ACTIONS(1248), + [anon_sym_if] = ACTIONS(1248), + [anon_sym_else] = ACTIONS(1248), + [anon_sym_switch] = ACTIONS(1248), + [anon_sym_case] = ACTIONS(1248), + [anon_sym_default] = ACTIONS(1248), + [anon_sym_while] = ACTIONS(1248), + [anon_sym_do] = ACTIONS(1248), + [anon_sym_for] = ACTIONS(1248), + [anon_sym_return] = ACTIONS(1248), + [anon_sym_break] = ACTIONS(1248), + [anon_sym_continue] = ACTIONS(1248), + [anon_sym_goto] = ACTIONS(1248), + [anon_sym_DASH_DASH] = ACTIONS(1250), + [anon_sym_PLUS_PLUS] = ACTIONS(1250), + [anon_sym_sizeof] = ACTIONS(1248), + [anon_sym___alignof__] = ACTIONS(1248), + [anon_sym___alignof] = ACTIONS(1248), + [anon_sym__alignof] = ACTIONS(1248), + [anon_sym_alignof] = ACTIONS(1248), + [anon_sym__Alignof] = ACTIONS(1248), + [anon_sym_offsetof] = ACTIONS(1248), + [anon_sym___builtin_va_arg] = ACTIONS(1248), + [anon_sym__Generic] = ACTIONS(1248), + [anon_sym_asm] = ACTIONS(1248), + [anon_sym___asm__] = ACTIONS(1248), + [sym_number_literal] = ACTIONS(1250), + [anon_sym_L_SQUOTE] = ACTIONS(1250), + [anon_sym_u_SQUOTE] = ACTIONS(1250), + [anon_sym_U_SQUOTE] = ACTIONS(1250), + [anon_sym_u8_SQUOTE] = ACTIONS(1250), + [anon_sym_SQUOTE] = ACTIONS(1250), + [anon_sym_L_DQUOTE] = ACTIONS(1250), + [anon_sym_u_DQUOTE] = ACTIONS(1250), + [anon_sym_U_DQUOTE] = ACTIONS(1250), + [anon_sym_u8_DQUOTE] = ACTIONS(1250), + [anon_sym_DQUOTE] = ACTIONS(1250), + [sym_true] = ACTIONS(1248), + [sym_false] = ACTIONS(1248), + [anon_sym_NULL] = ACTIONS(1248), + [anon_sym_nullptr] = ACTIONS(1248), [sym_comment] = ACTIONS(3), }, - [497] = { - [sym_attribute_declaration] = STATE(407), - [sym_compound_statement] = STATE(90), - [sym_attributed_statement] = STATE(90), - [sym_labeled_statement] = STATE(90), - [sym_expression_statement] = STATE(90), - [sym_if_statement] = STATE(90), - [sym_switch_statement] = STATE(90), - [sym_case_statement] = STATE(90), - [sym_while_statement] = STATE(90), - [sym_do_statement] = STATE(90), - [sym_for_statement] = STATE(90), - [sym_return_statement] = STATE(90), - [sym_break_statement] = STATE(90), - [sym_continue_statement] = STATE(90), - [sym_goto_statement] = STATE(90), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1801), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(407), - [sym_identifier] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [418] = { + [sym_identifier] = ACTIONS(1336), + [aux_sym_preproc_include_token1] = ACTIONS(1336), + [aux_sym_preproc_def_token1] = ACTIONS(1336), + [aux_sym_preproc_if_token1] = ACTIONS(1336), + [aux_sym_preproc_if_token2] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), + [sym_preproc_directive] = ACTIONS(1336), + [anon_sym_LPAREN2] = ACTIONS(1338), + [anon_sym_BANG] = ACTIONS(1338), + [anon_sym_TILDE] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1338), + [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym___extension__] = ACTIONS(1336), + [anon_sym_typedef] = ACTIONS(1336), + [anon_sym_extern] = ACTIONS(1336), + [anon_sym___attribute__] = ACTIONS(1336), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), + [anon_sym___declspec] = ACTIONS(1336), + [anon_sym___cdecl] = ACTIONS(1336), + [anon_sym___clrcall] = ACTIONS(1336), + [anon_sym___stdcall] = ACTIONS(1336), + [anon_sym___fastcall] = ACTIONS(1336), + [anon_sym___thiscall] = ACTIONS(1336), + [anon_sym___vectorcall] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1338), + [anon_sym_signed] = ACTIONS(1336), + [anon_sym_unsigned] = ACTIONS(1336), + [anon_sym_long] = ACTIONS(1336), + [anon_sym_short] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(1336), + [anon_sym_auto] = ACTIONS(1336), + [anon_sym_register] = ACTIONS(1336), + [anon_sym_inline] = ACTIONS(1336), + [anon_sym___inline] = ACTIONS(1336), + [anon_sym___inline__] = ACTIONS(1336), + [anon_sym___forceinline] = ACTIONS(1336), + [anon_sym_thread_local] = ACTIONS(1336), + [anon_sym___thread] = ACTIONS(1336), + [anon_sym_const] = ACTIONS(1336), + [anon_sym_constexpr] = ACTIONS(1336), + [anon_sym_volatile] = ACTIONS(1336), + [anon_sym_restrict] = ACTIONS(1336), + [anon_sym___restrict__] = ACTIONS(1336), + [anon_sym__Atomic] = ACTIONS(1336), + [anon_sym__Noreturn] = ACTIONS(1336), + [anon_sym_noreturn] = ACTIONS(1336), + [sym_primitive_type] = ACTIONS(1336), + [anon_sym_enum] = ACTIONS(1336), + [anon_sym_struct] = ACTIONS(1336), + [anon_sym_union] = ACTIONS(1336), + [anon_sym_if] = ACTIONS(1336), + [anon_sym_else] = ACTIONS(1336), + [anon_sym_switch] = ACTIONS(1336), + [anon_sym_case] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1336), + [anon_sym_while] = ACTIONS(1336), + [anon_sym_do] = ACTIONS(1336), + [anon_sym_for] = ACTIONS(1336), + [anon_sym_return] = ACTIONS(1336), + [anon_sym_break] = ACTIONS(1336), + [anon_sym_continue] = ACTIONS(1336), + [anon_sym_goto] = ACTIONS(1336), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_sizeof] = ACTIONS(1336), + [anon_sym___alignof__] = ACTIONS(1336), + [anon_sym___alignof] = ACTIONS(1336), + [anon_sym__alignof] = ACTIONS(1336), + [anon_sym_alignof] = ACTIONS(1336), + [anon_sym__Alignof] = ACTIONS(1336), + [anon_sym_offsetof] = ACTIONS(1336), + [anon_sym___builtin_va_arg] = ACTIONS(1336), + [anon_sym__Generic] = ACTIONS(1336), + [anon_sym_asm] = ACTIONS(1336), + [anon_sym___asm__] = ACTIONS(1336), + [sym_number_literal] = ACTIONS(1338), + [anon_sym_L_SQUOTE] = ACTIONS(1338), + [anon_sym_u_SQUOTE] = ACTIONS(1338), + [anon_sym_U_SQUOTE] = ACTIONS(1338), + [anon_sym_u8_SQUOTE] = ACTIONS(1338), + [anon_sym_SQUOTE] = ACTIONS(1338), + [anon_sym_L_DQUOTE] = ACTIONS(1338), + [anon_sym_u_DQUOTE] = ACTIONS(1338), + [anon_sym_U_DQUOTE] = ACTIONS(1338), + [anon_sym_u8_DQUOTE] = ACTIONS(1338), + [anon_sym_DQUOTE] = ACTIONS(1338), + [sym_true] = ACTIONS(1336), + [sym_false] = ACTIONS(1336), + [anon_sym_NULL] = ACTIONS(1336), + [anon_sym_nullptr] = ACTIONS(1336), [sym_comment] = ACTIONS(3), }, - [498] = { - [sym_attribute_declaration] = STATE(467), - [sym_compound_statement] = STATE(291), - [sym_attributed_statement] = STATE(291), - [sym_labeled_statement] = STATE(291), - [sym_expression_statement] = STATE(291), - [sym_if_statement] = STATE(291), - [sym_switch_statement] = STATE(291), - [sym_case_statement] = STATE(291), - [sym_while_statement] = STATE(291), - [sym_do_statement] = STATE(291), - [sym_for_statement] = STATE(291), - [sym_return_statement] = STATE(291), - [sym_break_statement] = STATE(291), - [sym_continue_statement] = STATE(291), - [sym_goto_statement] = STATE(291), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(467), - [sym_identifier] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [419] = { + [sym_identifier] = ACTIONS(1256), + [aux_sym_preproc_include_token1] = ACTIONS(1256), + [aux_sym_preproc_def_token1] = ACTIONS(1256), + [aux_sym_preproc_if_token1] = ACTIONS(1256), + [aux_sym_preproc_if_token2] = ACTIONS(1256), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1256), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1256), + [sym_preproc_directive] = ACTIONS(1256), + [anon_sym_LPAREN2] = ACTIONS(1258), + [anon_sym_BANG] = ACTIONS(1258), + [anon_sym_TILDE] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_STAR] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1258), + [anon_sym___extension__] = ACTIONS(1256), + [anon_sym_typedef] = ACTIONS(1256), + [anon_sym_extern] = ACTIONS(1256), + [anon_sym___attribute__] = ACTIONS(1256), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1258), + [anon_sym___declspec] = ACTIONS(1256), + [anon_sym___cdecl] = ACTIONS(1256), + [anon_sym___clrcall] = ACTIONS(1256), + [anon_sym___stdcall] = ACTIONS(1256), + [anon_sym___fastcall] = ACTIONS(1256), + [anon_sym___thiscall] = ACTIONS(1256), + [anon_sym___vectorcall] = ACTIONS(1256), + [anon_sym_LBRACE] = ACTIONS(1258), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_long] = ACTIONS(1256), + [anon_sym_short] = ACTIONS(1256), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_auto] = ACTIONS(1256), + [anon_sym_register] = ACTIONS(1256), + [anon_sym_inline] = ACTIONS(1256), + [anon_sym___inline] = ACTIONS(1256), + [anon_sym___inline__] = ACTIONS(1256), + [anon_sym___forceinline] = ACTIONS(1256), + [anon_sym_thread_local] = ACTIONS(1256), + [anon_sym___thread] = ACTIONS(1256), + [anon_sym_const] = ACTIONS(1256), + [anon_sym_constexpr] = ACTIONS(1256), + [anon_sym_volatile] = ACTIONS(1256), + [anon_sym_restrict] = ACTIONS(1256), + [anon_sym___restrict__] = ACTIONS(1256), + [anon_sym__Atomic] = ACTIONS(1256), + [anon_sym__Noreturn] = ACTIONS(1256), + [anon_sym_noreturn] = ACTIONS(1256), + [sym_primitive_type] = ACTIONS(1256), + [anon_sym_enum] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1256), + [anon_sym_union] = ACTIONS(1256), + [anon_sym_if] = ACTIONS(1256), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_switch] = ACTIONS(1256), + [anon_sym_case] = ACTIONS(1256), + [anon_sym_default] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1256), + [anon_sym_do] = ACTIONS(1256), + [anon_sym_for] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1256), + [anon_sym_break] = ACTIONS(1256), + [anon_sym_continue] = ACTIONS(1256), + [anon_sym_goto] = ACTIONS(1256), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_sizeof] = ACTIONS(1256), + [anon_sym___alignof__] = ACTIONS(1256), + [anon_sym___alignof] = ACTIONS(1256), + [anon_sym__alignof] = ACTIONS(1256), + [anon_sym_alignof] = ACTIONS(1256), + [anon_sym__Alignof] = ACTIONS(1256), + [anon_sym_offsetof] = ACTIONS(1256), + [anon_sym___builtin_va_arg] = ACTIONS(1256), + [anon_sym__Generic] = ACTIONS(1256), + [anon_sym_asm] = ACTIONS(1256), + [anon_sym___asm__] = ACTIONS(1256), + [sym_number_literal] = ACTIONS(1258), + [anon_sym_L_SQUOTE] = ACTIONS(1258), + [anon_sym_u_SQUOTE] = ACTIONS(1258), + [anon_sym_U_SQUOTE] = ACTIONS(1258), + [anon_sym_u8_SQUOTE] = ACTIONS(1258), + [anon_sym_SQUOTE] = ACTIONS(1258), + [anon_sym_L_DQUOTE] = ACTIONS(1258), + [anon_sym_u_DQUOTE] = ACTIONS(1258), + [anon_sym_U_DQUOTE] = ACTIONS(1258), + [anon_sym_u8_DQUOTE] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(1258), + [sym_true] = ACTIONS(1256), + [sym_false] = ACTIONS(1256), + [anon_sym_NULL] = ACTIONS(1256), + [anon_sym_nullptr] = ACTIONS(1256), [sym_comment] = ACTIONS(3), }, - [499] = { - [sym_identifier] = ACTIONS(1434), - [aux_sym_preproc_include_token1] = ACTIONS(1434), - [aux_sym_preproc_def_token1] = ACTIONS(1434), - [aux_sym_preproc_if_token1] = ACTIONS(1434), - [aux_sym_preproc_if_token2] = ACTIONS(1434), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), - [sym_preproc_directive] = ACTIONS(1434), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1436), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1434), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1436), - [anon_sym_typedef] = ACTIONS(1434), - [anon_sym_extern] = ACTIONS(1434), - [anon_sym___attribute__] = ACTIONS(1434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1436), - [anon_sym___declspec] = ACTIONS(1434), - [anon_sym___cdecl] = ACTIONS(1434), - [anon_sym___clrcall] = ACTIONS(1434), - [anon_sym___stdcall] = ACTIONS(1434), - [anon_sym___fastcall] = ACTIONS(1434), - [anon_sym___thiscall] = ACTIONS(1434), - [anon_sym___vectorcall] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1434), - [anon_sym_unsigned] = ACTIONS(1434), - [anon_sym_long] = ACTIONS(1434), - [anon_sym_short] = ACTIONS(1434), - [anon_sym_static] = ACTIONS(1434), - [anon_sym_auto] = ACTIONS(1434), - [anon_sym_register] = ACTIONS(1434), - [anon_sym_inline] = ACTIONS(1434), - [anon_sym_thread_local] = ACTIONS(1434), - [anon_sym___thread] = ACTIONS(1434), - [anon_sym_const] = ACTIONS(1434), - [anon_sym_constexpr] = ACTIONS(1434), - [anon_sym_volatile] = ACTIONS(1434), - [anon_sym_restrict] = ACTIONS(1434), - [anon_sym___restrict__] = ACTIONS(1434), - [anon_sym__Atomic] = ACTIONS(1434), - [anon_sym__Noreturn] = ACTIONS(1434), - [anon_sym_noreturn] = ACTIONS(1434), - [sym_primitive_type] = ACTIONS(1434), - [anon_sym_enum] = ACTIONS(1434), - [anon_sym_struct] = ACTIONS(1434), - [anon_sym_union] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_switch] = ACTIONS(1434), - [anon_sym_case] = ACTIONS(1434), - [anon_sym_default] = ACTIONS(1434), - [anon_sym_while] = ACTIONS(1434), - [anon_sym_do] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1434), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_goto] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1436), - [anon_sym_PLUS_PLUS] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1434), - [anon_sym_offsetof] = ACTIONS(1434), - [anon_sym__Generic] = ACTIONS(1434), - [anon_sym_asm] = ACTIONS(1434), - [anon_sym___asm__] = ACTIONS(1434), - [sym_number_literal] = ACTIONS(1436), - [anon_sym_L_SQUOTE] = ACTIONS(1436), - [anon_sym_u_SQUOTE] = ACTIONS(1436), - [anon_sym_U_SQUOTE] = ACTIONS(1436), - [anon_sym_u8_SQUOTE] = ACTIONS(1436), - [anon_sym_SQUOTE] = ACTIONS(1436), - [anon_sym_L_DQUOTE] = ACTIONS(1436), - [anon_sym_u_DQUOTE] = ACTIONS(1436), - [anon_sym_U_DQUOTE] = ACTIONS(1436), - [anon_sym_u8_DQUOTE] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1436), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [anon_sym_NULL] = ACTIONS(1434), - [anon_sym_nullptr] = ACTIONS(1434), - [sym_comment] = ACTIONS(3), - }, - [500] = { - [sym_identifier] = ACTIONS(1402), - [aux_sym_preproc_include_token1] = ACTIONS(1402), - [aux_sym_preproc_def_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token2] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), - [sym_preproc_directive] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym___attribute__] = ACTIONS(1402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), - [anon_sym___declspec] = ACTIONS(1402), - [anon_sym___cdecl] = ACTIONS(1402), - [anon_sym___clrcall] = ACTIONS(1402), - [anon_sym___stdcall] = ACTIONS(1402), - [anon_sym___fastcall] = ACTIONS(1402), - [anon_sym___thiscall] = ACTIONS(1402), - [anon_sym___vectorcall] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym_thread_local] = ACTIONS(1402), - [anon_sym___thread] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_constexpr] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_restrict] = ACTIONS(1402), - [anon_sym___restrict__] = ACTIONS(1402), - [anon_sym__Atomic] = ACTIONS(1402), - [anon_sym__Noreturn] = ACTIONS(1402), - [anon_sym_noreturn] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_case] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_goto] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1402), - [anon_sym_offsetof] = ACTIONS(1402), - [anon_sym__Generic] = ACTIONS(1402), - [anon_sym_asm] = ACTIONS(1402), - [anon_sym___asm__] = ACTIONS(1402), - [sym_number_literal] = ACTIONS(1404), - [anon_sym_L_SQUOTE] = ACTIONS(1404), - [anon_sym_u_SQUOTE] = ACTIONS(1404), - [anon_sym_U_SQUOTE] = ACTIONS(1404), - [anon_sym_u8_SQUOTE] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_L_DQUOTE] = ACTIONS(1404), - [anon_sym_u_DQUOTE] = ACTIONS(1404), - [anon_sym_U_DQUOTE] = ACTIONS(1404), - [anon_sym_u8_DQUOTE] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [sym_true] = ACTIONS(1402), - [sym_false] = ACTIONS(1402), - [anon_sym_NULL] = ACTIONS(1402), - [anon_sym_nullptr] = ACTIONS(1402), - [sym_comment] = ACTIONS(3), - }, - [501] = { - [sym_identifier] = ACTIONS(1406), - [aux_sym_preproc_include_token1] = ACTIONS(1406), - [aux_sym_preproc_def_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token2] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), - [sym_preproc_directive] = ACTIONS(1406), - [anon_sym_LPAREN2] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym_typedef] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym___attribute__] = ACTIONS(1406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), - [anon_sym___declspec] = ACTIONS(1406), - [anon_sym___cdecl] = ACTIONS(1406), - [anon_sym___clrcall] = ACTIONS(1406), - [anon_sym___stdcall] = ACTIONS(1406), - [anon_sym___fastcall] = ACTIONS(1406), - [anon_sym___thiscall] = ACTIONS(1406), - [anon_sym___vectorcall] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_auto] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym_thread_local] = ACTIONS(1406), - [anon_sym___thread] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_constexpr] = ACTIONS(1406), - [anon_sym_volatile] = ACTIONS(1406), - [anon_sym_restrict] = ACTIONS(1406), - [anon_sym___restrict__] = ACTIONS(1406), - [anon_sym__Atomic] = ACTIONS(1406), - [anon_sym__Noreturn] = ACTIONS(1406), - [anon_sym_noreturn] = ACTIONS(1406), - [sym_primitive_type] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_union] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_case] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_goto] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_sizeof] = ACTIONS(1406), - [anon_sym_offsetof] = ACTIONS(1406), - [anon_sym__Generic] = ACTIONS(1406), - [anon_sym_asm] = ACTIONS(1406), - [anon_sym___asm__] = ACTIONS(1406), - [sym_number_literal] = ACTIONS(1408), - [anon_sym_L_SQUOTE] = ACTIONS(1408), - [anon_sym_u_SQUOTE] = ACTIONS(1408), - [anon_sym_U_SQUOTE] = ACTIONS(1408), - [anon_sym_u8_SQUOTE] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_L_DQUOTE] = ACTIONS(1408), - [anon_sym_u_DQUOTE] = ACTIONS(1408), - [anon_sym_U_DQUOTE] = ACTIONS(1408), - [anon_sym_u8_DQUOTE] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [sym_true] = ACTIONS(1406), - [sym_false] = ACTIONS(1406), - [anon_sym_NULL] = ACTIONS(1406), - [anon_sym_nullptr] = ACTIONS(1406), + [420] = { + [ts_builtin_sym_end] = ACTIONS(1354), + [sym_identifier] = ACTIONS(1352), + [aux_sym_preproc_include_token1] = ACTIONS(1352), + [aux_sym_preproc_def_token1] = ACTIONS(1352), + [aux_sym_preproc_if_token1] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), + [sym_preproc_directive] = ACTIONS(1352), + [anon_sym_LPAREN2] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_PLUS] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym___extension__] = ACTIONS(1352), + [anon_sym_typedef] = ACTIONS(1352), + [anon_sym_extern] = ACTIONS(1352), + [anon_sym___attribute__] = ACTIONS(1352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), + [anon_sym___declspec] = ACTIONS(1352), + [anon_sym___cdecl] = ACTIONS(1352), + [anon_sym___clrcall] = ACTIONS(1352), + [anon_sym___stdcall] = ACTIONS(1352), + [anon_sym___fastcall] = ACTIONS(1352), + [anon_sym___thiscall] = ACTIONS(1352), + [anon_sym___vectorcall] = ACTIONS(1352), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_long] = ACTIONS(1352), + [anon_sym_short] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_auto] = ACTIONS(1352), + [anon_sym_register] = ACTIONS(1352), + [anon_sym_inline] = ACTIONS(1352), + [anon_sym___inline] = ACTIONS(1352), + [anon_sym___inline__] = ACTIONS(1352), + [anon_sym___forceinline] = ACTIONS(1352), + [anon_sym_thread_local] = ACTIONS(1352), + [anon_sym___thread] = ACTIONS(1352), + [anon_sym_const] = ACTIONS(1352), + [anon_sym_constexpr] = ACTIONS(1352), + [anon_sym_volatile] = ACTIONS(1352), + [anon_sym_restrict] = ACTIONS(1352), + [anon_sym___restrict__] = ACTIONS(1352), + [anon_sym__Atomic] = ACTIONS(1352), + [anon_sym__Noreturn] = ACTIONS(1352), + [anon_sym_noreturn] = ACTIONS(1352), + [sym_primitive_type] = ACTIONS(1352), + [anon_sym_enum] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1352), + [anon_sym_union] = ACTIONS(1352), + [anon_sym_if] = ACTIONS(1352), + [anon_sym_else] = ACTIONS(1352), + [anon_sym_switch] = ACTIONS(1352), + [anon_sym_case] = ACTIONS(1352), + [anon_sym_default] = ACTIONS(1352), + [anon_sym_while] = ACTIONS(1352), + [anon_sym_do] = ACTIONS(1352), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(1352), + [anon_sym_break] = ACTIONS(1352), + [anon_sym_continue] = ACTIONS(1352), + [anon_sym_goto] = ACTIONS(1352), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_sizeof] = ACTIONS(1352), + [anon_sym___alignof__] = ACTIONS(1352), + [anon_sym___alignof] = ACTIONS(1352), + [anon_sym__alignof] = ACTIONS(1352), + [anon_sym_alignof] = ACTIONS(1352), + [anon_sym__Alignof] = ACTIONS(1352), + [anon_sym_offsetof] = ACTIONS(1352), + [anon_sym___builtin_va_arg] = ACTIONS(1352), + [anon_sym__Generic] = ACTIONS(1352), + [anon_sym_asm] = ACTIONS(1352), + [anon_sym___asm__] = ACTIONS(1352), + [sym_number_literal] = ACTIONS(1354), + [anon_sym_L_SQUOTE] = ACTIONS(1354), + [anon_sym_u_SQUOTE] = ACTIONS(1354), + [anon_sym_U_SQUOTE] = ACTIONS(1354), + [anon_sym_u8_SQUOTE] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [anon_sym_L_DQUOTE] = ACTIONS(1354), + [anon_sym_u_DQUOTE] = ACTIONS(1354), + [anon_sym_U_DQUOTE] = ACTIONS(1354), + [anon_sym_u8_DQUOTE] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1354), + [sym_true] = ACTIONS(1352), + [sym_false] = ACTIONS(1352), + [anon_sym_NULL] = ACTIONS(1352), + [anon_sym_nullptr] = ACTIONS(1352), [sym_comment] = ACTIONS(3), }, - [502] = { - [sym_attribute_declaration] = STATE(375), - [sym_compound_statement] = STATE(1963), - [sym_attributed_statement] = STATE(1963), - [sym_labeled_statement] = STATE(1963), - [sym_expression_statement] = STATE(1963), - [sym_if_statement] = STATE(1963), - [sym_switch_statement] = STATE(1963), - [sym_case_statement] = STATE(1963), - [sym_while_statement] = STATE(1963), - [sym_do_statement] = STATE(1963), - [sym_for_statement] = STATE(1963), - [sym_return_statement] = STATE(1963), - [sym_break_statement] = STATE(1963), - [sym_continue_statement] = STATE(1963), - [sym_goto_statement] = STATE(1963), - [sym__expression] = STATE(1117), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1780), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [aux_sym_attributed_declarator_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1466), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [421] = { + [sym_identifier] = ACTIONS(1240), + [aux_sym_preproc_include_token1] = ACTIONS(1240), + [aux_sym_preproc_def_token1] = ACTIONS(1240), + [aux_sym_preproc_if_token1] = ACTIONS(1240), + [aux_sym_preproc_if_token2] = ACTIONS(1240), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1240), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1240), + [sym_preproc_directive] = ACTIONS(1240), + [anon_sym_LPAREN2] = ACTIONS(1242), + [anon_sym_BANG] = ACTIONS(1242), + [anon_sym_TILDE] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(1240), + [anon_sym_STAR] = ACTIONS(1242), + [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym___extension__] = ACTIONS(1240), + [anon_sym_typedef] = ACTIONS(1240), + [anon_sym_extern] = ACTIONS(1240), + [anon_sym___attribute__] = ACTIONS(1240), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1242), + [anon_sym___declspec] = ACTIONS(1240), + [anon_sym___cdecl] = ACTIONS(1240), + [anon_sym___clrcall] = ACTIONS(1240), + [anon_sym___stdcall] = ACTIONS(1240), + [anon_sym___fastcall] = ACTIONS(1240), + [anon_sym___thiscall] = ACTIONS(1240), + [anon_sym___vectorcall] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(1242), + [anon_sym_signed] = ACTIONS(1240), + [anon_sym_unsigned] = ACTIONS(1240), + [anon_sym_long] = ACTIONS(1240), + [anon_sym_short] = ACTIONS(1240), + [anon_sym_static] = ACTIONS(1240), + [anon_sym_auto] = ACTIONS(1240), + [anon_sym_register] = ACTIONS(1240), + [anon_sym_inline] = ACTIONS(1240), + [anon_sym___inline] = ACTIONS(1240), + [anon_sym___inline__] = ACTIONS(1240), + [anon_sym___forceinline] = ACTIONS(1240), + [anon_sym_thread_local] = ACTIONS(1240), + [anon_sym___thread] = ACTIONS(1240), + [anon_sym_const] = ACTIONS(1240), + [anon_sym_constexpr] = ACTIONS(1240), + [anon_sym_volatile] = ACTIONS(1240), + [anon_sym_restrict] = ACTIONS(1240), + [anon_sym___restrict__] = ACTIONS(1240), + [anon_sym__Atomic] = ACTIONS(1240), + [anon_sym__Noreturn] = ACTIONS(1240), + [anon_sym_noreturn] = ACTIONS(1240), + [sym_primitive_type] = ACTIONS(1240), + [anon_sym_enum] = ACTIONS(1240), + [anon_sym_struct] = ACTIONS(1240), + [anon_sym_union] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(1240), + [anon_sym_else] = ACTIONS(1240), + [anon_sym_switch] = ACTIONS(1240), + [anon_sym_case] = ACTIONS(1240), + [anon_sym_default] = ACTIONS(1240), + [anon_sym_while] = ACTIONS(1240), + [anon_sym_do] = ACTIONS(1240), + [anon_sym_for] = ACTIONS(1240), + [anon_sym_return] = ACTIONS(1240), + [anon_sym_break] = ACTIONS(1240), + [anon_sym_continue] = ACTIONS(1240), + [anon_sym_goto] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1242), + [anon_sym_PLUS_PLUS] = ACTIONS(1242), + [anon_sym_sizeof] = ACTIONS(1240), + [anon_sym___alignof__] = ACTIONS(1240), + [anon_sym___alignof] = ACTIONS(1240), + [anon_sym__alignof] = ACTIONS(1240), + [anon_sym_alignof] = ACTIONS(1240), + [anon_sym__Alignof] = ACTIONS(1240), + [anon_sym_offsetof] = ACTIONS(1240), + [anon_sym___builtin_va_arg] = ACTIONS(1240), + [anon_sym__Generic] = ACTIONS(1240), + [anon_sym_asm] = ACTIONS(1240), + [anon_sym___asm__] = ACTIONS(1240), + [sym_number_literal] = ACTIONS(1242), + [anon_sym_L_SQUOTE] = ACTIONS(1242), + [anon_sym_u_SQUOTE] = ACTIONS(1242), + [anon_sym_U_SQUOTE] = ACTIONS(1242), + [anon_sym_u8_SQUOTE] = ACTIONS(1242), + [anon_sym_SQUOTE] = ACTIONS(1242), + [anon_sym_L_DQUOTE] = ACTIONS(1242), + [anon_sym_u_DQUOTE] = ACTIONS(1242), + [anon_sym_U_DQUOTE] = ACTIONS(1242), + [anon_sym_u8_DQUOTE] = ACTIONS(1242), + [anon_sym_DQUOTE] = ACTIONS(1242), + [sym_true] = ACTIONS(1240), + [sym_false] = ACTIONS(1240), + [anon_sym_NULL] = ACTIONS(1240), + [anon_sym_nullptr] = ACTIONS(1240), [sym_comment] = ACTIONS(3), }, - [503] = { - [sym_identifier] = ACTIONS(1380), - [aux_sym_preproc_include_token1] = ACTIONS(1380), - [aux_sym_preproc_def_token1] = ACTIONS(1380), - [aux_sym_preproc_if_token1] = ACTIONS(1380), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), - [sym_preproc_directive] = ACTIONS(1380), - [anon_sym_LPAREN2] = ACTIONS(1382), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_TILDE] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1380), - [anon_sym_PLUS] = ACTIONS(1380), - [anon_sym_STAR] = ACTIONS(1382), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_SEMI] = ACTIONS(1382), - [anon_sym_typedef] = ACTIONS(1380), - [anon_sym_extern] = ACTIONS(1380), - [anon_sym___attribute__] = ACTIONS(1380), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), - [anon_sym___declspec] = ACTIONS(1380), - [anon_sym___cdecl] = ACTIONS(1380), - [anon_sym___clrcall] = ACTIONS(1380), - [anon_sym___stdcall] = ACTIONS(1380), - [anon_sym___fastcall] = ACTIONS(1380), - [anon_sym___thiscall] = ACTIONS(1380), - [anon_sym___vectorcall] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_RBRACE] = ACTIONS(1382), - [anon_sym_signed] = ACTIONS(1380), - [anon_sym_unsigned] = ACTIONS(1380), - [anon_sym_long] = ACTIONS(1380), - [anon_sym_short] = ACTIONS(1380), - [anon_sym_static] = ACTIONS(1380), - [anon_sym_auto] = ACTIONS(1380), - [anon_sym_register] = ACTIONS(1380), - [anon_sym_inline] = ACTIONS(1380), - [anon_sym_thread_local] = ACTIONS(1380), - [anon_sym___thread] = ACTIONS(1380), - [anon_sym_const] = ACTIONS(1380), - [anon_sym_constexpr] = ACTIONS(1380), - [anon_sym_volatile] = ACTIONS(1380), - [anon_sym_restrict] = ACTIONS(1380), - [anon_sym___restrict__] = ACTIONS(1380), - [anon_sym__Atomic] = ACTIONS(1380), - [anon_sym__Noreturn] = ACTIONS(1380), - [anon_sym_noreturn] = ACTIONS(1380), - [sym_primitive_type] = ACTIONS(1380), - [anon_sym_enum] = ACTIONS(1380), - [anon_sym_struct] = ACTIONS(1380), - [anon_sym_union] = ACTIONS(1380), - [anon_sym_if] = ACTIONS(1380), - [anon_sym_switch] = ACTIONS(1380), - [anon_sym_case] = ACTIONS(1380), - [anon_sym_default] = ACTIONS(1380), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1380), - [anon_sym_for] = ACTIONS(1380), - [anon_sym_return] = ACTIONS(1380), - [anon_sym_break] = ACTIONS(1380), - [anon_sym_continue] = ACTIONS(1380), - [anon_sym_goto] = ACTIONS(1380), - [anon_sym_DASH_DASH] = ACTIONS(1382), - [anon_sym_PLUS_PLUS] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1380), - [anon_sym_offsetof] = ACTIONS(1380), - [anon_sym__Generic] = ACTIONS(1380), - [anon_sym_asm] = ACTIONS(1380), - [anon_sym___asm__] = ACTIONS(1380), - [sym_number_literal] = ACTIONS(1382), - [anon_sym_L_SQUOTE] = ACTIONS(1382), - [anon_sym_u_SQUOTE] = ACTIONS(1382), - [anon_sym_U_SQUOTE] = ACTIONS(1382), - [anon_sym_u8_SQUOTE] = ACTIONS(1382), - [anon_sym_SQUOTE] = ACTIONS(1382), - [anon_sym_L_DQUOTE] = ACTIONS(1382), - [anon_sym_u_DQUOTE] = ACTIONS(1382), - [anon_sym_U_DQUOTE] = ACTIONS(1382), - [anon_sym_u8_DQUOTE] = ACTIONS(1382), - [anon_sym_DQUOTE] = ACTIONS(1382), - [sym_true] = ACTIONS(1380), - [sym_false] = ACTIONS(1380), - [anon_sym_NULL] = ACTIONS(1380), - [anon_sym_nullptr] = ACTIONS(1380), + [422] = { + [sym_identifier] = ACTIONS(1284), + [aux_sym_preproc_include_token1] = ACTIONS(1284), + [aux_sym_preproc_def_token1] = ACTIONS(1284), + [aux_sym_preproc_if_token1] = ACTIONS(1284), + [aux_sym_preproc_if_token2] = ACTIONS(1284), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1284), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1284), + [sym_preproc_directive] = ACTIONS(1284), + [anon_sym_LPAREN2] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1286), + [anon_sym_TILDE] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_STAR] = ACTIONS(1286), + [anon_sym_AMP] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [anon_sym___extension__] = ACTIONS(1284), + [anon_sym_typedef] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym___attribute__] = ACTIONS(1284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1286), + [anon_sym___declspec] = ACTIONS(1284), + [anon_sym___cdecl] = ACTIONS(1284), + [anon_sym___clrcall] = ACTIONS(1284), + [anon_sym___stdcall] = ACTIONS(1284), + [anon_sym___fastcall] = ACTIONS(1284), + [anon_sym___thiscall] = ACTIONS(1284), + [anon_sym___vectorcall] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_signed] = ACTIONS(1284), + [anon_sym_unsigned] = ACTIONS(1284), + [anon_sym_long] = ACTIONS(1284), + [anon_sym_short] = ACTIONS(1284), + [anon_sym_static] = ACTIONS(1284), + [anon_sym_auto] = ACTIONS(1284), + [anon_sym_register] = ACTIONS(1284), + [anon_sym_inline] = ACTIONS(1284), + [anon_sym___inline] = ACTIONS(1284), + [anon_sym___inline__] = ACTIONS(1284), + [anon_sym___forceinline] = ACTIONS(1284), + [anon_sym_thread_local] = ACTIONS(1284), + [anon_sym___thread] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_constexpr] = ACTIONS(1284), + [anon_sym_volatile] = ACTIONS(1284), + [anon_sym_restrict] = ACTIONS(1284), + [anon_sym___restrict__] = ACTIONS(1284), + [anon_sym__Atomic] = ACTIONS(1284), + [anon_sym__Noreturn] = ACTIONS(1284), + [anon_sym_noreturn] = ACTIONS(1284), + [sym_primitive_type] = ACTIONS(1284), + [anon_sym_enum] = ACTIONS(1284), + [anon_sym_struct] = ACTIONS(1284), + [anon_sym_union] = ACTIONS(1284), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_else] = ACTIONS(1284), + [anon_sym_switch] = ACTIONS(1284), + [anon_sym_case] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(1284), + [anon_sym_while] = ACTIONS(1284), + [anon_sym_do] = ACTIONS(1284), + [anon_sym_for] = ACTIONS(1284), + [anon_sym_return] = ACTIONS(1284), + [anon_sym_break] = ACTIONS(1284), + [anon_sym_continue] = ACTIONS(1284), + [anon_sym_goto] = ACTIONS(1284), + [anon_sym_DASH_DASH] = ACTIONS(1286), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [anon_sym_sizeof] = ACTIONS(1284), + [anon_sym___alignof__] = ACTIONS(1284), + [anon_sym___alignof] = ACTIONS(1284), + [anon_sym__alignof] = ACTIONS(1284), + [anon_sym_alignof] = ACTIONS(1284), + [anon_sym__Alignof] = ACTIONS(1284), + [anon_sym_offsetof] = ACTIONS(1284), + [anon_sym___builtin_va_arg] = ACTIONS(1284), + [anon_sym__Generic] = ACTIONS(1284), + [anon_sym_asm] = ACTIONS(1284), + [anon_sym___asm__] = ACTIONS(1284), + [sym_number_literal] = ACTIONS(1286), + [anon_sym_L_SQUOTE] = ACTIONS(1286), + [anon_sym_u_SQUOTE] = ACTIONS(1286), + [anon_sym_U_SQUOTE] = ACTIONS(1286), + [anon_sym_u8_SQUOTE] = ACTIONS(1286), + [anon_sym_SQUOTE] = ACTIONS(1286), + [anon_sym_L_DQUOTE] = ACTIONS(1286), + [anon_sym_u_DQUOTE] = ACTIONS(1286), + [anon_sym_U_DQUOTE] = ACTIONS(1286), + [anon_sym_u8_DQUOTE] = ACTIONS(1286), + [anon_sym_DQUOTE] = ACTIONS(1286), + [sym_true] = ACTIONS(1284), + [sym_false] = ACTIONS(1284), + [anon_sym_NULL] = ACTIONS(1284), + [anon_sym_nullptr] = ACTIONS(1284), [sym_comment] = ACTIONS(3), }, - [504] = { - [ts_builtin_sym_end] = ACTIONS(1751), - [sym_identifier] = ACTIONS(1753), - [aux_sym_preproc_include_token1] = ACTIONS(1753), - [aux_sym_preproc_def_token1] = ACTIONS(1753), - [aux_sym_preproc_if_token1] = ACTIONS(1753), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1753), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1753), - [sym_preproc_directive] = ACTIONS(1753), - [anon_sym_LPAREN2] = ACTIONS(1751), - [anon_sym_BANG] = ACTIONS(1751), - [anon_sym_TILDE] = ACTIONS(1751), - [anon_sym_DASH] = ACTIONS(1753), - [anon_sym_PLUS] = ACTIONS(1753), - [anon_sym_STAR] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_typedef] = ACTIONS(1753), - [anon_sym_extern] = ACTIONS(1753), - [anon_sym___attribute__] = ACTIONS(1753), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1751), - [anon_sym___declspec] = ACTIONS(1753), - [anon_sym___cdecl] = ACTIONS(1753), - [anon_sym___clrcall] = ACTIONS(1753), - [anon_sym___stdcall] = ACTIONS(1753), - [anon_sym___fastcall] = ACTIONS(1753), - [anon_sym___thiscall] = ACTIONS(1753), - [anon_sym___vectorcall] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(1751), - [anon_sym_signed] = ACTIONS(1753), - [anon_sym_unsigned] = ACTIONS(1753), - [anon_sym_long] = ACTIONS(1753), - [anon_sym_short] = ACTIONS(1753), - [anon_sym_static] = ACTIONS(1753), - [anon_sym_auto] = ACTIONS(1753), - [anon_sym_register] = ACTIONS(1753), - [anon_sym_inline] = ACTIONS(1753), - [anon_sym_thread_local] = ACTIONS(1753), - [anon_sym___thread] = ACTIONS(1753), - [anon_sym_const] = ACTIONS(1753), - [anon_sym_constexpr] = ACTIONS(1753), - [anon_sym_volatile] = ACTIONS(1753), - [anon_sym_restrict] = ACTIONS(1753), - [anon_sym___restrict__] = ACTIONS(1753), - [anon_sym__Atomic] = ACTIONS(1753), - [anon_sym__Noreturn] = ACTIONS(1753), - [anon_sym_noreturn] = ACTIONS(1753), - [sym_primitive_type] = ACTIONS(1753), - [anon_sym_enum] = ACTIONS(1753), - [anon_sym_struct] = ACTIONS(1753), - [anon_sym_union] = ACTIONS(1753), - [anon_sym_if] = ACTIONS(1753), - [anon_sym_switch] = ACTIONS(1753), - [anon_sym_case] = ACTIONS(1753), - [anon_sym_default] = ACTIONS(1753), - [anon_sym_while] = ACTIONS(1753), - [anon_sym_do] = ACTIONS(1753), - [anon_sym_for] = ACTIONS(1753), - [anon_sym_return] = ACTIONS(1753), - [anon_sym_break] = ACTIONS(1753), - [anon_sym_continue] = ACTIONS(1753), - [anon_sym_goto] = ACTIONS(1753), - [anon_sym_DASH_DASH] = ACTIONS(1751), - [anon_sym_PLUS_PLUS] = ACTIONS(1751), - [anon_sym_sizeof] = ACTIONS(1753), - [anon_sym_offsetof] = ACTIONS(1753), - [anon_sym__Generic] = ACTIONS(1753), - [anon_sym_asm] = ACTIONS(1753), - [anon_sym___asm__] = ACTIONS(1753), - [sym_number_literal] = ACTIONS(1751), - [anon_sym_L_SQUOTE] = ACTIONS(1751), - [anon_sym_u_SQUOTE] = ACTIONS(1751), - [anon_sym_U_SQUOTE] = ACTIONS(1751), - [anon_sym_u8_SQUOTE] = ACTIONS(1751), - [anon_sym_SQUOTE] = ACTIONS(1751), - [anon_sym_L_DQUOTE] = ACTIONS(1751), - [anon_sym_u_DQUOTE] = ACTIONS(1751), - [anon_sym_U_DQUOTE] = ACTIONS(1751), - [anon_sym_u8_DQUOTE] = ACTIONS(1751), - [anon_sym_DQUOTE] = ACTIONS(1751), - [sym_true] = ACTIONS(1753), - [sym_false] = ACTIONS(1753), - [anon_sym_NULL] = ACTIONS(1753), - [anon_sym_nullptr] = ACTIONS(1753), + [423] = { + [sym_identifier] = ACTIONS(1304), + [aux_sym_preproc_include_token1] = ACTIONS(1304), + [aux_sym_preproc_def_token1] = ACTIONS(1304), + [aux_sym_preproc_if_token1] = ACTIONS(1304), + [aux_sym_preproc_if_token2] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), + [sym_preproc_directive] = ACTIONS(1304), + [anon_sym_LPAREN2] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_TILDE] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_PLUS] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1306), + [anon_sym___extension__] = ACTIONS(1304), + [anon_sym_typedef] = ACTIONS(1304), + [anon_sym_extern] = ACTIONS(1304), + [anon_sym___attribute__] = ACTIONS(1304), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), + [anon_sym___declspec] = ACTIONS(1304), + [anon_sym___cdecl] = ACTIONS(1304), + [anon_sym___clrcall] = ACTIONS(1304), + [anon_sym___stdcall] = ACTIONS(1304), + [anon_sym___fastcall] = ACTIONS(1304), + [anon_sym___thiscall] = ACTIONS(1304), + [anon_sym___vectorcall] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_signed] = ACTIONS(1304), + [anon_sym_unsigned] = ACTIONS(1304), + [anon_sym_long] = ACTIONS(1304), + [anon_sym_short] = ACTIONS(1304), + [anon_sym_static] = ACTIONS(1304), + [anon_sym_auto] = ACTIONS(1304), + [anon_sym_register] = ACTIONS(1304), + [anon_sym_inline] = ACTIONS(1304), + [anon_sym___inline] = ACTIONS(1304), + [anon_sym___inline__] = ACTIONS(1304), + [anon_sym___forceinline] = ACTIONS(1304), + [anon_sym_thread_local] = ACTIONS(1304), + [anon_sym___thread] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_constexpr] = ACTIONS(1304), + [anon_sym_volatile] = ACTIONS(1304), + [anon_sym_restrict] = ACTIONS(1304), + [anon_sym___restrict__] = ACTIONS(1304), + [anon_sym__Atomic] = ACTIONS(1304), + [anon_sym__Noreturn] = ACTIONS(1304), + [anon_sym_noreturn] = ACTIONS(1304), + [sym_primitive_type] = ACTIONS(1304), + [anon_sym_enum] = ACTIONS(1304), + [anon_sym_struct] = ACTIONS(1304), + [anon_sym_union] = ACTIONS(1304), + [anon_sym_if] = ACTIONS(1304), + [anon_sym_else] = ACTIONS(1304), + [anon_sym_switch] = ACTIONS(1304), + [anon_sym_case] = ACTIONS(1304), + [anon_sym_default] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(1304), + [anon_sym_do] = ACTIONS(1304), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_return] = ACTIONS(1304), + [anon_sym_break] = ACTIONS(1304), + [anon_sym_continue] = ACTIONS(1304), + [anon_sym_goto] = ACTIONS(1304), + [anon_sym_DASH_DASH] = ACTIONS(1306), + [anon_sym_PLUS_PLUS] = ACTIONS(1306), + [anon_sym_sizeof] = ACTIONS(1304), + [anon_sym___alignof__] = ACTIONS(1304), + [anon_sym___alignof] = ACTIONS(1304), + [anon_sym__alignof] = ACTIONS(1304), + [anon_sym_alignof] = ACTIONS(1304), + [anon_sym__Alignof] = ACTIONS(1304), + [anon_sym_offsetof] = ACTIONS(1304), + [anon_sym___builtin_va_arg] = ACTIONS(1304), + [anon_sym__Generic] = ACTIONS(1304), + [anon_sym_asm] = ACTIONS(1304), + [anon_sym___asm__] = ACTIONS(1304), + [sym_number_literal] = ACTIONS(1306), + [anon_sym_L_SQUOTE] = ACTIONS(1306), + [anon_sym_u_SQUOTE] = ACTIONS(1306), + [anon_sym_U_SQUOTE] = ACTIONS(1306), + [anon_sym_u8_SQUOTE] = ACTIONS(1306), + [anon_sym_SQUOTE] = ACTIONS(1306), + [anon_sym_L_DQUOTE] = ACTIONS(1306), + [anon_sym_u_DQUOTE] = ACTIONS(1306), + [anon_sym_U_DQUOTE] = ACTIONS(1306), + [anon_sym_u8_DQUOTE] = ACTIONS(1306), + [anon_sym_DQUOTE] = ACTIONS(1306), + [sym_true] = ACTIONS(1304), + [sym_false] = ACTIONS(1304), + [anon_sym_NULL] = ACTIONS(1304), + [anon_sym_nullptr] = ACTIONS(1304), [sym_comment] = ACTIONS(3), }, - [505] = { - [ts_builtin_sym_end] = ACTIONS(1394), - [sym_identifier] = ACTIONS(1392), - [aux_sym_preproc_include_token1] = ACTIONS(1392), - [aux_sym_preproc_def_token1] = ACTIONS(1392), - [aux_sym_preproc_if_token1] = ACTIONS(1392), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1392), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1392), - [sym_preproc_directive] = ACTIONS(1392), - [anon_sym_LPAREN2] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_TILDE] = ACTIONS(1394), - [anon_sym_DASH] = ACTIONS(1392), - [anon_sym_PLUS] = ACTIONS(1392), - [anon_sym_STAR] = ACTIONS(1394), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_typedef] = ACTIONS(1392), - [anon_sym_extern] = ACTIONS(1392), - [anon_sym___attribute__] = ACTIONS(1392), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1394), - [anon_sym___declspec] = ACTIONS(1392), - [anon_sym___cdecl] = ACTIONS(1392), - [anon_sym___clrcall] = ACTIONS(1392), - [anon_sym___stdcall] = ACTIONS(1392), - [anon_sym___fastcall] = ACTIONS(1392), - [anon_sym___thiscall] = ACTIONS(1392), - [anon_sym___vectorcall] = ACTIONS(1392), - [anon_sym_LBRACE] = ACTIONS(1394), - [anon_sym_signed] = ACTIONS(1392), - [anon_sym_unsigned] = ACTIONS(1392), - [anon_sym_long] = ACTIONS(1392), - [anon_sym_short] = ACTIONS(1392), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_auto] = ACTIONS(1392), - [anon_sym_register] = ACTIONS(1392), - [anon_sym_inline] = ACTIONS(1392), - [anon_sym_thread_local] = ACTIONS(1392), - [anon_sym___thread] = ACTIONS(1392), - [anon_sym_const] = ACTIONS(1392), - [anon_sym_constexpr] = ACTIONS(1392), - [anon_sym_volatile] = ACTIONS(1392), - [anon_sym_restrict] = ACTIONS(1392), - [anon_sym___restrict__] = ACTIONS(1392), - [anon_sym__Atomic] = ACTIONS(1392), - [anon_sym__Noreturn] = ACTIONS(1392), - [anon_sym_noreturn] = ACTIONS(1392), - [sym_primitive_type] = ACTIONS(1392), - [anon_sym_enum] = ACTIONS(1392), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_union] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1392), - [anon_sym_switch] = ACTIONS(1392), - [anon_sym_case] = ACTIONS(1392), - [anon_sym_default] = ACTIONS(1392), - [anon_sym_while] = ACTIONS(1392), - [anon_sym_do] = ACTIONS(1392), - [anon_sym_for] = ACTIONS(1392), - [anon_sym_return] = ACTIONS(1392), - [anon_sym_break] = ACTIONS(1392), - [anon_sym_continue] = ACTIONS(1392), - [anon_sym_goto] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(1394), - [anon_sym_PLUS_PLUS] = ACTIONS(1394), - [anon_sym_sizeof] = ACTIONS(1392), - [anon_sym_offsetof] = ACTIONS(1392), - [anon_sym__Generic] = ACTIONS(1392), - [anon_sym_asm] = ACTIONS(1392), - [anon_sym___asm__] = ACTIONS(1392), - [sym_number_literal] = ACTIONS(1394), - [anon_sym_L_SQUOTE] = ACTIONS(1394), - [anon_sym_u_SQUOTE] = ACTIONS(1394), - [anon_sym_U_SQUOTE] = ACTIONS(1394), - [anon_sym_u8_SQUOTE] = ACTIONS(1394), - [anon_sym_SQUOTE] = ACTIONS(1394), - [anon_sym_L_DQUOTE] = ACTIONS(1394), - [anon_sym_u_DQUOTE] = ACTIONS(1394), - [anon_sym_U_DQUOTE] = ACTIONS(1394), - [anon_sym_u8_DQUOTE] = ACTIONS(1394), - [anon_sym_DQUOTE] = ACTIONS(1394), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [anon_sym_NULL] = ACTIONS(1392), - [anon_sym_nullptr] = ACTIONS(1392), - [sym_comment] = ACTIONS(3), - }, - [506] = { - [ts_builtin_sym_end] = ACTIONS(1428), - [sym_identifier] = ACTIONS(1426), - [aux_sym_preproc_include_token1] = ACTIONS(1426), - [aux_sym_preproc_def_token1] = ACTIONS(1426), - [aux_sym_preproc_if_token1] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), - [sym_preproc_directive] = ACTIONS(1426), - [anon_sym_LPAREN2] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_typedef] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym___attribute__] = ACTIONS(1426), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), - [anon_sym___declspec] = ACTIONS(1426), - [anon_sym___cdecl] = ACTIONS(1426), - [anon_sym___clrcall] = ACTIONS(1426), - [anon_sym___stdcall] = ACTIONS(1426), - [anon_sym___fastcall] = ACTIONS(1426), - [anon_sym___thiscall] = ACTIONS(1426), - [anon_sym___vectorcall] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_signed] = ACTIONS(1426), - [anon_sym_unsigned] = ACTIONS(1426), - [anon_sym_long] = ACTIONS(1426), - [anon_sym_short] = ACTIONS(1426), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_auto] = ACTIONS(1426), - [anon_sym_register] = ACTIONS(1426), - [anon_sym_inline] = ACTIONS(1426), - [anon_sym_thread_local] = ACTIONS(1426), - [anon_sym___thread] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_constexpr] = ACTIONS(1426), - [anon_sym_volatile] = ACTIONS(1426), - [anon_sym_restrict] = ACTIONS(1426), - [anon_sym___restrict__] = ACTIONS(1426), - [anon_sym__Atomic] = ACTIONS(1426), - [anon_sym__Noreturn] = ACTIONS(1426), - [anon_sym_noreturn] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(1426), - [anon_sym_enum] = ACTIONS(1426), - [anon_sym_struct] = ACTIONS(1426), - [anon_sym_union] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_switch] = ACTIONS(1426), - [anon_sym_case] = ACTIONS(1426), - [anon_sym_default] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_do] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_goto] = ACTIONS(1426), - [anon_sym_DASH_DASH] = ACTIONS(1428), - [anon_sym_PLUS_PLUS] = ACTIONS(1428), - [anon_sym_sizeof] = ACTIONS(1426), - [anon_sym_offsetof] = ACTIONS(1426), - [anon_sym__Generic] = ACTIONS(1426), - [anon_sym_asm] = ACTIONS(1426), - [anon_sym___asm__] = ACTIONS(1426), - [sym_number_literal] = ACTIONS(1428), - [anon_sym_L_SQUOTE] = ACTIONS(1428), - [anon_sym_u_SQUOTE] = ACTIONS(1428), - [anon_sym_U_SQUOTE] = ACTIONS(1428), - [anon_sym_u8_SQUOTE] = ACTIONS(1428), - [anon_sym_SQUOTE] = ACTIONS(1428), - [anon_sym_L_DQUOTE] = ACTIONS(1428), - [anon_sym_u_DQUOTE] = ACTIONS(1428), - [anon_sym_U_DQUOTE] = ACTIONS(1428), - [anon_sym_u8_DQUOTE] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [sym_true] = ACTIONS(1426), - [sym_false] = ACTIONS(1426), - [anon_sym_NULL] = ACTIONS(1426), - [anon_sym_nullptr] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - }, - [507] = { - [ts_builtin_sym_end] = ACTIONS(1390), - [sym_identifier] = ACTIONS(1388), - [aux_sym_preproc_include_token1] = ACTIONS(1388), - [aux_sym_preproc_def_token1] = ACTIONS(1388), - [aux_sym_preproc_if_token1] = ACTIONS(1388), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1388), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1388), - [sym_preproc_directive] = ACTIONS(1388), - [anon_sym_LPAREN2] = ACTIONS(1390), - [anon_sym_BANG] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1388), - [anon_sym_PLUS] = ACTIONS(1388), - [anon_sym_STAR] = ACTIONS(1390), - [anon_sym_AMP] = ACTIONS(1390), - [anon_sym_typedef] = ACTIONS(1388), - [anon_sym_extern] = ACTIONS(1388), - [anon_sym___attribute__] = ACTIONS(1388), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1390), - [anon_sym___declspec] = ACTIONS(1388), - [anon_sym___cdecl] = ACTIONS(1388), - [anon_sym___clrcall] = ACTIONS(1388), - [anon_sym___stdcall] = ACTIONS(1388), - [anon_sym___fastcall] = ACTIONS(1388), - [anon_sym___thiscall] = ACTIONS(1388), - [anon_sym___vectorcall] = ACTIONS(1388), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_signed] = ACTIONS(1388), - [anon_sym_unsigned] = ACTIONS(1388), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_short] = ACTIONS(1388), - [anon_sym_static] = ACTIONS(1388), - [anon_sym_auto] = ACTIONS(1388), - [anon_sym_register] = ACTIONS(1388), - [anon_sym_inline] = ACTIONS(1388), - [anon_sym_thread_local] = ACTIONS(1388), - [anon_sym___thread] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1388), - [anon_sym_constexpr] = ACTIONS(1388), - [anon_sym_volatile] = ACTIONS(1388), - [anon_sym_restrict] = ACTIONS(1388), - [anon_sym___restrict__] = ACTIONS(1388), - [anon_sym__Atomic] = ACTIONS(1388), - [anon_sym__Noreturn] = ACTIONS(1388), - [anon_sym_noreturn] = ACTIONS(1388), - [sym_primitive_type] = ACTIONS(1388), - [anon_sym_enum] = ACTIONS(1388), - [anon_sym_struct] = ACTIONS(1388), - [anon_sym_union] = ACTIONS(1388), - [anon_sym_if] = ACTIONS(1388), - [anon_sym_switch] = ACTIONS(1388), - [anon_sym_case] = ACTIONS(1388), - [anon_sym_default] = ACTIONS(1388), - [anon_sym_while] = ACTIONS(1388), - [anon_sym_do] = ACTIONS(1388), - [anon_sym_for] = ACTIONS(1388), - [anon_sym_return] = ACTIONS(1388), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1388), - [anon_sym_goto] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1390), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1388), - [anon_sym_offsetof] = ACTIONS(1388), - [anon_sym__Generic] = ACTIONS(1388), - [anon_sym_asm] = ACTIONS(1388), - [anon_sym___asm__] = ACTIONS(1388), - [sym_number_literal] = ACTIONS(1390), - [anon_sym_L_SQUOTE] = ACTIONS(1390), - [anon_sym_u_SQUOTE] = ACTIONS(1390), - [anon_sym_U_SQUOTE] = ACTIONS(1390), - [anon_sym_u8_SQUOTE] = ACTIONS(1390), - [anon_sym_SQUOTE] = ACTIONS(1390), - [anon_sym_L_DQUOTE] = ACTIONS(1390), - [anon_sym_u_DQUOTE] = ACTIONS(1390), - [anon_sym_U_DQUOTE] = ACTIONS(1390), - [anon_sym_u8_DQUOTE] = ACTIONS(1390), - [anon_sym_DQUOTE] = ACTIONS(1390), - [sym_true] = ACTIONS(1388), - [sym_false] = ACTIONS(1388), - [anon_sym_NULL] = ACTIONS(1388), - [anon_sym_nullptr] = ACTIONS(1388), - [sym_comment] = ACTIONS(3), - }, - [508] = { - [ts_builtin_sym_end] = ACTIONS(1370), - [sym_identifier] = ACTIONS(1368), - [aux_sym_preproc_include_token1] = ACTIONS(1368), - [aux_sym_preproc_def_token1] = ACTIONS(1368), - [aux_sym_preproc_if_token1] = ACTIONS(1368), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1368), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1368), - [sym_preproc_directive] = ACTIONS(1368), - [anon_sym_LPAREN2] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_typedef] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym___attribute__] = ACTIONS(1368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1370), - [anon_sym___declspec] = ACTIONS(1368), - [anon_sym___cdecl] = ACTIONS(1368), - [anon_sym___clrcall] = ACTIONS(1368), - [anon_sym___stdcall] = ACTIONS(1368), - [anon_sym___fastcall] = ACTIONS(1368), - [anon_sym___thiscall] = ACTIONS(1368), - [anon_sym___vectorcall] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_signed] = ACTIONS(1368), - [anon_sym_unsigned] = ACTIONS(1368), - [anon_sym_long] = ACTIONS(1368), - [anon_sym_short] = ACTIONS(1368), - [anon_sym_static] = ACTIONS(1368), - [anon_sym_auto] = ACTIONS(1368), - [anon_sym_register] = ACTIONS(1368), - [anon_sym_inline] = ACTIONS(1368), - [anon_sym_thread_local] = ACTIONS(1368), - [anon_sym___thread] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_constexpr] = ACTIONS(1368), - [anon_sym_volatile] = ACTIONS(1368), - [anon_sym_restrict] = ACTIONS(1368), - [anon_sym___restrict__] = ACTIONS(1368), - [anon_sym__Atomic] = ACTIONS(1368), - [anon_sym__Noreturn] = ACTIONS(1368), - [anon_sym_noreturn] = ACTIONS(1368), - [sym_primitive_type] = ACTIONS(1368), - [anon_sym_enum] = ACTIONS(1368), - [anon_sym_struct] = ACTIONS(1368), - [anon_sym_union] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_switch] = ACTIONS(1368), - [anon_sym_case] = ACTIONS(1368), - [anon_sym_default] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_goto] = ACTIONS(1368), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_sizeof] = ACTIONS(1368), - [anon_sym_offsetof] = ACTIONS(1368), - [anon_sym__Generic] = ACTIONS(1368), - [anon_sym_asm] = ACTIONS(1368), - [anon_sym___asm__] = ACTIONS(1368), - [sym_number_literal] = ACTIONS(1370), - [anon_sym_L_SQUOTE] = ACTIONS(1370), - [anon_sym_u_SQUOTE] = ACTIONS(1370), - [anon_sym_U_SQUOTE] = ACTIONS(1370), - [anon_sym_u8_SQUOTE] = ACTIONS(1370), - [anon_sym_SQUOTE] = ACTIONS(1370), - [anon_sym_L_DQUOTE] = ACTIONS(1370), - [anon_sym_u_DQUOTE] = ACTIONS(1370), - [anon_sym_U_DQUOTE] = ACTIONS(1370), - [anon_sym_u8_DQUOTE] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [sym_true] = ACTIONS(1368), - [sym_false] = ACTIONS(1368), - [anon_sym_NULL] = ACTIONS(1368), - [anon_sym_nullptr] = ACTIONS(1368), - [sym_comment] = ACTIONS(3), - }, - [509] = { - [ts_builtin_sym_end] = ACTIONS(1424), - [sym_identifier] = ACTIONS(1422), - [aux_sym_preproc_include_token1] = ACTIONS(1422), - [aux_sym_preproc_def_token1] = ACTIONS(1422), - [aux_sym_preproc_if_token1] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), - [sym_preproc_directive] = ACTIONS(1422), - [anon_sym_LPAREN2] = ACTIONS(1424), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_TILDE] = ACTIONS(1424), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1424), - [anon_sym_typedef] = ACTIONS(1422), - [anon_sym_extern] = ACTIONS(1422), - [anon_sym___attribute__] = ACTIONS(1422), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym___declspec] = ACTIONS(1422), - [anon_sym___cdecl] = ACTIONS(1422), - [anon_sym___clrcall] = ACTIONS(1422), - [anon_sym___stdcall] = ACTIONS(1422), - [anon_sym___fastcall] = ACTIONS(1422), - [anon_sym___thiscall] = ACTIONS(1422), - [anon_sym___vectorcall] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_signed] = ACTIONS(1422), - [anon_sym_unsigned] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_short] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_auto] = ACTIONS(1422), - [anon_sym_register] = ACTIONS(1422), - [anon_sym_inline] = ACTIONS(1422), - [anon_sym_thread_local] = ACTIONS(1422), - [anon_sym___thread] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_constexpr] = ACTIONS(1422), - [anon_sym_volatile] = ACTIONS(1422), - [anon_sym_restrict] = ACTIONS(1422), - [anon_sym___restrict__] = ACTIONS(1422), - [anon_sym__Atomic] = ACTIONS(1422), - [anon_sym__Noreturn] = ACTIONS(1422), - [anon_sym_noreturn] = ACTIONS(1422), - [sym_primitive_type] = ACTIONS(1422), - [anon_sym_enum] = ACTIONS(1422), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_union] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_case] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_do] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_goto] = ACTIONS(1422), - [anon_sym_DASH_DASH] = ACTIONS(1424), - [anon_sym_PLUS_PLUS] = ACTIONS(1424), - [anon_sym_sizeof] = ACTIONS(1422), - [anon_sym_offsetof] = ACTIONS(1422), - [anon_sym__Generic] = ACTIONS(1422), - [anon_sym_asm] = ACTIONS(1422), - [anon_sym___asm__] = ACTIONS(1422), - [sym_number_literal] = ACTIONS(1424), - [anon_sym_L_SQUOTE] = ACTIONS(1424), - [anon_sym_u_SQUOTE] = ACTIONS(1424), - [anon_sym_U_SQUOTE] = ACTIONS(1424), - [anon_sym_u8_SQUOTE] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_L_DQUOTE] = ACTIONS(1424), - [anon_sym_u_DQUOTE] = ACTIONS(1424), - [anon_sym_U_DQUOTE] = ACTIONS(1424), - [anon_sym_u8_DQUOTE] = ACTIONS(1424), - [anon_sym_DQUOTE] = ACTIONS(1424), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [anon_sym_NULL] = ACTIONS(1422), - [anon_sym_nullptr] = ACTIONS(1422), + [424] = { + [sym_identifier] = ACTIONS(1300), + [aux_sym_preproc_include_token1] = ACTIONS(1300), + [aux_sym_preproc_def_token1] = ACTIONS(1300), + [aux_sym_preproc_if_token1] = ACTIONS(1300), + [aux_sym_preproc_if_token2] = ACTIONS(1300), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), + [sym_preproc_directive] = ACTIONS(1300), + [anon_sym_LPAREN2] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1302), + [anon_sym_TILDE] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym___extension__] = ACTIONS(1300), + [anon_sym_typedef] = ACTIONS(1300), + [anon_sym_extern] = ACTIONS(1300), + [anon_sym___attribute__] = ACTIONS(1300), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), + [anon_sym___declspec] = ACTIONS(1300), + [anon_sym___cdecl] = ACTIONS(1300), + [anon_sym___clrcall] = ACTIONS(1300), + [anon_sym___stdcall] = ACTIONS(1300), + [anon_sym___fastcall] = ACTIONS(1300), + [anon_sym___thiscall] = ACTIONS(1300), + [anon_sym___vectorcall] = ACTIONS(1300), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_signed] = ACTIONS(1300), + [anon_sym_unsigned] = ACTIONS(1300), + [anon_sym_long] = ACTIONS(1300), + [anon_sym_short] = ACTIONS(1300), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_auto] = ACTIONS(1300), + [anon_sym_register] = ACTIONS(1300), + [anon_sym_inline] = ACTIONS(1300), + [anon_sym___inline] = ACTIONS(1300), + [anon_sym___inline__] = ACTIONS(1300), + [anon_sym___forceinline] = ACTIONS(1300), + [anon_sym_thread_local] = ACTIONS(1300), + [anon_sym___thread] = ACTIONS(1300), + [anon_sym_const] = ACTIONS(1300), + [anon_sym_constexpr] = ACTIONS(1300), + [anon_sym_volatile] = ACTIONS(1300), + [anon_sym_restrict] = ACTIONS(1300), + [anon_sym___restrict__] = ACTIONS(1300), + [anon_sym__Atomic] = ACTIONS(1300), + [anon_sym__Noreturn] = ACTIONS(1300), + [anon_sym_noreturn] = ACTIONS(1300), + [sym_primitive_type] = ACTIONS(1300), + [anon_sym_enum] = ACTIONS(1300), + [anon_sym_struct] = ACTIONS(1300), + [anon_sym_union] = ACTIONS(1300), + [anon_sym_if] = ACTIONS(1300), + [anon_sym_else] = ACTIONS(1300), + [anon_sym_switch] = ACTIONS(1300), + [anon_sym_case] = ACTIONS(1300), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_while] = ACTIONS(1300), + [anon_sym_do] = ACTIONS(1300), + [anon_sym_for] = ACTIONS(1300), + [anon_sym_return] = ACTIONS(1300), + [anon_sym_break] = ACTIONS(1300), + [anon_sym_continue] = ACTIONS(1300), + [anon_sym_goto] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_sizeof] = ACTIONS(1300), + [anon_sym___alignof__] = ACTIONS(1300), + [anon_sym___alignof] = ACTIONS(1300), + [anon_sym__alignof] = ACTIONS(1300), + [anon_sym_alignof] = ACTIONS(1300), + [anon_sym__Alignof] = ACTIONS(1300), + [anon_sym_offsetof] = ACTIONS(1300), + [anon_sym___builtin_va_arg] = ACTIONS(1300), + [anon_sym__Generic] = ACTIONS(1300), + [anon_sym_asm] = ACTIONS(1300), + [anon_sym___asm__] = ACTIONS(1300), + [sym_number_literal] = ACTIONS(1302), + [anon_sym_L_SQUOTE] = ACTIONS(1302), + [anon_sym_u_SQUOTE] = ACTIONS(1302), + [anon_sym_U_SQUOTE] = ACTIONS(1302), + [anon_sym_u8_SQUOTE] = ACTIONS(1302), + [anon_sym_SQUOTE] = ACTIONS(1302), + [anon_sym_L_DQUOTE] = ACTIONS(1302), + [anon_sym_u_DQUOTE] = ACTIONS(1302), + [anon_sym_U_DQUOTE] = ACTIONS(1302), + [anon_sym_u8_DQUOTE] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1302), + [sym_true] = ACTIONS(1300), + [sym_false] = ACTIONS(1300), + [anon_sym_NULL] = ACTIONS(1300), + [anon_sym_nullptr] = ACTIONS(1300), [sym_comment] = ACTIONS(3), }, - [510] = { - [ts_builtin_sym_end] = ACTIONS(1420), - [sym_identifier] = ACTIONS(1418), - [aux_sym_preproc_include_token1] = ACTIONS(1418), - [aux_sym_preproc_def_token1] = ACTIONS(1418), - [aux_sym_preproc_if_token1] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), - [sym_preproc_directive] = ACTIONS(1418), - [anon_sym_LPAREN2] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1420), - [anon_sym_typedef] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym___attribute__] = ACTIONS(1418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), - [anon_sym___declspec] = ACTIONS(1418), - [anon_sym___cdecl] = ACTIONS(1418), - [anon_sym___clrcall] = ACTIONS(1418), - [anon_sym___stdcall] = ACTIONS(1418), - [anon_sym___fastcall] = ACTIONS(1418), - [anon_sym___thiscall] = ACTIONS(1418), - [anon_sym___vectorcall] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_signed] = ACTIONS(1418), - [anon_sym_unsigned] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_auto] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_inline] = ACTIONS(1418), - [anon_sym_thread_local] = ACTIONS(1418), - [anon_sym___thread] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_constexpr] = ACTIONS(1418), - [anon_sym_volatile] = ACTIONS(1418), - [anon_sym_restrict] = ACTIONS(1418), - [anon_sym___restrict__] = ACTIONS(1418), - [anon_sym__Atomic] = ACTIONS(1418), - [anon_sym__Noreturn] = ACTIONS(1418), - [anon_sym_noreturn] = ACTIONS(1418), - [sym_primitive_type] = ACTIONS(1418), - [anon_sym_enum] = ACTIONS(1418), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_union] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_case] = ACTIONS(1418), - [anon_sym_default] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_goto] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_sizeof] = ACTIONS(1418), - [anon_sym_offsetof] = ACTIONS(1418), - [anon_sym__Generic] = ACTIONS(1418), - [anon_sym_asm] = ACTIONS(1418), - [anon_sym___asm__] = ACTIONS(1418), - [sym_number_literal] = ACTIONS(1420), - [anon_sym_L_SQUOTE] = ACTIONS(1420), - [anon_sym_u_SQUOTE] = ACTIONS(1420), - [anon_sym_U_SQUOTE] = ACTIONS(1420), - [anon_sym_u8_SQUOTE] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_L_DQUOTE] = ACTIONS(1420), - [anon_sym_u_DQUOTE] = ACTIONS(1420), - [anon_sym_U_DQUOTE] = ACTIONS(1420), - [anon_sym_u8_DQUOTE] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1420), - [sym_true] = ACTIONS(1418), - [sym_false] = ACTIONS(1418), - [anon_sym_NULL] = ACTIONS(1418), - [anon_sym_nullptr] = ACTIONS(1418), + [425] = { + [sym_identifier] = ACTIONS(1296), + [aux_sym_preproc_include_token1] = ACTIONS(1296), + [aux_sym_preproc_def_token1] = ACTIONS(1296), + [aux_sym_preproc_if_token1] = ACTIONS(1296), + [aux_sym_preproc_if_token2] = ACTIONS(1296), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1296), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), + [sym_preproc_directive] = ACTIONS(1296), + [anon_sym_LPAREN2] = ACTIONS(1298), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1298), + [anon_sym___extension__] = ACTIONS(1296), + [anon_sym_typedef] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1296), + [anon_sym___attribute__] = ACTIONS(1296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), + [anon_sym___declspec] = ACTIONS(1296), + [anon_sym___cdecl] = ACTIONS(1296), + [anon_sym___clrcall] = ACTIONS(1296), + [anon_sym___stdcall] = ACTIONS(1296), + [anon_sym___fastcall] = ACTIONS(1296), + [anon_sym___thiscall] = ACTIONS(1296), + [anon_sym___vectorcall] = ACTIONS(1296), + [anon_sym_LBRACE] = ACTIONS(1298), + [anon_sym_signed] = ACTIONS(1296), + [anon_sym_unsigned] = ACTIONS(1296), + [anon_sym_long] = ACTIONS(1296), + [anon_sym_short] = ACTIONS(1296), + [anon_sym_static] = ACTIONS(1296), + [anon_sym_auto] = ACTIONS(1296), + [anon_sym_register] = ACTIONS(1296), + [anon_sym_inline] = ACTIONS(1296), + [anon_sym___inline] = ACTIONS(1296), + [anon_sym___inline__] = ACTIONS(1296), + [anon_sym___forceinline] = ACTIONS(1296), + [anon_sym_thread_local] = ACTIONS(1296), + [anon_sym___thread] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_constexpr] = ACTIONS(1296), + [anon_sym_volatile] = ACTIONS(1296), + [anon_sym_restrict] = ACTIONS(1296), + [anon_sym___restrict__] = ACTIONS(1296), + [anon_sym__Atomic] = ACTIONS(1296), + [anon_sym__Noreturn] = ACTIONS(1296), + [anon_sym_noreturn] = ACTIONS(1296), + [sym_primitive_type] = ACTIONS(1296), + [anon_sym_enum] = ACTIONS(1296), + [anon_sym_struct] = ACTIONS(1296), + [anon_sym_union] = ACTIONS(1296), + [anon_sym_if] = ACTIONS(1296), + [anon_sym_else] = ACTIONS(1296), + [anon_sym_switch] = ACTIONS(1296), + [anon_sym_case] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(1296), + [anon_sym_while] = ACTIONS(1296), + [anon_sym_do] = ACTIONS(1296), + [anon_sym_for] = ACTIONS(1296), + [anon_sym_return] = ACTIONS(1296), + [anon_sym_break] = ACTIONS(1296), + [anon_sym_continue] = ACTIONS(1296), + [anon_sym_goto] = ACTIONS(1296), + [anon_sym_DASH_DASH] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_sizeof] = ACTIONS(1296), + [anon_sym___alignof__] = ACTIONS(1296), + [anon_sym___alignof] = ACTIONS(1296), + [anon_sym__alignof] = ACTIONS(1296), + [anon_sym_alignof] = ACTIONS(1296), + [anon_sym__Alignof] = ACTIONS(1296), + [anon_sym_offsetof] = ACTIONS(1296), + [anon_sym___builtin_va_arg] = ACTIONS(1296), + [anon_sym__Generic] = ACTIONS(1296), + [anon_sym_asm] = ACTIONS(1296), + [anon_sym___asm__] = ACTIONS(1296), + [sym_number_literal] = ACTIONS(1298), + [anon_sym_L_SQUOTE] = ACTIONS(1298), + [anon_sym_u_SQUOTE] = ACTIONS(1298), + [anon_sym_U_SQUOTE] = ACTIONS(1298), + [anon_sym_u8_SQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1298), + [anon_sym_L_DQUOTE] = ACTIONS(1298), + [anon_sym_u_DQUOTE] = ACTIONS(1298), + [anon_sym_U_DQUOTE] = ACTIONS(1298), + [anon_sym_u8_DQUOTE] = ACTIONS(1298), + [anon_sym_DQUOTE] = ACTIONS(1298), + [sym_true] = ACTIONS(1296), + [sym_false] = ACTIONS(1296), + [anon_sym_NULL] = ACTIONS(1296), + [anon_sym_nullptr] = ACTIONS(1296), [sym_comment] = ACTIONS(3), }, - [511] = { - [ts_builtin_sym_end] = ACTIONS(1404), - [sym_identifier] = ACTIONS(1402), - [aux_sym_preproc_include_token1] = ACTIONS(1402), - [aux_sym_preproc_def_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), - [sym_preproc_directive] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym___attribute__] = ACTIONS(1402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), - [anon_sym___declspec] = ACTIONS(1402), - [anon_sym___cdecl] = ACTIONS(1402), - [anon_sym___clrcall] = ACTIONS(1402), - [anon_sym___stdcall] = ACTIONS(1402), - [anon_sym___fastcall] = ACTIONS(1402), - [anon_sym___thiscall] = ACTIONS(1402), - [anon_sym___vectorcall] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym_thread_local] = ACTIONS(1402), - [anon_sym___thread] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_constexpr] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_restrict] = ACTIONS(1402), - [anon_sym___restrict__] = ACTIONS(1402), - [anon_sym__Atomic] = ACTIONS(1402), - [anon_sym__Noreturn] = ACTIONS(1402), - [anon_sym_noreturn] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_case] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_goto] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1402), - [anon_sym_offsetof] = ACTIONS(1402), - [anon_sym__Generic] = ACTIONS(1402), - [anon_sym_asm] = ACTIONS(1402), - [anon_sym___asm__] = ACTIONS(1402), - [sym_number_literal] = ACTIONS(1404), - [anon_sym_L_SQUOTE] = ACTIONS(1404), - [anon_sym_u_SQUOTE] = ACTIONS(1404), - [anon_sym_U_SQUOTE] = ACTIONS(1404), - [anon_sym_u8_SQUOTE] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_L_DQUOTE] = ACTIONS(1404), - [anon_sym_u_DQUOTE] = ACTIONS(1404), - [anon_sym_U_DQUOTE] = ACTIONS(1404), - [anon_sym_u8_DQUOTE] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [sym_true] = ACTIONS(1402), - [sym_false] = ACTIONS(1402), - [anon_sym_NULL] = ACTIONS(1402), - [anon_sym_nullptr] = ACTIONS(1402), + [426] = { + [sym_identifier] = ACTIONS(1292), + [aux_sym_preproc_include_token1] = ACTIONS(1292), + [aux_sym_preproc_def_token1] = ACTIONS(1292), + [aux_sym_preproc_if_token1] = ACTIONS(1292), + [aux_sym_preproc_if_token2] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), + [sym_preproc_directive] = ACTIONS(1292), + [anon_sym_LPAREN2] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_TILDE] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym___extension__] = ACTIONS(1292), + [anon_sym_typedef] = ACTIONS(1292), + [anon_sym_extern] = ACTIONS(1292), + [anon_sym___attribute__] = ACTIONS(1292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), + [anon_sym___declspec] = ACTIONS(1292), + [anon_sym___cdecl] = ACTIONS(1292), + [anon_sym___clrcall] = ACTIONS(1292), + [anon_sym___stdcall] = ACTIONS(1292), + [anon_sym___fastcall] = ACTIONS(1292), + [anon_sym___thiscall] = ACTIONS(1292), + [anon_sym___vectorcall] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_signed] = ACTIONS(1292), + [anon_sym_unsigned] = ACTIONS(1292), + [anon_sym_long] = ACTIONS(1292), + [anon_sym_short] = ACTIONS(1292), + [anon_sym_static] = ACTIONS(1292), + [anon_sym_auto] = ACTIONS(1292), + [anon_sym_register] = ACTIONS(1292), + [anon_sym_inline] = ACTIONS(1292), + [anon_sym___inline] = ACTIONS(1292), + [anon_sym___inline__] = ACTIONS(1292), + [anon_sym___forceinline] = ACTIONS(1292), + [anon_sym_thread_local] = ACTIONS(1292), + [anon_sym___thread] = ACTIONS(1292), + [anon_sym_const] = ACTIONS(1292), + [anon_sym_constexpr] = ACTIONS(1292), + [anon_sym_volatile] = ACTIONS(1292), + [anon_sym_restrict] = ACTIONS(1292), + [anon_sym___restrict__] = ACTIONS(1292), + [anon_sym__Atomic] = ACTIONS(1292), + [anon_sym__Noreturn] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [sym_primitive_type] = ACTIONS(1292), + [anon_sym_enum] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_union] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_switch] = ACTIONS(1292), + [anon_sym_case] = ACTIONS(1292), + [anon_sym_default] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_do] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_goto] = ACTIONS(1292), + [anon_sym_DASH_DASH] = ACTIONS(1294), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_sizeof] = ACTIONS(1292), + [anon_sym___alignof__] = ACTIONS(1292), + [anon_sym___alignof] = ACTIONS(1292), + [anon_sym__alignof] = ACTIONS(1292), + [anon_sym_alignof] = ACTIONS(1292), + [anon_sym__Alignof] = ACTIONS(1292), + [anon_sym_offsetof] = ACTIONS(1292), + [anon_sym___builtin_va_arg] = ACTIONS(1292), + [anon_sym__Generic] = ACTIONS(1292), + [anon_sym_asm] = ACTIONS(1292), + [anon_sym___asm__] = ACTIONS(1292), + [sym_number_literal] = ACTIONS(1294), + [anon_sym_L_SQUOTE] = ACTIONS(1294), + [anon_sym_u_SQUOTE] = ACTIONS(1294), + [anon_sym_U_SQUOTE] = ACTIONS(1294), + [anon_sym_u8_SQUOTE] = ACTIONS(1294), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_L_DQUOTE] = ACTIONS(1294), + [anon_sym_u_DQUOTE] = ACTIONS(1294), + [anon_sym_U_DQUOTE] = ACTIONS(1294), + [anon_sym_u8_DQUOTE] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [sym_true] = ACTIONS(1292), + [sym_false] = ACTIONS(1292), + [anon_sym_NULL] = ACTIONS(1292), + [anon_sym_nullptr] = ACTIONS(1292), [sym_comment] = ACTIONS(3), }, - [512] = { - [ts_builtin_sym_end] = ACTIONS(1378), - [sym_identifier] = ACTIONS(1376), - [aux_sym_preproc_include_token1] = ACTIONS(1376), - [aux_sym_preproc_def_token1] = ACTIONS(1376), - [aux_sym_preproc_if_token1] = ACTIONS(1376), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1376), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1376), - [sym_preproc_directive] = ACTIONS(1376), - [anon_sym_LPAREN2] = ACTIONS(1378), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_AMP] = ACTIONS(1378), - [anon_sym_typedef] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym___attribute__] = ACTIONS(1376), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1378), - [anon_sym___declspec] = ACTIONS(1376), - [anon_sym___cdecl] = ACTIONS(1376), - [anon_sym___clrcall] = ACTIONS(1376), - [anon_sym___stdcall] = ACTIONS(1376), - [anon_sym___fastcall] = ACTIONS(1376), - [anon_sym___thiscall] = ACTIONS(1376), - [anon_sym___vectorcall] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_signed] = ACTIONS(1376), - [anon_sym_unsigned] = ACTIONS(1376), - [anon_sym_long] = ACTIONS(1376), - [anon_sym_short] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(1376), - [anon_sym_auto] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_inline] = ACTIONS(1376), - [anon_sym_thread_local] = ACTIONS(1376), - [anon_sym___thread] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_constexpr] = ACTIONS(1376), - [anon_sym_volatile] = ACTIONS(1376), - [anon_sym_restrict] = ACTIONS(1376), - [anon_sym___restrict__] = ACTIONS(1376), - [anon_sym__Atomic] = ACTIONS(1376), - [anon_sym__Noreturn] = ACTIONS(1376), - [anon_sym_noreturn] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(1376), - [anon_sym_enum] = ACTIONS(1376), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_union] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1376), - [anon_sym_case] = ACTIONS(1376), - [anon_sym_default] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_goto] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1378), - [anon_sym_sizeof] = ACTIONS(1376), - [anon_sym_offsetof] = ACTIONS(1376), - [anon_sym__Generic] = ACTIONS(1376), - [anon_sym_asm] = ACTIONS(1376), - [anon_sym___asm__] = ACTIONS(1376), - [sym_number_literal] = ACTIONS(1378), - [anon_sym_L_SQUOTE] = ACTIONS(1378), - [anon_sym_u_SQUOTE] = ACTIONS(1378), - [anon_sym_U_SQUOTE] = ACTIONS(1378), - [anon_sym_u8_SQUOTE] = ACTIONS(1378), - [anon_sym_SQUOTE] = ACTIONS(1378), - [anon_sym_L_DQUOTE] = ACTIONS(1378), - [anon_sym_u_DQUOTE] = ACTIONS(1378), - [anon_sym_U_DQUOTE] = ACTIONS(1378), - [anon_sym_u8_DQUOTE] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [sym_true] = ACTIONS(1376), - [sym_false] = ACTIONS(1376), - [anon_sym_NULL] = ACTIONS(1376), - [anon_sym_nullptr] = ACTIONS(1376), + [427] = { + [sym_identifier] = ACTIONS(1288), + [aux_sym_preproc_include_token1] = ACTIONS(1288), + [aux_sym_preproc_def_token1] = ACTIONS(1288), + [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), + [sym_preproc_directive] = ACTIONS(1288), + [anon_sym_LPAREN2] = ACTIONS(1290), + [anon_sym_BANG] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_STAR] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(1290), + [anon_sym_SEMI] = ACTIONS(1290), + [anon_sym___extension__] = ACTIONS(1288), + [anon_sym_typedef] = ACTIONS(1288), + [anon_sym_extern] = ACTIONS(1288), + [anon_sym___attribute__] = ACTIONS(1288), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), + [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(1290), + [anon_sym_signed] = ACTIONS(1288), + [anon_sym_unsigned] = ACTIONS(1288), + [anon_sym_long] = ACTIONS(1288), + [anon_sym_short] = ACTIONS(1288), + [anon_sym_static] = ACTIONS(1288), + [anon_sym_auto] = ACTIONS(1288), + [anon_sym_register] = ACTIONS(1288), + [anon_sym_inline] = ACTIONS(1288), + [anon_sym___inline] = ACTIONS(1288), + [anon_sym___inline__] = ACTIONS(1288), + [anon_sym___forceinline] = ACTIONS(1288), + [anon_sym_thread_local] = ACTIONS(1288), + [anon_sym___thread] = ACTIONS(1288), + [anon_sym_const] = ACTIONS(1288), + [anon_sym_constexpr] = ACTIONS(1288), + [anon_sym_volatile] = ACTIONS(1288), + [anon_sym_restrict] = ACTIONS(1288), + [anon_sym___restrict__] = ACTIONS(1288), + [anon_sym__Atomic] = ACTIONS(1288), + [anon_sym__Noreturn] = ACTIONS(1288), + [anon_sym_noreturn] = 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(1290), + [anon_sym_PLUS_PLUS] = ACTIONS(1290), + [anon_sym_sizeof] = ACTIONS(1288), + [anon_sym___alignof__] = ACTIONS(1288), + [anon_sym___alignof] = ACTIONS(1288), + [anon_sym__alignof] = ACTIONS(1288), + [anon_sym_alignof] = ACTIONS(1288), + [anon_sym__Alignof] = ACTIONS(1288), + [anon_sym_offsetof] = ACTIONS(1288), + [anon_sym___builtin_va_arg] = ACTIONS(1288), + [anon_sym__Generic] = ACTIONS(1288), + [anon_sym_asm] = ACTIONS(1288), + [anon_sym___asm__] = ACTIONS(1288), + [sym_number_literal] = ACTIONS(1290), + [anon_sym_L_SQUOTE] = ACTIONS(1290), + [anon_sym_u_SQUOTE] = ACTIONS(1290), + [anon_sym_U_SQUOTE] = ACTIONS(1290), + [anon_sym_u8_SQUOTE] = ACTIONS(1290), + [anon_sym_SQUOTE] = ACTIONS(1290), + [anon_sym_L_DQUOTE] = ACTIONS(1290), + [anon_sym_u_DQUOTE] = ACTIONS(1290), + [anon_sym_U_DQUOTE] = ACTIONS(1290), + [anon_sym_u8_DQUOTE] = ACTIONS(1290), + [anon_sym_DQUOTE] = ACTIONS(1290), + [sym_true] = ACTIONS(1288), + [sym_false] = ACTIONS(1288), + [anon_sym_NULL] = ACTIONS(1288), + [anon_sym_nullptr] = ACTIONS(1288), [sym_comment] = ACTIONS(3), }, - [513] = { - [ts_builtin_sym_end] = ACTIONS(1386), - [sym_identifier] = ACTIONS(1384), - [aux_sym_preproc_include_token1] = ACTIONS(1384), - [aux_sym_preproc_def_token1] = ACTIONS(1384), - [aux_sym_preproc_if_token1] = ACTIONS(1384), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1384), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1384), - [sym_preproc_directive] = ACTIONS(1384), - [anon_sym_LPAREN2] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1384), - [anon_sym_STAR] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_typedef] = ACTIONS(1384), - [anon_sym_extern] = ACTIONS(1384), - [anon_sym___attribute__] = ACTIONS(1384), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1386), - [anon_sym___declspec] = ACTIONS(1384), - [anon_sym___cdecl] = ACTIONS(1384), - [anon_sym___clrcall] = ACTIONS(1384), - [anon_sym___stdcall] = ACTIONS(1384), - [anon_sym___fastcall] = ACTIONS(1384), - [anon_sym___thiscall] = ACTIONS(1384), - [anon_sym___vectorcall] = ACTIONS(1384), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_long] = ACTIONS(1384), - [anon_sym_short] = ACTIONS(1384), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_auto] = ACTIONS(1384), - [anon_sym_register] = ACTIONS(1384), - [anon_sym_inline] = ACTIONS(1384), - [anon_sym_thread_local] = ACTIONS(1384), - [anon_sym___thread] = ACTIONS(1384), - [anon_sym_const] = ACTIONS(1384), - [anon_sym_constexpr] = ACTIONS(1384), - [anon_sym_volatile] = ACTIONS(1384), - [anon_sym_restrict] = ACTIONS(1384), - [anon_sym___restrict__] = ACTIONS(1384), - [anon_sym__Atomic] = ACTIONS(1384), - [anon_sym__Noreturn] = ACTIONS(1384), - [anon_sym_noreturn] = ACTIONS(1384), - [sym_primitive_type] = ACTIONS(1384), - [anon_sym_enum] = ACTIONS(1384), - [anon_sym_struct] = ACTIONS(1384), - [anon_sym_union] = ACTIONS(1384), - [anon_sym_if] = ACTIONS(1384), - [anon_sym_switch] = ACTIONS(1384), - [anon_sym_case] = ACTIONS(1384), - [anon_sym_default] = ACTIONS(1384), - [anon_sym_while] = ACTIONS(1384), - [anon_sym_do] = ACTIONS(1384), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1384), - [anon_sym_break] = ACTIONS(1384), - [anon_sym_continue] = ACTIONS(1384), - [anon_sym_goto] = ACTIONS(1384), - [anon_sym_DASH_DASH] = ACTIONS(1386), - [anon_sym_PLUS_PLUS] = ACTIONS(1386), - [anon_sym_sizeof] = ACTIONS(1384), - [anon_sym_offsetof] = ACTIONS(1384), - [anon_sym__Generic] = ACTIONS(1384), - [anon_sym_asm] = ACTIONS(1384), - [anon_sym___asm__] = ACTIONS(1384), - [sym_number_literal] = ACTIONS(1386), - [anon_sym_L_SQUOTE] = ACTIONS(1386), - [anon_sym_u_SQUOTE] = ACTIONS(1386), - [anon_sym_U_SQUOTE] = ACTIONS(1386), - [anon_sym_u8_SQUOTE] = ACTIONS(1386), - [anon_sym_SQUOTE] = ACTIONS(1386), - [anon_sym_L_DQUOTE] = ACTIONS(1386), - [anon_sym_u_DQUOTE] = ACTIONS(1386), - [anon_sym_U_DQUOTE] = ACTIONS(1386), - [anon_sym_u8_DQUOTE] = ACTIONS(1386), - [anon_sym_DQUOTE] = ACTIONS(1386), - [sym_true] = ACTIONS(1384), - [sym_false] = ACTIONS(1384), - [anon_sym_NULL] = ACTIONS(1384), - [anon_sym_nullptr] = ACTIONS(1384), + [428] = { + [sym_identifier] = ACTIONS(1558), + [aux_sym_preproc_include_token1] = ACTIONS(1558), + [aux_sym_preproc_def_token1] = ACTIONS(1558), + [aux_sym_preproc_if_token1] = ACTIONS(1558), + [aux_sym_preproc_if_token2] = ACTIONS(1558), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1558), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1558), + [sym_preproc_directive] = ACTIONS(1558), + [anon_sym_LPAREN2] = ACTIONS(1560), + [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_DASH] = ACTIONS(1558), + [anon_sym_PLUS] = ACTIONS(1558), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_AMP] = ACTIONS(1560), + [anon_sym_SEMI] = ACTIONS(1560), + [anon_sym___extension__] = ACTIONS(1558), + [anon_sym_typedef] = ACTIONS(1558), + [anon_sym_extern] = ACTIONS(1558), + [anon_sym___attribute__] = ACTIONS(1558), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1560), + [anon_sym___declspec] = ACTIONS(1558), + [anon_sym___cdecl] = ACTIONS(1558), + [anon_sym___clrcall] = ACTIONS(1558), + [anon_sym___stdcall] = ACTIONS(1558), + [anon_sym___fastcall] = ACTIONS(1558), + [anon_sym___thiscall] = ACTIONS(1558), + [anon_sym___vectorcall] = ACTIONS(1558), + [anon_sym_LBRACE] = ACTIONS(1560), + [anon_sym_signed] = ACTIONS(1558), + [anon_sym_unsigned] = ACTIONS(1558), + [anon_sym_long] = ACTIONS(1558), + [anon_sym_short] = ACTIONS(1558), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_auto] = ACTIONS(1558), + [anon_sym_register] = ACTIONS(1558), + [anon_sym_inline] = ACTIONS(1558), + [anon_sym___inline] = ACTIONS(1558), + [anon_sym___inline__] = ACTIONS(1558), + [anon_sym___forceinline] = ACTIONS(1558), + [anon_sym_thread_local] = ACTIONS(1558), + [anon_sym___thread] = ACTIONS(1558), + [anon_sym_const] = ACTIONS(1558), + [anon_sym_constexpr] = ACTIONS(1558), + [anon_sym_volatile] = ACTIONS(1558), + [anon_sym_restrict] = ACTIONS(1558), + [anon_sym___restrict__] = ACTIONS(1558), + [anon_sym__Atomic] = ACTIONS(1558), + [anon_sym__Noreturn] = ACTIONS(1558), + [anon_sym_noreturn] = ACTIONS(1558), + [sym_primitive_type] = ACTIONS(1558), + [anon_sym_enum] = ACTIONS(1558), + [anon_sym_struct] = ACTIONS(1558), + [anon_sym_union] = ACTIONS(1558), + [anon_sym_if] = ACTIONS(1558), + [anon_sym_switch] = ACTIONS(1558), + [anon_sym_case] = ACTIONS(1558), + [anon_sym_default] = ACTIONS(1558), + [anon_sym_while] = ACTIONS(1558), + [anon_sym_do] = ACTIONS(1558), + [anon_sym_for] = ACTIONS(1558), + [anon_sym_return] = ACTIONS(1558), + [anon_sym_break] = ACTIONS(1558), + [anon_sym_continue] = ACTIONS(1558), + [anon_sym_goto] = ACTIONS(1558), + [anon_sym_DASH_DASH] = ACTIONS(1560), + [anon_sym_PLUS_PLUS] = ACTIONS(1560), + [anon_sym_sizeof] = ACTIONS(1558), + [anon_sym___alignof__] = ACTIONS(1558), + [anon_sym___alignof] = ACTIONS(1558), + [anon_sym__alignof] = ACTIONS(1558), + [anon_sym_alignof] = ACTIONS(1558), + [anon_sym__Alignof] = ACTIONS(1558), + [anon_sym_offsetof] = ACTIONS(1558), + [anon_sym___builtin_va_arg] = ACTIONS(1558), + [anon_sym__Generic] = ACTIONS(1558), + [anon_sym_asm] = ACTIONS(1558), + [anon_sym___asm__] = ACTIONS(1558), + [sym_number_literal] = ACTIONS(1560), + [anon_sym_L_SQUOTE] = ACTIONS(1560), + [anon_sym_u_SQUOTE] = ACTIONS(1560), + [anon_sym_U_SQUOTE] = ACTIONS(1560), + [anon_sym_u8_SQUOTE] = ACTIONS(1560), + [anon_sym_SQUOTE] = ACTIONS(1560), + [anon_sym_L_DQUOTE] = ACTIONS(1560), + [anon_sym_u_DQUOTE] = ACTIONS(1560), + [anon_sym_U_DQUOTE] = ACTIONS(1560), + [anon_sym_u8_DQUOTE] = ACTIONS(1560), + [anon_sym_DQUOTE] = ACTIONS(1560), + [sym_true] = ACTIONS(1558), + [sym_false] = ACTIONS(1558), + [anon_sym_NULL] = ACTIONS(1558), + [anon_sym_nullptr] = ACTIONS(1558), [sym_comment] = ACTIONS(3), }, - [514] = { - [ts_builtin_sym_end] = ACTIONS(1440), - [sym_identifier] = ACTIONS(1438), - [aux_sym_preproc_include_token1] = ACTIONS(1438), - [aux_sym_preproc_def_token1] = ACTIONS(1438), - [aux_sym_preproc_if_token1] = ACTIONS(1438), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), - [sym_preproc_directive] = ACTIONS(1438), - [anon_sym_LPAREN2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1440), - [anon_sym_TILDE] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1440), - [anon_sym_typedef] = ACTIONS(1438), - [anon_sym_extern] = ACTIONS(1438), - [anon_sym___attribute__] = ACTIONS(1438), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1440), - [anon_sym___declspec] = ACTIONS(1438), - [anon_sym___cdecl] = ACTIONS(1438), - [anon_sym___clrcall] = ACTIONS(1438), - [anon_sym___stdcall] = ACTIONS(1438), - [anon_sym___fastcall] = ACTIONS(1438), - [anon_sym___thiscall] = ACTIONS(1438), - [anon_sym___vectorcall] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_signed] = ACTIONS(1438), - [anon_sym_unsigned] = ACTIONS(1438), - [anon_sym_long] = ACTIONS(1438), - [anon_sym_short] = ACTIONS(1438), - [anon_sym_static] = ACTIONS(1438), - [anon_sym_auto] = ACTIONS(1438), - [anon_sym_register] = ACTIONS(1438), - [anon_sym_inline] = ACTIONS(1438), - [anon_sym_thread_local] = ACTIONS(1438), - [anon_sym___thread] = ACTIONS(1438), - [anon_sym_const] = ACTIONS(1438), - [anon_sym_constexpr] = ACTIONS(1438), - [anon_sym_volatile] = ACTIONS(1438), - [anon_sym_restrict] = ACTIONS(1438), - [anon_sym___restrict__] = ACTIONS(1438), - [anon_sym__Atomic] = ACTIONS(1438), - [anon_sym__Noreturn] = ACTIONS(1438), - [anon_sym_noreturn] = ACTIONS(1438), - [sym_primitive_type] = ACTIONS(1438), - [anon_sym_enum] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1438), - [anon_sym_union] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1438), - [anon_sym_switch] = ACTIONS(1438), - [anon_sym_case] = ACTIONS(1438), - [anon_sym_default] = ACTIONS(1438), - [anon_sym_while] = ACTIONS(1438), - [anon_sym_do] = ACTIONS(1438), - [anon_sym_for] = ACTIONS(1438), - [anon_sym_return] = ACTIONS(1438), - [anon_sym_break] = ACTIONS(1438), - [anon_sym_continue] = ACTIONS(1438), - [anon_sym_goto] = ACTIONS(1438), - [anon_sym_DASH_DASH] = ACTIONS(1440), - [anon_sym_PLUS_PLUS] = ACTIONS(1440), - [anon_sym_sizeof] = ACTIONS(1438), - [anon_sym_offsetof] = ACTIONS(1438), - [anon_sym__Generic] = ACTIONS(1438), - [anon_sym_asm] = ACTIONS(1438), - [anon_sym___asm__] = ACTIONS(1438), - [sym_number_literal] = ACTIONS(1440), - [anon_sym_L_SQUOTE] = ACTIONS(1440), - [anon_sym_u_SQUOTE] = ACTIONS(1440), - [anon_sym_U_SQUOTE] = ACTIONS(1440), - [anon_sym_u8_SQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1440), - [anon_sym_L_DQUOTE] = ACTIONS(1440), - [anon_sym_u_DQUOTE] = ACTIONS(1440), - [anon_sym_U_DQUOTE] = ACTIONS(1440), - [anon_sym_u8_DQUOTE] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1440), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [anon_sym_NULL] = ACTIONS(1438), - [anon_sym_nullptr] = ACTIONS(1438), + [429] = { + [sym_identifier] = ACTIONS(1558), + [aux_sym_preproc_include_token1] = ACTIONS(1558), + [aux_sym_preproc_def_token1] = ACTIONS(1558), + [aux_sym_preproc_if_token1] = ACTIONS(1558), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1558), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1558), + [sym_preproc_directive] = ACTIONS(1558), + [anon_sym_LPAREN2] = ACTIONS(1560), + [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_DASH] = ACTIONS(1558), + [anon_sym_PLUS] = ACTIONS(1558), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_AMP] = ACTIONS(1560), + [anon_sym_SEMI] = ACTIONS(1560), + [anon_sym___extension__] = ACTIONS(1558), + [anon_sym_typedef] = ACTIONS(1558), + [anon_sym_extern] = ACTIONS(1558), + [anon_sym___attribute__] = ACTIONS(1558), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1560), + [anon_sym___declspec] = ACTIONS(1558), + [anon_sym___cdecl] = ACTIONS(1558), + [anon_sym___clrcall] = ACTIONS(1558), + [anon_sym___stdcall] = ACTIONS(1558), + [anon_sym___fastcall] = ACTIONS(1558), + [anon_sym___thiscall] = ACTIONS(1558), + [anon_sym___vectorcall] = ACTIONS(1558), + [anon_sym_LBRACE] = ACTIONS(1560), + [anon_sym_RBRACE] = ACTIONS(1560), + [anon_sym_signed] = ACTIONS(1558), + [anon_sym_unsigned] = ACTIONS(1558), + [anon_sym_long] = ACTIONS(1558), + [anon_sym_short] = ACTIONS(1558), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_auto] = ACTIONS(1558), + [anon_sym_register] = ACTIONS(1558), + [anon_sym_inline] = ACTIONS(1558), + [anon_sym___inline] = ACTIONS(1558), + [anon_sym___inline__] = ACTIONS(1558), + [anon_sym___forceinline] = ACTIONS(1558), + [anon_sym_thread_local] = ACTIONS(1558), + [anon_sym___thread] = ACTIONS(1558), + [anon_sym_const] = ACTIONS(1558), + [anon_sym_constexpr] = ACTIONS(1558), + [anon_sym_volatile] = ACTIONS(1558), + [anon_sym_restrict] = ACTIONS(1558), + [anon_sym___restrict__] = ACTIONS(1558), + [anon_sym__Atomic] = ACTIONS(1558), + [anon_sym__Noreturn] = ACTIONS(1558), + [anon_sym_noreturn] = ACTIONS(1558), + [sym_primitive_type] = ACTIONS(1558), + [anon_sym_enum] = ACTIONS(1558), + [anon_sym_struct] = ACTIONS(1558), + [anon_sym_union] = ACTIONS(1558), + [anon_sym_if] = ACTIONS(1558), + [anon_sym_switch] = ACTIONS(1558), + [anon_sym_case] = ACTIONS(1558), + [anon_sym_default] = ACTIONS(1558), + [anon_sym_while] = ACTIONS(1558), + [anon_sym_do] = ACTIONS(1558), + [anon_sym_for] = ACTIONS(1558), + [anon_sym_return] = ACTIONS(1558), + [anon_sym_break] = ACTIONS(1558), + [anon_sym_continue] = ACTIONS(1558), + [anon_sym_goto] = ACTIONS(1558), + [anon_sym_DASH_DASH] = ACTIONS(1560), + [anon_sym_PLUS_PLUS] = ACTIONS(1560), + [anon_sym_sizeof] = ACTIONS(1558), + [anon_sym___alignof__] = ACTIONS(1558), + [anon_sym___alignof] = ACTIONS(1558), + [anon_sym__alignof] = ACTIONS(1558), + [anon_sym_alignof] = ACTIONS(1558), + [anon_sym__Alignof] = ACTIONS(1558), + [anon_sym_offsetof] = ACTIONS(1558), + [anon_sym___builtin_va_arg] = ACTIONS(1558), + [anon_sym__Generic] = ACTIONS(1558), + [anon_sym_asm] = ACTIONS(1558), + [anon_sym___asm__] = ACTIONS(1558), + [sym_number_literal] = ACTIONS(1560), + [anon_sym_L_SQUOTE] = ACTIONS(1560), + [anon_sym_u_SQUOTE] = ACTIONS(1560), + [anon_sym_U_SQUOTE] = ACTIONS(1560), + [anon_sym_u8_SQUOTE] = ACTIONS(1560), + [anon_sym_SQUOTE] = ACTIONS(1560), + [anon_sym_L_DQUOTE] = ACTIONS(1560), + [anon_sym_u_DQUOTE] = ACTIONS(1560), + [anon_sym_U_DQUOTE] = ACTIONS(1560), + [anon_sym_u8_DQUOTE] = ACTIONS(1560), + [anon_sym_DQUOTE] = ACTIONS(1560), + [sym_true] = ACTIONS(1558), + [sym_false] = ACTIONS(1558), + [anon_sym_NULL] = ACTIONS(1558), + [anon_sym_nullptr] = ACTIONS(1558), [sym_comment] = ACTIONS(3), }, - [515] = { - [ts_builtin_sym_end] = ACTIONS(1432), - [sym_identifier] = ACTIONS(1430), - [aux_sym_preproc_include_token1] = ACTIONS(1430), - [aux_sym_preproc_def_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token1] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), - [sym_preproc_directive] = ACTIONS(1430), - [anon_sym_LPAREN2] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_typedef] = ACTIONS(1430), - [anon_sym_extern] = ACTIONS(1430), - [anon_sym___attribute__] = ACTIONS(1430), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), - [anon_sym___declspec] = ACTIONS(1430), - [anon_sym___cdecl] = ACTIONS(1430), - [anon_sym___clrcall] = ACTIONS(1430), - [anon_sym___stdcall] = ACTIONS(1430), - [anon_sym___fastcall] = ACTIONS(1430), - [anon_sym___thiscall] = ACTIONS(1430), - [anon_sym___vectorcall] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_signed] = ACTIONS(1430), - [anon_sym_unsigned] = ACTIONS(1430), - [anon_sym_long] = ACTIONS(1430), - [anon_sym_short] = ACTIONS(1430), - [anon_sym_static] = ACTIONS(1430), - [anon_sym_auto] = ACTIONS(1430), - [anon_sym_register] = ACTIONS(1430), - [anon_sym_inline] = ACTIONS(1430), - [anon_sym_thread_local] = ACTIONS(1430), - [anon_sym___thread] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_constexpr] = ACTIONS(1430), - [anon_sym_volatile] = ACTIONS(1430), - [anon_sym_restrict] = ACTIONS(1430), - [anon_sym___restrict__] = ACTIONS(1430), - [anon_sym__Atomic] = ACTIONS(1430), - [anon_sym__Noreturn] = ACTIONS(1430), - [anon_sym_noreturn] = ACTIONS(1430), - [sym_primitive_type] = ACTIONS(1430), - [anon_sym_enum] = ACTIONS(1430), - [anon_sym_struct] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_switch] = ACTIONS(1430), - [anon_sym_case] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_goto] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1432), - [anon_sym_sizeof] = ACTIONS(1430), - [anon_sym_offsetof] = ACTIONS(1430), - [anon_sym__Generic] = ACTIONS(1430), - [anon_sym_asm] = ACTIONS(1430), - [anon_sym___asm__] = ACTIONS(1430), - [sym_number_literal] = ACTIONS(1432), - [anon_sym_L_SQUOTE] = ACTIONS(1432), - [anon_sym_u_SQUOTE] = ACTIONS(1432), - [anon_sym_U_SQUOTE] = ACTIONS(1432), - [anon_sym_u8_SQUOTE] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1432), - [anon_sym_L_DQUOTE] = ACTIONS(1432), - [anon_sym_u_DQUOTE] = ACTIONS(1432), - [anon_sym_U_DQUOTE] = ACTIONS(1432), - [anon_sym_u8_DQUOTE] = ACTIONS(1432), - [anon_sym_DQUOTE] = ACTIONS(1432), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [anon_sym_NULL] = ACTIONS(1430), - [anon_sym_nullptr] = ACTIONS(1430), + [430] = { + [sym_identifier] = ACTIONS(1514), + [aux_sym_preproc_include_token1] = ACTIONS(1514), + [aux_sym_preproc_def_token1] = ACTIONS(1514), + [aux_sym_preproc_if_token1] = ACTIONS(1514), + [aux_sym_preproc_if_token2] = ACTIONS(1514), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1514), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1514), + [sym_preproc_directive] = ACTIONS(1514), + [anon_sym_LPAREN2] = ACTIONS(1516), + [anon_sym_BANG] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1516), + [anon_sym_AMP] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym___extension__] = ACTIONS(1514), + [anon_sym_typedef] = ACTIONS(1514), + [anon_sym_extern] = ACTIONS(1514), + [anon_sym___attribute__] = ACTIONS(1514), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1516), + [anon_sym___declspec] = ACTIONS(1514), + [anon_sym___cdecl] = ACTIONS(1514), + [anon_sym___clrcall] = ACTIONS(1514), + [anon_sym___stdcall] = ACTIONS(1514), + [anon_sym___fastcall] = ACTIONS(1514), + [anon_sym___thiscall] = ACTIONS(1514), + [anon_sym___vectorcall] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_signed] = ACTIONS(1514), + [anon_sym_unsigned] = ACTIONS(1514), + [anon_sym_long] = ACTIONS(1514), + [anon_sym_short] = ACTIONS(1514), + [anon_sym_static] = ACTIONS(1514), + [anon_sym_auto] = ACTIONS(1514), + [anon_sym_register] = ACTIONS(1514), + [anon_sym_inline] = ACTIONS(1514), + [anon_sym___inline] = ACTIONS(1514), + [anon_sym___inline__] = ACTIONS(1514), + [anon_sym___forceinline] = ACTIONS(1514), + [anon_sym_thread_local] = ACTIONS(1514), + [anon_sym___thread] = ACTIONS(1514), + [anon_sym_const] = ACTIONS(1514), + [anon_sym_constexpr] = ACTIONS(1514), + [anon_sym_volatile] = ACTIONS(1514), + [anon_sym_restrict] = ACTIONS(1514), + [anon_sym___restrict__] = ACTIONS(1514), + [anon_sym__Atomic] = ACTIONS(1514), + [anon_sym__Noreturn] = ACTIONS(1514), + [anon_sym_noreturn] = ACTIONS(1514), + [sym_primitive_type] = ACTIONS(1514), + [anon_sym_enum] = ACTIONS(1514), + [anon_sym_struct] = ACTIONS(1514), + [anon_sym_union] = ACTIONS(1514), + [anon_sym_if] = ACTIONS(1514), + [anon_sym_switch] = ACTIONS(1514), + [anon_sym_case] = ACTIONS(1514), + [anon_sym_default] = ACTIONS(1514), + [anon_sym_while] = ACTIONS(1514), + [anon_sym_do] = ACTIONS(1514), + [anon_sym_for] = ACTIONS(1514), + [anon_sym_return] = ACTIONS(1514), + [anon_sym_break] = ACTIONS(1514), + [anon_sym_continue] = ACTIONS(1514), + [anon_sym_goto] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_sizeof] = ACTIONS(1514), + [anon_sym___alignof__] = ACTIONS(1514), + [anon_sym___alignof] = ACTIONS(1514), + [anon_sym__alignof] = ACTIONS(1514), + [anon_sym_alignof] = ACTIONS(1514), + [anon_sym__Alignof] = ACTIONS(1514), + [anon_sym_offsetof] = ACTIONS(1514), + [anon_sym___builtin_va_arg] = ACTIONS(1514), + [anon_sym__Generic] = ACTIONS(1514), + [anon_sym_asm] = ACTIONS(1514), + [anon_sym___asm__] = ACTIONS(1514), + [sym_number_literal] = ACTIONS(1516), + [anon_sym_L_SQUOTE] = ACTIONS(1516), + [anon_sym_u_SQUOTE] = ACTIONS(1516), + [anon_sym_U_SQUOTE] = ACTIONS(1516), + [anon_sym_u8_SQUOTE] = ACTIONS(1516), + [anon_sym_SQUOTE] = ACTIONS(1516), + [anon_sym_L_DQUOTE] = ACTIONS(1516), + [anon_sym_u_DQUOTE] = ACTIONS(1516), + [anon_sym_U_DQUOTE] = ACTIONS(1516), + [anon_sym_u8_DQUOTE] = ACTIONS(1516), + [anon_sym_DQUOTE] = ACTIONS(1516), + [sym_true] = ACTIONS(1514), + [sym_false] = ACTIONS(1514), + [anon_sym_NULL] = ACTIONS(1514), + [anon_sym_nullptr] = ACTIONS(1514), [sym_comment] = ACTIONS(3), }, - [516] = { - [ts_builtin_sym_end] = ACTIONS(1408), - [sym_identifier] = ACTIONS(1406), - [aux_sym_preproc_include_token1] = ACTIONS(1406), - [aux_sym_preproc_def_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), - [sym_preproc_directive] = ACTIONS(1406), - [anon_sym_LPAREN2] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_typedef] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym___attribute__] = ACTIONS(1406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), - [anon_sym___declspec] = ACTIONS(1406), - [anon_sym___cdecl] = ACTIONS(1406), - [anon_sym___clrcall] = ACTIONS(1406), - [anon_sym___stdcall] = ACTIONS(1406), - [anon_sym___fastcall] = ACTIONS(1406), - [anon_sym___thiscall] = ACTIONS(1406), - [anon_sym___vectorcall] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_auto] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym_thread_local] = ACTIONS(1406), - [anon_sym___thread] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_constexpr] = ACTIONS(1406), - [anon_sym_volatile] = ACTIONS(1406), - [anon_sym_restrict] = ACTIONS(1406), - [anon_sym___restrict__] = ACTIONS(1406), - [anon_sym__Atomic] = ACTIONS(1406), - [anon_sym__Noreturn] = ACTIONS(1406), - [anon_sym_noreturn] = ACTIONS(1406), - [sym_primitive_type] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_union] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_case] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_goto] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_sizeof] = ACTIONS(1406), - [anon_sym_offsetof] = ACTIONS(1406), - [anon_sym__Generic] = ACTIONS(1406), - [anon_sym_asm] = ACTIONS(1406), - [anon_sym___asm__] = ACTIONS(1406), - [sym_number_literal] = ACTIONS(1408), - [anon_sym_L_SQUOTE] = ACTIONS(1408), - [anon_sym_u_SQUOTE] = ACTIONS(1408), - [anon_sym_U_SQUOTE] = ACTIONS(1408), - [anon_sym_u8_SQUOTE] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_L_DQUOTE] = ACTIONS(1408), - [anon_sym_u_DQUOTE] = ACTIONS(1408), - [anon_sym_U_DQUOTE] = ACTIONS(1408), - [anon_sym_u8_DQUOTE] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [sym_true] = ACTIONS(1406), - [sym_false] = ACTIONS(1406), - [anon_sym_NULL] = ACTIONS(1406), - [anon_sym_nullptr] = ACTIONS(1406), + [431] = { + [sym_identifier] = ACTIONS(1530), + [aux_sym_preproc_include_token1] = ACTIONS(1530), + [aux_sym_preproc_def_token1] = ACTIONS(1530), + [aux_sym_preproc_if_token1] = ACTIONS(1530), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1530), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1530), + [sym_preproc_directive] = ACTIONS(1530), + [anon_sym_LPAREN2] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(1532), + [anon_sym_TILDE] = ACTIONS(1532), + [anon_sym_DASH] = ACTIONS(1530), + [anon_sym_PLUS] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1532), + [anon_sym_AMP] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym___extension__] = ACTIONS(1530), + [anon_sym_typedef] = ACTIONS(1530), + [anon_sym_extern] = ACTIONS(1530), + [anon_sym___attribute__] = ACTIONS(1530), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1532), + [anon_sym___declspec] = ACTIONS(1530), + [anon_sym___cdecl] = ACTIONS(1530), + [anon_sym___clrcall] = ACTIONS(1530), + [anon_sym___stdcall] = ACTIONS(1530), + [anon_sym___fastcall] = ACTIONS(1530), + [anon_sym___thiscall] = ACTIONS(1530), + [anon_sym___vectorcall] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_RBRACE] = ACTIONS(1532), + [anon_sym_signed] = ACTIONS(1530), + [anon_sym_unsigned] = ACTIONS(1530), + [anon_sym_long] = ACTIONS(1530), + [anon_sym_short] = ACTIONS(1530), + [anon_sym_static] = ACTIONS(1530), + [anon_sym_auto] = ACTIONS(1530), + [anon_sym_register] = ACTIONS(1530), + [anon_sym_inline] = ACTIONS(1530), + [anon_sym___inline] = ACTIONS(1530), + [anon_sym___inline__] = ACTIONS(1530), + [anon_sym___forceinline] = ACTIONS(1530), + [anon_sym_thread_local] = ACTIONS(1530), + [anon_sym___thread] = ACTIONS(1530), + [anon_sym_const] = ACTIONS(1530), + [anon_sym_constexpr] = ACTIONS(1530), + [anon_sym_volatile] = ACTIONS(1530), + [anon_sym_restrict] = ACTIONS(1530), + [anon_sym___restrict__] = ACTIONS(1530), + [anon_sym__Atomic] = ACTIONS(1530), + [anon_sym__Noreturn] = ACTIONS(1530), + [anon_sym_noreturn] = ACTIONS(1530), + [sym_primitive_type] = ACTIONS(1530), + [anon_sym_enum] = ACTIONS(1530), + [anon_sym_struct] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), + [anon_sym_if] = ACTIONS(1530), + [anon_sym_switch] = ACTIONS(1530), + [anon_sym_case] = ACTIONS(1530), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_while] = ACTIONS(1530), + [anon_sym_do] = ACTIONS(1530), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1530), + [anon_sym_continue] = ACTIONS(1530), + [anon_sym_goto] = ACTIONS(1530), + [anon_sym_DASH_DASH] = ACTIONS(1532), + [anon_sym_PLUS_PLUS] = ACTIONS(1532), + [anon_sym_sizeof] = ACTIONS(1530), + [anon_sym___alignof__] = ACTIONS(1530), + [anon_sym___alignof] = ACTIONS(1530), + [anon_sym__alignof] = ACTIONS(1530), + [anon_sym_alignof] = ACTIONS(1530), + [anon_sym__Alignof] = ACTIONS(1530), + [anon_sym_offsetof] = ACTIONS(1530), + [anon_sym___builtin_va_arg] = ACTIONS(1530), + [anon_sym__Generic] = ACTIONS(1530), + [anon_sym_asm] = ACTIONS(1530), + [anon_sym___asm__] = ACTIONS(1530), + [sym_number_literal] = ACTIONS(1532), + [anon_sym_L_SQUOTE] = ACTIONS(1532), + [anon_sym_u_SQUOTE] = ACTIONS(1532), + [anon_sym_U_SQUOTE] = ACTIONS(1532), + [anon_sym_u8_SQUOTE] = ACTIONS(1532), + [anon_sym_SQUOTE] = ACTIONS(1532), + [anon_sym_L_DQUOTE] = ACTIONS(1532), + [anon_sym_u_DQUOTE] = ACTIONS(1532), + [anon_sym_U_DQUOTE] = ACTIONS(1532), + [anon_sym_u8_DQUOTE] = ACTIONS(1532), + [anon_sym_DQUOTE] = ACTIONS(1532), + [sym_true] = ACTIONS(1530), + [sym_false] = ACTIONS(1530), + [anon_sym_NULL] = ACTIONS(1530), + [anon_sym_nullptr] = ACTIONS(1530), [sym_comment] = ACTIONS(3), }, - [517] = { - [ts_builtin_sym_end] = ACTIONS(1400), - [sym_identifier] = ACTIONS(1398), - [aux_sym_preproc_include_token1] = ACTIONS(1398), - [aux_sym_preproc_def_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token1] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), - [sym_preproc_directive] = ACTIONS(1398), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_typedef] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym___attribute__] = ACTIONS(1398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), - [anon_sym___declspec] = ACTIONS(1398), - [anon_sym___cdecl] = ACTIONS(1398), - [anon_sym___clrcall] = ACTIONS(1398), - [anon_sym___stdcall] = ACTIONS(1398), - [anon_sym___fastcall] = ACTIONS(1398), - [anon_sym___thiscall] = ACTIONS(1398), - [anon_sym___vectorcall] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_auto] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym_thread_local] = ACTIONS(1398), - [anon_sym___thread] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_constexpr] = ACTIONS(1398), - [anon_sym_volatile] = ACTIONS(1398), - [anon_sym_restrict] = ACTIONS(1398), - [anon_sym___restrict__] = ACTIONS(1398), - [anon_sym__Atomic] = ACTIONS(1398), - [anon_sym__Noreturn] = ACTIONS(1398), - [anon_sym_noreturn] = ACTIONS(1398), - [sym_primitive_type] = ACTIONS(1398), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_struct] = ACTIONS(1398), - [anon_sym_union] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_case] = ACTIONS(1398), - [anon_sym_default] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_goto] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_sizeof] = ACTIONS(1398), - [anon_sym_offsetof] = ACTIONS(1398), - [anon_sym__Generic] = ACTIONS(1398), - [anon_sym_asm] = ACTIONS(1398), - [anon_sym___asm__] = ACTIONS(1398), - [sym_number_literal] = ACTIONS(1400), - [anon_sym_L_SQUOTE] = ACTIONS(1400), - [anon_sym_u_SQUOTE] = ACTIONS(1400), - [anon_sym_U_SQUOTE] = ACTIONS(1400), - [anon_sym_u8_SQUOTE] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_L_DQUOTE] = ACTIONS(1400), - [anon_sym_u_DQUOTE] = ACTIONS(1400), - [anon_sym_U_DQUOTE] = ACTIONS(1400), - [anon_sym_u8_DQUOTE] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym_true] = ACTIONS(1398), - [sym_false] = ACTIONS(1398), - [anon_sym_NULL] = ACTIONS(1398), - [anon_sym_nullptr] = ACTIONS(1398), + [432] = { + [sym_identifier] = ACTIONS(1510), + [aux_sym_preproc_include_token1] = ACTIONS(1510), + [aux_sym_preproc_def_token1] = ACTIONS(1510), + [aux_sym_preproc_if_token1] = ACTIONS(1510), + [aux_sym_preproc_if_token2] = ACTIONS(1510), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1510), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1510), + [sym_preproc_directive] = ACTIONS(1510), + [anon_sym_LPAREN2] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1512), + [anon_sym_TILDE] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1510), + [anon_sym_PLUS] = ACTIONS(1510), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_AMP] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym___extension__] = ACTIONS(1510), + [anon_sym_typedef] = ACTIONS(1510), + [anon_sym_extern] = ACTIONS(1510), + [anon_sym___attribute__] = ACTIONS(1510), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1512), + [anon_sym___declspec] = ACTIONS(1510), + [anon_sym___cdecl] = ACTIONS(1510), + [anon_sym___clrcall] = ACTIONS(1510), + [anon_sym___stdcall] = ACTIONS(1510), + [anon_sym___fastcall] = ACTIONS(1510), + [anon_sym___thiscall] = ACTIONS(1510), + [anon_sym___vectorcall] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_signed] = ACTIONS(1510), + [anon_sym_unsigned] = ACTIONS(1510), + [anon_sym_long] = ACTIONS(1510), + [anon_sym_short] = ACTIONS(1510), + [anon_sym_static] = ACTIONS(1510), + [anon_sym_auto] = ACTIONS(1510), + [anon_sym_register] = ACTIONS(1510), + [anon_sym_inline] = ACTIONS(1510), + [anon_sym___inline] = ACTIONS(1510), + [anon_sym___inline__] = ACTIONS(1510), + [anon_sym___forceinline] = ACTIONS(1510), + [anon_sym_thread_local] = ACTIONS(1510), + [anon_sym___thread] = ACTIONS(1510), + [anon_sym_const] = ACTIONS(1510), + [anon_sym_constexpr] = ACTIONS(1510), + [anon_sym_volatile] = ACTIONS(1510), + [anon_sym_restrict] = ACTIONS(1510), + [anon_sym___restrict__] = ACTIONS(1510), + [anon_sym__Atomic] = ACTIONS(1510), + [anon_sym__Noreturn] = ACTIONS(1510), + [anon_sym_noreturn] = ACTIONS(1510), + [sym_primitive_type] = ACTIONS(1510), + [anon_sym_enum] = ACTIONS(1510), + [anon_sym_struct] = ACTIONS(1510), + [anon_sym_union] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_switch] = ACTIONS(1510), + [anon_sym_case] = ACTIONS(1510), + [anon_sym_default] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_do] = ACTIONS(1510), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_goto] = ACTIONS(1510), + [anon_sym_DASH_DASH] = ACTIONS(1512), + [anon_sym_PLUS_PLUS] = ACTIONS(1512), + [anon_sym_sizeof] = ACTIONS(1510), + [anon_sym___alignof__] = ACTIONS(1510), + [anon_sym___alignof] = ACTIONS(1510), + [anon_sym__alignof] = ACTIONS(1510), + [anon_sym_alignof] = ACTIONS(1510), + [anon_sym__Alignof] = ACTIONS(1510), + [anon_sym_offsetof] = ACTIONS(1510), + [anon_sym___builtin_va_arg] = ACTIONS(1510), + [anon_sym__Generic] = ACTIONS(1510), + [anon_sym_asm] = ACTIONS(1510), + [anon_sym___asm__] = ACTIONS(1510), + [sym_number_literal] = ACTIONS(1512), + [anon_sym_L_SQUOTE] = ACTIONS(1512), + [anon_sym_u_SQUOTE] = ACTIONS(1512), + [anon_sym_U_SQUOTE] = ACTIONS(1512), + [anon_sym_u8_SQUOTE] = ACTIONS(1512), + [anon_sym_SQUOTE] = ACTIONS(1512), + [anon_sym_L_DQUOTE] = ACTIONS(1512), + [anon_sym_u_DQUOTE] = ACTIONS(1512), + [anon_sym_U_DQUOTE] = ACTIONS(1512), + [anon_sym_u8_DQUOTE] = ACTIONS(1512), + [anon_sym_DQUOTE] = ACTIONS(1512), + [sym_true] = ACTIONS(1510), + [sym_false] = ACTIONS(1510), + [anon_sym_NULL] = ACTIONS(1510), + [anon_sym_nullptr] = ACTIONS(1510), [sym_comment] = ACTIONS(3), }, - [518] = { - [ts_builtin_sym_end] = ACTIONS(1382), - [sym_identifier] = ACTIONS(1380), - [aux_sym_preproc_include_token1] = ACTIONS(1380), - [aux_sym_preproc_def_token1] = ACTIONS(1380), - [aux_sym_preproc_if_token1] = ACTIONS(1380), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), - [sym_preproc_directive] = ACTIONS(1380), - [anon_sym_LPAREN2] = ACTIONS(1382), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_TILDE] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1380), - [anon_sym_PLUS] = ACTIONS(1380), - [anon_sym_STAR] = ACTIONS(1382), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_typedef] = ACTIONS(1380), - [anon_sym_extern] = ACTIONS(1380), - [anon_sym___attribute__] = ACTIONS(1380), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), - [anon_sym___declspec] = ACTIONS(1380), - [anon_sym___cdecl] = ACTIONS(1380), - [anon_sym___clrcall] = ACTIONS(1380), - [anon_sym___stdcall] = ACTIONS(1380), - [anon_sym___fastcall] = ACTIONS(1380), - [anon_sym___thiscall] = ACTIONS(1380), - [anon_sym___vectorcall] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_signed] = ACTIONS(1380), - [anon_sym_unsigned] = ACTIONS(1380), - [anon_sym_long] = ACTIONS(1380), - [anon_sym_short] = ACTIONS(1380), - [anon_sym_static] = ACTIONS(1380), - [anon_sym_auto] = ACTIONS(1380), - [anon_sym_register] = ACTIONS(1380), - [anon_sym_inline] = ACTIONS(1380), - [anon_sym_thread_local] = ACTIONS(1380), - [anon_sym___thread] = ACTIONS(1380), - [anon_sym_const] = ACTIONS(1380), - [anon_sym_constexpr] = ACTIONS(1380), - [anon_sym_volatile] = ACTIONS(1380), - [anon_sym_restrict] = ACTIONS(1380), - [anon_sym___restrict__] = ACTIONS(1380), - [anon_sym__Atomic] = ACTIONS(1380), - [anon_sym__Noreturn] = ACTIONS(1380), - [anon_sym_noreturn] = ACTIONS(1380), - [sym_primitive_type] = ACTIONS(1380), - [anon_sym_enum] = ACTIONS(1380), - [anon_sym_struct] = ACTIONS(1380), - [anon_sym_union] = ACTIONS(1380), - [anon_sym_if] = ACTIONS(1380), - [anon_sym_switch] = ACTIONS(1380), - [anon_sym_case] = ACTIONS(1380), - [anon_sym_default] = ACTIONS(1380), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1380), - [anon_sym_for] = ACTIONS(1380), - [anon_sym_return] = ACTIONS(1380), - [anon_sym_break] = ACTIONS(1380), - [anon_sym_continue] = ACTIONS(1380), - [anon_sym_goto] = ACTIONS(1380), - [anon_sym_DASH_DASH] = ACTIONS(1382), - [anon_sym_PLUS_PLUS] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1380), - [anon_sym_offsetof] = ACTIONS(1380), - [anon_sym__Generic] = ACTIONS(1380), - [anon_sym_asm] = ACTIONS(1380), - [anon_sym___asm__] = ACTIONS(1380), - [sym_number_literal] = ACTIONS(1382), - [anon_sym_L_SQUOTE] = ACTIONS(1382), - [anon_sym_u_SQUOTE] = ACTIONS(1382), - [anon_sym_U_SQUOTE] = ACTIONS(1382), - [anon_sym_u8_SQUOTE] = ACTIONS(1382), - [anon_sym_SQUOTE] = ACTIONS(1382), - [anon_sym_L_DQUOTE] = ACTIONS(1382), - [anon_sym_u_DQUOTE] = ACTIONS(1382), - [anon_sym_U_DQUOTE] = ACTIONS(1382), - [anon_sym_u8_DQUOTE] = ACTIONS(1382), - [anon_sym_DQUOTE] = ACTIONS(1382), - [sym_true] = ACTIONS(1380), - [sym_false] = ACTIONS(1380), - [anon_sym_NULL] = ACTIONS(1380), - [anon_sym_nullptr] = ACTIONS(1380), + [433] = { + [sym_identifier] = ACTIONS(1538), + [aux_sym_preproc_include_token1] = ACTIONS(1538), + [aux_sym_preproc_def_token1] = ACTIONS(1538), + [aux_sym_preproc_if_token1] = ACTIONS(1538), + [aux_sym_preproc_if_token2] = ACTIONS(1538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1538), + [sym_preproc_directive] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(1540), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_AMP] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym___extension__] = ACTIONS(1538), + [anon_sym_typedef] = ACTIONS(1538), + [anon_sym_extern] = ACTIONS(1538), + [anon_sym___attribute__] = ACTIONS(1538), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1540), + [anon_sym___declspec] = ACTIONS(1538), + [anon_sym___cdecl] = ACTIONS(1538), + [anon_sym___clrcall] = ACTIONS(1538), + [anon_sym___stdcall] = ACTIONS(1538), + [anon_sym___fastcall] = ACTIONS(1538), + [anon_sym___thiscall] = ACTIONS(1538), + [anon_sym___vectorcall] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_signed] = ACTIONS(1538), + [anon_sym_unsigned] = ACTIONS(1538), + [anon_sym_long] = ACTIONS(1538), + [anon_sym_short] = ACTIONS(1538), + [anon_sym_static] = ACTIONS(1538), + [anon_sym_auto] = ACTIONS(1538), + [anon_sym_register] = ACTIONS(1538), + [anon_sym_inline] = ACTIONS(1538), + [anon_sym___inline] = ACTIONS(1538), + [anon_sym___inline__] = ACTIONS(1538), + [anon_sym___forceinline] = ACTIONS(1538), + [anon_sym_thread_local] = ACTIONS(1538), + [anon_sym___thread] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(1538), + [anon_sym_constexpr] = ACTIONS(1538), + [anon_sym_volatile] = ACTIONS(1538), + [anon_sym_restrict] = ACTIONS(1538), + [anon_sym___restrict__] = ACTIONS(1538), + [anon_sym__Atomic] = ACTIONS(1538), + [anon_sym__Noreturn] = ACTIONS(1538), + [anon_sym_noreturn] = ACTIONS(1538), + [sym_primitive_type] = ACTIONS(1538), + [anon_sym_enum] = ACTIONS(1538), + [anon_sym_struct] = ACTIONS(1538), + [anon_sym_union] = ACTIONS(1538), + [anon_sym_if] = ACTIONS(1538), + [anon_sym_switch] = ACTIONS(1538), + [anon_sym_case] = ACTIONS(1538), + [anon_sym_default] = ACTIONS(1538), + [anon_sym_while] = ACTIONS(1538), + [anon_sym_do] = ACTIONS(1538), + [anon_sym_for] = ACTIONS(1538), + [anon_sym_return] = ACTIONS(1538), + [anon_sym_break] = ACTIONS(1538), + [anon_sym_continue] = ACTIONS(1538), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_DASH_DASH] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1540), + [anon_sym_sizeof] = ACTIONS(1538), + [anon_sym___alignof__] = ACTIONS(1538), + [anon_sym___alignof] = ACTIONS(1538), + [anon_sym__alignof] = ACTIONS(1538), + [anon_sym_alignof] = ACTIONS(1538), + [anon_sym__Alignof] = ACTIONS(1538), + [anon_sym_offsetof] = ACTIONS(1538), + [anon_sym___builtin_va_arg] = ACTIONS(1538), + [anon_sym__Generic] = ACTIONS(1538), + [anon_sym_asm] = ACTIONS(1538), + [anon_sym___asm__] = ACTIONS(1538), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_L_SQUOTE] = ACTIONS(1540), + [anon_sym_u_SQUOTE] = ACTIONS(1540), + [anon_sym_U_SQUOTE] = ACTIONS(1540), + [anon_sym_u8_SQUOTE] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(1540), + [anon_sym_L_DQUOTE] = ACTIONS(1540), + [anon_sym_u_DQUOTE] = ACTIONS(1540), + [anon_sym_U_DQUOTE] = ACTIONS(1540), + [anon_sym_u8_DQUOTE] = ACTIONS(1540), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_true] = ACTIONS(1538), + [sym_false] = ACTIONS(1538), + [anon_sym_NULL] = ACTIONS(1538), + [anon_sym_nullptr] = ACTIONS(1538), [sym_comment] = ACTIONS(3), }, - [519] = { - [ts_builtin_sym_end] = ACTIONS(1358), - [sym_identifier] = ACTIONS(1356), - [aux_sym_preproc_include_token1] = ACTIONS(1356), - [aux_sym_preproc_def_token1] = ACTIONS(1356), - [aux_sym_preproc_if_token1] = ACTIONS(1356), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), - [sym_preproc_directive] = ACTIONS(1356), - [anon_sym_LPAREN2] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_typedef] = ACTIONS(1356), - [anon_sym_extern] = ACTIONS(1356), - [anon_sym___attribute__] = ACTIONS(1356), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1358), - [anon_sym___declspec] = ACTIONS(1356), - [anon_sym___cdecl] = ACTIONS(1356), - [anon_sym___clrcall] = ACTIONS(1356), - [anon_sym___stdcall] = ACTIONS(1356), - [anon_sym___fastcall] = ACTIONS(1356), - [anon_sym___thiscall] = ACTIONS(1356), - [anon_sym___vectorcall] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_signed] = ACTIONS(1356), - [anon_sym_unsigned] = ACTIONS(1356), - [anon_sym_long] = ACTIONS(1356), - [anon_sym_short] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_auto] = ACTIONS(1356), - [anon_sym_register] = ACTIONS(1356), - [anon_sym_inline] = ACTIONS(1356), - [anon_sym_thread_local] = ACTIONS(1356), - [anon_sym___thread] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_constexpr] = ACTIONS(1356), - [anon_sym_volatile] = ACTIONS(1356), - [anon_sym_restrict] = ACTIONS(1356), - [anon_sym___restrict__] = ACTIONS(1356), - [anon_sym__Atomic] = ACTIONS(1356), - [anon_sym__Noreturn] = ACTIONS(1356), - [anon_sym_noreturn] = ACTIONS(1356), - [sym_primitive_type] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_struct] = ACTIONS(1356), - [anon_sym_union] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_switch] = ACTIONS(1356), - [anon_sym_case] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_do] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_goto] = ACTIONS(1356), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_sizeof] = ACTIONS(1356), - [anon_sym_offsetof] = ACTIONS(1356), - [anon_sym__Generic] = ACTIONS(1356), - [anon_sym_asm] = ACTIONS(1356), - [anon_sym___asm__] = ACTIONS(1356), - [sym_number_literal] = ACTIONS(1358), - [anon_sym_L_SQUOTE] = ACTIONS(1358), - [anon_sym_u_SQUOTE] = ACTIONS(1358), - [anon_sym_U_SQUOTE] = ACTIONS(1358), - [anon_sym_u8_SQUOTE] = ACTIONS(1358), - [anon_sym_SQUOTE] = ACTIONS(1358), - [anon_sym_L_DQUOTE] = ACTIONS(1358), - [anon_sym_u_DQUOTE] = ACTIONS(1358), - [anon_sym_U_DQUOTE] = ACTIONS(1358), - [anon_sym_u8_DQUOTE] = ACTIONS(1358), - [anon_sym_DQUOTE] = ACTIONS(1358), - [sym_true] = ACTIONS(1356), - [sym_false] = ACTIONS(1356), - [anon_sym_NULL] = ACTIONS(1356), - [anon_sym_nullptr] = ACTIONS(1356), + [434] = { + [sym_identifier] = ACTIONS(1554), + [aux_sym_preproc_include_token1] = ACTIONS(1554), + [aux_sym_preproc_def_token1] = ACTIONS(1554), + [aux_sym_preproc_if_token1] = ACTIONS(1554), + [aux_sym_preproc_if_token2] = ACTIONS(1554), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1554), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1554), + [sym_preproc_directive] = ACTIONS(1554), + [anon_sym_LPAREN2] = ACTIONS(1556), + [anon_sym_BANG] = ACTIONS(1556), + [anon_sym_TILDE] = ACTIONS(1556), + [anon_sym_DASH] = ACTIONS(1554), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1556), + [anon_sym___extension__] = ACTIONS(1554), + [anon_sym_typedef] = ACTIONS(1554), + [anon_sym_extern] = ACTIONS(1554), + [anon_sym___attribute__] = ACTIONS(1554), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), + [anon_sym___declspec] = ACTIONS(1554), + [anon_sym___cdecl] = ACTIONS(1554), + [anon_sym___clrcall] = ACTIONS(1554), + [anon_sym___stdcall] = ACTIONS(1554), + [anon_sym___fastcall] = ACTIONS(1554), + [anon_sym___thiscall] = ACTIONS(1554), + [anon_sym___vectorcall] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_signed] = ACTIONS(1554), + [anon_sym_unsigned] = ACTIONS(1554), + [anon_sym_long] = ACTIONS(1554), + [anon_sym_short] = ACTIONS(1554), + [anon_sym_static] = ACTIONS(1554), + [anon_sym_auto] = ACTIONS(1554), + [anon_sym_register] = ACTIONS(1554), + [anon_sym_inline] = ACTIONS(1554), + [anon_sym___inline] = ACTIONS(1554), + [anon_sym___inline__] = ACTIONS(1554), + [anon_sym___forceinline] = ACTIONS(1554), + [anon_sym_thread_local] = ACTIONS(1554), + [anon_sym___thread] = ACTIONS(1554), + [anon_sym_const] = ACTIONS(1554), + [anon_sym_constexpr] = ACTIONS(1554), + [anon_sym_volatile] = ACTIONS(1554), + [anon_sym_restrict] = ACTIONS(1554), + [anon_sym___restrict__] = ACTIONS(1554), + [anon_sym__Atomic] = ACTIONS(1554), + [anon_sym__Noreturn] = ACTIONS(1554), + [anon_sym_noreturn] = ACTIONS(1554), + [sym_primitive_type] = ACTIONS(1554), + [anon_sym_enum] = ACTIONS(1554), + [anon_sym_struct] = ACTIONS(1554), + [anon_sym_union] = ACTIONS(1554), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_switch] = ACTIONS(1554), + [anon_sym_case] = ACTIONS(1554), + [anon_sym_default] = ACTIONS(1554), + [anon_sym_while] = ACTIONS(1554), + [anon_sym_do] = ACTIONS(1554), + [anon_sym_for] = ACTIONS(1554), + [anon_sym_return] = ACTIONS(1554), + [anon_sym_break] = ACTIONS(1554), + [anon_sym_continue] = ACTIONS(1554), + [anon_sym_goto] = ACTIONS(1554), + [anon_sym_DASH_DASH] = ACTIONS(1556), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_sizeof] = ACTIONS(1554), + [anon_sym___alignof__] = ACTIONS(1554), + [anon_sym___alignof] = ACTIONS(1554), + [anon_sym__alignof] = ACTIONS(1554), + [anon_sym_alignof] = ACTIONS(1554), + [anon_sym__Alignof] = ACTIONS(1554), + [anon_sym_offsetof] = ACTIONS(1554), + [anon_sym___builtin_va_arg] = ACTIONS(1554), + [anon_sym__Generic] = ACTIONS(1554), + [anon_sym_asm] = ACTIONS(1554), + [anon_sym___asm__] = ACTIONS(1554), + [sym_number_literal] = ACTIONS(1556), + [anon_sym_L_SQUOTE] = ACTIONS(1556), + [anon_sym_u_SQUOTE] = ACTIONS(1556), + [anon_sym_U_SQUOTE] = ACTIONS(1556), + [anon_sym_u8_SQUOTE] = ACTIONS(1556), + [anon_sym_SQUOTE] = ACTIONS(1556), + [anon_sym_L_DQUOTE] = ACTIONS(1556), + [anon_sym_u_DQUOTE] = ACTIONS(1556), + [anon_sym_U_DQUOTE] = ACTIONS(1556), + [anon_sym_u8_DQUOTE] = ACTIONS(1556), + [anon_sym_DQUOTE] = ACTIONS(1556), + [sym_true] = ACTIONS(1554), + [sym_false] = ACTIONS(1554), + [anon_sym_NULL] = ACTIONS(1554), + [anon_sym_nullptr] = ACTIONS(1554), [sym_comment] = ACTIONS(3), }, - [520] = { - [ts_builtin_sym_end] = ACTIONS(1412), - [sym_identifier] = ACTIONS(1410), - [aux_sym_preproc_include_token1] = ACTIONS(1410), - [aux_sym_preproc_def_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token1] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), - [sym_preproc_directive] = ACTIONS(1410), - [anon_sym_LPAREN2] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_typedef] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym___attribute__] = ACTIONS(1410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), - [anon_sym___declspec] = ACTIONS(1410), - [anon_sym___cdecl] = ACTIONS(1410), - [anon_sym___clrcall] = ACTIONS(1410), - [anon_sym___stdcall] = ACTIONS(1410), - [anon_sym___fastcall] = ACTIONS(1410), - [anon_sym___thiscall] = ACTIONS(1410), - [anon_sym___vectorcall] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_auto] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), - [anon_sym_thread_local] = ACTIONS(1410), - [anon_sym___thread] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_constexpr] = ACTIONS(1410), - [anon_sym_volatile] = ACTIONS(1410), - [anon_sym_restrict] = ACTIONS(1410), - [anon_sym___restrict__] = ACTIONS(1410), - [anon_sym__Atomic] = ACTIONS(1410), - [anon_sym__Noreturn] = ACTIONS(1410), - [anon_sym_noreturn] = ACTIONS(1410), - [sym_primitive_type] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_case] = ACTIONS(1410), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_goto] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_sizeof] = ACTIONS(1410), - [anon_sym_offsetof] = ACTIONS(1410), - [anon_sym__Generic] = ACTIONS(1410), - [anon_sym_asm] = ACTIONS(1410), - [anon_sym___asm__] = ACTIONS(1410), - [sym_number_literal] = ACTIONS(1412), - [anon_sym_L_SQUOTE] = ACTIONS(1412), - [anon_sym_u_SQUOTE] = ACTIONS(1412), - [anon_sym_U_SQUOTE] = ACTIONS(1412), - [anon_sym_u8_SQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_L_DQUOTE] = ACTIONS(1412), - [anon_sym_u_DQUOTE] = ACTIONS(1412), - [anon_sym_U_DQUOTE] = ACTIONS(1412), - [anon_sym_u8_DQUOTE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [sym_true] = ACTIONS(1410), - [sym_false] = ACTIONS(1410), - [anon_sym_NULL] = ACTIONS(1410), - [anon_sym_nullptr] = ACTIONS(1410), + [435] = { + [sym_identifier] = ACTIONS(1550), + [aux_sym_preproc_include_token1] = ACTIONS(1550), + [aux_sym_preproc_def_token1] = ACTIONS(1550), + [aux_sym_preproc_if_token1] = ACTIONS(1550), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1550), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1550), + [sym_preproc_directive] = ACTIONS(1550), + [anon_sym_LPAREN2] = ACTIONS(1552), + [anon_sym_BANG] = ACTIONS(1552), + [anon_sym_TILDE] = ACTIONS(1552), + [anon_sym_DASH] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1550), + [anon_sym_STAR] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(1552), + [anon_sym_SEMI] = ACTIONS(1552), + [anon_sym___extension__] = ACTIONS(1550), + [anon_sym_typedef] = ACTIONS(1550), + [anon_sym_extern] = ACTIONS(1550), + [anon_sym___attribute__] = ACTIONS(1550), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1552), + [anon_sym___declspec] = ACTIONS(1550), + [anon_sym___cdecl] = ACTIONS(1550), + [anon_sym___clrcall] = ACTIONS(1550), + [anon_sym___stdcall] = ACTIONS(1550), + [anon_sym___fastcall] = ACTIONS(1550), + [anon_sym___thiscall] = ACTIONS(1550), + [anon_sym___vectorcall] = ACTIONS(1550), + [anon_sym_LBRACE] = ACTIONS(1552), + [anon_sym_RBRACE] = ACTIONS(1552), + [anon_sym_signed] = ACTIONS(1550), + [anon_sym_unsigned] = ACTIONS(1550), + [anon_sym_long] = ACTIONS(1550), + [anon_sym_short] = ACTIONS(1550), + [anon_sym_static] = ACTIONS(1550), + [anon_sym_auto] = ACTIONS(1550), + [anon_sym_register] = ACTIONS(1550), + [anon_sym_inline] = ACTIONS(1550), + [anon_sym___inline] = ACTIONS(1550), + [anon_sym___inline__] = ACTIONS(1550), + [anon_sym___forceinline] = ACTIONS(1550), + [anon_sym_thread_local] = ACTIONS(1550), + [anon_sym___thread] = ACTIONS(1550), + [anon_sym_const] = ACTIONS(1550), + [anon_sym_constexpr] = ACTIONS(1550), + [anon_sym_volatile] = ACTIONS(1550), + [anon_sym_restrict] = ACTIONS(1550), + [anon_sym___restrict__] = ACTIONS(1550), + [anon_sym__Atomic] = ACTIONS(1550), + [anon_sym__Noreturn] = ACTIONS(1550), + [anon_sym_noreturn] = ACTIONS(1550), + [sym_primitive_type] = ACTIONS(1550), + [anon_sym_enum] = ACTIONS(1550), + [anon_sym_struct] = ACTIONS(1550), + [anon_sym_union] = ACTIONS(1550), + [anon_sym_if] = ACTIONS(1550), + [anon_sym_switch] = ACTIONS(1550), + [anon_sym_case] = ACTIONS(1550), + [anon_sym_default] = ACTIONS(1550), + [anon_sym_while] = ACTIONS(1550), + [anon_sym_do] = ACTIONS(1550), + [anon_sym_for] = ACTIONS(1550), + [anon_sym_return] = ACTIONS(1550), + [anon_sym_break] = ACTIONS(1550), + [anon_sym_continue] = ACTIONS(1550), + [anon_sym_goto] = ACTIONS(1550), + [anon_sym_DASH_DASH] = ACTIONS(1552), + [anon_sym_PLUS_PLUS] = ACTIONS(1552), + [anon_sym_sizeof] = ACTIONS(1550), + [anon_sym___alignof__] = ACTIONS(1550), + [anon_sym___alignof] = ACTIONS(1550), + [anon_sym__alignof] = ACTIONS(1550), + [anon_sym_alignof] = ACTIONS(1550), + [anon_sym__Alignof] = ACTIONS(1550), + [anon_sym_offsetof] = ACTIONS(1550), + [anon_sym___builtin_va_arg] = ACTIONS(1550), + [anon_sym__Generic] = ACTIONS(1550), + [anon_sym_asm] = ACTIONS(1550), + [anon_sym___asm__] = ACTIONS(1550), + [sym_number_literal] = ACTIONS(1552), + [anon_sym_L_SQUOTE] = ACTIONS(1552), + [anon_sym_u_SQUOTE] = ACTIONS(1552), + [anon_sym_U_SQUOTE] = ACTIONS(1552), + [anon_sym_u8_SQUOTE] = ACTIONS(1552), + [anon_sym_SQUOTE] = ACTIONS(1552), + [anon_sym_L_DQUOTE] = ACTIONS(1552), + [anon_sym_u_DQUOTE] = ACTIONS(1552), + [anon_sym_U_DQUOTE] = ACTIONS(1552), + [anon_sym_u8_DQUOTE] = ACTIONS(1552), + [anon_sym_DQUOTE] = ACTIONS(1552), + [sym_true] = ACTIONS(1550), + [sym_false] = ACTIONS(1550), + [anon_sym_NULL] = ACTIONS(1550), + [anon_sym_nullptr] = ACTIONS(1550), [sym_comment] = ACTIONS(3), }, - [521] = { - [ts_builtin_sym_end] = ACTIONS(1436), - [sym_identifier] = ACTIONS(1434), - [aux_sym_preproc_include_token1] = ACTIONS(1434), - [aux_sym_preproc_def_token1] = ACTIONS(1434), - [aux_sym_preproc_if_token1] = ACTIONS(1434), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), - [sym_preproc_directive] = ACTIONS(1434), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1436), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1434), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_typedef] = ACTIONS(1434), - [anon_sym_extern] = ACTIONS(1434), - [anon_sym___attribute__] = ACTIONS(1434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1436), - [anon_sym___declspec] = ACTIONS(1434), - [anon_sym___cdecl] = ACTIONS(1434), - [anon_sym___clrcall] = ACTIONS(1434), - [anon_sym___stdcall] = ACTIONS(1434), - [anon_sym___fastcall] = ACTIONS(1434), - [anon_sym___thiscall] = ACTIONS(1434), - [anon_sym___vectorcall] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1434), - [anon_sym_unsigned] = ACTIONS(1434), - [anon_sym_long] = ACTIONS(1434), - [anon_sym_short] = ACTIONS(1434), - [anon_sym_static] = ACTIONS(1434), - [anon_sym_auto] = ACTIONS(1434), - [anon_sym_register] = ACTIONS(1434), - [anon_sym_inline] = ACTIONS(1434), - [anon_sym_thread_local] = ACTIONS(1434), - [anon_sym___thread] = ACTIONS(1434), - [anon_sym_const] = ACTIONS(1434), - [anon_sym_constexpr] = ACTIONS(1434), - [anon_sym_volatile] = ACTIONS(1434), - [anon_sym_restrict] = ACTIONS(1434), - [anon_sym___restrict__] = ACTIONS(1434), - [anon_sym__Atomic] = ACTIONS(1434), - [anon_sym__Noreturn] = ACTIONS(1434), - [anon_sym_noreturn] = ACTIONS(1434), - [sym_primitive_type] = ACTIONS(1434), - [anon_sym_enum] = ACTIONS(1434), - [anon_sym_struct] = ACTIONS(1434), - [anon_sym_union] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_switch] = ACTIONS(1434), - [anon_sym_case] = ACTIONS(1434), - [anon_sym_default] = ACTIONS(1434), - [anon_sym_while] = ACTIONS(1434), - [anon_sym_do] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1434), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_goto] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1436), - [anon_sym_PLUS_PLUS] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1434), - [anon_sym_offsetof] = ACTIONS(1434), - [anon_sym__Generic] = ACTIONS(1434), - [anon_sym_asm] = ACTIONS(1434), - [anon_sym___asm__] = ACTIONS(1434), - [sym_number_literal] = ACTIONS(1436), - [anon_sym_L_SQUOTE] = ACTIONS(1436), - [anon_sym_u_SQUOTE] = ACTIONS(1436), - [anon_sym_U_SQUOTE] = ACTIONS(1436), - [anon_sym_u8_SQUOTE] = ACTIONS(1436), - [anon_sym_SQUOTE] = ACTIONS(1436), - [anon_sym_L_DQUOTE] = ACTIONS(1436), - [anon_sym_u_DQUOTE] = ACTIONS(1436), - [anon_sym_U_DQUOTE] = ACTIONS(1436), - [anon_sym_u8_DQUOTE] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1436), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [anon_sym_NULL] = ACTIONS(1434), - [anon_sym_nullptr] = ACTIONS(1434), + [436] = { + [sym_identifier] = ACTIONS(1562), + [aux_sym_preproc_include_token1] = ACTIONS(1562), + [aux_sym_preproc_def_token1] = ACTIONS(1562), + [aux_sym_preproc_if_token1] = ACTIONS(1562), + [aux_sym_preproc_if_token2] = ACTIONS(1562), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1562), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1562), + [sym_preproc_directive] = ACTIONS(1562), + [anon_sym_LPAREN2] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1564), + [anon_sym_TILDE] = ACTIONS(1564), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1564), + [anon_sym_AMP] = ACTIONS(1564), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym___extension__] = ACTIONS(1562), + [anon_sym_typedef] = ACTIONS(1562), + [anon_sym_extern] = ACTIONS(1562), + [anon_sym___attribute__] = ACTIONS(1562), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym___declspec] = ACTIONS(1562), + [anon_sym___cdecl] = ACTIONS(1562), + [anon_sym___clrcall] = ACTIONS(1562), + [anon_sym___stdcall] = ACTIONS(1562), + [anon_sym___fastcall] = ACTIONS(1562), + [anon_sym___thiscall] = ACTIONS(1562), + [anon_sym___vectorcall] = ACTIONS(1562), + [anon_sym_LBRACE] = ACTIONS(1564), + [anon_sym_signed] = ACTIONS(1562), + [anon_sym_unsigned] = ACTIONS(1562), + [anon_sym_long] = ACTIONS(1562), + [anon_sym_short] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1562), + [anon_sym_auto] = ACTIONS(1562), + [anon_sym_register] = ACTIONS(1562), + [anon_sym_inline] = ACTIONS(1562), + [anon_sym___inline] = ACTIONS(1562), + [anon_sym___inline__] = ACTIONS(1562), + [anon_sym___forceinline] = ACTIONS(1562), + [anon_sym_thread_local] = ACTIONS(1562), + [anon_sym___thread] = ACTIONS(1562), + [anon_sym_const] = ACTIONS(1562), + [anon_sym_constexpr] = ACTIONS(1562), + [anon_sym_volatile] = ACTIONS(1562), + [anon_sym_restrict] = ACTIONS(1562), + [anon_sym___restrict__] = ACTIONS(1562), + [anon_sym__Atomic] = ACTIONS(1562), + [anon_sym__Noreturn] = ACTIONS(1562), + [anon_sym_noreturn] = ACTIONS(1562), + [sym_primitive_type] = ACTIONS(1562), + [anon_sym_enum] = ACTIONS(1562), + [anon_sym_struct] = ACTIONS(1562), + [anon_sym_union] = ACTIONS(1562), + [anon_sym_if] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1562), + [anon_sym_case] = ACTIONS(1562), + [anon_sym_default] = ACTIONS(1562), + [anon_sym_while] = ACTIONS(1562), + [anon_sym_do] = ACTIONS(1562), + [anon_sym_for] = ACTIONS(1562), + [anon_sym_return] = ACTIONS(1562), + [anon_sym_break] = ACTIONS(1562), + [anon_sym_continue] = ACTIONS(1562), + [anon_sym_goto] = ACTIONS(1562), + [anon_sym_DASH_DASH] = ACTIONS(1564), + [anon_sym_PLUS_PLUS] = ACTIONS(1564), + [anon_sym_sizeof] = ACTIONS(1562), + [anon_sym___alignof__] = ACTIONS(1562), + [anon_sym___alignof] = ACTIONS(1562), + [anon_sym__alignof] = ACTIONS(1562), + [anon_sym_alignof] = ACTIONS(1562), + [anon_sym__Alignof] = ACTIONS(1562), + [anon_sym_offsetof] = ACTIONS(1562), + [anon_sym___builtin_va_arg] = ACTIONS(1562), + [anon_sym__Generic] = ACTIONS(1562), + [anon_sym_asm] = ACTIONS(1562), + [anon_sym___asm__] = ACTIONS(1562), + [sym_number_literal] = ACTIONS(1564), + [anon_sym_L_SQUOTE] = ACTIONS(1564), + [anon_sym_u_SQUOTE] = ACTIONS(1564), + [anon_sym_U_SQUOTE] = ACTIONS(1564), + [anon_sym_u8_SQUOTE] = ACTIONS(1564), + [anon_sym_SQUOTE] = ACTIONS(1564), + [anon_sym_L_DQUOTE] = ACTIONS(1564), + [anon_sym_u_DQUOTE] = ACTIONS(1564), + [anon_sym_U_DQUOTE] = ACTIONS(1564), + [anon_sym_u8_DQUOTE] = ACTIONS(1564), + [anon_sym_DQUOTE] = ACTIONS(1564), + [sym_true] = ACTIONS(1562), + [sym_false] = ACTIONS(1562), + [anon_sym_NULL] = ACTIONS(1562), + [anon_sym_nullptr] = ACTIONS(1562), [sym_comment] = ACTIONS(3), }, - [522] = { - [ts_builtin_sym_end] = ACTIONS(1416), - [sym_identifier] = ACTIONS(1414), - [aux_sym_preproc_include_token1] = ACTIONS(1414), - [aux_sym_preproc_def_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), - [sym_preproc_directive] = ACTIONS(1414), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_typedef] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym___attribute__] = ACTIONS(1414), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), - [anon_sym___declspec] = ACTIONS(1414), - [anon_sym___cdecl] = ACTIONS(1414), - [anon_sym___clrcall] = ACTIONS(1414), - [anon_sym___stdcall] = ACTIONS(1414), - [anon_sym___fastcall] = ACTIONS(1414), - [anon_sym___thiscall] = ACTIONS(1414), - [anon_sym___vectorcall] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_signed] = ACTIONS(1414), - [anon_sym_unsigned] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_short] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_auto] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_inline] = ACTIONS(1414), - [anon_sym_thread_local] = ACTIONS(1414), - [anon_sym___thread] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_constexpr] = ACTIONS(1414), - [anon_sym_volatile] = ACTIONS(1414), - [anon_sym_restrict] = ACTIONS(1414), - [anon_sym___restrict__] = ACTIONS(1414), - [anon_sym__Atomic] = ACTIONS(1414), - [anon_sym__Noreturn] = ACTIONS(1414), - [anon_sym_noreturn] = ACTIONS(1414), - [sym_primitive_type] = ACTIONS(1414), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_case] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_goto] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_sizeof] = ACTIONS(1414), - [anon_sym_offsetof] = ACTIONS(1414), - [anon_sym__Generic] = ACTIONS(1414), - [anon_sym_asm] = ACTIONS(1414), - [anon_sym___asm__] = ACTIONS(1414), - [sym_number_literal] = ACTIONS(1416), - [anon_sym_L_SQUOTE] = ACTIONS(1416), - [anon_sym_u_SQUOTE] = ACTIONS(1416), - [anon_sym_U_SQUOTE] = ACTIONS(1416), - [anon_sym_u8_SQUOTE] = ACTIONS(1416), - [anon_sym_SQUOTE] = ACTIONS(1416), - [anon_sym_L_DQUOTE] = ACTIONS(1416), - [anon_sym_u_DQUOTE] = ACTIONS(1416), - [anon_sym_U_DQUOTE] = ACTIONS(1416), - [anon_sym_u8_DQUOTE] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [sym_true] = ACTIONS(1414), - [sym_false] = ACTIONS(1414), - [anon_sym_NULL] = ACTIONS(1414), - [anon_sym_nullptr] = ACTIONS(1414), + [437] = { + [sym_identifier] = ACTIONS(1506), + [aux_sym_preproc_include_token1] = ACTIONS(1506), + [aux_sym_preproc_def_token1] = ACTIONS(1506), + [aux_sym_preproc_if_token1] = ACTIONS(1506), + [aux_sym_preproc_if_token2] = ACTIONS(1506), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1506), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1506), + [sym_preproc_directive] = ACTIONS(1506), + [anon_sym_LPAREN2] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_STAR] = ACTIONS(1508), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym___extension__] = ACTIONS(1506), + [anon_sym_typedef] = ACTIONS(1506), + [anon_sym_extern] = ACTIONS(1506), + [anon_sym___attribute__] = ACTIONS(1506), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1508), + [anon_sym___declspec] = ACTIONS(1506), + [anon_sym___cdecl] = ACTIONS(1506), + [anon_sym___clrcall] = ACTIONS(1506), + [anon_sym___stdcall] = ACTIONS(1506), + [anon_sym___fastcall] = ACTIONS(1506), + [anon_sym___thiscall] = ACTIONS(1506), + [anon_sym___vectorcall] = ACTIONS(1506), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_signed] = ACTIONS(1506), + [anon_sym_unsigned] = ACTIONS(1506), + [anon_sym_long] = ACTIONS(1506), + [anon_sym_short] = ACTIONS(1506), + [anon_sym_static] = ACTIONS(1506), + [anon_sym_auto] = ACTIONS(1506), + [anon_sym_register] = ACTIONS(1506), + [anon_sym_inline] = ACTIONS(1506), + [anon_sym___inline] = ACTIONS(1506), + [anon_sym___inline__] = ACTIONS(1506), + [anon_sym___forceinline] = ACTIONS(1506), + [anon_sym_thread_local] = ACTIONS(1506), + [anon_sym___thread] = ACTIONS(1506), + [anon_sym_const] = ACTIONS(1506), + [anon_sym_constexpr] = ACTIONS(1506), + [anon_sym_volatile] = ACTIONS(1506), + [anon_sym_restrict] = ACTIONS(1506), + [anon_sym___restrict__] = ACTIONS(1506), + [anon_sym__Atomic] = ACTIONS(1506), + [anon_sym__Noreturn] = ACTIONS(1506), + [anon_sym_noreturn] = ACTIONS(1506), + [sym_primitive_type] = ACTIONS(1506), + [anon_sym_enum] = ACTIONS(1506), + [anon_sym_struct] = ACTIONS(1506), + [anon_sym_union] = ACTIONS(1506), + [anon_sym_if] = ACTIONS(1506), + [anon_sym_switch] = ACTIONS(1506), + [anon_sym_case] = ACTIONS(1506), + [anon_sym_default] = ACTIONS(1506), + [anon_sym_while] = ACTIONS(1506), + [anon_sym_do] = ACTIONS(1506), + [anon_sym_for] = ACTIONS(1506), + [anon_sym_return] = ACTIONS(1506), + [anon_sym_break] = ACTIONS(1506), + [anon_sym_continue] = ACTIONS(1506), + [anon_sym_goto] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_sizeof] = ACTIONS(1506), + [anon_sym___alignof__] = ACTIONS(1506), + [anon_sym___alignof] = ACTIONS(1506), + [anon_sym__alignof] = ACTIONS(1506), + [anon_sym_alignof] = ACTIONS(1506), + [anon_sym__Alignof] = ACTIONS(1506), + [anon_sym_offsetof] = ACTIONS(1506), + [anon_sym___builtin_va_arg] = ACTIONS(1506), + [anon_sym__Generic] = ACTIONS(1506), + [anon_sym_asm] = ACTIONS(1506), + [anon_sym___asm__] = ACTIONS(1506), + [sym_number_literal] = ACTIONS(1508), + [anon_sym_L_SQUOTE] = ACTIONS(1508), + [anon_sym_u_SQUOTE] = ACTIONS(1508), + [anon_sym_U_SQUOTE] = ACTIONS(1508), + [anon_sym_u8_SQUOTE] = ACTIONS(1508), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_L_DQUOTE] = ACTIONS(1508), + [anon_sym_u_DQUOTE] = ACTIONS(1508), + [anon_sym_U_DQUOTE] = ACTIONS(1508), + [anon_sym_u8_DQUOTE] = ACTIONS(1508), + [anon_sym_DQUOTE] = ACTIONS(1508), + [sym_true] = ACTIONS(1506), + [sym_false] = ACTIONS(1506), + [anon_sym_NULL] = ACTIONS(1506), + [anon_sym_nullptr] = ACTIONS(1506), [sym_comment] = ACTIONS(3), }, - [523] = { - [ts_builtin_sym_end] = ACTIONS(1366), - [sym_identifier] = ACTIONS(1364), - [aux_sym_preproc_include_token1] = ACTIONS(1364), - [aux_sym_preproc_def_token1] = ACTIONS(1364), - [aux_sym_preproc_if_token1] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), - [sym_preproc_directive] = ACTIONS(1364), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(1366), - [anon_sym_TILDE] = ACTIONS(1366), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_AMP] = ACTIONS(1366), - [anon_sym_typedef] = ACTIONS(1364), - [anon_sym_extern] = ACTIONS(1364), - [anon_sym___attribute__] = ACTIONS(1364), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1366), - [anon_sym___declspec] = ACTIONS(1364), - [anon_sym___cdecl] = ACTIONS(1364), - [anon_sym___clrcall] = ACTIONS(1364), - [anon_sym___stdcall] = ACTIONS(1364), - [anon_sym___fastcall] = ACTIONS(1364), - [anon_sym___thiscall] = ACTIONS(1364), - [anon_sym___vectorcall] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_signed] = ACTIONS(1364), - [anon_sym_unsigned] = ACTIONS(1364), - [anon_sym_long] = ACTIONS(1364), - [anon_sym_short] = ACTIONS(1364), - [anon_sym_static] = ACTIONS(1364), - [anon_sym_auto] = ACTIONS(1364), - [anon_sym_register] = ACTIONS(1364), - [anon_sym_inline] = ACTIONS(1364), - [anon_sym_thread_local] = ACTIONS(1364), - [anon_sym___thread] = ACTIONS(1364), - [anon_sym_const] = ACTIONS(1364), - [anon_sym_constexpr] = ACTIONS(1364), - [anon_sym_volatile] = ACTIONS(1364), - [anon_sym_restrict] = ACTIONS(1364), - [anon_sym___restrict__] = ACTIONS(1364), - [anon_sym__Atomic] = ACTIONS(1364), - [anon_sym__Noreturn] = ACTIONS(1364), - [anon_sym_noreturn] = ACTIONS(1364), - [sym_primitive_type] = ACTIONS(1364), - [anon_sym_enum] = ACTIONS(1364), - [anon_sym_struct] = ACTIONS(1364), - [anon_sym_union] = ACTIONS(1364), - [anon_sym_if] = ACTIONS(1364), - [anon_sym_switch] = ACTIONS(1364), - [anon_sym_case] = ACTIONS(1364), - [anon_sym_default] = ACTIONS(1364), - [anon_sym_while] = ACTIONS(1364), - [anon_sym_do] = ACTIONS(1364), - [anon_sym_for] = ACTIONS(1364), - [anon_sym_return] = ACTIONS(1364), - [anon_sym_break] = ACTIONS(1364), - [anon_sym_continue] = ACTIONS(1364), - [anon_sym_goto] = ACTIONS(1364), - [anon_sym_DASH_DASH] = ACTIONS(1366), - [anon_sym_PLUS_PLUS] = ACTIONS(1366), - [anon_sym_sizeof] = ACTIONS(1364), - [anon_sym_offsetof] = ACTIONS(1364), - [anon_sym__Generic] = ACTIONS(1364), - [anon_sym_asm] = ACTIONS(1364), - [anon_sym___asm__] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(1366), - [anon_sym_L_SQUOTE] = ACTIONS(1366), - [anon_sym_u_SQUOTE] = ACTIONS(1366), - [anon_sym_U_SQUOTE] = ACTIONS(1366), - [anon_sym_u8_SQUOTE] = ACTIONS(1366), - [anon_sym_SQUOTE] = ACTIONS(1366), - [anon_sym_L_DQUOTE] = ACTIONS(1366), - [anon_sym_u_DQUOTE] = ACTIONS(1366), - [anon_sym_U_DQUOTE] = ACTIONS(1366), - [anon_sym_u8_DQUOTE] = ACTIONS(1366), - [anon_sym_DQUOTE] = ACTIONS(1366), - [sym_true] = ACTIONS(1364), - [sym_false] = ACTIONS(1364), - [anon_sym_NULL] = ACTIONS(1364), - [anon_sym_nullptr] = ACTIONS(1364), + [438] = { + [sym_identifier] = ACTIONS(1566), + [aux_sym_preproc_include_token1] = ACTIONS(1566), + [aux_sym_preproc_def_token1] = ACTIONS(1566), + [aux_sym_preproc_if_token1] = ACTIONS(1566), + [aux_sym_preproc_if_token2] = ACTIONS(1566), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1566), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1566), + [sym_preproc_directive] = ACTIONS(1566), + [anon_sym_LPAREN2] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1568), + [anon_sym_TILDE] = ACTIONS(1568), + [anon_sym_DASH] = ACTIONS(1566), + [anon_sym_PLUS] = ACTIONS(1566), + [anon_sym_STAR] = ACTIONS(1568), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_SEMI] = ACTIONS(1568), + [anon_sym___extension__] = ACTIONS(1566), + [anon_sym_typedef] = ACTIONS(1566), + [anon_sym_extern] = ACTIONS(1566), + [anon_sym___attribute__] = ACTIONS(1566), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), + [anon_sym___declspec] = ACTIONS(1566), + [anon_sym___cdecl] = ACTIONS(1566), + [anon_sym___clrcall] = ACTIONS(1566), + [anon_sym___stdcall] = ACTIONS(1566), + [anon_sym___fastcall] = ACTIONS(1566), + [anon_sym___thiscall] = ACTIONS(1566), + [anon_sym___vectorcall] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_signed] = ACTIONS(1566), + [anon_sym_unsigned] = ACTIONS(1566), + [anon_sym_long] = ACTIONS(1566), + [anon_sym_short] = ACTIONS(1566), + [anon_sym_static] = ACTIONS(1566), + [anon_sym_auto] = ACTIONS(1566), + [anon_sym_register] = ACTIONS(1566), + [anon_sym_inline] = ACTIONS(1566), + [anon_sym___inline] = ACTIONS(1566), + [anon_sym___inline__] = ACTIONS(1566), + [anon_sym___forceinline] = ACTIONS(1566), + [anon_sym_thread_local] = ACTIONS(1566), + [anon_sym___thread] = ACTIONS(1566), + [anon_sym_const] = ACTIONS(1566), + [anon_sym_constexpr] = ACTIONS(1566), + [anon_sym_volatile] = ACTIONS(1566), + [anon_sym_restrict] = ACTIONS(1566), + [anon_sym___restrict__] = ACTIONS(1566), + [anon_sym__Atomic] = ACTIONS(1566), + [anon_sym__Noreturn] = ACTIONS(1566), + [anon_sym_noreturn] = ACTIONS(1566), + [sym_primitive_type] = ACTIONS(1566), + [anon_sym_enum] = ACTIONS(1566), + [anon_sym_struct] = ACTIONS(1566), + [anon_sym_union] = ACTIONS(1566), + [anon_sym_if] = ACTIONS(1566), + [anon_sym_switch] = ACTIONS(1566), + [anon_sym_case] = ACTIONS(1566), + [anon_sym_default] = ACTIONS(1566), + [anon_sym_while] = ACTIONS(1566), + [anon_sym_do] = ACTIONS(1566), + [anon_sym_for] = ACTIONS(1566), + [anon_sym_return] = ACTIONS(1566), + [anon_sym_break] = ACTIONS(1566), + [anon_sym_continue] = ACTIONS(1566), + [anon_sym_goto] = ACTIONS(1566), + [anon_sym_DASH_DASH] = ACTIONS(1568), + [anon_sym_PLUS_PLUS] = ACTIONS(1568), + [anon_sym_sizeof] = ACTIONS(1566), + [anon_sym___alignof__] = ACTIONS(1566), + [anon_sym___alignof] = ACTIONS(1566), + [anon_sym__alignof] = ACTIONS(1566), + [anon_sym_alignof] = ACTIONS(1566), + [anon_sym__Alignof] = ACTIONS(1566), + [anon_sym_offsetof] = ACTIONS(1566), + [anon_sym___builtin_va_arg] = ACTIONS(1566), + [anon_sym__Generic] = ACTIONS(1566), + [anon_sym_asm] = ACTIONS(1566), + [anon_sym___asm__] = ACTIONS(1566), + [sym_number_literal] = ACTIONS(1568), + [anon_sym_L_SQUOTE] = ACTIONS(1568), + [anon_sym_u_SQUOTE] = ACTIONS(1568), + [anon_sym_U_SQUOTE] = ACTIONS(1568), + [anon_sym_u8_SQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1568), + [anon_sym_L_DQUOTE] = ACTIONS(1568), + [anon_sym_u_DQUOTE] = ACTIONS(1568), + [anon_sym_U_DQUOTE] = ACTIONS(1568), + [anon_sym_u8_DQUOTE] = ACTIONS(1568), + [anon_sym_DQUOTE] = ACTIONS(1568), + [sym_true] = ACTIONS(1566), + [sym_false] = ACTIONS(1566), + [anon_sym_NULL] = ACTIONS(1566), + [anon_sym_nullptr] = ACTIONS(1566), [sym_comment] = ACTIONS(3), }, - [524] = { - [ts_builtin_sym_end] = ACTIONS(1362), - [sym_identifier] = ACTIONS(1360), - [aux_sym_preproc_include_token1] = ACTIONS(1360), - [aux_sym_preproc_def_token1] = ACTIONS(1360), - [aux_sym_preproc_if_token1] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), - [sym_preproc_directive] = ACTIONS(1360), - [anon_sym_LPAREN2] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1362), - [anon_sym_TILDE] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_typedef] = ACTIONS(1360), - [anon_sym_extern] = ACTIONS(1360), - [anon_sym___attribute__] = ACTIONS(1360), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), - [anon_sym___declspec] = ACTIONS(1360), - [anon_sym___cdecl] = ACTIONS(1360), - [anon_sym___clrcall] = ACTIONS(1360), - [anon_sym___stdcall] = ACTIONS(1360), - [anon_sym___fastcall] = ACTIONS(1360), - [anon_sym___thiscall] = ACTIONS(1360), - [anon_sym___vectorcall] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_signed] = ACTIONS(1360), - [anon_sym_unsigned] = ACTIONS(1360), - [anon_sym_long] = ACTIONS(1360), - [anon_sym_short] = ACTIONS(1360), - [anon_sym_static] = ACTIONS(1360), - [anon_sym_auto] = ACTIONS(1360), - [anon_sym_register] = ACTIONS(1360), - [anon_sym_inline] = ACTIONS(1360), - [anon_sym_thread_local] = ACTIONS(1360), - [anon_sym___thread] = ACTIONS(1360), - [anon_sym_const] = ACTIONS(1360), - [anon_sym_constexpr] = ACTIONS(1360), - [anon_sym_volatile] = ACTIONS(1360), - [anon_sym_restrict] = ACTIONS(1360), - [anon_sym___restrict__] = ACTIONS(1360), - [anon_sym__Atomic] = ACTIONS(1360), - [anon_sym__Noreturn] = ACTIONS(1360), - [anon_sym_noreturn] = ACTIONS(1360), - [sym_primitive_type] = ACTIONS(1360), - [anon_sym_enum] = ACTIONS(1360), - [anon_sym_struct] = ACTIONS(1360), - [anon_sym_union] = ACTIONS(1360), - [anon_sym_if] = ACTIONS(1360), - [anon_sym_switch] = ACTIONS(1360), - [anon_sym_case] = ACTIONS(1360), - [anon_sym_default] = ACTIONS(1360), - [anon_sym_while] = ACTIONS(1360), - [anon_sym_do] = ACTIONS(1360), - [anon_sym_for] = ACTIONS(1360), - [anon_sym_return] = ACTIONS(1360), - [anon_sym_break] = ACTIONS(1360), - [anon_sym_continue] = ACTIONS(1360), - [anon_sym_goto] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1360), - [anon_sym_offsetof] = ACTIONS(1360), - [anon_sym__Generic] = ACTIONS(1360), - [anon_sym_asm] = ACTIONS(1360), - [anon_sym___asm__] = ACTIONS(1360), - [sym_number_literal] = ACTIONS(1362), - [anon_sym_L_SQUOTE] = ACTIONS(1362), - [anon_sym_u_SQUOTE] = ACTIONS(1362), - [anon_sym_U_SQUOTE] = ACTIONS(1362), - [anon_sym_u8_SQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1362), - [anon_sym_L_DQUOTE] = ACTIONS(1362), - [anon_sym_u_DQUOTE] = ACTIONS(1362), - [anon_sym_U_DQUOTE] = ACTIONS(1362), - [anon_sym_u8_DQUOTE] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym_true] = ACTIONS(1360), - [sym_false] = ACTIONS(1360), - [anon_sym_NULL] = ACTIONS(1360), - [anon_sym_nullptr] = ACTIONS(1360), + [439] = { + [sym_identifier] = ACTIONS(1480), + [aux_sym_preproc_include_token1] = ACTIONS(1480), + [aux_sym_preproc_def_token1] = ACTIONS(1480), + [aux_sym_preproc_if_token1] = ACTIONS(1480), + [aux_sym_preproc_if_token2] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), + [sym_preproc_directive] = ACTIONS(1480), + [anon_sym_LPAREN2] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym___extension__] = ACTIONS(1480), + [anon_sym_typedef] = ACTIONS(1480), + [anon_sym_extern] = ACTIONS(1480), + [anon_sym___attribute__] = ACTIONS(1480), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), + [anon_sym___declspec] = ACTIONS(1480), + [anon_sym___cdecl] = ACTIONS(1480), + [anon_sym___clrcall] = ACTIONS(1480), + [anon_sym___stdcall] = ACTIONS(1480), + [anon_sym___fastcall] = ACTIONS(1480), + [anon_sym___thiscall] = ACTIONS(1480), + [anon_sym___vectorcall] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_signed] = ACTIONS(1480), + [anon_sym_unsigned] = ACTIONS(1480), + [anon_sym_long] = ACTIONS(1480), + [anon_sym_short] = ACTIONS(1480), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_auto] = ACTIONS(1480), + [anon_sym_register] = ACTIONS(1480), + [anon_sym_inline] = ACTIONS(1480), + [anon_sym___inline] = ACTIONS(1480), + [anon_sym___inline__] = ACTIONS(1480), + [anon_sym___forceinline] = ACTIONS(1480), + [anon_sym_thread_local] = ACTIONS(1480), + [anon_sym___thread] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_constexpr] = ACTIONS(1480), + [anon_sym_volatile] = ACTIONS(1480), + [anon_sym_restrict] = ACTIONS(1480), + [anon_sym___restrict__] = ACTIONS(1480), + [anon_sym__Atomic] = ACTIONS(1480), + [anon_sym__Noreturn] = ACTIONS(1480), + [anon_sym_noreturn] = ACTIONS(1480), + [sym_primitive_type] = ACTIONS(1480), + [anon_sym_enum] = ACTIONS(1480), + [anon_sym_struct] = ACTIONS(1480), + [anon_sym_union] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_switch] = ACTIONS(1480), + [anon_sym_case] = ACTIONS(1480), + [anon_sym_default] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_do] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1480), + [anon_sym_goto] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1482), + [anon_sym_PLUS_PLUS] = ACTIONS(1482), + [anon_sym_sizeof] = ACTIONS(1480), + [anon_sym___alignof__] = ACTIONS(1480), + [anon_sym___alignof] = ACTIONS(1480), + [anon_sym__alignof] = ACTIONS(1480), + [anon_sym_alignof] = ACTIONS(1480), + [anon_sym__Alignof] = ACTIONS(1480), + [anon_sym_offsetof] = ACTIONS(1480), + [anon_sym___builtin_va_arg] = ACTIONS(1480), + [anon_sym__Generic] = ACTIONS(1480), + [anon_sym_asm] = ACTIONS(1480), + [anon_sym___asm__] = ACTIONS(1480), + [sym_number_literal] = ACTIONS(1482), + [anon_sym_L_SQUOTE] = ACTIONS(1482), + [anon_sym_u_SQUOTE] = ACTIONS(1482), + [anon_sym_U_SQUOTE] = ACTIONS(1482), + [anon_sym_u8_SQUOTE] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_L_DQUOTE] = ACTIONS(1482), + [anon_sym_u_DQUOTE] = ACTIONS(1482), + [anon_sym_U_DQUOTE] = ACTIONS(1482), + [anon_sym_u8_DQUOTE] = ACTIONS(1482), + [anon_sym_DQUOTE] = ACTIONS(1482), + [sym_true] = ACTIONS(1480), + [sym_false] = ACTIONS(1480), + [anon_sym_NULL] = ACTIONS(1480), + [anon_sym_nullptr] = ACTIONS(1480), [sym_comment] = ACTIONS(3), }, - [525] = { - [ts_builtin_sym_end] = ACTIONS(1374), - [sym_identifier] = ACTIONS(1372), - [aux_sym_preproc_include_token1] = ACTIONS(1372), - [aux_sym_preproc_def_token1] = ACTIONS(1372), - [aux_sym_preproc_if_token1] = ACTIONS(1372), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), - [sym_preproc_directive] = ACTIONS(1372), - [anon_sym_LPAREN2] = ACTIONS(1374), - [anon_sym_BANG] = ACTIONS(1374), - [anon_sym_TILDE] = ACTIONS(1374), - [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_PLUS] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1374), - [anon_sym_AMP] = ACTIONS(1374), - [anon_sym_typedef] = ACTIONS(1372), - [anon_sym_extern] = ACTIONS(1372), - [anon_sym___attribute__] = ACTIONS(1372), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), - [anon_sym___declspec] = ACTIONS(1372), - [anon_sym___cdecl] = ACTIONS(1372), - [anon_sym___clrcall] = ACTIONS(1372), - [anon_sym___stdcall] = ACTIONS(1372), - [anon_sym___fastcall] = ACTIONS(1372), - [anon_sym___thiscall] = ACTIONS(1372), - [anon_sym___vectorcall] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_signed] = ACTIONS(1372), - [anon_sym_unsigned] = ACTIONS(1372), - [anon_sym_long] = ACTIONS(1372), - [anon_sym_short] = ACTIONS(1372), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_auto] = ACTIONS(1372), - [anon_sym_register] = ACTIONS(1372), - [anon_sym_inline] = ACTIONS(1372), - [anon_sym_thread_local] = ACTIONS(1372), - [anon_sym___thread] = ACTIONS(1372), - [anon_sym_const] = ACTIONS(1372), - [anon_sym_constexpr] = ACTIONS(1372), - [anon_sym_volatile] = ACTIONS(1372), - [anon_sym_restrict] = ACTIONS(1372), - [anon_sym___restrict__] = ACTIONS(1372), - [anon_sym__Atomic] = ACTIONS(1372), - [anon_sym__Noreturn] = ACTIONS(1372), - [anon_sym_noreturn] = ACTIONS(1372), - [sym_primitive_type] = ACTIONS(1372), - [anon_sym_enum] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1372), - [anon_sym_union] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1372), - [anon_sym_switch] = ACTIONS(1372), - [anon_sym_case] = ACTIONS(1372), - [anon_sym_default] = ACTIONS(1372), - [anon_sym_while] = ACTIONS(1372), - [anon_sym_do] = ACTIONS(1372), - [anon_sym_for] = ACTIONS(1372), - [anon_sym_return] = ACTIONS(1372), - [anon_sym_break] = ACTIONS(1372), - [anon_sym_continue] = ACTIONS(1372), - [anon_sym_goto] = ACTIONS(1372), - [anon_sym_DASH_DASH] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1374), - [anon_sym_sizeof] = ACTIONS(1372), - [anon_sym_offsetof] = ACTIONS(1372), - [anon_sym__Generic] = ACTIONS(1372), - [anon_sym_asm] = ACTIONS(1372), - [anon_sym___asm__] = ACTIONS(1372), - [sym_number_literal] = ACTIONS(1374), - [anon_sym_L_SQUOTE] = ACTIONS(1374), - [anon_sym_u_SQUOTE] = ACTIONS(1374), - [anon_sym_U_SQUOTE] = ACTIONS(1374), - [anon_sym_u8_SQUOTE] = ACTIONS(1374), - [anon_sym_SQUOTE] = ACTIONS(1374), - [anon_sym_L_DQUOTE] = ACTIONS(1374), - [anon_sym_u_DQUOTE] = ACTIONS(1374), - [anon_sym_U_DQUOTE] = ACTIONS(1374), - [anon_sym_u8_DQUOTE] = ACTIONS(1374), - [anon_sym_DQUOTE] = ACTIONS(1374), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [anon_sym_NULL] = ACTIONS(1372), - [anon_sym_nullptr] = ACTIONS(1372), + [440] = { + [sym_identifier] = ACTIONS(1476), + [aux_sym_preproc_include_token1] = ACTIONS(1476), + [aux_sym_preproc_def_token1] = ACTIONS(1476), + [aux_sym_preproc_if_token1] = ACTIONS(1476), + [aux_sym_preproc_if_token2] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), + [sym_preproc_directive] = ACTIONS(1476), + [anon_sym_LPAREN2] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym___extension__] = ACTIONS(1476), + [anon_sym_typedef] = ACTIONS(1476), + [anon_sym_extern] = ACTIONS(1476), + [anon_sym___attribute__] = ACTIONS(1476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), + [anon_sym___declspec] = ACTIONS(1476), + [anon_sym___cdecl] = ACTIONS(1476), + [anon_sym___clrcall] = ACTIONS(1476), + [anon_sym___stdcall] = ACTIONS(1476), + [anon_sym___fastcall] = ACTIONS(1476), + [anon_sym___thiscall] = ACTIONS(1476), + [anon_sym___vectorcall] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_signed] = ACTIONS(1476), + [anon_sym_unsigned] = ACTIONS(1476), + [anon_sym_long] = ACTIONS(1476), + [anon_sym_short] = ACTIONS(1476), + [anon_sym_static] = ACTIONS(1476), + [anon_sym_auto] = ACTIONS(1476), + [anon_sym_register] = ACTIONS(1476), + [anon_sym_inline] = ACTIONS(1476), + [anon_sym___inline] = ACTIONS(1476), + [anon_sym___inline__] = ACTIONS(1476), + [anon_sym___forceinline] = ACTIONS(1476), + [anon_sym_thread_local] = ACTIONS(1476), + [anon_sym___thread] = ACTIONS(1476), + [anon_sym_const] = ACTIONS(1476), + [anon_sym_constexpr] = ACTIONS(1476), + [anon_sym_volatile] = ACTIONS(1476), + [anon_sym_restrict] = ACTIONS(1476), + [anon_sym___restrict__] = ACTIONS(1476), + [anon_sym__Atomic] = ACTIONS(1476), + [anon_sym__Noreturn] = ACTIONS(1476), + [anon_sym_noreturn] = ACTIONS(1476), + [sym_primitive_type] = ACTIONS(1476), + [anon_sym_enum] = ACTIONS(1476), + [anon_sym_struct] = ACTIONS(1476), + [anon_sym_union] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_switch] = ACTIONS(1476), + [anon_sym_case] = ACTIONS(1476), + [anon_sym_default] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_do] = ACTIONS(1476), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_goto] = ACTIONS(1476), + [anon_sym_DASH_DASH] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_sizeof] = ACTIONS(1476), + [anon_sym___alignof__] = ACTIONS(1476), + [anon_sym___alignof] = ACTIONS(1476), + [anon_sym__alignof] = ACTIONS(1476), + [anon_sym_alignof] = ACTIONS(1476), + [anon_sym__Alignof] = ACTIONS(1476), + [anon_sym_offsetof] = ACTIONS(1476), + [anon_sym___builtin_va_arg] = ACTIONS(1476), + [anon_sym__Generic] = ACTIONS(1476), + [anon_sym_asm] = ACTIONS(1476), + [anon_sym___asm__] = ACTIONS(1476), + [sym_number_literal] = ACTIONS(1478), + [anon_sym_L_SQUOTE] = ACTIONS(1478), + [anon_sym_u_SQUOTE] = ACTIONS(1478), + [anon_sym_U_SQUOTE] = ACTIONS(1478), + [anon_sym_u8_SQUOTE] = ACTIONS(1478), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_L_DQUOTE] = ACTIONS(1478), + [anon_sym_u_DQUOTE] = ACTIONS(1478), + [anon_sym_U_DQUOTE] = ACTIONS(1478), + [anon_sym_u8_DQUOTE] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(1478), + [sym_true] = ACTIONS(1476), + [sym_false] = ACTIONS(1476), + [anon_sym_NULL] = ACTIONS(1476), + [anon_sym_nullptr] = ACTIONS(1476), [sym_comment] = ACTIONS(3), }, - [526] = { - [sym_type_qualifier] = STATE(1190), - [sym__type_specifier] = STATE(1239), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym__expression] = STATE(1095), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1757), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_type_descriptor] = STATE(1913), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_type_definition_repeat1] = STATE(1190), - [aux_sym_sized_type_specifier_repeat1] = STATE(1254), - [sym_identifier] = ACTIONS(1755), + [441] = { + [sym_identifier] = ACTIONS(1468), + [aux_sym_preproc_include_token1] = ACTIONS(1468), + [aux_sym_preproc_def_token1] = ACTIONS(1468), + [aux_sym_preproc_if_token1] = ACTIONS(1468), + [aux_sym_preproc_if_token2] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), + [sym_preproc_directive] = ACTIONS(1468), + [anon_sym_LPAREN2] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym___extension__] = ACTIONS(1468), + [anon_sym_typedef] = ACTIONS(1468), + [anon_sym_extern] = ACTIONS(1468), + [anon_sym___attribute__] = ACTIONS(1468), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), + [anon_sym___declspec] = ACTIONS(1468), + [anon_sym___cdecl] = ACTIONS(1468), + [anon_sym___clrcall] = ACTIONS(1468), + [anon_sym___stdcall] = ACTIONS(1468), + [anon_sym___fastcall] = ACTIONS(1468), + [anon_sym___thiscall] = ACTIONS(1468), + [anon_sym___vectorcall] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1468), + [anon_sym_unsigned] = ACTIONS(1468), + [anon_sym_long] = ACTIONS(1468), + [anon_sym_short] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1468), + [anon_sym_auto] = ACTIONS(1468), + [anon_sym_register] = ACTIONS(1468), + [anon_sym_inline] = ACTIONS(1468), + [anon_sym___inline] = ACTIONS(1468), + [anon_sym___inline__] = ACTIONS(1468), + [anon_sym___forceinline] = ACTIONS(1468), + [anon_sym_thread_local] = ACTIONS(1468), + [anon_sym___thread] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1468), + [anon_sym_constexpr] = ACTIONS(1468), + [anon_sym_volatile] = ACTIONS(1468), + [anon_sym_restrict] = ACTIONS(1468), + [anon_sym___restrict__] = ACTIONS(1468), + [anon_sym__Atomic] = ACTIONS(1468), + [anon_sym__Noreturn] = ACTIONS(1468), + [anon_sym_noreturn] = ACTIONS(1468), + [sym_primitive_type] = ACTIONS(1468), + [anon_sym_enum] = ACTIONS(1468), + [anon_sym_struct] = ACTIONS(1468), + [anon_sym_union] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_switch] = ACTIONS(1468), + [anon_sym_case] = ACTIONS(1468), + [anon_sym_default] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1468), + [anon_sym_do] = ACTIONS(1468), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(1468), + [anon_sym_break] = ACTIONS(1468), + [anon_sym_continue] = ACTIONS(1468), + [anon_sym_goto] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1468), + [anon_sym___alignof__] = ACTIONS(1468), + [anon_sym___alignof] = ACTIONS(1468), + [anon_sym__alignof] = ACTIONS(1468), + [anon_sym_alignof] = ACTIONS(1468), + [anon_sym__Alignof] = ACTIONS(1468), + [anon_sym_offsetof] = ACTIONS(1468), + [anon_sym___builtin_va_arg] = ACTIONS(1468), + [anon_sym__Generic] = ACTIONS(1468), + [anon_sym_asm] = ACTIONS(1468), + [anon_sym___asm__] = ACTIONS(1468), + [sym_number_literal] = ACTIONS(1470), + [anon_sym_L_SQUOTE] = ACTIONS(1470), + [anon_sym_u_SQUOTE] = ACTIONS(1470), + [anon_sym_U_SQUOTE] = ACTIONS(1470), + [anon_sym_u8_SQUOTE] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1470), + [anon_sym_L_DQUOTE] = ACTIONS(1470), + [anon_sym_u_DQUOTE] = ACTIONS(1470), + [anon_sym_U_DQUOTE] = ACTIONS(1470), + [anon_sym_u8_DQUOTE] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [sym_true] = ACTIONS(1468), + [sym_false] = ACTIONS(1468), + [anon_sym_NULL] = ACTIONS(1468), + [anon_sym_nullptr] = ACTIONS(1468), + [sym_comment] = ACTIONS(3), + }, + [442] = { + [sym_identifier] = ACTIONS(1464), + [aux_sym_preproc_include_token1] = ACTIONS(1464), + [aux_sym_preproc_def_token1] = ACTIONS(1464), + [aux_sym_preproc_if_token1] = ACTIONS(1464), + [aux_sym_preproc_if_token2] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), + [sym_preproc_directive] = ACTIONS(1464), + [anon_sym_LPAREN2] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym___extension__] = ACTIONS(1464), + [anon_sym_typedef] = ACTIONS(1464), + [anon_sym_extern] = ACTIONS(1464), + [anon_sym___attribute__] = ACTIONS(1464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), + [anon_sym___declspec] = ACTIONS(1464), + [anon_sym___cdecl] = ACTIONS(1464), + [anon_sym___clrcall] = ACTIONS(1464), + [anon_sym___stdcall] = ACTIONS(1464), + [anon_sym___fastcall] = ACTIONS(1464), + [anon_sym___thiscall] = ACTIONS(1464), + [anon_sym___vectorcall] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_signed] = ACTIONS(1464), + [anon_sym_unsigned] = ACTIONS(1464), + [anon_sym_long] = ACTIONS(1464), + [anon_sym_short] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_auto] = ACTIONS(1464), + [anon_sym_register] = ACTIONS(1464), + [anon_sym_inline] = ACTIONS(1464), + [anon_sym___inline] = ACTIONS(1464), + [anon_sym___inline__] = ACTIONS(1464), + [anon_sym___forceinline] = ACTIONS(1464), + [anon_sym_thread_local] = ACTIONS(1464), + [anon_sym___thread] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_constexpr] = ACTIONS(1464), + [anon_sym_volatile] = ACTIONS(1464), + [anon_sym_restrict] = ACTIONS(1464), + [anon_sym___restrict__] = ACTIONS(1464), + [anon_sym__Atomic] = ACTIONS(1464), + [anon_sym__Noreturn] = ACTIONS(1464), + [anon_sym_noreturn] = ACTIONS(1464), + [sym_primitive_type] = ACTIONS(1464), + [anon_sym_enum] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1464), + [anon_sym_union] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_case] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_continue] = ACTIONS(1464), + [anon_sym_goto] = ACTIONS(1464), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_sizeof] = ACTIONS(1464), + [anon_sym___alignof__] = ACTIONS(1464), + [anon_sym___alignof] = ACTIONS(1464), + [anon_sym__alignof] = ACTIONS(1464), + [anon_sym_alignof] = ACTIONS(1464), + [anon_sym__Alignof] = ACTIONS(1464), + [anon_sym_offsetof] = ACTIONS(1464), + [anon_sym___builtin_va_arg] = ACTIONS(1464), + [anon_sym__Generic] = ACTIONS(1464), + [anon_sym_asm] = ACTIONS(1464), + [anon_sym___asm__] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [anon_sym_L_SQUOTE] = ACTIONS(1466), + [anon_sym_u_SQUOTE] = ACTIONS(1466), + [anon_sym_U_SQUOTE] = ACTIONS(1466), + [anon_sym_u8_SQUOTE] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [anon_sym_L_DQUOTE] = ACTIONS(1466), + [anon_sym_u_DQUOTE] = ACTIONS(1466), + [anon_sym_U_DQUOTE] = ACTIONS(1466), + [anon_sym_u8_DQUOTE] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [anon_sym_NULL] = ACTIONS(1464), + [anon_sym_nullptr] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + }, + [443] = { + [sym_identifier] = ACTIONS(1534), + [aux_sym_preproc_include_token1] = ACTIONS(1534), + [aux_sym_preproc_def_token1] = ACTIONS(1534), + [aux_sym_preproc_if_token1] = ACTIONS(1534), + [aux_sym_preproc_if_token2] = ACTIONS(1534), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1534), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1534), + [sym_preproc_directive] = ACTIONS(1534), + [anon_sym_LPAREN2] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1536), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_DASH] = ACTIONS(1534), + [anon_sym_PLUS] = ACTIONS(1534), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_AMP] = ACTIONS(1536), + [anon_sym_SEMI] = ACTIONS(1536), + [anon_sym___extension__] = ACTIONS(1534), + [anon_sym_typedef] = ACTIONS(1534), + [anon_sym_extern] = ACTIONS(1534), + [anon_sym___attribute__] = ACTIONS(1534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), + [anon_sym___declspec] = ACTIONS(1534), + [anon_sym___cdecl] = ACTIONS(1534), + [anon_sym___clrcall] = ACTIONS(1534), + [anon_sym___stdcall] = ACTIONS(1534), + [anon_sym___fastcall] = ACTIONS(1534), + [anon_sym___thiscall] = ACTIONS(1534), + [anon_sym___vectorcall] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_signed] = ACTIONS(1534), + [anon_sym_unsigned] = ACTIONS(1534), + [anon_sym_long] = ACTIONS(1534), + [anon_sym_short] = ACTIONS(1534), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_auto] = ACTIONS(1534), + [anon_sym_register] = ACTIONS(1534), + [anon_sym_inline] = ACTIONS(1534), + [anon_sym___inline] = ACTIONS(1534), + [anon_sym___inline__] = ACTIONS(1534), + [anon_sym___forceinline] = ACTIONS(1534), + [anon_sym_thread_local] = ACTIONS(1534), + [anon_sym___thread] = ACTIONS(1534), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_constexpr] = ACTIONS(1534), + [anon_sym_volatile] = ACTIONS(1534), + [anon_sym_restrict] = ACTIONS(1534), + [anon_sym___restrict__] = ACTIONS(1534), + [anon_sym__Atomic] = ACTIONS(1534), + [anon_sym__Noreturn] = ACTIONS(1534), + [anon_sym_noreturn] = ACTIONS(1534), + [sym_primitive_type] = ACTIONS(1534), + [anon_sym_enum] = ACTIONS(1534), + [anon_sym_struct] = ACTIONS(1534), + [anon_sym_union] = ACTIONS(1534), + [anon_sym_if] = ACTIONS(1534), + [anon_sym_switch] = ACTIONS(1534), + [anon_sym_case] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1534), + [anon_sym_while] = ACTIONS(1534), + [anon_sym_do] = ACTIONS(1534), + [anon_sym_for] = ACTIONS(1534), + [anon_sym_return] = ACTIONS(1534), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1534), + [anon_sym_goto] = ACTIONS(1534), + [anon_sym_DASH_DASH] = ACTIONS(1536), + [anon_sym_PLUS_PLUS] = ACTIONS(1536), + [anon_sym_sizeof] = ACTIONS(1534), + [anon_sym___alignof__] = ACTIONS(1534), + [anon_sym___alignof] = ACTIONS(1534), + [anon_sym__alignof] = ACTIONS(1534), + [anon_sym_alignof] = ACTIONS(1534), + [anon_sym__Alignof] = ACTIONS(1534), + [anon_sym_offsetof] = ACTIONS(1534), + [anon_sym___builtin_va_arg] = ACTIONS(1534), + [anon_sym__Generic] = ACTIONS(1534), + [anon_sym_asm] = ACTIONS(1534), + [anon_sym___asm__] = ACTIONS(1534), + [sym_number_literal] = ACTIONS(1536), + [anon_sym_L_SQUOTE] = ACTIONS(1536), + [anon_sym_u_SQUOTE] = ACTIONS(1536), + [anon_sym_U_SQUOTE] = ACTIONS(1536), + [anon_sym_u8_SQUOTE] = ACTIONS(1536), + [anon_sym_SQUOTE] = ACTIONS(1536), + [anon_sym_L_DQUOTE] = ACTIONS(1536), + [anon_sym_u_DQUOTE] = ACTIONS(1536), + [anon_sym_U_DQUOTE] = ACTIONS(1536), + [anon_sym_u8_DQUOTE] = ACTIONS(1536), + [anon_sym_DQUOTE] = ACTIONS(1536), + [sym_true] = ACTIONS(1534), + [sym_false] = ACTIONS(1534), + [anon_sym_NULL] = ACTIONS(1534), + [anon_sym_nullptr] = ACTIONS(1534), + [sym_comment] = ACTIONS(3), + }, + [444] = { + [sym_identifier] = ACTIONS(1472), + [aux_sym_preproc_include_token1] = ACTIONS(1472), + [aux_sym_preproc_def_token1] = ACTIONS(1472), + [aux_sym_preproc_if_token1] = ACTIONS(1472), + [aux_sym_preproc_if_token2] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), + [sym_preproc_directive] = ACTIONS(1472), + [anon_sym_LPAREN2] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym___extension__] = ACTIONS(1472), + [anon_sym_typedef] = ACTIONS(1472), + [anon_sym_extern] = ACTIONS(1472), + [anon_sym___attribute__] = ACTIONS(1472), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), + [anon_sym___declspec] = ACTIONS(1472), + [anon_sym___cdecl] = ACTIONS(1472), + [anon_sym___clrcall] = ACTIONS(1472), + [anon_sym___stdcall] = ACTIONS(1472), + [anon_sym___fastcall] = ACTIONS(1472), + [anon_sym___thiscall] = ACTIONS(1472), + [anon_sym___vectorcall] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_signed] = ACTIONS(1472), + [anon_sym_unsigned] = ACTIONS(1472), + [anon_sym_long] = ACTIONS(1472), + [anon_sym_short] = ACTIONS(1472), + [anon_sym_static] = ACTIONS(1472), + [anon_sym_auto] = ACTIONS(1472), + [anon_sym_register] = ACTIONS(1472), + [anon_sym_inline] = ACTIONS(1472), + [anon_sym___inline] = ACTIONS(1472), + [anon_sym___inline__] = ACTIONS(1472), + [anon_sym___forceinline] = ACTIONS(1472), + [anon_sym_thread_local] = ACTIONS(1472), + [anon_sym___thread] = ACTIONS(1472), + [anon_sym_const] = ACTIONS(1472), + [anon_sym_constexpr] = ACTIONS(1472), + [anon_sym_volatile] = ACTIONS(1472), + [anon_sym_restrict] = ACTIONS(1472), + [anon_sym___restrict__] = ACTIONS(1472), + [anon_sym__Atomic] = ACTIONS(1472), + [anon_sym__Noreturn] = ACTIONS(1472), + [anon_sym_noreturn] = ACTIONS(1472), + [sym_primitive_type] = ACTIONS(1472), + [anon_sym_enum] = ACTIONS(1472), + [anon_sym_struct] = ACTIONS(1472), + [anon_sym_union] = ACTIONS(1472), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_switch] = ACTIONS(1472), + [anon_sym_case] = ACTIONS(1472), + [anon_sym_default] = ACTIONS(1472), + [anon_sym_while] = ACTIONS(1472), + [anon_sym_do] = ACTIONS(1472), + [anon_sym_for] = ACTIONS(1472), + [anon_sym_return] = ACTIONS(1472), + [anon_sym_break] = ACTIONS(1472), + [anon_sym_continue] = ACTIONS(1472), + [anon_sym_goto] = ACTIONS(1472), + [anon_sym_DASH_DASH] = ACTIONS(1474), + [anon_sym_PLUS_PLUS] = ACTIONS(1474), + [anon_sym_sizeof] = ACTIONS(1472), + [anon_sym___alignof__] = ACTIONS(1472), + [anon_sym___alignof] = ACTIONS(1472), + [anon_sym__alignof] = ACTIONS(1472), + [anon_sym_alignof] = ACTIONS(1472), + [anon_sym__Alignof] = ACTIONS(1472), + [anon_sym_offsetof] = ACTIONS(1472), + [anon_sym___builtin_va_arg] = ACTIONS(1472), + [anon_sym__Generic] = ACTIONS(1472), + [anon_sym_asm] = ACTIONS(1472), + [anon_sym___asm__] = ACTIONS(1472), + [sym_number_literal] = ACTIONS(1474), + [anon_sym_L_SQUOTE] = ACTIONS(1474), + [anon_sym_u_SQUOTE] = ACTIONS(1474), + [anon_sym_U_SQUOTE] = ACTIONS(1474), + [anon_sym_u8_SQUOTE] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1474), + [anon_sym_L_DQUOTE] = ACTIONS(1474), + [anon_sym_u_DQUOTE] = ACTIONS(1474), + [anon_sym_U_DQUOTE] = ACTIONS(1474), + [anon_sym_u8_DQUOTE] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [sym_true] = ACTIONS(1472), + [sym_false] = ACTIONS(1472), + [anon_sym_NULL] = ACTIONS(1472), + [anon_sym_nullptr] = ACTIONS(1472), + [sym_comment] = ACTIONS(3), + }, + [445] = { + [sym_identifier] = ACTIONS(1542), + [aux_sym_preproc_include_token1] = ACTIONS(1542), + [aux_sym_preproc_def_token1] = ACTIONS(1542), + [aux_sym_preproc_if_token1] = ACTIONS(1542), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1542), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1542), + [sym_preproc_directive] = ACTIONS(1542), + [anon_sym_LPAREN2] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1544), + [anon_sym_TILDE] = ACTIONS(1544), + [anon_sym_DASH] = ACTIONS(1542), + [anon_sym_PLUS] = ACTIONS(1542), + [anon_sym_STAR] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(1544), + [anon_sym_SEMI] = ACTIONS(1544), + [anon_sym___extension__] = ACTIONS(1542), + [anon_sym_typedef] = ACTIONS(1542), + [anon_sym_extern] = ACTIONS(1542), + [anon_sym___attribute__] = ACTIONS(1542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1544), + [anon_sym___declspec] = ACTIONS(1542), + [anon_sym___cdecl] = ACTIONS(1542), + [anon_sym___clrcall] = ACTIONS(1542), + [anon_sym___stdcall] = ACTIONS(1542), + [anon_sym___fastcall] = ACTIONS(1542), + [anon_sym___thiscall] = ACTIONS(1542), + [anon_sym___vectorcall] = ACTIONS(1542), + [anon_sym_LBRACE] = ACTIONS(1544), + [anon_sym_RBRACE] = ACTIONS(1544), + [anon_sym_signed] = ACTIONS(1542), + [anon_sym_unsigned] = ACTIONS(1542), + [anon_sym_long] = ACTIONS(1542), + [anon_sym_short] = ACTIONS(1542), + [anon_sym_static] = ACTIONS(1542), + [anon_sym_auto] = ACTIONS(1542), + [anon_sym_register] = ACTIONS(1542), + [anon_sym_inline] = ACTIONS(1542), + [anon_sym___inline] = ACTIONS(1542), + [anon_sym___inline__] = ACTIONS(1542), + [anon_sym___forceinline] = ACTIONS(1542), + [anon_sym_thread_local] = ACTIONS(1542), + [anon_sym___thread] = ACTIONS(1542), + [anon_sym_const] = ACTIONS(1542), + [anon_sym_constexpr] = ACTIONS(1542), + [anon_sym_volatile] = ACTIONS(1542), + [anon_sym_restrict] = ACTIONS(1542), + [anon_sym___restrict__] = ACTIONS(1542), + [anon_sym__Atomic] = ACTIONS(1542), + [anon_sym__Noreturn] = ACTIONS(1542), + [anon_sym_noreturn] = ACTIONS(1542), + [sym_primitive_type] = ACTIONS(1542), + [anon_sym_enum] = ACTIONS(1542), + [anon_sym_struct] = ACTIONS(1542), + [anon_sym_union] = ACTIONS(1542), + [anon_sym_if] = ACTIONS(1542), + [anon_sym_switch] = ACTIONS(1542), + [anon_sym_case] = ACTIONS(1542), + [anon_sym_default] = ACTIONS(1542), + [anon_sym_while] = ACTIONS(1542), + [anon_sym_do] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1542), + [anon_sym_return] = ACTIONS(1542), + [anon_sym_break] = ACTIONS(1542), + [anon_sym_continue] = ACTIONS(1542), + [anon_sym_goto] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_PLUS_PLUS] = ACTIONS(1544), + [anon_sym_sizeof] = ACTIONS(1542), + [anon_sym___alignof__] = ACTIONS(1542), + [anon_sym___alignof] = ACTIONS(1542), + [anon_sym__alignof] = ACTIONS(1542), + [anon_sym_alignof] = ACTIONS(1542), + [anon_sym__Alignof] = ACTIONS(1542), + [anon_sym_offsetof] = ACTIONS(1542), + [anon_sym___builtin_va_arg] = ACTIONS(1542), + [anon_sym__Generic] = ACTIONS(1542), + [anon_sym_asm] = ACTIONS(1542), + [anon_sym___asm__] = ACTIONS(1542), + [sym_number_literal] = ACTIONS(1544), + [anon_sym_L_SQUOTE] = ACTIONS(1544), + [anon_sym_u_SQUOTE] = ACTIONS(1544), + [anon_sym_U_SQUOTE] = ACTIONS(1544), + [anon_sym_u8_SQUOTE] = ACTIONS(1544), + [anon_sym_SQUOTE] = ACTIONS(1544), + [anon_sym_L_DQUOTE] = ACTIONS(1544), + [anon_sym_u_DQUOTE] = ACTIONS(1544), + [anon_sym_U_DQUOTE] = ACTIONS(1544), + [anon_sym_u8_DQUOTE] = ACTIONS(1544), + [anon_sym_DQUOTE] = ACTIONS(1544), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [anon_sym_NULL] = ACTIONS(1542), + [anon_sym_nullptr] = ACTIONS(1542), + [sym_comment] = ACTIONS(3), + }, + [446] = { + [sym_identifier] = ACTIONS(1518), + [aux_sym_preproc_include_token1] = ACTIONS(1518), + [aux_sym_preproc_def_token1] = ACTIONS(1518), + [aux_sym_preproc_if_token1] = ACTIONS(1518), + [aux_sym_preproc_if_token2] = ACTIONS(1518), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1518), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1518), + [sym_preproc_directive] = ACTIONS(1518), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_BANG] = ACTIONS(1520), + [anon_sym_TILDE] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_PLUS] = ACTIONS(1518), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_SEMI] = ACTIONS(1520), + [anon_sym___extension__] = ACTIONS(1518), + [anon_sym_typedef] = ACTIONS(1518), + [anon_sym_extern] = ACTIONS(1518), + [anon_sym___attribute__] = ACTIONS(1518), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1520), + [anon_sym___declspec] = ACTIONS(1518), + [anon_sym___cdecl] = ACTIONS(1518), + [anon_sym___clrcall] = ACTIONS(1518), + [anon_sym___stdcall] = ACTIONS(1518), + [anon_sym___fastcall] = ACTIONS(1518), + [anon_sym___thiscall] = ACTIONS(1518), + [anon_sym___vectorcall] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_signed] = ACTIONS(1518), + [anon_sym_unsigned] = ACTIONS(1518), + [anon_sym_long] = ACTIONS(1518), + [anon_sym_short] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_auto] = ACTIONS(1518), + [anon_sym_register] = ACTIONS(1518), + [anon_sym_inline] = ACTIONS(1518), + [anon_sym___inline] = ACTIONS(1518), + [anon_sym___inline__] = ACTIONS(1518), + [anon_sym___forceinline] = ACTIONS(1518), + [anon_sym_thread_local] = ACTIONS(1518), + [anon_sym___thread] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1518), + [anon_sym_constexpr] = ACTIONS(1518), + [anon_sym_volatile] = ACTIONS(1518), + [anon_sym_restrict] = ACTIONS(1518), + [anon_sym___restrict__] = ACTIONS(1518), + [anon_sym__Atomic] = ACTIONS(1518), + [anon_sym__Noreturn] = ACTIONS(1518), + [anon_sym_noreturn] = ACTIONS(1518), + [sym_primitive_type] = ACTIONS(1518), + [anon_sym_enum] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1518), + [anon_sym_union] = ACTIONS(1518), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1518), + [anon_sym_case] = ACTIONS(1518), + [anon_sym_default] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(1518), + [anon_sym_do] = ACTIONS(1518), + [anon_sym_for] = ACTIONS(1518), + [anon_sym_return] = ACTIONS(1518), + [anon_sym_break] = ACTIONS(1518), + [anon_sym_continue] = ACTIONS(1518), + [anon_sym_goto] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1520), + [anon_sym_PLUS_PLUS] = ACTIONS(1520), + [anon_sym_sizeof] = ACTIONS(1518), + [anon_sym___alignof__] = ACTIONS(1518), + [anon_sym___alignof] = ACTIONS(1518), + [anon_sym__alignof] = ACTIONS(1518), + [anon_sym_alignof] = ACTIONS(1518), + [anon_sym__Alignof] = ACTIONS(1518), + [anon_sym_offsetof] = ACTIONS(1518), + [anon_sym___builtin_va_arg] = ACTIONS(1518), + [anon_sym__Generic] = ACTIONS(1518), + [anon_sym_asm] = ACTIONS(1518), + [anon_sym___asm__] = ACTIONS(1518), + [sym_number_literal] = ACTIONS(1520), + [anon_sym_L_SQUOTE] = ACTIONS(1520), + [anon_sym_u_SQUOTE] = ACTIONS(1520), + [anon_sym_U_SQUOTE] = ACTIONS(1520), + [anon_sym_u8_SQUOTE] = ACTIONS(1520), + [anon_sym_SQUOTE] = ACTIONS(1520), + [anon_sym_L_DQUOTE] = ACTIONS(1520), + [anon_sym_u_DQUOTE] = ACTIONS(1520), + [anon_sym_U_DQUOTE] = ACTIONS(1520), + [anon_sym_u8_DQUOTE] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1520), + [sym_true] = ACTIONS(1518), + [sym_false] = ACTIONS(1518), + [anon_sym_NULL] = ACTIONS(1518), + [anon_sym_nullptr] = ACTIONS(1518), + [sym_comment] = ACTIONS(3), + }, + [447] = { + [sym_identifier] = ACTIONS(1566), + [aux_sym_preproc_include_token1] = ACTIONS(1566), + [aux_sym_preproc_def_token1] = ACTIONS(1566), + [aux_sym_preproc_if_token1] = ACTIONS(1566), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1566), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1566), + [sym_preproc_directive] = ACTIONS(1566), + [anon_sym_LPAREN2] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1568), + [anon_sym_TILDE] = ACTIONS(1568), + [anon_sym_DASH] = ACTIONS(1566), + [anon_sym_PLUS] = ACTIONS(1566), + [anon_sym_STAR] = ACTIONS(1568), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_SEMI] = ACTIONS(1568), + [anon_sym___extension__] = ACTIONS(1566), + [anon_sym_typedef] = ACTIONS(1566), + [anon_sym_extern] = ACTIONS(1566), + [anon_sym___attribute__] = ACTIONS(1566), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), + [anon_sym___declspec] = ACTIONS(1566), + [anon_sym___cdecl] = ACTIONS(1566), + [anon_sym___clrcall] = ACTIONS(1566), + [anon_sym___stdcall] = ACTIONS(1566), + [anon_sym___fastcall] = ACTIONS(1566), + [anon_sym___thiscall] = ACTIONS(1566), + [anon_sym___vectorcall] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_RBRACE] = ACTIONS(1568), + [anon_sym_signed] = ACTIONS(1566), + [anon_sym_unsigned] = ACTIONS(1566), + [anon_sym_long] = ACTIONS(1566), + [anon_sym_short] = ACTIONS(1566), + [anon_sym_static] = ACTIONS(1566), + [anon_sym_auto] = ACTIONS(1566), + [anon_sym_register] = ACTIONS(1566), + [anon_sym_inline] = ACTIONS(1566), + [anon_sym___inline] = ACTIONS(1566), + [anon_sym___inline__] = ACTIONS(1566), + [anon_sym___forceinline] = ACTIONS(1566), + [anon_sym_thread_local] = ACTIONS(1566), + [anon_sym___thread] = ACTIONS(1566), + [anon_sym_const] = ACTIONS(1566), + [anon_sym_constexpr] = ACTIONS(1566), + [anon_sym_volatile] = ACTIONS(1566), + [anon_sym_restrict] = ACTIONS(1566), + [anon_sym___restrict__] = ACTIONS(1566), + [anon_sym__Atomic] = ACTIONS(1566), + [anon_sym__Noreturn] = ACTIONS(1566), + [anon_sym_noreturn] = ACTIONS(1566), + [sym_primitive_type] = ACTIONS(1566), + [anon_sym_enum] = ACTIONS(1566), + [anon_sym_struct] = ACTIONS(1566), + [anon_sym_union] = ACTIONS(1566), + [anon_sym_if] = ACTIONS(1566), + [anon_sym_switch] = ACTIONS(1566), + [anon_sym_case] = ACTIONS(1566), + [anon_sym_default] = ACTIONS(1566), + [anon_sym_while] = ACTIONS(1566), + [anon_sym_do] = ACTIONS(1566), + [anon_sym_for] = ACTIONS(1566), + [anon_sym_return] = ACTIONS(1566), + [anon_sym_break] = ACTIONS(1566), + [anon_sym_continue] = ACTIONS(1566), + [anon_sym_goto] = ACTIONS(1566), + [anon_sym_DASH_DASH] = ACTIONS(1568), + [anon_sym_PLUS_PLUS] = ACTIONS(1568), + [anon_sym_sizeof] = ACTIONS(1566), + [anon_sym___alignof__] = ACTIONS(1566), + [anon_sym___alignof] = ACTIONS(1566), + [anon_sym__alignof] = ACTIONS(1566), + [anon_sym_alignof] = ACTIONS(1566), + [anon_sym__Alignof] = ACTIONS(1566), + [anon_sym_offsetof] = ACTIONS(1566), + [anon_sym___builtin_va_arg] = ACTIONS(1566), + [anon_sym__Generic] = ACTIONS(1566), + [anon_sym_asm] = ACTIONS(1566), + [anon_sym___asm__] = ACTIONS(1566), + [sym_number_literal] = ACTIONS(1568), + [anon_sym_L_SQUOTE] = ACTIONS(1568), + [anon_sym_u_SQUOTE] = ACTIONS(1568), + [anon_sym_U_SQUOTE] = ACTIONS(1568), + [anon_sym_u8_SQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1568), + [anon_sym_L_DQUOTE] = ACTIONS(1568), + [anon_sym_u_DQUOTE] = ACTIONS(1568), + [anon_sym_U_DQUOTE] = ACTIONS(1568), + [anon_sym_u8_DQUOTE] = ACTIONS(1568), + [anon_sym_DQUOTE] = ACTIONS(1568), + [sym_true] = ACTIONS(1566), + [sym_false] = ACTIONS(1566), + [anon_sym_NULL] = ACTIONS(1566), + [anon_sym_nullptr] = ACTIONS(1566), + [sym_comment] = ACTIONS(3), + }, + [448] = { + [sym_identifier] = ACTIONS(1562), + [aux_sym_preproc_include_token1] = ACTIONS(1562), + [aux_sym_preproc_def_token1] = ACTIONS(1562), + [aux_sym_preproc_if_token1] = ACTIONS(1562), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1562), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1562), + [sym_preproc_directive] = ACTIONS(1562), + [anon_sym_LPAREN2] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1564), + [anon_sym_TILDE] = ACTIONS(1564), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1564), + [anon_sym_AMP] = ACTIONS(1564), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym___extension__] = ACTIONS(1562), + [anon_sym_typedef] = ACTIONS(1562), + [anon_sym_extern] = ACTIONS(1562), + [anon_sym___attribute__] = ACTIONS(1562), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym___declspec] = ACTIONS(1562), + [anon_sym___cdecl] = ACTIONS(1562), + [anon_sym___clrcall] = ACTIONS(1562), + [anon_sym___stdcall] = ACTIONS(1562), + [anon_sym___fastcall] = ACTIONS(1562), + [anon_sym___thiscall] = ACTIONS(1562), + [anon_sym___vectorcall] = ACTIONS(1562), + [anon_sym_LBRACE] = ACTIONS(1564), + [anon_sym_RBRACE] = ACTIONS(1564), + [anon_sym_signed] = ACTIONS(1562), + [anon_sym_unsigned] = ACTIONS(1562), + [anon_sym_long] = ACTIONS(1562), + [anon_sym_short] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1562), + [anon_sym_auto] = ACTIONS(1562), + [anon_sym_register] = ACTIONS(1562), + [anon_sym_inline] = ACTIONS(1562), + [anon_sym___inline] = ACTIONS(1562), + [anon_sym___inline__] = ACTIONS(1562), + [anon_sym___forceinline] = ACTIONS(1562), + [anon_sym_thread_local] = ACTIONS(1562), + [anon_sym___thread] = ACTIONS(1562), + [anon_sym_const] = ACTIONS(1562), + [anon_sym_constexpr] = ACTIONS(1562), + [anon_sym_volatile] = ACTIONS(1562), + [anon_sym_restrict] = ACTIONS(1562), + [anon_sym___restrict__] = ACTIONS(1562), + [anon_sym__Atomic] = ACTIONS(1562), + [anon_sym__Noreturn] = ACTIONS(1562), + [anon_sym_noreturn] = ACTIONS(1562), + [sym_primitive_type] = ACTIONS(1562), + [anon_sym_enum] = ACTIONS(1562), + [anon_sym_struct] = ACTIONS(1562), + [anon_sym_union] = ACTIONS(1562), + [anon_sym_if] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1562), + [anon_sym_case] = ACTIONS(1562), + [anon_sym_default] = ACTIONS(1562), + [anon_sym_while] = ACTIONS(1562), + [anon_sym_do] = ACTIONS(1562), + [anon_sym_for] = ACTIONS(1562), + [anon_sym_return] = ACTIONS(1562), + [anon_sym_break] = ACTIONS(1562), + [anon_sym_continue] = ACTIONS(1562), + [anon_sym_goto] = ACTIONS(1562), + [anon_sym_DASH_DASH] = ACTIONS(1564), + [anon_sym_PLUS_PLUS] = ACTIONS(1564), + [anon_sym_sizeof] = ACTIONS(1562), + [anon_sym___alignof__] = ACTIONS(1562), + [anon_sym___alignof] = ACTIONS(1562), + [anon_sym__alignof] = ACTIONS(1562), + [anon_sym_alignof] = ACTIONS(1562), + [anon_sym__Alignof] = ACTIONS(1562), + [anon_sym_offsetof] = ACTIONS(1562), + [anon_sym___builtin_va_arg] = ACTIONS(1562), + [anon_sym__Generic] = ACTIONS(1562), + [anon_sym_asm] = ACTIONS(1562), + [anon_sym___asm__] = ACTIONS(1562), + [sym_number_literal] = ACTIONS(1564), + [anon_sym_L_SQUOTE] = ACTIONS(1564), + [anon_sym_u_SQUOTE] = ACTIONS(1564), + [anon_sym_U_SQUOTE] = ACTIONS(1564), + [anon_sym_u8_SQUOTE] = ACTIONS(1564), + [anon_sym_SQUOTE] = ACTIONS(1564), + [anon_sym_L_DQUOTE] = ACTIONS(1564), + [anon_sym_u_DQUOTE] = ACTIONS(1564), + [anon_sym_U_DQUOTE] = ACTIONS(1564), + [anon_sym_u8_DQUOTE] = ACTIONS(1564), + [anon_sym_DQUOTE] = ACTIONS(1564), + [sym_true] = ACTIONS(1562), + [sym_false] = ACTIONS(1562), + [anon_sym_NULL] = ACTIONS(1562), + [anon_sym_nullptr] = ACTIONS(1562), + [sym_comment] = ACTIONS(3), + }, + [449] = { + [sym_identifier] = ACTIONS(1464), + [aux_sym_preproc_include_token1] = ACTIONS(1464), + [aux_sym_preproc_def_token1] = ACTIONS(1464), + [aux_sym_preproc_if_token1] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), + [sym_preproc_directive] = ACTIONS(1464), + [anon_sym_LPAREN2] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym___extension__] = ACTIONS(1464), + [anon_sym_typedef] = ACTIONS(1464), + [anon_sym_extern] = ACTIONS(1464), + [anon_sym___attribute__] = ACTIONS(1464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), + [anon_sym___declspec] = ACTIONS(1464), + [anon_sym___cdecl] = ACTIONS(1464), + [anon_sym___clrcall] = ACTIONS(1464), + [anon_sym___stdcall] = ACTIONS(1464), + [anon_sym___fastcall] = ACTIONS(1464), + [anon_sym___thiscall] = ACTIONS(1464), + [anon_sym___vectorcall] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1466), + [anon_sym_signed] = ACTIONS(1464), + [anon_sym_unsigned] = ACTIONS(1464), + [anon_sym_long] = ACTIONS(1464), + [anon_sym_short] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_auto] = ACTIONS(1464), + [anon_sym_register] = ACTIONS(1464), + [anon_sym_inline] = ACTIONS(1464), + [anon_sym___inline] = ACTIONS(1464), + [anon_sym___inline__] = ACTIONS(1464), + [anon_sym___forceinline] = ACTIONS(1464), + [anon_sym_thread_local] = ACTIONS(1464), + [anon_sym___thread] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_constexpr] = ACTIONS(1464), + [anon_sym_volatile] = ACTIONS(1464), + [anon_sym_restrict] = ACTIONS(1464), + [anon_sym___restrict__] = ACTIONS(1464), + [anon_sym__Atomic] = ACTIONS(1464), + [anon_sym__Noreturn] = ACTIONS(1464), + [anon_sym_noreturn] = ACTIONS(1464), + [sym_primitive_type] = ACTIONS(1464), + [anon_sym_enum] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1464), + [anon_sym_union] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_case] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_continue] = ACTIONS(1464), + [anon_sym_goto] = ACTIONS(1464), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_sizeof] = ACTIONS(1464), + [anon_sym___alignof__] = ACTIONS(1464), + [anon_sym___alignof] = ACTIONS(1464), + [anon_sym__alignof] = ACTIONS(1464), + [anon_sym_alignof] = ACTIONS(1464), + [anon_sym__Alignof] = ACTIONS(1464), + [anon_sym_offsetof] = ACTIONS(1464), + [anon_sym___builtin_va_arg] = ACTIONS(1464), + [anon_sym__Generic] = ACTIONS(1464), + [anon_sym_asm] = ACTIONS(1464), + [anon_sym___asm__] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [anon_sym_L_SQUOTE] = ACTIONS(1466), + [anon_sym_u_SQUOTE] = ACTIONS(1466), + [anon_sym_U_SQUOTE] = ACTIONS(1466), + [anon_sym_u8_SQUOTE] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [anon_sym_L_DQUOTE] = ACTIONS(1466), + [anon_sym_u_DQUOTE] = ACTIONS(1466), + [anon_sym_U_DQUOTE] = ACTIONS(1466), + [anon_sym_u8_DQUOTE] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [anon_sym_NULL] = ACTIONS(1464), + [anon_sym_nullptr] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + }, + [450] = { + [sym_identifier] = ACTIONS(1554), + [aux_sym_preproc_include_token1] = ACTIONS(1554), + [aux_sym_preproc_def_token1] = ACTIONS(1554), + [aux_sym_preproc_if_token1] = ACTIONS(1554), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1554), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1554), + [sym_preproc_directive] = ACTIONS(1554), + [anon_sym_LPAREN2] = ACTIONS(1556), + [anon_sym_BANG] = ACTIONS(1556), + [anon_sym_TILDE] = ACTIONS(1556), + [anon_sym_DASH] = ACTIONS(1554), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1556), + [anon_sym___extension__] = ACTIONS(1554), + [anon_sym_typedef] = ACTIONS(1554), + [anon_sym_extern] = ACTIONS(1554), + [anon_sym___attribute__] = ACTIONS(1554), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), + [anon_sym___declspec] = ACTIONS(1554), + [anon_sym___cdecl] = ACTIONS(1554), + [anon_sym___clrcall] = ACTIONS(1554), + [anon_sym___stdcall] = ACTIONS(1554), + [anon_sym___fastcall] = ACTIONS(1554), + [anon_sym___thiscall] = ACTIONS(1554), + [anon_sym___vectorcall] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_RBRACE] = ACTIONS(1556), + [anon_sym_signed] = ACTIONS(1554), + [anon_sym_unsigned] = ACTIONS(1554), + [anon_sym_long] = ACTIONS(1554), + [anon_sym_short] = ACTIONS(1554), + [anon_sym_static] = ACTIONS(1554), + [anon_sym_auto] = ACTIONS(1554), + [anon_sym_register] = ACTIONS(1554), + [anon_sym_inline] = ACTIONS(1554), + [anon_sym___inline] = ACTIONS(1554), + [anon_sym___inline__] = ACTIONS(1554), + [anon_sym___forceinline] = ACTIONS(1554), + [anon_sym_thread_local] = ACTIONS(1554), + [anon_sym___thread] = ACTIONS(1554), + [anon_sym_const] = ACTIONS(1554), + [anon_sym_constexpr] = ACTIONS(1554), + [anon_sym_volatile] = ACTIONS(1554), + [anon_sym_restrict] = ACTIONS(1554), + [anon_sym___restrict__] = ACTIONS(1554), + [anon_sym__Atomic] = ACTIONS(1554), + [anon_sym__Noreturn] = ACTIONS(1554), + [anon_sym_noreturn] = ACTIONS(1554), + [sym_primitive_type] = ACTIONS(1554), + [anon_sym_enum] = ACTIONS(1554), + [anon_sym_struct] = ACTIONS(1554), + [anon_sym_union] = ACTIONS(1554), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_switch] = ACTIONS(1554), + [anon_sym_case] = ACTIONS(1554), + [anon_sym_default] = ACTIONS(1554), + [anon_sym_while] = ACTIONS(1554), + [anon_sym_do] = ACTIONS(1554), + [anon_sym_for] = ACTIONS(1554), + [anon_sym_return] = ACTIONS(1554), + [anon_sym_break] = ACTIONS(1554), + [anon_sym_continue] = ACTIONS(1554), + [anon_sym_goto] = ACTIONS(1554), + [anon_sym_DASH_DASH] = ACTIONS(1556), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_sizeof] = ACTIONS(1554), + [anon_sym___alignof__] = ACTIONS(1554), + [anon_sym___alignof] = ACTIONS(1554), + [anon_sym__alignof] = ACTIONS(1554), + [anon_sym_alignof] = ACTIONS(1554), + [anon_sym__Alignof] = ACTIONS(1554), + [anon_sym_offsetof] = ACTIONS(1554), + [anon_sym___builtin_va_arg] = ACTIONS(1554), + [anon_sym__Generic] = ACTIONS(1554), + [anon_sym_asm] = ACTIONS(1554), + [anon_sym___asm__] = ACTIONS(1554), + [sym_number_literal] = ACTIONS(1556), + [anon_sym_L_SQUOTE] = ACTIONS(1556), + [anon_sym_u_SQUOTE] = ACTIONS(1556), + [anon_sym_U_SQUOTE] = ACTIONS(1556), + [anon_sym_u8_SQUOTE] = ACTIONS(1556), + [anon_sym_SQUOTE] = ACTIONS(1556), + [anon_sym_L_DQUOTE] = ACTIONS(1556), + [anon_sym_u_DQUOTE] = ACTIONS(1556), + [anon_sym_U_DQUOTE] = ACTIONS(1556), + [anon_sym_u8_DQUOTE] = ACTIONS(1556), + [anon_sym_DQUOTE] = ACTIONS(1556), + [sym_true] = ACTIONS(1554), + [sym_false] = ACTIONS(1554), + [anon_sym_NULL] = ACTIONS(1554), + [anon_sym_nullptr] = ACTIONS(1554), + [sym_comment] = ACTIONS(3), + }, + [451] = { + [sym_identifier] = ACTIONS(1550), + [aux_sym_preproc_include_token1] = ACTIONS(1550), + [aux_sym_preproc_def_token1] = ACTIONS(1550), + [aux_sym_preproc_if_token1] = ACTIONS(1550), + [aux_sym_preproc_if_token2] = ACTIONS(1550), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1550), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1550), + [sym_preproc_directive] = ACTIONS(1550), + [anon_sym_LPAREN2] = ACTIONS(1552), + [anon_sym_BANG] = ACTIONS(1552), + [anon_sym_TILDE] = ACTIONS(1552), + [anon_sym_DASH] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1550), + [anon_sym_STAR] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(1552), + [anon_sym_SEMI] = ACTIONS(1552), + [anon_sym___extension__] = ACTIONS(1550), + [anon_sym_typedef] = ACTIONS(1550), + [anon_sym_extern] = ACTIONS(1550), + [anon_sym___attribute__] = ACTIONS(1550), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1552), + [anon_sym___declspec] = ACTIONS(1550), + [anon_sym___cdecl] = ACTIONS(1550), + [anon_sym___clrcall] = ACTIONS(1550), + [anon_sym___stdcall] = ACTIONS(1550), + [anon_sym___fastcall] = ACTIONS(1550), + [anon_sym___thiscall] = ACTIONS(1550), + [anon_sym___vectorcall] = ACTIONS(1550), + [anon_sym_LBRACE] = ACTIONS(1552), + [anon_sym_signed] = ACTIONS(1550), + [anon_sym_unsigned] = ACTIONS(1550), + [anon_sym_long] = ACTIONS(1550), + [anon_sym_short] = ACTIONS(1550), + [anon_sym_static] = ACTIONS(1550), + [anon_sym_auto] = ACTIONS(1550), + [anon_sym_register] = ACTIONS(1550), + [anon_sym_inline] = ACTIONS(1550), + [anon_sym___inline] = ACTIONS(1550), + [anon_sym___inline__] = ACTIONS(1550), + [anon_sym___forceinline] = ACTIONS(1550), + [anon_sym_thread_local] = ACTIONS(1550), + [anon_sym___thread] = ACTIONS(1550), + [anon_sym_const] = ACTIONS(1550), + [anon_sym_constexpr] = ACTIONS(1550), + [anon_sym_volatile] = ACTIONS(1550), + [anon_sym_restrict] = ACTIONS(1550), + [anon_sym___restrict__] = ACTIONS(1550), + [anon_sym__Atomic] = ACTIONS(1550), + [anon_sym__Noreturn] = ACTIONS(1550), + [anon_sym_noreturn] = ACTIONS(1550), + [sym_primitive_type] = ACTIONS(1550), + [anon_sym_enum] = ACTIONS(1550), + [anon_sym_struct] = ACTIONS(1550), + [anon_sym_union] = ACTIONS(1550), + [anon_sym_if] = ACTIONS(1550), + [anon_sym_switch] = ACTIONS(1550), + [anon_sym_case] = ACTIONS(1550), + [anon_sym_default] = ACTIONS(1550), + [anon_sym_while] = ACTIONS(1550), + [anon_sym_do] = ACTIONS(1550), + [anon_sym_for] = ACTIONS(1550), + [anon_sym_return] = ACTIONS(1550), + [anon_sym_break] = ACTIONS(1550), + [anon_sym_continue] = ACTIONS(1550), + [anon_sym_goto] = ACTIONS(1550), + [anon_sym_DASH_DASH] = ACTIONS(1552), + [anon_sym_PLUS_PLUS] = ACTIONS(1552), + [anon_sym_sizeof] = ACTIONS(1550), + [anon_sym___alignof__] = ACTIONS(1550), + [anon_sym___alignof] = ACTIONS(1550), + [anon_sym__alignof] = ACTIONS(1550), + [anon_sym_alignof] = ACTIONS(1550), + [anon_sym__Alignof] = ACTIONS(1550), + [anon_sym_offsetof] = ACTIONS(1550), + [anon_sym___builtin_va_arg] = ACTIONS(1550), + [anon_sym__Generic] = ACTIONS(1550), + [anon_sym_asm] = ACTIONS(1550), + [anon_sym___asm__] = ACTIONS(1550), + [sym_number_literal] = ACTIONS(1552), + [anon_sym_L_SQUOTE] = ACTIONS(1552), + [anon_sym_u_SQUOTE] = ACTIONS(1552), + [anon_sym_U_SQUOTE] = ACTIONS(1552), + [anon_sym_u8_SQUOTE] = ACTIONS(1552), + [anon_sym_SQUOTE] = ACTIONS(1552), + [anon_sym_L_DQUOTE] = ACTIONS(1552), + [anon_sym_u_DQUOTE] = ACTIONS(1552), + [anon_sym_U_DQUOTE] = ACTIONS(1552), + [anon_sym_u8_DQUOTE] = ACTIONS(1552), + [anon_sym_DQUOTE] = ACTIONS(1552), + [sym_true] = ACTIONS(1550), + [sym_false] = ACTIONS(1550), + [anon_sym_NULL] = ACTIONS(1550), + [anon_sym_nullptr] = ACTIONS(1550), + [sym_comment] = ACTIONS(3), + }, + [452] = { + [sym_identifier] = ACTIONS(1530), + [aux_sym_preproc_include_token1] = ACTIONS(1530), + [aux_sym_preproc_def_token1] = ACTIONS(1530), + [aux_sym_preproc_if_token1] = ACTIONS(1530), + [aux_sym_preproc_if_token2] = ACTIONS(1530), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1530), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1530), + [sym_preproc_directive] = ACTIONS(1530), + [anon_sym_LPAREN2] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(1532), + [anon_sym_TILDE] = ACTIONS(1532), + [anon_sym_DASH] = ACTIONS(1530), + [anon_sym_PLUS] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1532), + [anon_sym_AMP] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym___extension__] = ACTIONS(1530), + [anon_sym_typedef] = ACTIONS(1530), + [anon_sym_extern] = ACTIONS(1530), + [anon_sym___attribute__] = ACTIONS(1530), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1532), + [anon_sym___declspec] = ACTIONS(1530), + [anon_sym___cdecl] = ACTIONS(1530), + [anon_sym___clrcall] = ACTIONS(1530), + [anon_sym___stdcall] = ACTIONS(1530), + [anon_sym___fastcall] = ACTIONS(1530), + [anon_sym___thiscall] = ACTIONS(1530), + [anon_sym___vectorcall] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_signed] = ACTIONS(1530), + [anon_sym_unsigned] = ACTIONS(1530), + [anon_sym_long] = ACTIONS(1530), + [anon_sym_short] = ACTIONS(1530), + [anon_sym_static] = ACTIONS(1530), + [anon_sym_auto] = ACTIONS(1530), + [anon_sym_register] = ACTIONS(1530), + [anon_sym_inline] = ACTIONS(1530), + [anon_sym___inline] = ACTIONS(1530), + [anon_sym___inline__] = ACTIONS(1530), + [anon_sym___forceinline] = ACTIONS(1530), + [anon_sym_thread_local] = ACTIONS(1530), + [anon_sym___thread] = ACTIONS(1530), + [anon_sym_const] = ACTIONS(1530), + [anon_sym_constexpr] = ACTIONS(1530), + [anon_sym_volatile] = ACTIONS(1530), + [anon_sym_restrict] = ACTIONS(1530), + [anon_sym___restrict__] = ACTIONS(1530), + [anon_sym__Atomic] = ACTIONS(1530), + [anon_sym__Noreturn] = ACTIONS(1530), + [anon_sym_noreturn] = ACTIONS(1530), + [sym_primitive_type] = ACTIONS(1530), + [anon_sym_enum] = ACTIONS(1530), + [anon_sym_struct] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), + [anon_sym_if] = ACTIONS(1530), + [anon_sym_switch] = ACTIONS(1530), + [anon_sym_case] = ACTIONS(1530), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_while] = ACTIONS(1530), + [anon_sym_do] = ACTIONS(1530), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1530), + [anon_sym_continue] = ACTIONS(1530), + [anon_sym_goto] = ACTIONS(1530), + [anon_sym_DASH_DASH] = ACTIONS(1532), + [anon_sym_PLUS_PLUS] = ACTIONS(1532), + [anon_sym_sizeof] = ACTIONS(1530), + [anon_sym___alignof__] = ACTIONS(1530), + [anon_sym___alignof] = ACTIONS(1530), + [anon_sym__alignof] = ACTIONS(1530), + [anon_sym_alignof] = ACTIONS(1530), + [anon_sym__Alignof] = ACTIONS(1530), + [anon_sym_offsetof] = ACTIONS(1530), + [anon_sym___builtin_va_arg] = ACTIONS(1530), + [anon_sym__Generic] = ACTIONS(1530), + [anon_sym_asm] = ACTIONS(1530), + [anon_sym___asm__] = ACTIONS(1530), + [sym_number_literal] = ACTIONS(1532), + [anon_sym_L_SQUOTE] = ACTIONS(1532), + [anon_sym_u_SQUOTE] = ACTIONS(1532), + [anon_sym_U_SQUOTE] = ACTIONS(1532), + [anon_sym_u8_SQUOTE] = ACTIONS(1532), + [anon_sym_SQUOTE] = ACTIONS(1532), + [anon_sym_L_DQUOTE] = ACTIONS(1532), + [anon_sym_u_DQUOTE] = ACTIONS(1532), + [anon_sym_U_DQUOTE] = ACTIONS(1532), + [anon_sym_u8_DQUOTE] = ACTIONS(1532), + [anon_sym_DQUOTE] = ACTIONS(1532), + [sym_true] = ACTIONS(1530), + [sym_false] = ACTIONS(1530), + [anon_sym_NULL] = ACTIONS(1530), + [anon_sym_nullptr] = ACTIONS(1530), + [sym_comment] = ACTIONS(3), + }, + [453] = { + [sym_identifier] = ACTIONS(1546), + [aux_sym_preproc_include_token1] = ACTIONS(1546), + [aux_sym_preproc_def_token1] = ACTIONS(1546), + [aux_sym_preproc_if_token1] = ACTIONS(1546), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1546), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1546), + [sym_preproc_directive] = ACTIONS(1546), + [anon_sym_LPAREN2] = ACTIONS(1548), + [anon_sym_BANG] = ACTIONS(1548), + [anon_sym_TILDE] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(1548), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_SEMI] = ACTIONS(1548), + [anon_sym___extension__] = ACTIONS(1546), + [anon_sym_typedef] = ACTIONS(1546), + [anon_sym_extern] = ACTIONS(1546), + [anon_sym___attribute__] = ACTIONS(1546), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym___declspec] = ACTIONS(1546), + [anon_sym___cdecl] = ACTIONS(1546), + [anon_sym___clrcall] = ACTIONS(1546), + [anon_sym___stdcall] = ACTIONS(1546), + [anon_sym___fastcall] = ACTIONS(1546), + [anon_sym___thiscall] = ACTIONS(1546), + [anon_sym___vectorcall] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_RBRACE] = ACTIONS(1548), + [anon_sym_signed] = ACTIONS(1546), + [anon_sym_unsigned] = ACTIONS(1546), + [anon_sym_long] = ACTIONS(1546), + [anon_sym_short] = ACTIONS(1546), + [anon_sym_static] = ACTIONS(1546), + [anon_sym_auto] = ACTIONS(1546), + [anon_sym_register] = ACTIONS(1546), + [anon_sym_inline] = ACTIONS(1546), + [anon_sym___inline] = ACTIONS(1546), + [anon_sym___inline__] = ACTIONS(1546), + [anon_sym___forceinline] = ACTIONS(1546), + [anon_sym_thread_local] = ACTIONS(1546), + [anon_sym___thread] = ACTIONS(1546), + [anon_sym_const] = ACTIONS(1546), + [anon_sym_constexpr] = ACTIONS(1546), + [anon_sym_volatile] = ACTIONS(1546), + [anon_sym_restrict] = ACTIONS(1546), + [anon_sym___restrict__] = ACTIONS(1546), + [anon_sym__Atomic] = ACTIONS(1546), + [anon_sym__Noreturn] = ACTIONS(1546), + [anon_sym_noreturn] = ACTIONS(1546), + [sym_primitive_type] = ACTIONS(1546), + [anon_sym_enum] = ACTIONS(1546), + [anon_sym_struct] = ACTIONS(1546), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_if] = ACTIONS(1546), + [anon_sym_switch] = ACTIONS(1546), + [anon_sym_case] = ACTIONS(1546), + [anon_sym_default] = ACTIONS(1546), + [anon_sym_while] = ACTIONS(1546), + [anon_sym_do] = ACTIONS(1546), + [anon_sym_for] = ACTIONS(1546), + [anon_sym_return] = ACTIONS(1546), + [anon_sym_break] = ACTIONS(1546), + [anon_sym_continue] = ACTIONS(1546), + [anon_sym_goto] = ACTIONS(1546), + [anon_sym_DASH_DASH] = ACTIONS(1548), + [anon_sym_PLUS_PLUS] = ACTIONS(1548), + [anon_sym_sizeof] = ACTIONS(1546), + [anon_sym___alignof__] = ACTIONS(1546), + [anon_sym___alignof] = ACTIONS(1546), + [anon_sym__alignof] = ACTIONS(1546), + [anon_sym_alignof] = ACTIONS(1546), + [anon_sym__Alignof] = ACTIONS(1546), + [anon_sym_offsetof] = ACTIONS(1546), + [anon_sym___builtin_va_arg] = ACTIONS(1546), + [anon_sym__Generic] = ACTIONS(1546), + [anon_sym_asm] = ACTIONS(1546), + [anon_sym___asm__] = ACTIONS(1546), + [sym_number_literal] = ACTIONS(1548), + [anon_sym_L_SQUOTE] = ACTIONS(1548), + [anon_sym_u_SQUOTE] = ACTIONS(1548), + [anon_sym_U_SQUOTE] = ACTIONS(1548), + [anon_sym_u8_SQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1548), + [anon_sym_L_DQUOTE] = ACTIONS(1548), + [anon_sym_u_DQUOTE] = ACTIONS(1548), + [anon_sym_U_DQUOTE] = ACTIONS(1548), + [anon_sym_u8_DQUOTE] = ACTIONS(1548), + [anon_sym_DQUOTE] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [anon_sym_NULL] = ACTIONS(1546), + [anon_sym_nullptr] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + }, + [454] = { + [sym_identifier] = ACTIONS(1538), + [aux_sym_preproc_include_token1] = ACTIONS(1538), + [aux_sym_preproc_def_token1] = ACTIONS(1538), + [aux_sym_preproc_if_token1] = ACTIONS(1538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1538), + [sym_preproc_directive] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(1540), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_AMP] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym___extension__] = ACTIONS(1538), + [anon_sym_typedef] = ACTIONS(1538), + [anon_sym_extern] = ACTIONS(1538), + [anon_sym___attribute__] = ACTIONS(1538), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1540), + [anon_sym___declspec] = ACTIONS(1538), + [anon_sym___cdecl] = ACTIONS(1538), + [anon_sym___clrcall] = ACTIONS(1538), + [anon_sym___stdcall] = ACTIONS(1538), + [anon_sym___fastcall] = ACTIONS(1538), + [anon_sym___thiscall] = ACTIONS(1538), + [anon_sym___vectorcall] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_signed] = ACTIONS(1538), + [anon_sym_unsigned] = ACTIONS(1538), + [anon_sym_long] = ACTIONS(1538), + [anon_sym_short] = ACTIONS(1538), + [anon_sym_static] = ACTIONS(1538), + [anon_sym_auto] = ACTIONS(1538), + [anon_sym_register] = ACTIONS(1538), + [anon_sym_inline] = ACTIONS(1538), + [anon_sym___inline] = ACTIONS(1538), + [anon_sym___inline__] = ACTIONS(1538), + [anon_sym___forceinline] = ACTIONS(1538), + [anon_sym_thread_local] = ACTIONS(1538), + [anon_sym___thread] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(1538), + [anon_sym_constexpr] = ACTIONS(1538), + [anon_sym_volatile] = ACTIONS(1538), + [anon_sym_restrict] = ACTIONS(1538), + [anon_sym___restrict__] = ACTIONS(1538), + [anon_sym__Atomic] = ACTIONS(1538), + [anon_sym__Noreturn] = ACTIONS(1538), + [anon_sym_noreturn] = ACTIONS(1538), + [sym_primitive_type] = ACTIONS(1538), + [anon_sym_enum] = ACTIONS(1538), + [anon_sym_struct] = ACTIONS(1538), + [anon_sym_union] = ACTIONS(1538), + [anon_sym_if] = ACTIONS(1538), + [anon_sym_switch] = ACTIONS(1538), + [anon_sym_case] = ACTIONS(1538), + [anon_sym_default] = ACTIONS(1538), + [anon_sym_while] = ACTIONS(1538), + [anon_sym_do] = ACTIONS(1538), + [anon_sym_for] = ACTIONS(1538), + [anon_sym_return] = ACTIONS(1538), + [anon_sym_break] = ACTIONS(1538), + [anon_sym_continue] = ACTIONS(1538), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_DASH_DASH] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1540), + [anon_sym_sizeof] = ACTIONS(1538), + [anon_sym___alignof__] = ACTIONS(1538), + [anon_sym___alignof] = ACTIONS(1538), + [anon_sym__alignof] = ACTIONS(1538), + [anon_sym_alignof] = ACTIONS(1538), + [anon_sym__Alignof] = ACTIONS(1538), + [anon_sym_offsetof] = ACTIONS(1538), + [anon_sym___builtin_va_arg] = ACTIONS(1538), + [anon_sym__Generic] = ACTIONS(1538), + [anon_sym_asm] = ACTIONS(1538), + [anon_sym___asm__] = ACTIONS(1538), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_L_SQUOTE] = ACTIONS(1540), + [anon_sym_u_SQUOTE] = ACTIONS(1540), + [anon_sym_U_SQUOTE] = ACTIONS(1540), + [anon_sym_u8_SQUOTE] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(1540), + [anon_sym_L_DQUOTE] = ACTIONS(1540), + [anon_sym_u_DQUOTE] = ACTIONS(1540), + [anon_sym_U_DQUOTE] = ACTIONS(1540), + [anon_sym_u8_DQUOTE] = ACTIONS(1540), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_true] = ACTIONS(1538), + [sym_false] = ACTIONS(1538), + [anon_sym_NULL] = ACTIONS(1538), + [anon_sym_nullptr] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + }, + [455] = { + [sym_identifier] = ACTIONS(1522), + [aux_sym_preproc_include_token1] = ACTIONS(1522), + [aux_sym_preproc_def_token1] = ACTIONS(1522), + [aux_sym_preproc_if_token1] = ACTIONS(1522), + [aux_sym_preproc_if_token2] = ACTIONS(1522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1522), + [sym_preproc_directive] = ACTIONS(1522), + [anon_sym_LPAREN2] = ACTIONS(1524), + [anon_sym_BANG] = ACTIONS(1524), + [anon_sym_TILDE] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1522), + [anon_sym_PLUS] = ACTIONS(1522), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(1522), + [anon_sym_typedef] = ACTIONS(1522), + [anon_sym_extern] = ACTIONS(1522), + [anon_sym___attribute__] = ACTIONS(1522), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1524), + [anon_sym___declspec] = ACTIONS(1522), + [anon_sym___cdecl] = ACTIONS(1522), + [anon_sym___clrcall] = ACTIONS(1522), + [anon_sym___stdcall] = ACTIONS(1522), + [anon_sym___fastcall] = ACTIONS(1522), + [anon_sym___thiscall] = ACTIONS(1522), + [anon_sym___vectorcall] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_signed] = ACTIONS(1522), + [anon_sym_unsigned] = ACTIONS(1522), + [anon_sym_long] = ACTIONS(1522), + [anon_sym_short] = ACTIONS(1522), + [anon_sym_static] = ACTIONS(1522), + [anon_sym_auto] = ACTIONS(1522), + [anon_sym_register] = ACTIONS(1522), + [anon_sym_inline] = ACTIONS(1522), + [anon_sym___inline] = ACTIONS(1522), + [anon_sym___inline__] = ACTIONS(1522), + [anon_sym___forceinline] = ACTIONS(1522), + [anon_sym_thread_local] = ACTIONS(1522), + [anon_sym___thread] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1522), + [anon_sym_constexpr] = ACTIONS(1522), + [anon_sym_volatile] = ACTIONS(1522), + [anon_sym_restrict] = ACTIONS(1522), + [anon_sym___restrict__] = ACTIONS(1522), + [anon_sym__Atomic] = ACTIONS(1522), + [anon_sym__Noreturn] = ACTIONS(1522), + [anon_sym_noreturn] = ACTIONS(1522), + [sym_primitive_type] = ACTIONS(1522), + [anon_sym_enum] = ACTIONS(1522), + [anon_sym_struct] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_if] = ACTIONS(1522), + [anon_sym_switch] = ACTIONS(1522), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_while] = ACTIONS(1522), + [anon_sym_do] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1522), + [anon_sym_return] = ACTIONS(1522), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_goto] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1524), + [anon_sym_PLUS_PLUS] = ACTIONS(1524), + [anon_sym_sizeof] = ACTIONS(1522), + [anon_sym___alignof__] = ACTIONS(1522), + [anon_sym___alignof] = ACTIONS(1522), + [anon_sym__alignof] = ACTIONS(1522), + [anon_sym_alignof] = ACTIONS(1522), + [anon_sym__Alignof] = ACTIONS(1522), + [anon_sym_offsetof] = ACTIONS(1522), + [anon_sym___builtin_va_arg] = ACTIONS(1522), + [anon_sym__Generic] = ACTIONS(1522), + [anon_sym_asm] = ACTIONS(1522), + [anon_sym___asm__] = ACTIONS(1522), + [sym_number_literal] = ACTIONS(1524), + [anon_sym_L_SQUOTE] = ACTIONS(1524), + [anon_sym_u_SQUOTE] = ACTIONS(1524), + [anon_sym_U_SQUOTE] = ACTIONS(1524), + [anon_sym_u8_SQUOTE] = ACTIONS(1524), + [anon_sym_SQUOTE] = ACTIONS(1524), + [anon_sym_L_DQUOTE] = ACTIONS(1524), + [anon_sym_u_DQUOTE] = ACTIONS(1524), + [anon_sym_U_DQUOTE] = ACTIONS(1524), + [anon_sym_u8_DQUOTE] = ACTIONS(1524), + [anon_sym_DQUOTE] = ACTIONS(1524), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [anon_sym_NULL] = ACTIONS(1522), + [anon_sym_nullptr] = ACTIONS(1522), + [sym_comment] = ACTIONS(3), + }, + [456] = { + [sym_identifier] = ACTIONS(1534), + [aux_sym_preproc_include_token1] = ACTIONS(1534), + [aux_sym_preproc_def_token1] = ACTIONS(1534), + [aux_sym_preproc_if_token1] = ACTIONS(1534), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1534), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1534), + [sym_preproc_directive] = ACTIONS(1534), + [anon_sym_LPAREN2] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1536), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_DASH] = ACTIONS(1534), + [anon_sym_PLUS] = ACTIONS(1534), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_AMP] = ACTIONS(1536), + [anon_sym_SEMI] = ACTIONS(1536), + [anon_sym___extension__] = ACTIONS(1534), + [anon_sym_typedef] = ACTIONS(1534), + [anon_sym_extern] = ACTIONS(1534), + [anon_sym___attribute__] = ACTIONS(1534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), + [anon_sym___declspec] = ACTIONS(1534), + [anon_sym___cdecl] = ACTIONS(1534), + [anon_sym___clrcall] = ACTIONS(1534), + [anon_sym___stdcall] = ACTIONS(1534), + [anon_sym___fastcall] = ACTIONS(1534), + [anon_sym___thiscall] = ACTIONS(1534), + [anon_sym___vectorcall] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_RBRACE] = ACTIONS(1536), + [anon_sym_signed] = ACTIONS(1534), + [anon_sym_unsigned] = ACTIONS(1534), + [anon_sym_long] = ACTIONS(1534), + [anon_sym_short] = ACTIONS(1534), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_auto] = ACTIONS(1534), + [anon_sym_register] = ACTIONS(1534), + [anon_sym_inline] = ACTIONS(1534), + [anon_sym___inline] = ACTIONS(1534), + [anon_sym___inline__] = ACTIONS(1534), + [anon_sym___forceinline] = ACTIONS(1534), + [anon_sym_thread_local] = ACTIONS(1534), + [anon_sym___thread] = ACTIONS(1534), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_constexpr] = ACTIONS(1534), + [anon_sym_volatile] = ACTIONS(1534), + [anon_sym_restrict] = ACTIONS(1534), + [anon_sym___restrict__] = ACTIONS(1534), + [anon_sym__Atomic] = ACTIONS(1534), + [anon_sym__Noreturn] = ACTIONS(1534), + [anon_sym_noreturn] = ACTIONS(1534), + [sym_primitive_type] = ACTIONS(1534), + [anon_sym_enum] = ACTIONS(1534), + [anon_sym_struct] = ACTIONS(1534), + [anon_sym_union] = ACTIONS(1534), + [anon_sym_if] = ACTIONS(1534), + [anon_sym_switch] = ACTIONS(1534), + [anon_sym_case] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1534), + [anon_sym_while] = ACTIONS(1534), + [anon_sym_do] = ACTIONS(1534), + [anon_sym_for] = ACTIONS(1534), + [anon_sym_return] = ACTIONS(1534), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1534), + [anon_sym_goto] = ACTIONS(1534), + [anon_sym_DASH_DASH] = ACTIONS(1536), + [anon_sym_PLUS_PLUS] = ACTIONS(1536), + [anon_sym_sizeof] = ACTIONS(1534), + [anon_sym___alignof__] = ACTIONS(1534), + [anon_sym___alignof] = ACTIONS(1534), + [anon_sym__alignof] = ACTIONS(1534), + [anon_sym_alignof] = ACTIONS(1534), + [anon_sym__Alignof] = ACTIONS(1534), + [anon_sym_offsetof] = ACTIONS(1534), + [anon_sym___builtin_va_arg] = ACTIONS(1534), + [anon_sym__Generic] = ACTIONS(1534), + [anon_sym_asm] = ACTIONS(1534), + [anon_sym___asm__] = ACTIONS(1534), + [sym_number_literal] = ACTIONS(1536), + [anon_sym_L_SQUOTE] = ACTIONS(1536), + [anon_sym_u_SQUOTE] = ACTIONS(1536), + [anon_sym_U_SQUOTE] = ACTIONS(1536), + [anon_sym_u8_SQUOTE] = ACTIONS(1536), + [anon_sym_SQUOTE] = ACTIONS(1536), + [anon_sym_L_DQUOTE] = ACTIONS(1536), + [anon_sym_u_DQUOTE] = ACTIONS(1536), + [anon_sym_U_DQUOTE] = ACTIONS(1536), + [anon_sym_u8_DQUOTE] = ACTIONS(1536), + [anon_sym_DQUOTE] = ACTIONS(1536), + [sym_true] = ACTIONS(1534), + [sym_false] = ACTIONS(1534), + [anon_sym_NULL] = ACTIONS(1534), + [anon_sym_nullptr] = ACTIONS(1534), + [sym_comment] = ACTIONS(3), + }, + [457] = { + [sym_identifier] = ACTIONS(1526), + [aux_sym_preproc_include_token1] = ACTIONS(1526), + [aux_sym_preproc_def_token1] = ACTIONS(1526), + [aux_sym_preproc_if_token1] = ACTIONS(1526), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1526), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1526), + [sym_preproc_directive] = ACTIONS(1526), + [anon_sym_LPAREN2] = ACTIONS(1528), + [anon_sym_BANG] = ACTIONS(1528), + [anon_sym_TILDE] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_PLUS] = ACTIONS(1526), + [anon_sym_STAR] = ACTIONS(1528), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_typedef] = ACTIONS(1526), + [anon_sym_extern] = ACTIONS(1526), + [anon_sym___attribute__] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym___declspec] = ACTIONS(1526), + [anon_sym___cdecl] = ACTIONS(1526), + [anon_sym___clrcall] = ACTIONS(1526), + [anon_sym___stdcall] = ACTIONS(1526), + [anon_sym___fastcall] = ACTIONS(1526), + [anon_sym___thiscall] = ACTIONS(1526), + [anon_sym___vectorcall] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_RBRACE] = ACTIONS(1528), + [anon_sym_signed] = ACTIONS(1526), + [anon_sym_unsigned] = ACTIONS(1526), + [anon_sym_long] = ACTIONS(1526), + [anon_sym_short] = ACTIONS(1526), + [anon_sym_static] = ACTIONS(1526), + [anon_sym_auto] = ACTIONS(1526), + [anon_sym_register] = ACTIONS(1526), + [anon_sym_inline] = ACTIONS(1526), + [anon_sym___inline] = ACTIONS(1526), + [anon_sym___inline__] = ACTIONS(1526), + [anon_sym___forceinline] = ACTIONS(1526), + [anon_sym_thread_local] = ACTIONS(1526), + [anon_sym___thread] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1526), + [anon_sym_constexpr] = ACTIONS(1526), + [anon_sym_volatile] = ACTIONS(1526), + [anon_sym_restrict] = ACTIONS(1526), + [anon_sym___restrict__] = ACTIONS(1526), + [anon_sym__Atomic] = ACTIONS(1526), + [anon_sym__Noreturn] = ACTIONS(1526), + [anon_sym_noreturn] = ACTIONS(1526), + [sym_primitive_type] = ACTIONS(1526), + [anon_sym_enum] = ACTIONS(1526), + [anon_sym_struct] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_switch] = ACTIONS(1526), + [anon_sym_case] = ACTIONS(1526), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1526), + [anon_sym_for] = ACTIONS(1526), + [anon_sym_return] = ACTIONS(1526), + [anon_sym_break] = ACTIONS(1526), + [anon_sym_continue] = ACTIONS(1526), + [anon_sym_goto] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1528), + [anon_sym_PLUS_PLUS] = ACTIONS(1528), + [anon_sym_sizeof] = ACTIONS(1526), + [anon_sym___alignof__] = ACTIONS(1526), + [anon_sym___alignof] = ACTIONS(1526), + [anon_sym__alignof] = ACTIONS(1526), + [anon_sym_alignof] = ACTIONS(1526), + [anon_sym__Alignof] = ACTIONS(1526), + [anon_sym_offsetof] = ACTIONS(1526), + [anon_sym___builtin_va_arg] = ACTIONS(1526), + [anon_sym__Generic] = ACTIONS(1526), + [anon_sym_asm] = ACTIONS(1526), + [anon_sym___asm__] = ACTIONS(1526), + [sym_number_literal] = ACTIONS(1528), + [anon_sym_L_SQUOTE] = ACTIONS(1528), + [anon_sym_u_SQUOTE] = ACTIONS(1528), + [anon_sym_U_SQUOTE] = ACTIONS(1528), + [anon_sym_u8_SQUOTE] = ACTIONS(1528), + [anon_sym_SQUOTE] = ACTIONS(1528), + [anon_sym_L_DQUOTE] = ACTIONS(1528), + [anon_sym_u_DQUOTE] = ACTIONS(1528), + [anon_sym_U_DQUOTE] = ACTIONS(1528), + [anon_sym_u8_DQUOTE] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1528), + [sym_true] = ACTIONS(1526), + [sym_false] = ACTIONS(1526), + [anon_sym_NULL] = ACTIONS(1526), + [anon_sym_nullptr] = ACTIONS(1526), + [sym_comment] = ACTIONS(3), + }, + [458] = { + [sym_identifier] = ACTIONS(1546), + [aux_sym_preproc_include_token1] = ACTIONS(1546), + [aux_sym_preproc_def_token1] = ACTIONS(1546), + [aux_sym_preproc_if_token1] = ACTIONS(1546), + [aux_sym_preproc_if_token2] = ACTIONS(1546), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1546), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1546), + [sym_preproc_directive] = ACTIONS(1546), + [anon_sym_LPAREN2] = ACTIONS(1548), + [anon_sym_BANG] = ACTIONS(1548), + [anon_sym_TILDE] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(1548), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_SEMI] = ACTIONS(1548), + [anon_sym___extension__] = ACTIONS(1546), + [anon_sym_typedef] = ACTIONS(1546), + [anon_sym_extern] = ACTIONS(1546), + [anon_sym___attribute__] = ACTIONS(1546), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym___declspec] = ACTIONS(1546), + [anon_sym___cdecl] = ACTIONS(1546), + [anon_sym___clrcall] = ACTIONS(1546), + [anon_sym___stdcall] = ACTIONS(1546), + [anon_sym___fastcall] = ACTIONS(1546), + [anon_sym___thiscall] = ACTIONS(1546), + [anon_sym___vectorcall] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_signed] = ACTIONS(1546), + [anon_sym_unsigned] = ACTIONS(1546), + [anon_sym_long] = ACTIONS(1546), + [anon_sym_short] = ACTIONS(1546), + [anon_sym_static] = ACTIONS(1546), + [anon_sym_auto] = ACTIONS(1546), + [anon_sym_register] = ACTIONS(1546), + [anon_sym_inline] = ACTIONS(1546), + [anon_sym___inline] = ACTIONS(1546), + [anon_sym___inline__] = ACTIONS(1546), + [anon_sym___forceinline] = ACTIONS(1546), + [anon_sym_thread_local] = ACTIONS(1546), + [anon_sym___thread] = ACTIONS(1546), + [anon_sym_const] = ACTIONS(1546), + [anon_sym_constexpr] = ACTIONS(1546), + [anon_sym_volatile] = ACTIONS(1546), + [anon_sym_restrict] = ACTIONS(1546), + [anon_sym___restrict__] = ACTIONS(1546), + [anon_sym__Atomic] = ACTIONS(1546), + [anon_sym__Noreturn] = ACTIONS(1546), + [anon_sym_noreturn] = ACTIONS(1546), + [sym_primitive_type] = ACTIONS(1546), + [anon_sym_enum] = ACTIONS(1546), + [anon_sym_struct] = ACTIONS(1546), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_if] = ACTIONS(1546), + [anon_sym_switch] = ACTIONS(1546), + [anon_sym_case] = ACTIONS(1546), + [anon_sym_default] = ACTIONS(1546), + [anon_sym_while] = ACTIONS(1546), + [anon_sym_do] = ACTIONS(1546), + [anon_sym_for] = ACTIONS(1546), + [anon_sym_return] = ACTIONS(1546), + [anon_sym_break] = ACTIONS(1546), + [anon_sym_continue] = ACTIONS(1546), + [anon_sym_goto] = ACTIONS(1546), + [anon_sym_DASH_DASH] = ACTIONS(1548), + [anon_sym_PLUS_PLUS] = ACTIONS(1548), + [anon_sym_sizeof] = ACTIONS(1546), + [anon_sym___alignof__] = ACTIONS(1546), + [anon_sym___alignof] = ACTIONS(1546), + [anon_sym__alignof] = ACTIONS(1546), + [anon_sym_alignof] = ACTIONS(1546), + [anon_sym__Alignof] = ACTIONS(1546), + [anon_sym_offsetof] = ACTIONS(1546), + [anon_sym___builtin_va_arg] = ACTIONS(1546), + [anon_sym__Generic] = ACTIONS(1546), + [anon_sym_asm] = ACTIONS(1546), + [anon_sym___asm__] = ACTIONS(1546), + [sym_number_literal] = ACTIONS(1548), + [anon_sym_L_SQUOTE] = ACTIONS(1548), + [anon_sym_u_SQUOTE] = ACTIONS(1548), + [anon_sym_U_SQUOTE] = ACTIONS(1548), + [anon_sym_u8_SQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1548), + [anon_sym_L_DQUOTE] = ACTIONS(1548), + [anon_sym_u_DQUOTE] = ACTIONS(1548), + [anon_sym_U_DQUOTE] = ACTIONS(1548), + [anon_sym_u8_DQUOTE] = ACTIONS(1548), + [anon_sym_DQUOTE] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [anon_sym_NULL] = ACTIONS(1546), + [anon_sym_nullptr] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + }, + [459] = { + [sym_identifier] = ACTIONS(1542), + [aux_sym_preproc_include_token1] = ACTIONS(1542), + [aux_sym_preproc_def_token1] = ACTIONS(1542), + [aux_sym_preproc_if_token1] = ACTIONS(1542), + [aux_sym_preproc_if_token2] = ACTIONS(1542), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1542), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1542), + [sym_preproc_directive] = ACTIONS(1542), + [anon_sym_LPAREN2] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1544), + [anon_sym_TILDE] = ACTIONS(1544), + [anon_sym_DASH] = ACTIONS(1542), + [anon_sym_PLUS] = ACTIONS(1542), + [anon_sym_STAR] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(1544), + [anon_sym_SEMI] = ACTIONS(1544), + [anon_sym___extension__] = ACTIONS(1542), + [anon_sym_typedef] = ACTIONS(1542), + [anon_sym_extern] = ACTIONS(1542), + [anon_sym___attribute__] = ACTIONS(1542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1544), + [anon_sym___declspec] = ACTIONS(1542), + [anon_sym___cdecl] = ACTIONS(1542), + [anon_sym___clrcall] = ACTIONS(1542), + [anon_sym___stdcall] = ACTIONS(1542), + [anon_sym___fastcall] = ACTIONS(1542), + [anon_sym___thiscall] = ACTIONS(1542), + [anon_sym___vectorcall] = ACTIONS(1542), + [anon_sym_LBRACE] = ACTIONS(1544), + [anon_sym_signed] = ACTIONS(1542), + [anon_sym_unsigned] = ACTIONS(1542), + [anon_sym_long] = ACTIONS(1542), + [anon_sym_short] = ACTIONS(1542), + [anon_sym_static] = ACTIONS(1542), + [anon_sym_auto] = ACTIONS(1542), + [anon_sym_register] = ACTIONS(1542), + [anon_sym_inline] = ACTIONS(1542), + [anon_sym___inline] = ACTIONS(1542), + [anon_sym___inline__] = ACTIONS(1542), + [anon_sym___forceinline] = ACTIONS(1542), + [anon_sym_thread_local] = ACTIONS(1542), + [anon_sym___thread] = ACTIONS(1542), + [anon_sym_const] = ACTIONS(1542), + [anon_sym_constexpr] = ACTIONS(1542), + [anon_sym_volatile] = ACTIONS(1542), + [anon_sym_restrict] = ACTIONS(1542), + [anon_sym___restrict__] = ACTIONS(1542), + [anon_sym__Atomic] = ACTIONS(1542), + [anon_sym__Noreturn] = ACTIONS(1542), + [anon_sym_noreturn] = ACTIONS(1542), + [sym_primitive_type] = ACTIONS(1542), + [anon_sym_enum] = ACTIONS(1542), + [anon_sym_struct] = ACTIONS(1542), + [anon_sym_union] = ACTIONS(1542), + [anon_sym_if] = ACTIONS(1542), + [anon_sym_switch] = ACTIONS(1542), + [anon_sym_case] = ACTIONS(1542), + [anon_sym_default] = ACTIONS(1542), + [anon_sym_while] = ACTIONS(1542), + [anon_sym_do] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1542), + [anon_sym_return] = ACTIONS(1542), + [anon_sym_break] = ACTIONS(1542), + [anon_sym_continue] = ACTIONS(1542), + [anon_sym_goto] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_PLUS_PLUS] = ACTIONS(1544), + [anon_sym_sizeof] = ACTIONS(1542), + [anon_sym___alignof__] = ACTIONS(1542), + [anon_sym___alignof] = ACTIONS(1542), + [anon_sym__alignof] = ACTIONS(1542), + [anon_sym_alignof] = ACTIONS(1542), + [anon_sym__Alignof] = ACTIONS(1542), + [anon_sym_offsetof] = ACTIONS(1542), + [anon_sym___builtin_va_arg] = ACTIONS(1542), + [anon_sym__Generic] = ACTIONS(1542), + [anon_sym_asm] = ACTIONS(1542), + [anon_sym___asm__] = ACTIONS(1542), + [sym_number_literal] = ACTIONS(1544), + [anon_sym_L_SQUOTE] = ACTIONS(1544), + [anon_sym_u_SQUOTE] = ACTIONS(1544), + [anon_sym_U_SQUOTE] = ACTIONS(1544), + [anon_sym_u8_SQUOTE] = ACTIONS(1544), + [anon_sym_SQUOTE] = ACTIONS(1544), + [anon_sym_L_DQUOTE] = ACTIONS(1544), + [anon_sym_u_DQUOTE] = ACTIONS(1544), + [anon_sym_U_DQUOTE] = ACTIONS(1544), + [anon_sym_u8_DQUOTE] = ACTIONS(1544), + [anon_sym_DQUOTE] = ACTIONS(1544), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [anon_sym_NULL] = ACTIONS(1542), + [anon_sym_nullptr] = ACTIONS(1542), + [sym_comment] = ACTIONS(3), + }, + [460] = { + [sym_identifier] = ACTIONS(1526), + [aux_sym_preproc_include_token1] = ACTIONS(1526), + [aux_sym_preproc_def_token1] = ACTIONS(1526), + [aux_sym_preproc_if_token1] = ACTIONS(1526), + [aux_sym_preproc_if_token2] = ACTIONS(1526), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1526), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1526), + [sym_preproc_directive] = ACTIONS(1526), + [anon_sym_LPAREN2] = ACTIONS(1528), + [anon_sym_BANG] = ACTIONS(1528), + [anon_sym_TILDE] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_PLUS] = ACTIONS(1526), + [anon_sym_STAR] = ACTIONS(1528), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_typedef] = ACTIONS(1526), + [anon_sym_extern] = ACTIONS(1526), + [anon_sym___attribute__] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym___declspec] = ACTIONS(1526), + [anon_sym___cdecl] = ACTIONS(1526), + [anon_sym___clrcall] = ACTIONS(1526), + [anon_sym___stdcall] = ACTIONS(1526), + [anon_sym___fastcall] = ACTIONS(1526), + [anon_sym___thiscall] = ACTIONS(1526), + [anon_sym___vectorcall] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_signed] = ACTIONS(1526), + [anon_sym_unsigned] = ACTIONS(1526), + [anon_sym_long] = ACTIONS(1526), + [anon_sym_short] = ACTIONS(1526), + [anon_sym_static] = ACTIONS(1526), + [anon_sym_auto] = ACTIONS(1526), + [anon_sym_register] = ACTIONS(1526), + [anon_sym_inline] = ACTIONS(1526), + [anon_sym___inline] = ACTIONS(1526), + [anon_sym___inline__] = ACTIONS(1526), + [anon_sym___forceinline] = ACTIONS(1526), + [anon_sym_thread_local] = ACTIONS(1526), + [anon_sym___thread] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1526), + [anon_sym_constexpr] = ACTIONS(1526), + [anon_sym_volatile] = ACTIONS(1526), + [anon_sym_restrict] = ACTIONS(1526), + [anon_sym___restrict__] = ACTIONS(1526), + [anon_sym__Atomic] = ACTIONS(1526), + [anon_sym__Noreturn] = ACTIONS(1526), + [anon_sym_noreturn] = ACTIONS(1526), + [sym_primitive_type] = ACTIONS(1526), + [anon_sym_enum] = ACTIONS(1526), + [anon_sym_struct] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_switch] = ACTIONS(1526), + [anon_sym_case] = ACTIONS(1526), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1526), + [anon_sym_for] = ACTIONS(1526), + [anon_sym_return] = ACTIONS(1526), + [anon_sym_break] = ACTIONS(1526), + [anon_sym_continue] = ACTIONS(1526), + [anon_sym_goto] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1528), + [anon_sym_PLUS_PLUS] = ACTIONS(1528), + [anon_sym_sizeof] = ACTIONS(1526), + [anon_sym___alignof__] = ACTIONS(1526), + [anon_sym___alignof] = ACTIONS(1526), + [anon_sym__alignof] = ACTIONS(1526), + [anon_sym_alignof] = ACTIONS(1526), + [anon_sym__Alignof] = ACTIONS(1526), + [anon_sym_offsetof] = ACTIONS(1526), + [anon_sym___builtin_va_arg] = ACTIONS(1526), + [anon_sym__Generic] = ACTIONS(1526), + [anon_sym_asm] = ACTIONS(1526), + [anon_sym___asm__] = ACTIONS(1526), + [sym_number_literal] = ACTIONS(1528), + [anon_sym_L_SQUOTE] = ACTIONS(1528), + [anon_sym_u_SQUOTE] = ACTIONS(1528), + [anon_sym_U_SQUOTE] = ACTIONS(1528), + [anon_sym_u8_SQUOTE] = ACTIONS(1528), + [anon_sym_SQUOTE] = ACTIONS(1528), + [anon_sym_L_DQUOTE] = ACTIONS(1528), + [anon_sym_u_DQUOTE] = ACTIONS(1528), + [anon_sym_U_DQUOTE] = ACTIONS(1528), + [anon_sym_u8_DQUOTE] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1528), + [sym_true] = ACTIONS(1526), + [sym_false] = ACTIONS(1526), + [anon_sym_NULL] = ACTIONS(1526), + [anon_sym_nullptr] = ACTIONS(1526), + [sym_comment] = ACTIONS(3), + }, + [461] = { + [sym_identifier] = ACTIONS(1522), + [aux_sym_preproc_include_token1] = ACTIONS(1522), + [aux_sym_preproc_def_token1] = ACTIONS(1522), + [aux_sym_preproc_if_token1] = ACTIONS(1522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1522), + [sym_preproc_directive] = ACTIONS(1522), + [anon_sym_LPAREN2] = ACTIONS(1524), + [anon_sym_BANG] = ACTIONS(1524), + [anon_sym_TILDE] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1522), + [anon_sym_PLUS] = ACTIONS(1522), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(1522), + [anon_sym_typedef] = ACTIONS(1522), + [anon_sym_extern] = ACTIONS(1522), + [anon_sym___attribute__] = ACTIONS(1522), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1524), + [anon_sym___declspec] = ACTIONS(1522), + [anon_sym___cdecl] = ACTIONS(1522), + [anon_sym___clrcall] = ACTIONS(1522), + [anon_sym___stdcall] = ACTIONS(1522), + [anon_sym___fastcall] = ACTIONS(1522), + [anon_sym___thiscall] = ACTIONS(1522), + [anon_sym___vectorcall] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_RBRACE] = ACTIONS(1524), + [anon_sym_signed] = ACTIONS(1522), + [anon_sym_unsigned] = ACTIONS(1522), + [anon_sym_long] = ACTIONS(1522), + [anon_sym_short] = ACTIONS(1522), + [anon_sym_static] = ACTIONS(1522), + [anon_sym_auto] = ACTIONS(1522), + [anon_sym_register] = ACTIONS(1522), + [anon_sym_inline] = ACTIONS(1522), + [anon_sym___inline] = ACTIONS(1522), + [anon_sym___inline__] = ACTIONS(1522), + [anon_sym___forceinline] = ACTIONS(1522), + [anon_sym_thread_local] = ACTIONS(1522), + [anon_sym___thread] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1522), + [anon_sym_constexpr] = ACTIONS(1522), + [anon_sym_volatile] = ACTIONS(1522), + [anon_sym_restrict] = ACTIONS(1522), + [anon_sym___restrict__] = ACTIONS(1522), + [anon_sym__Atomic] = ACTIONS(1522), + [anon_sym__Noreturn] = ACTIONS(1522), + [anon_sym_noreturn] = ACTIONS(1522), + [sym_primitive_type] = ACTIONS(1522), + [anon_sym_enum] = ACTIONS(1522), + [anon_sym_struct] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_if] = ACTIONS(1522), + [anon_sym_switch] = ACTIONS(1522), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_while] = ACTIONS(1522), + [anon_sym_do] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1522), + [anon_sym_return] = ACTIONS(1522), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_goto] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1524), + [anon_sym_PLUS_PLUS] = ACTIONS(1524), + [anon_sym_sizeof] = ACTIONS(1522), + [anon_sym___alignof__] = ACTIONS(1522), + [anon_sym___alignof] = ACTIONS(1522), + [anon_sym__alignof] = ACTIONS(1522), + [anon_sym_alignof] = ACTIONS(1522), + [anon_sym__Alignof] = ACTIONS(1522), + [anon_sym_offsetof] = ACTIONS(1522), + [anon_sym___builtin_va_arg] = ACTIONS(1522), + [anon_sym__Generic] = ACTIONS(1522), + [anon_sym_asm] = ACTIONS(1522), + [anon_sym___asm__] = ACTIONS(1522), + [sym_number_literal] = ACTIONS(1524), + [anon_sym_L_SQUOTE] = ACTIONS(1524), + [anon_sym_u_SQUOTE] = ACTIONS(1524), + [anon_sym_U_SQUOTE] = ACTIONS(1524), + [anon_sym_u8_SQUOTE] = ACTIONS(1524), + [anon_sym_SQUOTE] = ACTIONS(1524), + [anon_sym_L_DQUOTE] = ACTIONS(1524), + [anon_sym_u_DQUOTE] = ACTIONS(1524), + [anon_sym_U_DQUOTE] = ACTIONS(1524), + [anon_sym_u8_DQUOTE] = ACTIONS(1524), + [anon_sym_DQUOTE] = ACTIONS(1524), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [anon_sym_NULL] = ACTIONS(1522), + [anon_sym_nullptr] = ACTIONS(1522), + [sym_comment] = ACTIONS(3), + }, + [462] = { + [sym_identifier] = ACTIONS(1518), + [aux_sym_preproc_include_token1] = ACTIONS(1518), + [aux_sym_preproc_def_token1] = ACTIONS(1518), + [aux_sym_preproc_if_token1] = ACTIONS(1518), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1518), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1518), + [sym_preproc_directive] = ACTIONS(1518), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_BANG] = ACTIONS(1520), + [anon_sym_TILDE] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_PLUS] = ACTIONS(1518), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_SEMI] = ACTIONS(1520), + [anon_sym___extension__] = ACTIONS(1518), + [anon_sym_typedef] = ACTIONS(1518), + [anon_sym_extern] = ACTIONS(1518), + [anon_sym___attribute__] = ACTIONS(1518), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1520), + [anon_sym___declspec] = ACTIONS(1518), + [anon_sym___cdecl] = ACTIONS(1518), + [anon_sym___clrcall] = ACTIONS(1518), + [anon_sym___stdcall] = ACTIONS(1518), + [anon_sym___fastcall] = ACTIONS(1518), + [anon_sym___thiscall] = ACTIONS(1518), + [anon_sym___vectorcall] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(1520), + [anon_sym_signed] = ACTIONS(1518), + [anon_sym_unsigned] = ACTIONS(1518), + [anon_sym_long] = ACTIONS(1518), + [anon_sym_short] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_auto] = ACTIONS(1518), + [anon_sym_register] = ACTIONS(1518), + [anon_sym_inline] = ACTIONS(1518), + [anon_sym___inline] = ACTIONS(1518), + [anon_sym___inline__] = ACTIONS(1518), + [anon_sym___forceinline] = ACTIONS(1518), + [anon_sym_thread_local] = ACTIONS(1518), + [anon_sym___thread] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1518), + [anon_sym_constexpr] = ACTIONS(1518), + [anon_sym_volatile] = ACTIONS(1518), + [anon_sym_restrict] = ACTIONS(1518), + [anon_sym___restrict__] = ACTIONS(1518), + [anon_sym__Atomic] = ACTIONS(1518), + [anon_sym__Noreturn] = ACTIONS(1518), + [anon_sym_noreturn] = ACTIONS(1518), + [sym_primitive_type] = ACTIONS(1518), + [anon_sym_enum] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1518), + [anon_sym_union] = ACTIONS(1518), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1518), + [anon_sym_case] = ACTIONS(1518), + [anon_sym_default] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(1518), + [anon_sym_do] = ACTIONS(1518), + [anon_sym_for] = ACTIONS(1518), + [anon_sym_return] = ACTIONS(1518), + [anon_sym_break] = ACTIONS(1518), + [anon_sym_continue] = ACTIONS(1518), + [anon_sym_goto] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1520), + [anon_sym_PLUS_PLUS] = ACTIONS(1520), + [anon_sym_sizeof] = ACTIONS(1518), + [anon_sym___alignof__] = ACTIONS(1518), + [anon_sym___alignof] = ACTIONS(1518), + [anon_sym__alignof] = ACTIONS(1518), + [anon_sym_alignof] = ACTIONS(1518), + [anon_sym__Alignof] = ACTIONS(1518), + [anon_sym_offsetof] = ACTIONS(1518), + [anon_sym___builtin_va_arg] = ACTIONS(1518), + [anon_sym__Generic] = ACTIONS(1518), + [anon_sym_asm] = ACTIONS(1518), + [anon_sym___asm__] = ACTIONS(1518), + [sym_number_literal] = ACTIONS(1520), + [anon_sym_L_SQUOTE] = ACTIONS(1520), + [anon_sym_u_SQUOTE] = ACTIONS(1520), + [anon_sym_U_SQUOTE] = ACTIONS(1520), + [anon_sym_u8_SQUOTE] = ACTIONS(1520), + [anon_sym_SQUOTE] = ACTIONS(1520), + [anon_sym_L_DQUOTE] = ACTIONS(1520), + [anon_sym_u_DQUOTE] = ACTIONS(1520), + [anon_sym_U_DQUOTE] = ACTIONS(1520), + [anon_sym_u8_DQUOTE] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1520), + [sym_true] = ACTIONS(1518), + [sym_false] = ACTIONS(1518), + [anon_sym_NULL] = ACTIONS(1518), + [anon_sym_nullptr] = ACTIONS(1518), + [sym_comment] = ACTIONS(3), + }, + [463] = { + [sym_identifier] = ACTIONS(1514), + [aux_sym_preproc_include_token1] = ACTIONS(1514), + [aux_sym_preproc_def_token1] = ACTIONS(1514), + [aux_sym_preproc_if_token1] = ACTIONS(1514), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1514), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1514), + [sym_preproc_directive] = ACTIONS(1514), + [anon_sym_LPAREN2] = ACTIONS(1516), + [anon_sym_BANG] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1516), + [anon_sym_AMP] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym___extension__] = ACTIONS(1514), + [anon_sym_typedef] = ACTIONS(1514), + [anon_sym_extern] = ACTIONS(1514), + [anon_sym___attribute__] = ACTIONS(1514), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1516), + [anon_sym___declspec] = ACTIONS(1514), + [anon_sym___cdecl] = ACTIONS(1514), + [anon_sym___clrcall] = ACTIONS(1514), + [anon_sym___stdcall] = ACTIONS(1514), + [anon_sym___fastcall] = ACTIONS(1514), + [anon_sym___thiscall] = ACTIONS(1514), + [anon_sym___vectorcall] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_RBRACE] = ACTIONS(1516), + [anon_sym_signed] = ACTIONS(1514), + [anon_sym_unsigned] = ACTIONS(1514), + [anon_sym_long] = ACTIONS(1514), + [anon_sym_short] = ACTIONS(1514), + [anon_sym_static] = ACTIONS(1514), + [anon_sym_auto] = ACTIONS(1514), + [anon_sym_register] = ACTIONS(1514), + [anon_sym_inline] = ACTIONS(1514), + [anon_sym___inline] = ACTIONS(1514), + [anon_sym___inline__] = ACTIONS(1514), + [anon_sym___forceinline] = ACTIONS(1514), + [anon_sym_thread_local] = ACTIONS(1514), + [anon_sym___thread] = ACTIONS(1514), + [anon_sym_const] = ACTIONS(1514), + [anon_sym_constexpr] = ACTIONS(1514), + [anon_sym_volatile] = ACTIONS(1514), + [anon_sym_restrict] = ACTIONS(1514), + [anon_sym___restrict__] = ACTIONS(1514), + [anon_sym__Atomic] = ACTIONS(1514), + [anon_sym__Noreturn] = ACTIONS(1514), + [anon_sym_noreturn] = ACTIONS(1514), + [sym_primitive_type] = ACTIONS(1514), + [anon_sym_enum] = ACTIONS(1514), + [anon_sym_struct] = ACTIONS(1514), + [anon_sym_union] = ACTIONS(1514), + [anon_sym_if] = ACTIONS(1514), + [anon_sym_switch] = ACTIONS(1514), + [anon_sym_case] = ACTIONS(1514), + [anon_sym_default] = ACTIONS(1514), + [anon_sym_while] = ACTIONS(1514), + [anon_sym_do] = ACTIONS(1514), + [anon_sym_for] = ACTIONS(1514), + [anon_sym_return] = ACTIONS(1514), + [anon_sym_break] = ACTIONS(1514), + [anon_sym_continue] = ACTIONS(1514), + [anon_sym_goto] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_sizeof] = ACTIONS(1514), + [anon_sym___alignof__] = ACTIONS(1514), + [anon_sym___alignof] = ACTIONS(1514), + [anon_sym__alignof] = ACTIONS(1514), + [anon_sym_alignof] = ACTIONS(1514), + [anon_sym__Alignof] = ACTIONS(1514), + [anon_sym_offsetof] = ACTIONS(1514), + [anon_sym___builtin_va_arg] = ACTIONS(1514), + [anon_sym__Generic] = ACTIONS(1514), + [anon_sym_asm] = ACTIONS(1514), + [anon_sym___asm__] = ACTIONS(1514), + [sym_number_literal] = ACTIONS(1516), + [anon_sym_L_SQUOTE] = ACTIONS(1516), + [anon_sym_u_SQUOTE] = ACTIONS(1516), + [anon_sym_U_SQUOTE] = ACTIONS(1516), + [anon_sym_u8_SQUOTE] = ACTIONS(1516), + [anon_sym_SQUOTE] = ACTIONS(1516), + [anon_sym_L_DQUOTE] = ACTIONS(1516), + [anon_sym_u_DQUOTE] = ACTIONS(1516), + [anon_sym_U_DQUOTE] = ACTIONS(1516), + [anon_sym_u8_DQUOTE] = ACTIONS(1516), + [anon_sym_DQUOTE] = ACTIONS(1516), + [sym_true] = ACTIONS(1514), + [sym_false] = ACTIONS(1514), + [anon_sym_NULL] = ACTIONS(1514), + [anon_sym_nullptr] = ACTIONS(1514), + [sym_comment] = ACTIONS(3), + }, + [464] = { + [sym_identifier] = ACTIONS(1510), + [aux_sym_preproc_include_token1] = ACTIONS(1510), + [aux_sym_preproc_def_token1] = ACTIONS(1510), + [aux_sym_preproc_if_token1] = ACTIONS(1510), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1510), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1510), + [sym_preproc_directive] = ACTIONS(1510), + [anon_sym_LPAREN2] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1512), + [anon_sym_TILDE] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1510), + [anon_sym_PLUS] = ACTIONS(1510), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_AMP] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym___extension__] = ACTIONS(1510), + [anon_sym_typedef] = ACTIONS(1510), + [anon_sym_extern] = ACTIONS(1510), + [anon_sym___attribute__] = ACTIONS(1510), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1512), + [anon_sym___declspec] = ACTIONS(1510), + [anon_sym___cdecl] = ACTIONS(1510), + [anon_sym___clrcall] = ACTIONS(1510), + [anon_sym___stdcall] = ACTIONS(1510), + [anon_sym___fastcall] = ACTIONS(1510), + [anon_sym___thiscall] = ACTIONS(1510), + [anon_sym___vectorcall] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_signed] = ACTIONS(1510), + [anon_sym_unsigned] = ACTIONS(1510), + [anon_sym_long] = ACTIONS(1510), + [anon_sym_short] = ACTIONS(1510), + [anon_sym_static] = ACTIONS(1510), + [anon_sym_auto] = ACTIONS(1510), + [anon_sym_register] = ACTIONS(1510), + [anon_sym_inline] = ACTIONS(1510), + [anon_sym___inline] = ACTIONS(1510), + [anon_sym___inline__] = ACTIONS(1510), + [anon_sym___forceinline] = ACTIONS(1510), + [anon_sym_thread_local] = ACTIONS(1510), + [anon_sym___thread] = ACTIONS(1510), + [anon_sym_const] = ACTIONS(1510), + [anon_sym_constexpr] = ACTIONS(1510), + [anon_sym_volatile] = ACTIONS(1510), + [anon_sym_restrict] = ACTIONS(1510), + [anon_sym___restrict__] = ACTIONS(1510), + [anon_sym__Atomic] = ACTIONS(1510), + [anon_sym__Noreturn] = ACTIONS(1510), + [anon_sym_noreturn] = ACTIONS(1510), + [sym_primitive_type] = ACTIONS(1510), + [anon_sym_enum] = ACTIONS(1510), + [anon_sym_struct] = ACTIONS(1510), + [anon_sym_union] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_switch] = ACTIONS(1510), + [anon_sym_case] = ACTIONS(1510), + [anon_sym_default] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_do] = ACTIONS(1510), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_goto] = ACTIONS(1510), + [anon_sym_DASH_DASH] = ACTIONS(1512), + [anon_sym_PLUS_PLUS] = ACTIONS(1512), + [anon_sym_sizeof] = ACTIONS(1510), + [anon_sym___alignof__] = ACTIONS(1510), + [anon_sym___alignof] = ACTIONS(1510), + [anon_sym__alignof] = ACTIONS(1510), + [anon_sym_alignof] = ACTIONS(1510), + [anon_sym__Alignof] = ACTIONS(1510), + [anon_sym_offsetof] = ACTIONS(1510), + [anon_sym___builtin_va_arg] = ACTIONS(1510), + [anon_sym__Generic] = ACTIONS(1510), + [anon_sym_asm] = ACTIONS(1510), + [anon_sym___asm__] = ACTIONS(1510), + [sym_number_literal] = ACTIONS(1512), + [anon_sym_L_SQUOTE] = ACTIONS(1512), + [anon_sym_u_SQUOTE] = ACTIONS(1512), + [anon_sym_U_SQUOTE] = ACTIONS(1512), + [anon_sym_u8_SQUOTE] = ACTIONS(1512), + [anon_sym_SQUOTE] = ACTIONS(1512), + [anon_sym_L_DQUOTE] = ACTIONS(1512), + [anon_sym_u_DQUOTE] = ACTIONS(1512), + [anon_sym_U_DQUOTE] = ACTIONS(1512), + [anon_sym_u8_DQUOTE] = ACTIONS(1512), + [anon_sym_DQUOTE] = ACTIONS(1512), + [sym_true] = ACTIONS(1510), + [sym_false] = ACTIONS(1510), + [anon_sym_NULL] = ACTIONS(1510), + [anon_sym_nullptr] = ACTIONS(1510), + [sym_comment] = ACTIONS(3), + }, + [465] = { + [sym_identifier] = ACTIONS(1506), + [aux_sym_preproc_include_token1] = ACTIONS(1506), + [aux_sym_preproc_def_token1] = ACTIONS(1506), + [aux_sym_preproc_if_token1] = ACTIONS(1506), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1506), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1506), + [sym_preproc_directive] = ACTIONS(1506), + [anon_sym_LPAREN2] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_STAR] = ACTIONS(1508), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym___extension__] = ACTIONS(1506), + [anon_sym_typedef] = ACTIONS(1506), + [anon_sym_extern] = ACTIONS(1506), + [anon_sym___attribute__] = ACTIONS(1506), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1508), + [anon_sym___declspec] = ACTIONS(1506), + [anon_sym___cdecl] = ACTIONS(1506), + [anon_sym___clrcall] = ACTIONS(1506), + [anon_sym___stdcall] = ACTIONS(1506), + [anon_sym___fastcall] = ACTIONS(1506), + [anon_sym___thiscall] = ACTIONS(1506), + [anon_sym___vectorcall] = ACTIONS(1506), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_RBRACE] = ACTIONS(1508), + [anon_sym_signed] = ACTIONS(1506), + [anon_sym_unsigned] = ACTIONS(1506), + [anon_sym_long] = ACTIONS(1506), + [anon_sym_short] = ACTIONS(1506), + [anon_sym_static] = ACTIONS(1506), + [anon_sym_auto] = ACTIONS(1506), + [anon_sym_register] = ACTIONS(1506), + [anon_sym_inline] = ACTIONS(1506), + [anon_sym___inline] = ACTIONS(1506), + [anon_sym___inline__] = ACTIONS(1506), + [anon_sym___forceinline] = ACTIONS(1506), + [anon_sym_thread_local] = ACTIONS(1506), + [anon_sym___thread] = ACTIONS(1506), + [anon_sym_const] = ACTIONS(1506), + [anon_sym_constexpr] = ACTIONS(1506), + [anon_sym_volatile] = ACTIONS(1506), + [anon_sym_restrict] = ACTIONS(1506), + [anon_sym___restrict__] = ACTIONS(1506), + [anon_sym__Atomic] = ACTIONS(1506), + [anon_sym__Noreturn] = ACTIONS(1506), + [anon_sym_noreturn] = ACTIONS(1506), + [sym_primitive_type] = ACTIONS(1506), + [anon_sym_enum] = ACTIONS(1506), + [anon_sym_struct] = ACTIONS(1506), + [anon_sym_union] = ACTIONS(1506), + [anon_sym_if] = ACTIONS(1506), + [anon_sym_switch] = ACTIONS(1506), + [anon_sym_case] = ACTIONS(1506), + [anon_sym_default] = ACTIONS(1506), + [anon_sym_while] = ACTIONS(1506), + [anon_sym_do] = ACTIONS(1506), + [anon_sym_for] = ACTIONS(1506), + [anon_sym_return] = ACTIONS(1506), + [anon_sym_break] = ACTIONS(1506), + [anon_sym_continue] = ACTIONS(1506), + [anon_sym_goto] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_sizeof] = ACTIONS(1506), + [anon_sym___alignof__] = ACTIONS(1506), + [anon_sym___alignof] = ACTIONS(1506), + [anon_sym__alignof] = ACTIONS(1506), + [anon_sym_alignof] = ACTIONS(1506), + [anon_sym__Alignof] = ACTIONS(1506), + [anon_sym_offsetof] = ACTIONS(1506), + [anon_sym___builtin_va_arg] = ACTIONS(1506), + [anon_sym__Generic] = ACTIONS(1506), + [anon_sym_asm] = ACTIONS(1506), + [anon_sym___asm__] = ACTIONS(1506), + [sym_number_literal] = ACTIONS(1508), + [anon_sym_L_SQUOTE] = ACTIONS(1508), + [anon_sym_u_SQUOTE] = ACTIONS(1508), + [anon_sym_U_SQUOTE] = ACTIONS(1508), + [anon_sym_u8_SQUOTE] = ACTIONS(1508), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_L_DQUOTE] = ACTIONS(1508), + [anon_sym_u_DQUOTE] = ACTIONS(1508), + [anon_sym_U_DQUOTE] = ACTIONS(1508), + [anon_sym_u8_DQUOTE] = ACTIONS(1508), + [anon_sym_DQUOTE] = ACTIONS(1508), + [sym_true] = ACTIONS(1506), + [sym_false] = ACTIONS(1506), + [anon_sym_NULL] = ACTIONS(1506), + [anon_sym_nullptr] = ACTIONS(1506), + [sym_comment] = ACTIONS(3), + }, + [466] = { + [sym_identifier] = ACTIONS(1480), + [aux_sym_preproc_include_token1] = ACTIONS(1480), + [aux_sym_preproc_def_token1] = ACTIONS(1480), + [aux_sym_preproc_if_token1] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), + [sym_preproc_directive] = ACTIONS(1480), + [anon_sym_LPAREN2] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym___extension__] = ACTIONS(1480), + [anon_sym_typedef] = ACTIONS(1480), + [anon_sym_extern] = ACTIONS(1480), + [anon_sym___attribute__] = ACTIONS(1480), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), + [anon_sym___declspec] = ACTIONS(1480), + [anon_sym___cdecl] = ACTIONS(1480), + [anon_sym___clrcall] = ACTIONS(1480), + [anon_sym___stdcall] = ACTIONS(1480), + [anon_sym___fastcall] = ACTIONS(1480), + [anon_sym___thiscall] = ACTIONS(1480), + [anon_sym___vectorcall] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_RBRACE] = ACTIONS(1482), + [anon_sym_signed] = ACTIONS(1480), + [anon_sym_unsigned] = ACTIONS(1480), + [anon_sym_long] = ACTIONS(1480), + [anon_sym_short] = ACTIONS(1480), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_auto] = ACTIONS(1480), + [anon_sym_register] = ACTIONS(1480), + [anon_sym_inline] = ACTIONS(1480), + [anon_sym___inline] = ACTIONS(1480), + [anon_sym___inline__] = ACTIONS(1480), + [anon_sym___forceinline] = ACTIONS(1480), + [anon_sym_thread_local] = ACTIONS(1480), + [anon_sym___thread] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_constexpr] = ACTIONS(1480), + [anon_sym_volatile] = ACTIONS(1480), + [anon_sym_restrict] = ACTIONS(1480), + [anon_sym___restrict__] = ACTIONS(1480), + [anon_sym__Atomic] = ACTIONS(1480), + [anon_sym__Noreturn] = ACTIONS(1480), + [anon_sym_noreturn] = ACTIONS(1480), + [sym_primitive_type] = ACTIONS(1480), + [anon_sym_enum] = ACTIONS(1480), + [anon_sym_struct] = ACTIONS(1480), + [anon_sym_union] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_switch] = ACTIONS(1480), + [anon_sym_case] = ACTIONS(1480), + [anon_sym_default] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_do] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1480), + [anon_sym_goto] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1482), + [anon_sym_PLUS_PLUS] = ACTIONS(1482), + [anon_sym_sizeof] = ACTIONS(1480), + [anon_sym___alignof__] = ACTIONS(1480), + [anon_sym___alignof] = ACTIONS(1480), + [anon_sym__alignof] = ACTIONS(1480), + [anon_sym_alignof] = ACTIONS(1480), + [anon_sym__Alignof] = ACTIONS(1480), + [anon_sym_offsetof] = ACTIONS(1480), + [anon_sym___builtin_va_arg] = ACTIONS(1480), + [anon_sym__Generic] = ACTIONS(1480), + [anon_sym_asm] = ACTIONS(1480), + [anon_sym___asm__] = ACTIONS(1480), + [sym_number_literal] = ACTIONS(1482), + [anon_sym_L_SQUOTE] = ACTIONS(1482), + [anon_sym_u_SQUOTE] = ACTIONS(1482), + [anon_sym_U_SQUOTE] = ACTIONS(1482), + [anon_sym_u8_SQUOTE] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_L_DQUOTE] = ACTIONS(1482), + [anon_sym_u_DQUOTE] = ACTIONS(1482), + [anon_sym_U_DQUOTE] = ACTIONS(1482), + [anon_sym_u8_DQUOTE] = ACTIONS(1482), + [anon_sym_DQUOTE] = ACTIONS(1482), + [sym_true] = ACTIONS(1480), + [sym_false] = ACTIONS(1480), + [anon_sym_NULL] = ACTIONS(1480), + [anon_sym_nullptr] = ACTIONS(1480), + [sym_comment] = ACTIONS(3), + }, + [467] = { + [sym_identifier] = ACTIONS(1476), + [aux_sym_preproc_include_token1] = ACTIONS(1476), + [aux_sym_preproc_def_token1] = ACTIONS(1476), + [aux_sym_preproc_if_token1] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), + [sym_preproc_directive] = ACTIONS(1476), + [anon_sym_LPAREN2] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym___extension__] = ACTIONS(1476), + [anon_sym_typedef] = ACTIONS(1476), + [anon_sym_extern] = ACTIONS(1476), + [anon_sym___attribute__] = ACTIONS(1476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), + [anon_sym___declspec] = ACTIONS(1476), + [anon_sym___cdecl] = ACTIONS(1476), + [anon_sym___clrcall] = ACTIONS(1476), + [anon_sym___stdcall] = ACTIONS(1476), + [anon_sym___fastcall] = ACTIONS(1476), + [anon_sym___thiscall] = ACTIONS(1476), + [anon_sym___vectorcall] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_signed] = ACTIONS(1476), + [anon_sym_unsigned] = ACTIONS(1476), + [anon_sym_long] = ACTIONS(1476), + [anon_sym_short] = ACTIONS(1476), + [anon_sym_static] = ACTIONS(1476), + [anon_sym_auto] = ACTIONS(1476), + [anon_sym_register] = ACTIONS(1476), + [anon_sym_inline] = ACTIONS(1476), + [anon_sym___inline] = ACTIONS(1476), + [anon_sym___inline__] = ACTIONS(1476), + [anon_sym___forceinline] = ACTIONS(1476), + [anon_sym_thread_local] = ACTIONS(1476), + [anon_sym___thread] = ACTIONS(1476), + [anon_sym_const] = ACTIONS(1476), + [anon_sym_constexpr] = ACTIONS(1476), + [anon_sym_volatile] = ACTIONS(1476), + [anon_sym_restrict] = ACTIONS(1476), + [anon_sym___restrict__] = ACTIONS(1476), + [anon_sym__Atomic] = ACTIONS(1476), + [anon_sym__Noreturn] = ACTIONS(1476), + [anon_sym_noreturn] = ACTIONS(1476), + [sym_primitive_type] = ACTIONS(1476), + [anon_sym_enum] = ACTIONS(1476), + [anon_sym_struct] = ACTIONS(1476), + [anon_sym_union] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_switch] = ACTIONS(1476), + [anon_sym_case] = ACTIONS(1476), + [anon_sym_default] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_do] = ACTIONS(1476), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_goto] = ACTIONS(1476), + [anon_sym_DASH_DASH] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_sizeof] = ACTIONS(1476), + [anon_sym___alignof__] = ACTIONS(1476), + [anon_sym___alignof] = ACTIONS(1476), + [anon_sym__alignof] = ACTIONS(1476), + [anon_sym_alignof] = ACTIONS(1476), + [anon_sym__Alignof] = ACTIONS(1476), + [anon_sym_offsetof] = ACTIONS(1476), + [anon_sym___builtin_va_arg] = ACTIONS(1476), + [anon_sym__Generic] = ACTIONS(1476), + [anon_sym_asm] = ACTIONS(1476), + [anon_sym___asm__] = ACTIONS(1476), + [sym_number_literal] = ACTIONS(1478), + [anon_sym_L_SQUOTE] = ACTIONS(1478), + [anon_sym_u_SQUOTE] = ACTIONS(1478), + [anon_sym_U_SQUOTE] = ACTIONS(1478), + [anon_sym_u8_SQUOTE] = ACTIONS(1478), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_L_DQUOTE] = ACTIONS(1478), + [anon_sym_u_DQUOTE] = ACTIONS(1478), + [anon_sym_U_DQUOTE] = ACTIONS(1478), + [anon_sym_u8_DQUOTE] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(1478), + [sym_true] = ACTIONS(1476), + [sym_false] = ACTIONS(1476), + [anon_sym_NULL] = ACTIONS(1476), + [anon_sym_nullptr] = ACTIONS(1476), + [sym_comment] = ACTIONS(3), + }, + [468] = { + [sym_identifier] = ACTIONS(1472), + [aux_sym_preproc_include_token1] = ACTIONS(1472), + [aux_sym_preproc_def_token1] = ACTIONS(1472), + [aux_sym_preproc_if_token1] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), + [sym_preproc_directive] = ACTIONS(1472), + [anon_sym_LPAREN2] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym___extension__] = ACTIONS(1472), + [anon_sym_typedef] = ACTIONS(1472), + [anon_sym_extern] = ACTIONS(1472), + [anon_sym___attribute__] = ACTIONS(1472), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), + [anon_sym___declspec] = ACTIONS(1472), + [anon_sym___cdecl] = ACTIONS(1472), + [anon_sym___clrcall] = ACTIONS(1472), + [anon_sym___stdcall] = ACTIONS(1472), + [anon_sym___fastcall] = ACTIONS(1472), + [anon_sym___thiscall] = ACTIONS(1472), + [anon_sym___vectorcall] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_RBRACE] = ACTIONS(1474), + [anon_sym_signed] = ACTIONS(1472), + [anon_sym_unsigned] = ACTIONS(1472), + [anon_sym_long] = ACTIONS(1472), + [anon_sym_short] = ACTIONS(1472), + [anon_sym_static] = ACTIONS(1472), + [anon_sym_auto] = ACTIONS(1472), + [anon_sym_register] = ACTIONS(1472), + [anon_sym_inline] = ACTIONS(1472), + [anon_sym___inline] = ACTIONS(1472), + [anon_sym___inline__] = ACTIONS(1472), + [anon_sym___forceinline] = ACTIONS(1472), + [anon_sym_thread_local] = ACTIONS(1472), + [anon_sym___thread] = ACTIONS(1472), + [anon_sym_const] = ACTIONS(1472), + [anon_sym_constexpr] = ACTIONS(1472), + [anon_sym_volatile] = ACTIONS(1472), + [anon_sym_restrict] = ACTIONS(1472), + [anon_sym___restrict__] = ACTIONS(1472), + [anon_sym__Atomic] = ACTIONS(1472), + [anon_sym__Noreturn] = ACTIONS(1472), + [anon_sym_noreturn] = ACTIONS(1472), + [sym_primitive_type] = ACTIONS(1472), + [anon_sym_enum] = ACTIONS(1472), + [anon_sym_struct] = ACTIONS(1472), + [anon_sym_union] = ACTIONS(1472), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_switch] = ACTIONS(1472), + [anon_sym_case] = ACTIONS(1472), + [anon_sym_default] = ACTIONS(1472), + [anon_sym_while] = ACTIONS(1472), + [anon_sym_do] = ACTIONS(1472), + [anon_sym_for] = ACTIONS(1472), + [anon_sym_return] = ACTIONS(1472), + [anon_sym_break] = ACTIONS(1472), + [anon_sym_continue] = ACTIONS(1472), + [anon_sym_goto] = ACTIONS(1472), + [anon_sym_DASH_DASH] = ACTIONS(1474), + [anon_sym_PLUS_PLUS] = ACTIONS(1474), + [anon_sym_sizeof] = ACTIONS(1472), + [anon_sym___alignof__] = ACTIONS(1472), + [anon_sym___alignof] = ACTIONS(1472), + [anon_sym__alignof] = ACTIONS(1472), + [anon_sym_alignof] = ACTIONS(1472), + [anon_sym__Alignof] = ACTIONS(1472), + [anon_sym_offsetof] = ACTIONS(1472), + [anon_sym___builtin_va_arg] = ACTIONS(1472), + [anon_sym__Generic] = ACTIONS(1472), + [anon_sym_asm] = ACTIONS(1472), + [anon_sym___asm__] = ACTIONS(1472), + [sym_number_literal] = ACTIONS(1474), + [anon_sym_L_SQUOTE] = ACTIONS(1474), + [anon_sym_u_SQUOTE] = ACTIONS(1474), + [anon_sym_U_SQUOTE] = ACTIONS(1474), + [anon_sym_u8_SQUOTE] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1474), + [anon_sym_L_DQUOTE] = ACTIONS(1474), + [anon_sym_u_DQUOTE] = ACTIONS(1474), + [anon_sym_U_DQUOTE] = ACTIONS(1474), + [anon_sym_u8_DQUOTE] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [sym_true] = ACTIONS(1472), + [sym_false] = ACTIONS(1472), + [anon_sym_NULL] = ACTIONS(1472), + [anon_sym_nullptr] = ACTIONS(1472), + [sym_comment] = ACTIONS(3), + }, + [469] = { + [sym_identifier] = ACTIONS(1468), + [aux_sym_preproc_include_token1] = ACTIONS(1468), + [aux_sym_preproc_def_token1] = ACTIONS(1468), + [aux_sym_preproc_if_token1] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), + [sym_preproc_directive] = ACTIONS(1468), + [anon_sym_LPAREN2] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym___extension__] = ACTIONS(1468), + [anon_sym_typedef] = ACTIONS(1468), + [anon_sym_extern] = ACTIONS(1468), + [anon_sym___attribute__] = ACTIONS(1468), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), + [anon_sym___declspec] = ACTIONS(1468), + [anon_sym___cdecl] = ACTIONS(1468), + [anon_sym___clrcall] = ACTIONS(1468), + [anon_sym___stdcall] = ACTIONS(1468), + [anon_sym___fastcall] = ACTIONS(1468), + [anon_sym___thiscall] = ACTIONS(1468), + [anon_sym___vectorcall] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_RBRACE] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1468), + [anon_sym_unsigned] = ACTIONS(1468), + [anon_sym_long] = ACTIONS(1468), + [anon_sym_short] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1468), + [anon_sym_auto] = ACTIONS(1468), + [anon_sym_register] = ACTIONS(1468), + [anon_sym_inline] = ACTIONS(1468), + [anon_sym___inline] = ACTIONS(1468), + [anon_sym___inline__] = ACTIONS(1468), + [anon_sym___forceinline] = ACTIONS(1468), + [anon_sym_thread_local] = ACTIONS(1468), + [anon_sym___thread] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1468), + [anon_sym_constexpr] = ACTIONS(1468), + [anon_sym_volatile] = ACTIONS(1468), + [anon_sym_restrict] = ACTIONS(1468), + [anon_sym___restrict__] = ACTIONS(1468), + [anon_sym__Atomic] = ACTIONS(1468), + [anon_sym__Noreturn] = ACTIONS(1468), + [anon_sym_noreturn] = ACTIONS(1468), + [sym_primitive_type] = ACTIONS(1468), + [anon_sym_enum] = ACTIONS(1468), + [anon_sym_struct] = ACTIONS(1468), + [anon_sym_union] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_switch] = ACTIONS(1468), + [anon_sym_case] = ACTIONS(1468), + [anon_sym_default] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1468), + [anon_sym_do] = ACTIONS(1468), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(1468), + [anon_sym_break] = ACTIONS(1468), + [anon_sym_continue] = ACTIONS(1468), + [anon_sym_goto] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1468), + [anon_sym___alignof__] = ACTIONS(1468), + [anon_sym___alignof] = ACTIONS(1468), + [anon_sym__alignof] = ACTIONS(1468), + [anon_sym_alignof] = ACTIONS(1468), + [anon_sym__Alignof] = ACTIONS(1468), + [anon_sym_offsetof] = ACTIONS(1468), + [anon_sym___builtin_va_arg] = ACTIONS(1468), + [anon_sym__Generic] = ACTIONS(1468), + [anon_sym_asm] = ACTIONS(1468), + [anon_sym___asm__] = ACTIONS(1468), + [sym_number_literal] = ACTIONS(1470), + [anon_sym_L_SQUOTE] = ACTIONS(1470), + [anon_sym_u_SQUOTE] = ACTIONS(1470), + [anon_sym_U_SQUOTE] = ACTIONS(1470), + [anon_sym_u8_SQUOTE] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1470), + [anon_sym_L_DQUOTE] = ACTIONS(1470), + [anon_sym_u_DQUOTE] = ACTIONS(1470), + [anon_sym_U_DQUOTE] = ACTIONS(1470), + [anon_sym_u8_DQUOTE] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [sym_true] = ACTIONS(1468), + [sym_false] = ACTIONS(1468), + [anon_sym_NULL] = ACTIONS(1468), + [anon_sym_nullptr] = ACTIONS(1468), + [sym_comment] = ACTIONS(3), + }, + [470] = { + [ts_builtin_sym_end] = ACTIONS(1540), + [sym_identifier] = ACTIONS(1538), + [aux_sym_preproc_include_token1] = ACTIONS(1538), + [aux_sym_preproc_def_token1] = ACTIONS(1538), + [aux_sym_preproc_if_token1] = ACTIONS(1538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1538), + [sym_preproc_directive] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(1540), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_AMP] = ACTIONS(1540), + [anon_sym___extension__] = ACTIONS(1538), + [anon_sym_typedef] = ACTIONS(1538), + [anon_sym_extern] = ACTIONS(1538), + [anon_sym___attribute__] = ACTIONS(1538), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1540), + [anon_sym___declspec] = ACTIONS(1538), + [anon_sym___cdecl] = ACTIONS(1538), + [anon_sym___clrcall] = ACTIONS(1538), + [anon_sym___stdcall] = ACTIONS(1538), + [anon_sym___fastcall] = ACTIONS(1538), + [anon_sym___thiscall] = ACTIONS(1538), + [anon_sym___vectorcall] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_signed] = ACTIONS(1538), + [anon_sym_unsigned] = ACTIONS(1538), + [anon_sym_long] = ACTIONS(1538), + [anon_sym_short] = ACTIONS(1538), + [anon_sym_static] = ACTIONS(1538), + [anon_sym_auto] = ACTIONS(1538), + [anon_sym_register] = ACTIONS(1538), + [anon_sym_inline] = ACTIONS(1538), + [anon_sym___inline] = ACTIONS(1538), + [anon_sym___inline__] = ACTIONS(1538), + [anon_sym___forceinline] = ACTIONS(1538), + [anon_sym_thread_local] = ACTIONS(1538), + [anon_sym___thread] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(1538), + [anon_sym_constexpr] = ACTIONS(1538), + [anon_sym_volatile] = ACTIONS(1538), + [anon_sym_restrict] = ACTIONS(1538), + [anon_sym___restrict__] = ACTIONS(1538), + [anon_sym__Atomic] = ACTIONS(1538), + [anon_sym__Noreturn] = ACTIONS(1538), + [anon_sym_noreturn] = ACTIONS(1538), + [sym_primitive_type] = ACTIONS(1538), + [anon_sym_enum] = ACTIONS(1538), + [anon_sym_struct] = ACTIONS(1538), + [anon_sym_union] = ACTIONS(1538), + [anon_sym_if] = ACTIONS(1538), + [anon_sym_switch] = ACTIONS(1538), + [anon_sym_case] = ACTIONS(1538), + [anon_sym_default] = ACTIONS(1538), + [anon_sym_while] = ACTIONS(1538), + [anon_sym_do] = ACTIONS(1538), + [anon_sym_for] = ACTIONS(1538), + [anon_sym_return] = ACTIONS(1538), + [anon_sym_break] = ACTIONS(1538), + [anon_sym_continue] = ACTIONS(1538), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_DASH_DASH] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1540), + [anon_sym_sizeof] = ACTIONS(1538), + [anon_sym___alignof__] = ACTIONS(1538), + [anon_sym___alignof] = ACTIONS(1538), + [anon_sym__alignof] = ACTIONS(1538), + [anon_sym_alignof] = ACTIONS(1538), + [anon_sym__Alignof] = ACTIONS(1538), + [anon_sym_offsetof] = ACTIONS(1538), + [anon_sym___builtin_va_arg] = ACTIONS(1538), + [anon_sym__Generic] = ACTIONS(1538), + [anon_sym_asm] = ACTIONS(1538), + [anon_sym___asm__] = ACTIONS(1538), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_L_SQUOTE] = ACTIONS(1540), + [anon_sym_u_SQUOTE] = ACTIONS(1540), + [anon_sym_U_SQUOTE] = ACTIONS(1540), + [anon_sym_u8_SQUOTE] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(1540), + [anon_sym_L_DQUOTE] = ACTIONS(1540), + [anon_sym_u_DQUOTE] = ACTIONS(1540), + [anon_sym_U_DQUOTE] = ACTIONS(1540), + [anon_sym_u8_DQUOTE] = ACTIONS(1540), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym_true] = ACTIONS(1538), + [sym_false] = ACTIONS(1538), + [anon_sym_NULL] = ACTIONS(1538), + [anon_sym_nullptr] = ACTIONS(1538), + [sym_comment] = ACTIONS(3), + }, + [471] = { + [ts_builtin_sym_end] = ACTIONS(1548), + [sym_identifier] = ACTIONS(1546), + [aux_sym_preproc_include_token1] = ACTIONS(1546), + [aux_sym_preproc_def_token1] = ACTIONS(1546), + [aux_sym_preproc_if_token1] = ACTIONS(1546), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1546), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1546), + [sym_preproc_directive] = ACTIONS(1546), + [anon_sym_LPAREN2] = ACTIONS(1548), + [anon_sym_BANG] = ACTIONS(1548), + [anon_sym_TILDE] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(1548), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym___extension__] = ACTIONS(1546), + [anon_sym_typedef] = ACTIONS(1546), + [anon_sym_extern] = ACTIONS(1546), + [anon_sym___attribute__] = ACTIONS(1546), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym___declspec] = ACTIONS(1546), + [anon_sym___cdecl] = ACTIONS(1546), + [anon_sym___clrcall] = ACTIONS(1546), + [anon_sym___stdcall] = ACTIONS(1546), + [anon_sym___fastcall] = ACTIONS(1546), + [anon_sym___thiscall] = ACTIONS(1546), + [anon_sym___vectorcall] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_signed] = ACTIONS(1546), + [anon_sym_unsigned] = ACTIONS(1546), + [anon_sym_long] = ACTIONS(1546), + [anon_sym_short] = ACTIONS(1546), + [anon_sym_static] = ACTIONS(1546), + [anon_sym_auto] = ACTIONS(1546), + [anon_sym_register] = ACTIONS(1546), + [anon_sym_inline] = ACTIONS(1546), + [anon_sym___inline] = ACTIONS(1546), + [anon_sym___inline__] = ACTIONS(1546), + [anon_sym___forceinline] = ACTIONS(1546), + [anon_sym_thread_local] = ACTIONS(1546), + [anon_sym___thread] = ACTIONS(1546), + [anon_sym_const] = ACTIONS(1546), + [anon_sym_constexpr] = ACTIONS(1546), + [anon_sym_volatile] = ACTIONS(1546), + [anon_sym_restrict] = ACTIONS(1546), + [anon_sym___restrict__] = ACTIONS(1546), + [anon_sym__Atomic] = ACTIONS(1546), + [anon_sym__Noreturn] = ACTIONS(1546), + [anon_sym_noreturn] = ACTIONS(1546), + [sym_primitive_type] = ACTIONS(1546), + [anon_sym_enum] = ACTIONS(1546), + [anon_sym_struct] = ACTIONS(1546), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_if] = ACTIONS(1546), + [anon_sym_switch] = ACTIONS(1546), + [anon_sym_case] = ACTIONS(1546), + [anon_sym_default] = ACTIONS(1546), + [anon_sym_while] = ACTIONS(1546), + [anon_sym_do] = ACTIONS(1546), + [anon_sym_for] = ACTIONS(1546), + [anon_sym_return] = ACTIONS(1546), + [anon_sym_break] = ACTIONS(1546), + [anon_sym_continue] = ACTIONS(1546), + [anon_sym_goto] = ACTIONS(1546), + [anon_sym_DASH_DASH] = ACTIONS(1548), + [anon_sym_PLUS_PLUS] = ACTIONS(1548), + [anon_sym_sizeof] = ACTIONS(1546), + [anon_sym___alignof__] = ACTIONS(1546), + [anon_sym___alignof] = ACTIONS(1546), + [anon_sym__alignof] = ACTIONS(1546), + [anon_sym_alignof] = ACTIONS(1546), + [anon_sym__Alignof] = ACTIONS(1546), + [anon_sym_offsetof] = ACTIONS(1546), + [anon_sym___builtin_va_arg] = ACTIONS(1546), + [anon_sym__Generic] = ACTIONS(1546), + [anon_sym_asm] = ACTIONS(1546), + [anon_sym___asm__] = ACTIONS(1546), + [sym_number_literal] = ACTIONS(1548), + [anon_sym_L_SQUOTE] = ACTIONS(1548), + [anon_sym_u_SQUOTE] = ACTIONS(1548), + [anon_sym_U_SQUOTE] = ACTIONS(1548), + [anon_sym_u8_SQUOTE] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1548), + [anon_sym_L_DQUOTE] = ACTIONS(1548), + [anon_sym_u_DQUOTE] = ACTIONS(1548), + [anon_sym_U_DQUOTE] = ACTIONS(1548), + [anon_sym_u8_DQUOTE] = ACTIONS(1548), + [anon_sym_DQUOTE] = ACTIONS(1548), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [anon_sym_NULL] = ACTIONS(1546), + [anon_sym_nullptr] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + }, + [472] = { + [ts_builtin_sym_end] = ACTIONS(1564), + [sym_identifier] = ACTIONS(1562), + [aux_sym_preproc_include_token1] = ACTIONS(1562), + [aux_sym_preproc_def_token1] = ACTIONS(1562), + [aux_sym_preproc_if_token1] = ACTIONS(1562), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1562), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1562), + [sym_preproc_directive] = ACTIONS(1562), + [anon_sym_LPAREN2] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1564), + [anon_sym_TILDE] = ACTIONS(1564), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1564), + [anon_sym_AMP] = ACTIONS(1564), + [anon_sym___extension__] = ACTIONS(1562), + [anon_sym_typedef] = ACTIONS(1562), + [anon_sym_extern] = ACTIONS(1562), + [anon_sym___attribute__] = ACTIONS(1562), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym___declspec] = ACTIONS(1562), + [anon_sym___cdecl] = ACTIONS(1562), + [anon_sym___clrcall] = ACTIONS(1562), + [anon_sym___stdcall] = ACTIONS(1562), + [anon_sym___fastcall] = ACTIONS(1562), + [anon_sym___thiscall] = ACTIONS(1562), + [anon_sym___vectorcall] = ACTIONS(1562), + [anon_sym_LBRACE] = ACTIONS(1564), + [anon_sym_signed] = ACTIONS(1562), + [anon_sym_unsigned] = ACTIONS(1562), + [anon_sym_long] = ACTIONS(1562), + [anon_sym_short] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1562), + [anon_sym_auto] = ACTIONS(1562), + [anon_sym_register] = ACTIONS(1562), + [anon_sym_inline] = ACTIONS(1562), + [anon_sym___inline] = ACTIONS(1562), + [anon_sym___inline__] = ACTIONS(1562), + [anon_sym___forceinline] = ACTIONS(1562), + [anon_sym_thread_local] = ACTIONS(1562), + [anon_sym___thread] = ACTIONS(1562), + [anon_sym_const] = ACTIONS(1562), + [anon_sym_constexpr] = ACTIONS(1562), + [anon_sym_volatile] = ACTIONS(1562), + [anon_sym_restrict] = ACTIONS(1562), + [anon_sym___restrict__] = ACTIONS(1562), + [anon_sym__Atomic] = ACTIONS(1562), + [anon_sym__Noreturn] = ACTIONS(1562), + [anon_sym_noreturn] = ACTIONS(1562), + [sym_primitive_type] = ACTIONS(1562), + [anon_sym_enum] = ACTIONS(1562), + [anon_sym_struct] = ACTIONS(1562), + [anon_sym_union] = ACTIONS(1562), + [anon_sym_if] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1562), + [anon_sym_case] = ACTIONS(1562), + [anon_sym_default] = ACTIONS(1562), + [anon_sym_while] = ACTIONS(1562), + [anon_sym_do] = ACTIONS(1562), + [anon_sym_for] = ACTIONS(1562), + [anon_sym_return] = ACTIONS(1562), + [anon_sym_break] = ACTIONS(1562), + [anon_sym_continue] = ACTIONS(1562), + [anon_sym_goto] = ACTIONS(1562), + [anon_sym_DASH_DASH] = ACTIONS(1564), + [anon_sym_PLUS_PLUS] = ACTIONS(1564), + [anon_sym_sizeof] = ACTIONS(1562), + [anon_sym___alignof__] = ACTIONS(1562), + [anon_sym___alignof] = ACTIONS(1562), + [anon_sym__alignof] = ACTIONS(1562), + [anon_sym_alignof] = ACTIONS(1562), + [anon_sym__Alignof] = ACTIONS(1562), + [anon_sym_offsetof] = ACTIONS(1562), + [anon_sym___builtin_va_arg] = ACTIONS(1562), + [anon_sym__Generic] = ACTIONS(1562), + [anon_sym_asm] = ACTIONS(1562), + [anon_sym___asm__] = ACTIONS(1562), + [sym_number_literal] = ACTIONS(1564), + [anon_sym_L_SQUOTE] = ACTIONS(1564), + [anon_sym_u_SQUOTE] = ACTIONS(1564), + [anon_sym_U_SQUOTE] = ACTIONS(1564), + [anon_sym_u8_SQUOTE] = ACTIONS(1564), + [anon_sym_SQUOTE] = ACTIONS(1564), + [anon_sym_L_DQUOTE] = ACTIONS(1564), + [anon_sym_u_DQUOTE] = ACTIONS(1564), + [anon_sym_U_DQUOTE] = ACTIONS(1564), + [anon_sym_u8_DQUOTE] = ACTIONS(1564), + [anon_sym_DQUOTE] = ACTIONS(1564), + [sym_true] = ACTIONS(1562), + [sym_false] = ACTIONS(1562), + [anon_sym_NULL] = ACTIONS(1562), + [anon_sym_nullptr] = ACTIONS(1562), + [sym_comment] = ACTIONS(3), + }, + [473] = { + [ts_builtin_sym_end] = ACTIONS(1556), + [sym_identifier] = ACTIONS(1554), + [aux_sym_preproc_include_token1] = ACTIONS(1554), + [aux_sym_preproc_def_token1] = ACTIONS(1554), + [aux_sym_preproc_if_token1] = ACTIONS(1554), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1554), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1554), + [sym_preproc_directive] = ACTIONS(1554), + [anon_sym_LPAREN2] = ACTIONS(1556), + [anon_sym_BANG] = ACTIONS(1556), + [anon_sym_TILDE] = ACTIONS(1556), + [anon_sym_DASH] = ACTIONS(1554), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym___extension__] = ACTIONS(1554), + [anon_sym_typedef] = ACTIONS(1554), + [anon_sym_extern] = ACTIONS(1554), + [anon_sym___attribute__] = ACTIONS(1554), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1556), + [anon_sym___declspec] = ACTIONS(1554), + [anon_sym___cdecl] = ACTIONS(1554), + [anon_sym___clrcall] = ACTIONS(1554), + [anon_sym___stdcall] = ACTIONS(1554), + [anon_sym___fastcall] = ACTIONS(1554), + [anon_sym___thiscall] = ACTIONS(1554), + [anon_sym___vectorcall] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_signed] = ACTIONS(1554), + [anon_sym_unsigned] = ACTIONS(1554), + [anon_sym_long] = ACTIONS(1554), + [anon_sym_short] = ACTIONS(1554), + [anon_sym_static] = ACTIONS(1554), + [anon_sym_auto] = ACTIONS(1554), + [anon_sym_register] = ACTIONS(1554), + [anon_sym_inline] = ACTIONS(1554), + [anon_sym___inline] = ACTIONS(1554), + [anon_sym___inline__] = ACTIONS(1554), + [anon_sym___forceinline] = ACTIONS(1554), + [anon_sym_thread_local] = ACTIONS(1554), + [anon_sym___thread] = ACTIONS(1554), + [anon_sym_const] = ACTIONS(1554), + [anon_sym_constexpr] = ACTIONS(1554), + [anon_sym_volatile] = ACTIONS(1554), + [anon_sym_restrict] = ACTIONS(1554), + [anon_sym___restrict__] = ACTIONS(1554), + [anon_sym__Atomic] = ACTIONS(1554), + [anon_sym__Noreturn] = ACTIONS(1554), + [anon_sym_noreturn] = ACTIONS(1554), + [sym_primitive_type] = ACTIONS(1554), + [anon_sym_enum] = ACTIONS(1554), + [anon_sym_struct] = ACTIONS(1554), + [anon_sym_union] = ACTIONS(1554), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_switch] = ACTIONS(1554), + [anon_sym_case] = ACTIONS(1554), + [anon_sym_default] = ACTIONS(1554), + [anon_sym_while] = ACTIONS(1554), + [anon_sym_do] = ACTIONS(1554), + [anon_sym_for] = ACTIONS(1554), + [anon_sym_return] = ACTIONS(1554), + [anon_sym_break] = ACTIONS(1554), + [anon_sym_continue] = ACTIONS(1554), + [anon_sym_goto] = ACTIONS(1554), + [anon_sym_DASH_DASH] = ACTIONS(1556), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_sizeof] = ACTIONS(1554), + [anon_sym___alignof__] = ACTIONS(1554), + [anon_sym___alignof] = ACTIONS(1554), + [anon_sym__alignof] = ACTIONS(1554), + [anon_sym_alignof] = ACTIONS(1554), + [anon_sym__Alignof] = ACTIONS(1554), + [anon_sym_offsetof] = ACTIONS(1554), + [anon_sym___builtin_va_arg] = ACTIONS(1554), + [anon_sym__Generic] = ACTIONS(1554), + [anon_sym_asm] = ACTIONS(1554), + [anon_sym___asm__] = ACTIONS(1554), + [sym_number_literal] = ACTIONS(1556), + [anon_sym_L_SQUOTE] = ACTIONS(1556), + [anon_sym_u_SQUOTE] = ACTIONS(1556), + [anon_sym_U_SQUOTE] = ACTIONS(1556), + [anon_sym_u8_SQUOTE] = ACTIONS(1556), + [anon_sym_SQUOTE] = ACTIONS(1556), + [anon_sym_L_DQUOTE] = ACTIONS(1556), + [anon_sym_u_DQUOTE] = ACTIONS(1556), + [anon_sym_U_DQUOTE] = ACTIONS(1556), + [anon_sym_u8_DQUOTE] = ACTIONS(1556), + [anon_sym_DQUOTE] = ACTIONS(1556), + [sym_true] = ACTIONS(1554), + [sym_false] = ACTIONS(1554), + [anon_sym_NULL] = ACTIONS(1554), + [anon_sym_nullptr] = ACTIONS(1554), + [sym_comment] = ACTIONS(3), + }, + [474] = { + [ts_builtin_sym_end] = ACTIONS(1552), + [sym_identifier] = ACTIONS(1550), + [aux_sym_preproc_include_token1] = ACTIONS(1550), + [aux_sym_preproc_def_token1] = ACTIONS(1550), + [aux_sym_preproc_if_token1] = ACTIONS(1550), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1550), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1550), + [sym_preproc_directive] = ACTIONS(1550), + [anon_sym_LPAREN2] = ACTIONS(1552), + [anon_sym_BANG] = ACTIONS(1552), + [anon_sym_TILDE] = ACTIONS(1552), + [anon_sym_DASH] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1550), + [anon_sym_STAR] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(1552), + [anon_sym___extension__] = ACTIONS(1550), + [anon_sym_typedef] = ACTIONS(1550), + [anon_sym_extern] = ACTIONS(1550), + [anon_sym___attribute__] = ACTIONS(1550), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1552), + [anon_sym___declspec] = ACTIONS(1550), + [anon_sym___cdecl] = ACTIONS(1550), + [anon_sym___clrcall] = ACTIONS(1550), + [anon_sym___stdcall] = ACTIONS(1550), + [anon_sym___fastcall] = ACTIONS(1550), + [anon_sym___thiscall] = ACTIONS(1550), + [anon_sym___vectorcall] = ACTIONS(1550), + [anon_sym_LBRACE] = ACTIONS(1552), + [anon_sym_signed] = ACTIONS(1550), + [anon_sym_unsigned] = ACTIONS(1550), + [anon_sym_long] = ACTIONS(1550), + [anon_sym_short] = ACTIONS(1550), + [anon_sym_static] = ACTIONS(1550), + [anon_sym_auto] = ACTIONS(1550), + [anon_sym_register] = ACTIONS(1550), + [anon_sym_inline] = ACTIONS(1550), + [anon_sym___inline] = ACTIONS(1550), + [anon_sym___inline__] = ACTIONS(1550), + [anon_sym___forceinline] = ACTIONS(1550), + [anon_sym_thread_local] = ACTIONS(1550), + [anon_sym___thread] = ACTIONS(1550), + [anon_sym_const] = ACTIONS(1550), + [anon_sym_constexpr] = ACTIONS(1550), + [anon_sym_volatile] = ACTIONS(1550), + [anon_sym_restrict] = ACTIONS(1550), + [anon_sym___restrict__] = ACTIONS(1550), + [anon_sym__Atomic] = ACTIONS(1550), + [anon_sym__Noreturn] = ACTIONS(1550), + [anon_sym_noreturn] = ACTIONS(1550), + [sym_primitive_type] = ACTIONS(1550), + [anon_sym_enum] = ACTIONS(1550), + [anon_sym_struct] = ACTIONS(1550), + [anon_sym_union] = ACTIONS(1550), + [anon_sym_if] = ACTIONS(1550), + [anon_sym_switch] = ACTIONS(1550), + [anon_sym_case] = ACTIONS(1550), + [anon_sym_default] = ACTIONS(1550), + [anon_sym_while] = ACTIONS(1550), + [anon_sym_do] = ACTIONS(1550), + [anon_sym_for] = ACTIONS(1550), + [anon_sym_return] = ACTIONS(1550), + [anon_sym_break] = ACTIONS(1550), + [anon_sym_continue] = ACTIONS(1550), + [anon_sym_goto] = ACTIONS(1550), + [anon_sym_DASH_DASH] = ACTIONS(1552), + [anon_sym_PLUS_PLUS] = ACTIONS(1552), + [anon_sym_sizeof] = ACTIONS(1550), + [anon_sym___alignof__] = ACTIONS(1550), + [anon_sym___alignof] = ACTIONS(1550), + [anon_sym__alignof] = ACTIONS(1550), + [anon_sym_alignof] = ACTIONS(1550), + [anon_sym__Alignof] = ACTIONS(1550), + [anon_sym_offsetof] = ACTIONS(1550), + [anon_sym___builtin_va_arg] = ACTIONS(1550), + [anon_sym__Generic] = ACTIONS(1550), + [anon_sym_asm] = ACTIONS(1550), + [anon_sym___asm__] = ACTIONS(1550), + [sym_number_literal] = ACTIONS(1552), + [anon_sym_L_SQUOTE] = ACTIONS(1552), + [anon_sym_u_SQUOTE] = ACTIONS(1552), + [anon_sym_U_SQUOTE] = ACTIONS(1552), + [anon_sym_u8_SQUOTE] = ACTIONS(1552), + [anon_sym_SQUOTE] = ACTIONS(1552), + [anon_sym_L_DQUOTE] = ACTIONS(1552), + [anon_sym_u_DQUOTE] = ACTIONS(1552), + [anon_sym_U_DQUOTE] = ACTIONS(1552), + [anon_sym_u8_DQUOTE] = ACTIONS(1552), + [anon_sym_DQUOTE] = ACTIONS(1552), + [sym_true] = ACTIONS(1550), + [sym_false] = ACTIONS(1550), + [anon_sym_NULL] = ACTIONS(1550), + [anon_sym_nullptr] = ACTIONS(1550), + [sym_comment] = ACTIONS(3), + }, + [475] = { + [sym__expression] = STATE(1001), + [sym__expression_not_binary] = STATE(904), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(904), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(904), + [sym_call_expression] = STATE(904), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(904), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(904), + [sym_initializer_list] = STATE(914), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_identifier] = ACTIONS(1484), + [anon_sym_LPAREN2] = ACTIONS(1576), + [anon_sym_BANG] = ACTIONS(1578), + [anon_sym_TILDE] = ACTIONS(1580), + [anon_sym_DASH] = ACTIONS(1578), + [anon_sym_PLUS] = ACTIONS(1578), + [anon_sym_STAR] = ACTIONS(1582), + [anon_sym_SLASH] = ACTIONS(1496), + [anon_sym_PERCENT] = ACTIONS(1496), + [anon_sym_PIPE_PIPE] = ACTIONS(1486), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1496), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1486), + [anon_sym_BANG_EQ] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1496), + [anon_sym_GT_EQ] = ACTIONS(1486), + [anon_sym_LT_EQ] = ACTIONS(1486), + [anon_sym_LT] = ACTIONS(1496), + [anon_sym_LT_LT] = ACTIONS(1496), + [anon_sym_GT_GT] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_LBRACK] = ACTIONS(1486), + [anon_sym_RBRACK] = ACTIONS(1486), + [anon_sym_EQ] = ACTIONS(1496), + [anon_sym_QMARK] = ACTIONS(1486), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1584), + [anon_sym_PLUS_PLUS] = ACTIONS(1584), + [anon_sym_sizeof] = ACTIONS(1586), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [anon_sym_DOT] = ACTIONS(1496), + [anon_sym_DASH_GT] = ACTIONS(1486), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [476] = { + [ts_builtin_sym_end] = ACTIONS(1470), + [sym_identifier] = ACTIONS(1468), + [aux_sym_preproc_include_token1] = ACTIONS(1468), + [aux_sym_preproc_def_token1] = ACTIONS(1468), + [aux_sym_preproc_if_token1] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), + [sym_preproc_directive] = ACTIONS(1468), + [anon_sym_LPAREN2] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym___extension__] = ACTIONS(1468), + [anon_sym_typedef] = ACTIONS(1468), + [anon_sym_extern] = ACTIONS(1468), + [anon_sym___attribute__] = ACTIONS(1468), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), + [anon_sym___declspec] = ACTIONS(1468), + [anon_sym___cdecl] = ACTIONS(1468), + [anon_sym___clrcall] = ACTIONS(1468), + [anon_sym___stdcall] = ACTIONS(1468), + [anon_sym___fastcall] = ACTIONS(1468), + [anon_sym___thiscall] = ACTIONS(1468), + [anon_sym___vectorcall] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1468), + [anon_sym_unsigned] = ACTIONS(1468), + [anon_sym_long] = ACTIONS(1468), + [anon_sym_short] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1468), + [anon_sym_auto] = ACTIONS(1468), + [anon_sym_register] = ACTIONS(1468), + [anon_sym_inline] = ACTIONS(1468), + [anon_sym___inline] = ACTIONS(1468), + [anon_sym___inline__] = ACTIONS(1468), + [anon_sym___forceinline] = ACTIONS(1468), + [anon_sym_thread_local] = ACTIONS(1468), + [anon_sym___thread] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1468), + [anon_sym_constexpr] = ACTIONS(1468), + [anon_sym_volatile] = ACTIONS(1468), + [anon_sym_restrict] = ACTIONS(1468), + [anon_sym___restrict__] = ACTIONS(1468), + [anon_sym__Atomic] = ACTIONS(1468), + [anon_sym__Noreturn] = ACTIONS(1468), + [anon_sym_noreturn] = ACTIONS(1468), + [sym_primitive_type] = ACTIONS(1468), + [anon_sym_enum] = ACTIONS(1468), + [anon_sym_struct] = ACTIONS(1468), + [anon_sym_union] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_switch] = ACTIONS(1468), + [anon_sym_case] = ACTIONS(1468), + [anon_sym_default] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1468), + [anon_sym_do] = ACTIONS(1468), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(1468), + [anon_sym_break] = ACTIONS(1468), + [anon_sym_continue] = ACTIONS(1468), + [anon_sym_goto] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1468), + [anon_sym___alignof__] = ACTIONS(1468), + [anon_sym___alignof] = ACTIONS(1468), + [anon_sym__alignof] = ACTIONS(1468), + [anon_sym_alignof] = ACTIONS(1468), + [anon_sym__Alignof] = ACTIONS(1468), + [anon_sym_offsetof] = ACTIONS(1468), + [anon_sym___builtin_va_arg] = ACTIONS(1468), + [anon_sym__Generic] = ACTIONS(1468), + [anon_sym_asm] = ACTIONS(1468), + [anon_sym___asm__] = ACTIONS(1468), + [sym_number_literal] = ACTIONS(1470), + [anon_sym_L_SQUOTE] = ACTIONS(1470), + [anon_sym_u_SQUOTE] = ACTIONS(1470), + [anon_sym_U_SQUOTE] = ACTIONS(1470), + [anon_sym_u8_SQUOTE] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1470), + [anon_sym_L_DQUOTE] = ACTIONS(1470), + [anon_sym_u_DQUOTE] = ACTIONS(1470), + [anon_sym_U_DQUOTE] = ACTIONS(1470), + [anon_sym_u8_DQUOTE] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [sym_true] = ACTIONS(1468), + [sym_false] = ACTIONS(1468), + [anon_sym_NULL] = ACTIONS(1468), + [anon_sym_nullptr] = ACTIONS(1468), + [sym_comment] = ACTIONS(3), + }, + [477] = { + [ts_builtin_sym_end] = ACTIONS(1478), + [sym_identifier] = ACTIONS(1476), + [aux_sym_preproc_include_token1] = ACTIONS(1476), + [aux_sym_preproc_def_token1] = ACTIONS(1476), + [aux_sym_preproc_if_token1] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), + [sym_preproc_directive] = ACTIONS(1476), + [anon_sym_LPAREN2] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym___extension__] = ACTIONS(1476), + [anon_sym_typedef] = ACTIONS(1476), + [anon_sym_extern] = ACTIONS(1476), + [anon_sym___attribute__] = ACTIONS(1476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), + [anon_sym___declspec] = ACTIONS(1476), + [anon_sym___cdecl] = ACTIONS(1476), + [anon_sym___clrcall] = ACTIONS(1476), + [anon_sym___stdcall] = ACTIONS(1476), + [anon_sym___fastcall] = ACTIONS(1476), + [anon_sym___thiscall] = ACTIONS(1476), + [anon_sym___vectorcall] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_signed] = ACTIONS(1476), + [anon_sym_unsigned] = ACTIONS(1476), + [anon_sym_long] = ACTIONS(1476), + [anon_sym_short] = ACTIONS(1476), + [anon_sym_static] = ACTIONS(1476), + [anon_sym_auto] = ACTIONS(1476), + [anon_sym_register] = ACTIONS(1476), + [anon_sym_inline] = ACTIONS(1476), + [anon_sym___inline] = ACTIONS(1476), + [anon_sym___inline__] = ACTIONS(1476), + [anon_sym___forceinline] = ACTIONS(1476), + [anon_sym_thread_local] = ACTIONS(1476), + [anon_sym___thread] = ACTIONS(1476), + [anon_sym_const] = ACTIONS(1476), + [anon_sym_constexpr] = ACTIONS(1476), + [anon_sym_volatile] = ACTIONS(1476), + [anon_sym_restrict] = ACTIONS(1476), + [anon_sym___restrict__] = ACTIONS(1476), + [anon_sym__Atomic] = ACTIONS(1476), + [anon_sym__Noreturn] = ACTIONS(1476), + [anon_sym_noreturn] = ACTIONS(1476), + [sym_primitive_type] = ACTIONS(1476), + [anon_sym_enum] = ACTIONS(1476), + [anon_sym_struct] = ACTIONS(1476), + [anon_sym_union] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_switch] = ACTIONS(1476), + [anon_sym_case] = ACTIONS(1476), + [anon_sym_default] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_do] = ACTIONS(1476), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_goto] = ACTIONS(1476), + [anon_sym_DASH_DASH] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_sizeof] = ACTIONS(1476), + [anon_sym___alignof__] = ACTIONS(1476), + [anon_sym___alignof] = ACTIONS(1476), + [anon_sym__alignof] = ACTIONS(1476), + [anon_sym_alignof] = ACTIONS(1476), + [anon_sym__Alignof] = ACTIONS(1476), + [anon_sym_offsetof] = ACTIONS(1476), + [anon_sym___builtin_va_arg] = ACTIONS(1476), + [anon_sym__Generic] = ACTIONS(1476), + [anon_sym_asm] = ACTIONS(1476), + [anon_sym___asm__] = ACTIONS(1476), + [sym_number_literal] = ACTIONS(1478), + [anon_sym_L_SQUOTE] = ACTIONS(1478), + [anon_sym_u_SQUOTE] = ACTIONS(1478), + [anon_sym_U_SQUOTE] = ACTIONS(1478), + [anon_sym_u8_SQUOTE] = ACTIONS(1478), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_L_DQUOTE] = ACTIONS(1478), + [anon_sym_u_DQUOTE] = ACTIONS(1478), + [anon_sym_U_DQUOTE] = ACTIONS(1478), + [anon_sym_u8_DQUOTE] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(1478), + [sym_true] = ACTIONS(1476), + [sym_false] = ACTIONS(1476), + [anon_sym_NULL] = ACTIONS(1476), + [anon_sym_nullptr] = ACTIONS(1476), + [sym_comment] = ACTIONS(3), + }, + [478] = { + [ts_builtin_sym_end] = ACTIONS(1482), + [sym_identifier] = ACTIONS(1480), + [aux_sym_preproc_include_token1] = ACTIONS(1480), + [aux_sym_preproc_def_token1] = ACTIONS(1480), + [aux_sym_preproc_if_token1] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), + [sym_preproc_directive] = ACTIONS(1480), + [anon_sym_LPAREN2] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym___extension__] = ACTIONS(1480), + [anon_sym_typedef] = ACTIONS(1480), + [anon_sym_extern] = ACTIONS(1480), + [anon_sym___attribute__] = ACTIONS(1480), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), + [anon_sym___declspec] = ACTIONS(1480), + [anon_sym___cdecl] = ACTIONS(1480), + [anon_sym___clrcall] = ACTIONS(1480), + [anon_sym___stdcall] = ACTIONS(1480), + [anon_sym___fastcall] = ACTIONS(1480), + [anon_sym___thiscall] = ACTIONS(1480), + [anon_sym___vectorcall] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_signed] = ACTIONS(1480), + [anon_sym_unsigned] = ACTIONS(1480), + [anon_sym_long] = ACTIONS(1480), + [anon_sym_short] = ACTIONS(1480), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_auto] = ACTIONS(1480), + [anon_sym_register] = ACTIONS(1480), + [anon_sym_inline] = ACTIONS(1480), + [anon_sym___inline] = ACTIONS(1480), + [anon_sym___inline__] = ACTIONS(1480), + [anon_sym___forceinline] = ACTIONS(1480), + [anon_sym_thread_local] = ACTIONS(1480), + [anon_sym___thread] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_constexpr] = ACTIONS(1480), + [anon_sym_volatile] = ACTIONS(1480), + [anon_sym_restrict] = ACTIONS(1480), + [anon_sym___restrict__] = ACTIONS(1480), + [anon_sym__Atomic] = ACTIONS(1480), + [anon_sym__Noreturn] = ACTIONS(1480), + [anon_sym_noreturn] = ACTIONS(1480), + [sym_primitive_type] = ACTIONS(1480), + [anon_sym_enum] = ACTIONS(1480), + [anon_sym_struct] = ACTIONS(1480), + [anon_sym_union] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_switch] = ACTIONS(1480), + [anon_sym_case] = ACTIONS(1480), + [anon_sym_default] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_do] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1480), + [anon_sym_goto] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1482), + [anon_sym_PLUS_PLUS] = ACTIONS(1482), + [anon_sym_sizeof] = ACTIONS(1480), + [anon_sym___alignof__] = ACTIONS(1480), + [anon_sym___alignof] = ACTIONS(1480), + [anon_sym__alignof] = ACTIONS(1480), + [anon_sym_alignof] = ACTIONS(1480), + [anon_sym__Alignof] = ACTIONS(1480), + [anon_sym_offsetof] = ACTIONS(1480), + [anon_sym___builtin_va_arg] = ACTIONS(1480), + [anon_sym__Generic] = ACTIONS(1480), + [anon_sym_asm] = ACTIONS(1480), + [anon_sym___asm__] = ACTIONS(1480), + [sym_number_literal] = ACTIONS(1482), + [anon_sym_L_SQUOTE] = ACTIONS(1482), + [anon_sym_u_SQUOTE] = ACTIONS(1482), + [anon_sym_U_SQUOTE] = ACTIONS(1482), + [anon_sym_u8_SQUOTE] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_L_DQUOTE] = ACTIONS(1482), + [anon_sym_u_DQUOTE] = ACTIONS(1482), + [anon_sym_U_DQUOTE] = ACTIONS(1482), + [anon_sym_u8_DQUOTE] = ACTIONS(1482), + [anon_sym_DQUOTE] = ACTIONS(1482), + [sym_true] = ACTIONS(1480), + [sym_false] = ACTIONS(1480), + [anon_sym_NULL] = ACTIONS(1480), + [anon_sym_nullptr] = ACTIONS(1480), + [sym_comment] = ACTIONS(3), + }, + [479] = { + [ts_builtin_sym_end] = ACTIONS(1588), + [sym_identifier] = ACTIONS(1590), + [aux_sym_preproc_include_token1] = ACTIONS(1590), + [aux_sym_preproc_def_token1] = ACTIONS(1590), + [aux_sym_preproc_if_token1] = ACTIONS(1590), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1590), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1590), + [sym_preproc_directive] = ACTIONS(1590), + [anon_sym_LPAREN2] = ACTIONS(1588), + [anon_sym_BANG] = ACTIONS(1588), + [anon_sym_TILDE] = ACTIONS(1588), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_PLUS] = ACTIONS(1590), + [anon_sym_STAR] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1588), + [anon_sym___extension__] = ACTIONS(1590), + [anon_sym_typedef] = ACTIONS(1590), + [anon_sym_extern] = ACTIONS(1590), + [anon_sym___attribute__] = ACTIONS(1590), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1588), + [anon_sym___declspec] = ACTIONS(1590), + [anon_sym___cdecl] = ACTIONS(1590), + [anon_sym___clrcall] = ACTIONS(1590), + [anon_sym___stdcall] = ACTIONS(1590), + [anon_sym___fastcall] = ACTIONS(1590), + [anon_sym___thiscall] = ACTIONS(1590), + [anon_sym___vectorcall] = ACTIONS(1590), + [anon_sym_LBRACE] = ACTIONS(1588), + [anon_sym_signed] = ACTIONS(1590), + [anon_sym_unsigned] = ACTIONS(1590), + [anon_sym_long] = ACTIONS(1590), + [anon_sym_short] = ACTIONS(1590), + [anon_sym_static] = ACTIONS(1590), + [anon_sym_auto] = ACTIONS(1590), + [anon_sym_register] = ACTIONS(1590), + [anon_sym_inline] = ACTIONS(1590), + [anon_sym___inline] = ACTIONS(1590), + [anon_sym___inline__] = ACTIONS(1590), + [anon_sym___forceinline] = ACTIONS(1590), + [anon_sym_thread_local] = ACTIONS(1590), + [anon_sym___thread] = ACTIONS(1590), + [anon_sym_const] = ACTIONS(1590), + [anon_sym_constexpr] = ACTIONS(1590), + [anon_sym_volatile] = ACTIONS(1590), + [anon_sym_restrict] = ACTIONS(1590), + [anon_sym___restrict__] = ACTIONS(1590), + [anon_sym__Atomic] = ACTIONS(1590), + [anon_sym__Noreturn] = ACTIONS(1590), + [anon_sym_noreturn] = ACTIONS(1590), + [sym_primitive_type] = ACTIONS(1590), + [anon_sym_enum] = ACTIONS(1590), + [anon_sym_struct] = ACTIONS(1590), + [anon_sym_union] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1590), + [anon_sym_switch] = ACTIONS(1590), + [anon_sym_case] = ACTIONS(1590), + [anon_sym_default] = ACTIONS(1590), + [anon_sym_while] = ACTIONS(1590), + [anon_sym_do] = ACTIONS(1590), + [anon_sym_for] = ACTIONS(1590), + [anon_sym_return] = ACTIONS(1590), + [anon_sym_break] = ACTIONS(1590), + [anon_sym_continue] = ACTIONS(1590), + [anon_sym_goto] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1588), + [anon_sym_PLUS_PLUS] = ACTIONS(1588), + [anon_sym_sizeof] = ACTIONS(1590), + [anon_sym___alignof__] = ACTIONS(1590), + [anon_sym___alignof] = ACTIONS(1590), + [anon_sym__alignof] = ACTIONS(1590), + [anon_sym_alignof] = ACTIONS(1590), + [anon_sym__Alignof] = ACTIONS(1590), + [anon_sym_offsetof] = ACTIONS(1590), + [anon_sym___builtin_va_arg] = ACTIONS(1590), + [anon_sym__Generic] = ACTIONS(1590), + [anon_sym_asm] = ACTIONS(1590), + [anon_sym___asm__] = ACTIONS(1590), + [sym_number_literal] = ACTIONS(1588), + [anon_sym_L_SQUOTE] = ACTIONS(1588), + [anon_sym_u_SQUOTE] = ACTIONS(1588), + [anon_sym_U_SQUOTE] = ACTIONS(1588), + [anon_sym_u8_SQUOTE] = ACTIONS(1588), + [anon_sym_SQUOTE] = ACTIONS(1588), + [anon_sym_L_DQUOTE] = ACTIONS(1588), + [anon_sym_u_DQUOTE] = ACTIONS(1588), + [anon_sym_U_DQUOTE] = ACTIONS(1588), + [anon_sym_u8_DQUOTE] = ACTIONS(1588), + [anon_sym_DQUOTE] = ACTIONS(1588), + [sym_true] = ACTIONS(1590), + [sym_false] = ACTIONS(1590), + [anon_sym_NULL] = ACTIONS(1590), + [anon_sym_nullptr] = ACTIONS(1590), + [sym_comment] = ACTIONS(3), + }, + [480] = { + [ts_builtin_sym_end] = ACTIONS(1568), + [sym_identifier] = ACTIONS(1566), + [aux_sym_preproc_include_token1] = ACTIONS(1566), + [aux_sym_preproc_def_token1] = ACTIONS(1566), + [aux_sym_preproc_if_token1] = ACTIONS(1566), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1566), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1566), + [sym_preproc_directive] = ACTIONS(1566), + [anon_sym_LPAREN2] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1568), + [anon_sym_TILDE] = ACTIONS(1568), + [anon_sym_DASH] = ACTIONS(1566), + [anon_sym_PLUS] = ACTIONS(1566), + [anon_sym_STAR] = ACTIONS(1568), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym___extension__] = ACTIONS(1566), + [anon_sym_typedef] = ACTIONS(1566), + [anon_sym_extern] = ACTIONS(1566), + [anon_sym___attribute__] = ACTIONS(1566), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1568), + [anon_sym___declspec] = ACTIONS(1566), + [anon_sym___cdecl] = ACTIONS(1566), + [anon_sym___clrcall] = ACTIONS(1566), + [anon_sym___stdcall] = ACTIONS(1566), + [anon_sym___fastcall] = ACTIONS(1566), + [anon_sym___thiscall] = ACTIONS(1566), + [anon_sym___vectorcall] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_signed] = ACTIONS(1566), + [anon_sym_unsigned] = ACTIONS(1566), + [anon_sym_long] = ACTIONS(1566), + [anon_sym_short] = ACTIONS(1566), + [anon_sym_static] = ACTIONS(1566), + [anon_sym_auto] = ACTIONS(1566), + [anon_sym_register] = ACTIONS(1566), + [anon_sym_inline] = ACTIONS(1566), + [anon_sym___inline] = ACTIONS(1566), + [anon_sym___inline__] = ACTIONS(1566), + [anon_sym___forceinline] = ACTIONS(1566), + [anon_sym_thread_local] = ACTIONS(1566), + [anon_sym___thread] = ACTIONS(1566), + [anon_sym_const] = ACTIONS(1566), + [anon_sym_constexpr] = ACTIONS(1566), + [anon_sym_volatile] = ACTIONS(1566), + [anon_sym_restrict] = ACTIONS(1566), + [anon_sym___restrict__] = ACTIONS(1566), + [anon_sym__Atomic] = ACTIONS(1566), + [anon_sym__Noreturn] = ACTIONS(1566), + [anon_sym_noreturn] = ACTIONS(1566), + [sym_primitive_type] = ACTIONS(1566), + [anon_sym_enum] = ACTIONS(1566), + [anon_sym_struct] = ACTIONS(1566), + [anon_sym_union] = ACTIONS(1566), + [anon_sym_if] = ACTIONS(1566), + [anon_sym_switch] = ACTIONS(1566), + [anon_sym_case] = ACTIONS(1566), + [anon_sym_default] = ACTIONS(1566), + [anon_sym_while] = ACTIONS(1566), + [anon_sym_do] = ACTIONS(1566), + [anon_sym_for] = ACTIONS(1566), + [anon_sym_return] = ACTIONS(1566), + [anon_sym_break] = ACTIONS(1566), + [anon_sym_continue] = ACTIONS(1566), + [anon_sym_goto] = ACTIONS(1566), + [anon_sym_DASH_DASH] = ACTIONS(1568), + [anon_sym_PLUS_PLUS] = ACTIONS(1568), + [anon_sym_sizeof] = ACTIONS(1566), + [anon_sym___alignof__] = ACTIONS(1566), + [anon_sym___alignof] = ACTIONS(1566), + [anon_sym__alignof] = ACTIONS(1566), + [anon_sym_alignof] = ACTIONS(1566), + [anon_sym__Alignof] = ACTIONS(1566), + [anon_sym_offsetof] = ACTIONS(1566), + [anon_sym___builtin_va_arg] = ACTIONS(1566), + [anon_sym__Generic] = ACTIONS(1566), + [anon_sym_asm] = ACTIONS(1566), + [anon_sym___asm__] = ACTIONS(1566), + [sym_number_literal] = ACTIONS(1568), + [anon_sym_L_SQUOTE] = ACTIONS(1568), + [anon_sym_u_SQUOTE] = ACTIONS(1568), + [anon_sym_U_SQUOTE] = ACTIONS(1568), + [anon_sym_u8_SQUOTE] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1568), + [anon_sym_L_DQUOTE] = ACTIONS(1568), + [anon_sym_u_DQUOTE] = ACTIONS(1568), + [anon_sym_U_DQUOTE] = ACTIONS(1568), + [anon_sym_u8_DQUOTE] = ACTIONS(1568), + [anon_sym_DQUOTE] = ACTIONS(1568), + [sym_true] = ACTIONS(1566), + [sym_false] = ACTIONS(1566), + [anon_sym_NULL] = ACTIONS(1566), + [anon_sym_nullptr] = ACTIONS(1566), + [sym_comment] = ACTIONS(3), + }, + [481] = { + [ts_builtin_sym_end] = ACTIONS(1528), + [sym_identifier] = ACTIONS(1526), + [aux_sym_preproc_include_token1] = ACTIONS(1526), + [aux_sym_preproc_def_token1] = ACTIONS(1526), + [aux_sym_preproc_if_token1] = ACTIONS(1526), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1526), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1526), + [sym_preproc_directive] = ACTIONS(1526), + [anon_sym_LPAREN2] = ACTIONS(1528), + [anon_sym_BANG] = ACTIONS(1528), + [anon_sym_TILDE] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_PLUS] = ACTIONS(1526), + [anon_sym_STAR] = ACTIONS(1528), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_typedef] = ACTIONS(1526), + [anon_sym_extern] = ACTIONS(1526), + [anon_sym___attribute__] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym___declspec] = ACTIONS(1526), + [anon_sym___cdecl] = ACTIONS(1526), + [anon_sym___clrcall] = ACTIONS(1526), + [anon_sym___stdcall] = ACTIONS(1526), + [anon_sym___fastcall] = ACTIONS(1526), + [anon_sym___thiscall] = ACTIONS(1526), + [anon_sym___vectorcall] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_signed] = ACTIONS(1526), + [anon_sym_unsigned] = ACTIONS(1526), + [anon_sym_long] = ACTIONS(1526), + [anon_sym_short] = ACTIONS(1526), + [anon_sym_static] = ACTIONS(1526), + [anon_sym_auto] = ACTIONS(1526), + [anon_sym_register] = ACTIONS(1526), + [anon_sym_inline] = ACTIONS(1526), + [anon_sym___inline] = ACTIONS(1526), + [anon_sym___inline__] = ACTIONS(1526), + [anon_sym___forceinline] = ACTIONS(1526), + [anon_sym_thread_local] = ACTIONS(1526), + [anon_sym___thread] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1526), + [anon_sym_constexpr] = ACTIONS(1526), + [anon_sym_volatile] = ACTIONS(1526), + [anon_sym_restrict] = ACTIONS(1526), + [anon_sym___restrict__] = ACTIONS(1526), + [anon_sym__Atomic] = ACTIONS(1526), + [anon_sym__Noreturn] = ACTIONS(1526), + [anon_sym_noreturn] = ACTIONS(1526), + [sym_primitive_type] = ACTIONS(1526), + [anon_sym_enum] = ACTIONS(1526), + [anon_sym_struct] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_switch] = ACTIONS(1526), + [anon_sym_case] = ACTIONS(1526), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1526), + [anon_sym_for] = ACTIONS(1526), + [anon_sym_return] = ACTIONS(1526), + [anon_sym_break] = ACTIONS(1526), + [anon_sym_continue] = ACTIONS(1526), + [anon_sym_goto] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1528), + [anon_sym_PLUS_PLUS] = ACTIONS(1528), + [anon_sym_sizeof] = ACTIONS(1526), + [anon_sym___alignof__] = ACTIONS(1526), + [anon_sym___alignof] = ACTIONS(1526), + [anon_sym__alignof] = ACTIONS(1526), + [anon_sym_alignof] = ACTIONS(1526), + [anon_sym__Alignof] = ACTIONS(1526), + [anon_sym_offsetof] = ACTIONS(1526), + [anon_sym___builtin_va_arg] = ACTIONS(1526), + [anon_sym__Generic] = ACTIONS(1526), + [anon_sym_asm] = ACTIONS(1526), + [anon_sym___asm__] = ACTIONS(1526), + [sym_number_literal] = ACTIONS(1528), + [anon_sym_L_SQUOTE] = ACTIONS(1528), + [anon_sym_u_SQUOTE] = ACTIONS(1528), + [anon_sym_U_SQUOTE] = ACTIONS(1528), + [anon_sym_u8_SQUOTE] = ACTIONS(1528), + [anon_sym_SQUOTE] = ACTIONS(1528), + [anon_sym_L_DQUOTE] = ACTIONS(1528), + [anon_sym_u_DQUOTE] = ACTIONS(1528), + [anon_sym_U_DQUOTE] = ACTIONS(1528), + [anon_sym_u8_DQUOTE] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1528), + [sym_true] = ACTIONS(1526), + [sym_false] = ACTIONS(1526), + [anon_sym_NULL] = ACTIONS(1526), + [anon_sym_nullptr] = ACTIONS(1526), + [sym_comment] = ACTIONS(3), + }, + [482] = { + [ts_builtin_sym_end] = ACTIONS(1508), + [sym_identifier] = ACTIONS(1506), + [aux_sym_preproc_include_token1] = ACTIONS(1506), + [aux_sym_preproc_def_token1] = ACTIONS(1506), + [aux_sym_preproc_if_token1] = ACTIONS(1506), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1506), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1506), + [sym_preproc_directive] = ACTIONS(1506), + [anon_sym_LPAREN2] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_STAR] = ACTIONS(1508), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym___extension__] = ACTIONS(1506), + [anon_sym_typedef] = ACTIONS(1506), + [anon_sym_extern] = ACTIONS(1506), + [anon_sym___attribute__] = ACTIONS(1506), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1508), + [anon_sym___declspec] = ACTIONS(1506), + [anon_sym___cdecl] = ACTIONS(1506), + [anon_sym___clrcall] = ACTIONS(1506), + [anon_sym___stdcall] = ACTIONS(1506), + [anon_sym___fastcall] = ACTIONS(1506), + [anon_sym___thiscall] = ACTIONS(1506), + [anon_sym___vectorcall] = ACTIONS(1506), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_signed] = ACTIONS(1506), + [anon_sym_unsigned] = ACTIONS(1506), + [anon_sym_long] = ACTIONS(1506), + [anon_sym_short] = ACTIONS(1506), + [anon_sym_static] = ACTIONS(1506), + [anon_sym_auto] = ACTIONS(1506), + [anon_sym_register] = ACTIONS(1506), + [anon_sym_inline] = ACTIONS(1506), + [anon_sym___inline] = ACTIONS(1506), + [anon_sym___inline__] = ACTIONS(1506), + [anon_sym___forceinline] = ACTIONS(1506), + [anon_sym_thread_local] = ACTIONS(1506), + [anon_sym___thread] = ACTIONS(1506), + [anon_sym_const] = ACTIONS(1506), + [anon_sym_constexpr] = ACTIONS(1506), + [anon_sym_volatile] = ACTIONS(1506), + [anon_sym_restrict] = ACTIONS(1506), + [anon_sym___restrict__] = ACTIONS(1506), + [anon_sym__Atomic] = ACTIONS(1506), + [anon_sym__Noreturn] = ACTIONS(1506), + [anon_sym_noreturn] = ACTIONS(1506), + [sym_primitive_type] = ACTIONS(1506), + [anon_sym_enum] = ACTIONS(1506), + [anon_sym_struct] = ACTIONS(1506), + [anon_sym_union] = ACTIONS(1506), + [anon_sym_if] = ACTIONS(1506), + [anon_sym_switch] = ACTIONS(1506), + [anon_sym_case] = ACTIONS(1506), + [anon_sym_default] = ACTIONS(1506), + [anon_sym_while] = ACTIONS(1506), + [anon_sym_do] = ACTIONS(1506), + [anon_sym_for] = ACTIONS(1506), + [anon_sym_return] = ACTIONS(1506), + [anon_sym_break] = ACTIONS(1506), + [anon_sym_continue] = ACTIONS(1506), + [anon_sym_goto] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_sizeof] = ACTIONS(1506), + [anon_sym___alignof__] = ACTIONS(1506), + [anon_sym___alignof] = ACTIONS(1506), + [anon_sym__alignof] = ACTIONS(1506), + [anon_sym_alignof] = ACTIONS(1506), + [anon_sym__Alignof] = ACTIONS(1506), + [anon_sym_offsetof] = ACTIONS(1506), + [anon_sym___builtin_va_arg] = ACTIONS(1506), + [anon_sym__Generic] = ACTIONS(1506), + [anon_sym_asm] = ACTIONS(1506), + [anon_sym___asm__] = ACTIONS(1506), + [sym_number_literal] = ACTIONS(1508), + [anon_sym_L_SQUOTE] = ACTIONS(1508), + [anon_sym_u_SQUOTE] = ACTIONS(1508), + [anon_sym_U_SQUOTE] = ACTIONS(1508), + [anon_sym_u8_SQUOTE] = ACTIONS(1508), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_L_DQUOTE] = ACTIONS(1508), + [anon_sym_u_DQUOTE] = ACTIONS(1508), + [anon_sym_U_DQUOTE] = ACTIONS(1508), + [anon_sym_u8_DQUOTE] = ACTIONS(1508), + [anon_sym_DQUOTE] = ACTIONS(1508), + [sym_true] = ACTIONS(1506), + [sym_false] = ACTIONS(1506), + [anon_sym_NULL] = ACTIONS(1506), + [anon_sym_nullptr] = ACTIONS(1506), + [sym_comment] = ACTIONS(3), + }, + [483] = { + [ts_builtin_sym_end] = ACTIONS(1512), + [sym_identifier] = ACTIONS(1510), + [aux_sym_preproc_include_token1] = ACTIONS(1510), + [aux_sym_preproc_def_token1] = ACTIONS(1510), + [aux_sym_preproc_if_token1] = ACTIONS(1510), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1510), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1510), + [sym_preproc_directive] = ACTIONS(1510), + [anon_sym_LPAREN2] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1512), + [anon_sym_TILDE] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1510), + [anon_sym_PLUS] = ACTIONS(1510), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_AMP] = ACTIONS(1512), + [anon_sym___extension__] = ACTIONS(1510), + [anon_sym_typedef] = ACTIONS(1510), + [anon_sym_extern] = ACTIONS(1510), + [anon_sym___attribute__] = ACTIONS(1510), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1512), + [anon_sym___declspec] = ACTIONS(1510), + [anon_sym___cdecl] = ACTIONS(1510), + [anon_sym___clrcall] = ACTIONS(1510), + [anon_sym___stdcall] = ACTIONS(1510), + [anon_sym___fastcall] = ACTIONS(1510), + [anon_sym___thiscall] = ACTIONS(1510), + [anon_sym___vectorcall] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_signed] = ACTIONS(1510), + [anon_sym_unsigned] = ACTIONS(1510), + [anon_sym_long] = ACTIONS(1510), + [anon_sym_short] = ACTIONS(1510), + [anon_sym_static] = ACTIONS(1510), + [anon_sym_auto] = ACTIONS(1510), + [anon_sym_register] = ACTIONS(1510), + [anon_sym_inline] = ACTIONS(1510), + [anon_sym___inline] = ACTIONS(1510), + [anon_sym___inline__] = ACTIONS(1510), + [anon_sym___forceinline] = ACTIONS(1510), + [anon_sym_thread_local] = ACTIONS(1510), + [anon_sym___thread] = ACTIONS(1510), + [anon_sym_const] = ACTIONS(1510), + [anon_sym_constexpr] = ACTIONS(1510), + [anon_sym_volatile] = ACTIONS(1510), + [anon_sym_restrict] = ACTIONS(1510), + [anon_sym___restrict__] = ACTIONS(1510), + [anon_sym__Atomic] = ACTIONS(1510), + [anon_sym__Noreturn] = ACTIONS(1510), + [anon_sym_noreturn] = ACTIONS(1510), + [sym_primitive_type] = ACTIONS(1510), + [anon_sym_enum] = ACTIONS(1510), + [anon_sym_struct] = ACTIONS(1510), + [anon_sym_union] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_switch] = ACTIONS(1510), + [anon_sym_case] = ACTIONS(1510), + [anon_sym_default] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_do] = ACTIONS(1510), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_goto] = ACTIONS(1510), + [anon_sym_DASH_DASH] = ACTIONS(1512), + [anon_sym_PLUS_PLUS] = ACTIONS(1512), + [anon_sym_sizeof] = ACTIONS(1510), + [anon_sym___alignof__] = ACTIONS(1510), + [anon_sym___alignof] = ACTIONS(1510), + [anon_sym__alignof] = ACTIONS(1510), + [anon_sym_alignof] = ACTIONS(1510), + [anon_sym__Alignof] = ACTIONS(1510), + [anon_sym_offsetof] = ACTIONS(1510), + [anon_sym___builtin_va_arg] = ACTIONS(1510), + [anon_sym__Generic] = ACTIONS(1510), + [anon_sym_asm] = ACTIONS(1510), + [anon_sym___asm__] = ACTIONS(1510), + [sym_number_literal] = ACTIONS(1512), + [anon_sym_L_SQUOTE] = ACTIONS(1512), + [anon_sym_u_SQUOTE] = ACTIONS(1512), + [anon_sym_U_SQUOTE] = ACTIONS(1512), + [anon_sym_u8_SQUOTE] = ACTIONS(1512), + [anon_sym_SQUOTE] = ACTIONS(1512), + [anon_sym_L_DQUOTE] = ACTIONS(1512), + [anon_sym_u_DQUOTE] = ACTIONS(1512), + [anon_sym_U_DQUOTE] = ACTIONS(1512), + [anon_sym_u8_DQUOTE] = ACTIONS(1512), + [anon_sym_DQUOTE] = ACTIONS(1512), + [sym_true] = ACTIONS(1510), + [sym_false] = ACTIONS(1510), + [anon_sym_NULL] = ACTIONS(1510), + [anon_sym_nullptr] = ACTIONS(1510), + [sym_comment] = ACTIONS(3), + }, + [484] = { + [ts_builtin_sym_end] = ACTIONS(1544), + [sym_identifier] = ACTIONS(1542), + [aux_sym_preproc_include_token1] = ACTIONS(1542), + [aux_sym_preproc_def_token1] = ACTIONS(1542), + [aux_sym_preproc_if_token1] = ACTIONS(1542), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1542), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1542), + [sym_preproc_directive] = ACTIONS(1542), + [anon_sym_LPAREN2] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1544), + [anon_sym_TILDE] = ACTIONS(1544), + [anon_sym_DASH] = ACTIONS(1542), + [anon_sym_PLUS] = ACTIONS(1542), + [anon_sym_STAR] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(1544), + [anon_sym___extension__] = ACTIONS(1542), + [anon_sym_typedef] = ACTIONS(1542), + [anon_sym_extern] = ACTIONS(1542), + [anon_sym___attribute__] = ACTIONS(1542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1544), + [anon_sym___declspec] = ACTIONS(1542), + [anon_sym___cdecl] = ACTIONS(1542), + [anon_sym___clrcall] = ACTIONS(1542), + [anon_sym___stdcall] = ACTIONS(1542), + [anon_sym___fastcall] = ACTIONS(1542), + [anon_sym___thiscall] = ACTIONS(1542), + [anon_sym___vectorcall] = ACTIONS(1542), + [anon_sym_LBRACE] = ACTIONS(1544), + [anon_sym_signed] = ACTIONS(1542), + [anon_sym_unsigned] = ACTIONS(1542), + [anon_sym_long] = ACTIONS(1542), + [anon_sym_short] = ACTIONS(1542), + [anon_sym_static] = ACTIONS(1542), + [anon_sym_auto] = ACTIONS(1542), + [anon_sym_register] = ACTIONS(1542), + [anon_sym_inline] = ACTIONS(1542), + [anon_sym___inline] = ACTIONS(1542), + [anon_sym___inline__] = ACTIONS(1542), + [anon_sym___forceinline] = ACTIONS(1542), + [anon_sym_thread_local] = ACTIONS(1542), + [anon_sym___thread] = ACTIONS(1542), + [anon_sym_const] = ACTIONS(1542), + [anon_sym_constexpr] = ACTIONS(1542), + [anon_sym_volatile] = ACTIONS(1542), + [anon_sym_restrict] = ACTIONS(1542), + [anon_sym___restrict__] = ACTIONS(1542), + [anon_sym__Atomic] = ACTIONS(1542), + [anon_sym__Noreturn] = ACTIONS(1542), + [anon_sym_noreturn] = ACTIONS(1542), + [sym_primitive_type] = ACTIONS(1542), + [anon_sym_enum] = ACTIONS(1542), + [anon_sym_struct] = ACTIONS(1542), + [anon_sym_union] = ACTIONS(1542), + [anon_sym_if] = ACTIONS(1542), + [anon_sym_switch] = ACTIONS(1542), + [anon_sym_case] = ACTIONS(1542), + [anon_sym_default] = ACTIONS(1542), + [anon_sym_while] = ACTIONS(1542), + [anon_sym_do] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1542), + [anon_sym_return] = ACTIONS(1542), + [anon_sym_break] = ACTIONS(1542), + [anon_sym_continue] = ACTIONS(1542), + [anon_sym_goto] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_PLUS_PLUS] = ACTIONS(1544), + [anon_sym_sizeof] = ACTIONS(1542), + [anon_sym___alignof__] = ACTIONS(1542), + [anon_sym___alignof] = ACTIONS(1542), + [anon_sym__alignof] = ACTIONS(1542), + [anon_sym_alignof] = ACTIONS(1542), + [anon_sym__Alignof] = ACTIONS(1542), + [anon_sym_offsetof] = ACTIONS(1542), + [anon_sym___builtin_va_arg] = ACTIONS(1542), + [anon_sym__Generic] = ACTIONS(1542), + [anon_sym_asm] = ACTIONS(1542), + [anon_sym___asm__] = ACTIONS(1542), + [sym_number_literal] = ACTIONS(1544), + [anon_sym_L_SQUOTE] = ACTIONS(1544), + [anon_sym_u_SQUOTE] = ACTIONS(1544), + [anon_sym_U_SQUOTE] = ACTIONS(1544), + [anon_sym_u8_SQUOTE] = ACTIONS(1544), + [anon_sym_SQUOTE] = ACTIONS(1544), + [anon_sym_L_DQUOTE] = ACTIONS(1544), + [anon_sym_u_DQUOTE] = ACTIONS(1544), + [anon_sym_U_DQUOTE] = ACTIONS(1544), + [anon_sym_u8_DQUOTE] = ACTIONS(1544), + [anon_sym_DQUOTE] = ACTIONS(1544), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [anon_sym_NULL] = ACTIONS(1542), + [anon_sym_nullptr] = ACTIONS(1542), + [sym_comment] = ACTIONS(3), + }, + [485] = { + [ts_builtin_sym_end] = ACTIONS(1466), + [sym_identifier] = ACTIONS(1464), + [aux_sym_preproc_include_token1] = ACTIONS(1464), + [aux_sym_preproc_def_token1] = ACTIONS(1464), + [aux_sym_preproc_if_token1] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), + [sym_preproc_directive] = ACTIONS(1464), + [anon_sym_LPAREN2] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym___extension__] = ACTIONS(1464), + [anon_sym_typedef] = ACTIONS(1464), + [anon_sym_extern] = ACTIONS(1464), + [anon_sym___attribute__] = ACTIONS(1464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), + [anon_sym___declspec] = ACTIONS(1464), + [anon_sym___cdecl] = ACTIONS(1464), + [anon_sym___clrcall] = ACTIONS(1464), + [anon_sym___stdcall] = ACTIONS(1464), + [anon_sym___fastcall] = ACTIONS(1464), + [anon_sym___thiscall] = ACTIONS(1464), + [anon_sym___vectorcall] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_signed] = ACTIONS(1464), + [anon_sym_unsigned] = ACTIONS(1464), + [anon_sym_long] = ACTIONS(1464), + [anon_sym_short] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_auto] = ACTIONS(1464), + [anon_sym_register] = ACTIONS(1464), + [anon_sym_inline] = ACTIONS(1464), + [anon_sym___inline] = ACTIONS(1464), + [anon_sym___inline__] = ACTIONS(1464), + [anon_sym___forceinline] = ACTIONS(1464), + [anon_sym_thread_local] = ACTIONS(1464), + [anon_sym___thread] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_constexpr] = ACTIONS(1464), + [anon_sym_volatile] = ACTIONS(1464), + [anon_sym_restrict] = ACTIONS(1464), + [anon_sym___restrict__] = ACTIONS(1464), + [anon_sym__Atomic] = ACTIONS(1464), + [anon_sym__Noreturn] = ACTIONS(1464), + [anon_sym_noreturn] = ACTIONS(1464), + [sym_primitive_type] = ACTIONS(1464), + [anon_sym_enum] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1464), + [anon_sym_union] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_case] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_continue] = ACTIONS(1464), + [anon_sym_goto] = ACTIONS(1464), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_sizeof] = ACTIONS(1464), + [anon_sym___alignof__] = ACTIONS(1464), + [anon_sym___alignof] = ACTIONS(1464), + [anon_sym__alignof] = ACTIONS(1464), + [anon_sym_alignof] = ACTIONS(1464), + [anon_sym__Alignof] = ACTIONS(1464), + [anon_sym_offsetof] = ACTIONS(1464), + [anon_sym___builtin_va_arg] = ACTIONS(1464), + [anon_sym__Generic] = ACTIONS(1464), + [anon_sym_asm] = ACTIONS(1464), + [anon_sym___asm__] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [anon_sym_L_SQUOTE] = ACTIONS(1466), + [anon_sym_u_SQUOTE] = ACTIONS(1466), + [anon_sym_U_SQUOTE] = ACTIONS(1466), + [anon_sym_u8_SQUOTE] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [anon_sym_L_DQUOTE] = ACTIONS(1466), + [anon_sym_u_DQUOTE] = ACTIONS(1466), + [anon_sym_U_DQUOTE] = ACTIONS(1466), + [anon_sym_u8_DQUOTE] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [anon_sym_NULL] = ACTIONS(1464), + [anon_sym_nullptr] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + }, + [486] = { + [ts_builtin_sym_end] = ACTIONS(1516), + [sym_identifier] = ACTIONS(1514), + [aux_sym_preproc_include_token1] = ACTIONS(1514), + [aux_sym_preproc_def_token1] = ACTIONS(1514), + [aux_sym_preproc_if_token1] = ACTIONS(1514), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1514), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1514), + [sym_preproc_directive] = ACTIONS(1514), + [anon_sym_LPAREN2] = ACTIONS(1516), + [anon_sym_BANG] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1516), + [anon_sym_AMP] = ACTIONS(1516), + [anon_sym___extension__] = ACTIONS(1514), + [anon_sym_typedef] = ACTIONS(1514), + [anon_sym_extern] = ACTIONS(1514), + [anon_sym___attribute__] = ACTIONS(1514), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1516), + [anon_sym___declspec] = ACTIONS(1514), + [anon_sym___cdecl] = ACTIONS(1514), + [anon_sym___clrcall] = ACTIONS(1514), + [anon_sym___stdcall] = ACTIONS(1514), + [anon_sym___fastcall] = ACTIONS(1514), + [anon_sym___thiscall] = ACTIONS(1514), + [anon_sym___vectorcall] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_signed] = ACTIONS(1514), + [anon_sym_unsigned] = ACTIONS(1514), + [anon_sym_long] = ACTIONS(1514), + [anon_sym_short] = ACTIONS(1514), + [anon_sym_static] = ACTIONS(1514), + [anon_sym_auto] = ACTIONS(1514), + [anon_sym_register] = ACTIONS(1514), + [anon_sym_inline] = ACTIONS(1514), + [anon_sym___inline] = ACTIONS(1514), + [anon_sym___inline__] = ACTIONS(1514), + [anon_sym___forceinline] = ACTIONS(1514), + [anon_sym_thread_local] = ACTIONS(1514), + [anon_sym___thread] = ACTIONS(1514), + [anon_sym_const] = ACTIONS(1514), + [anon_sym_constexpr] = ACTIONS(1514), + [anon_sym_volatile] = ACTIONS(1514), + [anon_sym_restrict] = ACTIONS(1514), + [anon_sym___restrict__] = ACTIONS(1514), + [anon_sym__Atomic] = ACTIONS(1514), + [anon_sym__Noreturn] = ACTIONS(1514), + [anon_sym_noreturn] = ACTIONS(1514), + [sym_primitive_type] = ACTIONS(1514), + [anon_sym_enum] = ACTIONS(1514), + [anon_sym_struct] = ACTIONS(1514), + [anon_sym_union] = ACTIONS(1514), + [anon_sym_if] = ACTIONS(1514), + [anon_sym_switch] = ACTIONS(1514), + [anon_sym_case] = ACTIONS(1514), + [anon_sym_default] = ACTIONS(1514), + [anon_sym_while] = ACTIONS(1514), + [anon_sym_do] = ACTIONS(1514), + [anon_sym_for] = ACTIONS(1514), + [anon_sym_return] = ACTIONS(1514), + [anon_sym_break] = ACTIONS(1514), + [anon_sym_continue] = ACTIONS(1514), + [anon_sym_goto] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_sizeof] = ACTIONS(1514), + [anon_sym___alignof__] = ACTIONS(1514), + [anon_sym___alignof] = ACTIONS(1514), + [anon_sym__alignof] = ACTIONS(1514), + [anon_sym_alignof] = ACTIONS(1514), + [anon_sym__Alignof] = ACTIONS(1514), + [anon_sym_offsetof] = ACTIONS(1514), + [anon_sym___builtin_va_arg] = ACTIONS(1514), + [anon_sym__Generic] = ACTIONS(1514), + [anon_sym_asm] = ACTIONS(1514), + [anon_sym___asm__] = ACTIONS(1514), + [sym_number_literal] = ACTIONS(1516), + [anon_sym_L_SQUOTE] = ACTIONS(1516), + [anon_sym_u_SQUOTE] = ACTIONS(1516), + [anon_sym_U_SQUOTE] = ACTIONS(1516), + [anon_sym_u8_SQUOTE] = ACTIONS(1516), + [anon_sym_SQUOTE] = ACTIONS(1516), + [anon_sym_L_DQUOTE] = ACTIONS(1516), + [anon_sym_u_DQUOTE] = ACTIONS(1516), + [anon_sym_U_DQUOTE] = ACTIONS(1516), + [anon_sym_u8_DQUOTE] = ACTIONS(1516), + [anon_sym_DQUOTE] = ACTIONS(1516), + [sym_true] = ACTIONS(1514), + [sym_false] = ACTIONS(1514), + [anon_sym_NULL] = ACTIONS(1514), + [anon_sym_nullptr] = ACTIONS(1514), + [sym_comment] = ACTIONS(3), + }, + [487] = { + [ts_builtin_sym_end] = ACTIONS(1560), + [sym_identifier] = ACTIONS(1558), + [aux_sym_preproc_include_token1] = ACTIONS(1558), + [aux_sym_preproc_def_token1] = ACTIONS(1558), + [aux_sym_preproc_if_token1] = ACTIONS(1558), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1558), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1558), + [sym_preproc_directive] = ACTIONS(1558), + [anon_sym_LPAREN2] = ACTIONS(1560), + [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_DASH] = ACTIONS(1558), + [anon_sym_PLUS] = ACTIONS(1558), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_AMP] = ACTIONS(1560), + [anon_sym___extension__] = ACTIONS(1558), + [anon_sym_typedef] = ACTIONS(1558), + [anon_sym_extern] = ACTIONS(1558), + [anon_sym___attribute__] = ACTIONS(1558), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1560), + [anon_sym___declspec] = ACTIONS(1558), + [anon_sym___cdecl] = ACTIONS(1558), + [anon_sym___clrcall] = ACTIONS(1558), + [anon_sym___stdcall] = ACTIONS(1558), + [anon_sym___fastcall] = ACTIONS(1558), + [anon_sym___thiscall] = ACTIONS(1558), + [anon_sym___vectorcall] = ACTIONS(1558), + [anon_sym_LBRACE] = ACTIONS(1560), + [anon_sym_signed] = ACTIONS(1558), + [anon_sym_unsigned] = ACTIONS(1558), + [anon_sym_long] = ACTIONS(1558), + [anon_sym_short] = ACTIONS(1558), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_auto] = ACTIONS(1558), + [anon_sym_register] = ACTIONS(1558), + [anon_sym_inline] = ACTIONS(1558), + [anon_sym___inline] = ACTIONS(1558), + [anon_sym___inline__] = ACTIONS(1558), + [anon_sym___forceinline] = ACTIONS(1558), + [anon_sym_thread_local] = ACTIONS(1558), + [anon_sym___thread] = ACTIONS(1558), + [anon_sym_const] = ACTIONS(1558), + [anon_sym_constexpr] = ACTIONS(1558), + [anon_sym_volatile] = ACTIONS(1558), + [anon_sym_restrict] = ACTIONS(1558), + [anon_sym___restrict__] = ACTIONS(1558), + [anon_sym__Atomic] = ACTIONS(1558), + [anon_sym__Noreturn] = ACTIONS(1558), + [anon_sym_noreturn] = ACTIONS(1558), + [sym_primitive_type] = ACTIONS(1558), + [anon_sym_enum] = ACTIONS(1558), + [anon_sym_struct] = ACTIONS(1558), + [anon_sym_union] = ACTIONS(1558), + [anon_sym_if] = ACTIONS(1558), + [anon_sym_switch] = ACTIONS(1558), + [anon_sym_case] = ACTIONS(1558), + [anon_sym_default] = ACTIONS(1558), + [anon_sym_while] = ACTIONS(1558), + [anon_sym_do] = ACTIONS(1558), + [anon_sym_for] = ACTIONS(1558), + [anon_sym_return] = ACTIONS(1558), + [anon_sym_break] = ACTIONS(1558), + [anon_sym_continue] = ACTIONS(1558), + [anon_sym_goto] = ACTIONS(1558), + [anon_sym_DASH_DASH] = ACTIONS(1560), + [anon_sym_PLUS_PLUS] = ACTIONS(1560), + [anon_sym_sizeof] = ACTIONS(1558), + [anon_sym___alignof__] = ACTIONS(1558), + [anon_sym___alignof] = ACTIONS(1558), + [anon_sym__alignof] = ACTIONS(1558), + [anon_sym_alignof] = ACTIONS(1558), + [anon_sym__Alignof] = ACTIONS(1558), + [anon_sym_offsetof] = ACTIONS(1558), + [anon_sym___builtin_va_arg] = ACTIONS(1558), + [anon_sym__Generic] = ACTIONS(1558), + [anon_sym_asm] = ACTIONS(1558), + [anon_sym___asm__] = ACTIONS(1558), + [sym_number_literal] = ACTIONS(1560), + [anon_sym_L_SQUOTE] = ACTIONS(1560), + [anon_sym_u_SQUOTE] = ACTIONS(1560), + [anon_sym_U_SQUOTE] = ACTIONS(1560), + [anon_sym_u8_SQUOTE] = ACTIONS(1560), + [anon_sym_SQUOTE] = ACTIONS(1560), + [anon_sym_L_DQUOTE] = ACTIONS(1560), + [anon_sym_u_DQUOTE] = ACTIONS(1560), + [anon_sym_U_DQUOTE] = ACTIONS(1560), + [anon_sym_u8_DQUOTE] = ACTIONS(1560), + [anon_sym_DQUOTE] = ACTIONS(1560), + [sym_true] = ACTIONS(1558), + [sym_false] = ACTIONS(1558), + [anon_sym_NULL] = ACTIONS(1558), + [anon_sym_nullptr] = ACTIONS(1558), + [sym_comment] = ACTIONS(3), + }, + [488] = { + [ts_builtin_sym_end] = ACTIONS(1532), + [sym_identifier] = ACTIONS(1530), + [aux_sym_preproc_include_token1] = ACTIONS(1530), + [aux_sym_preproc_def_token1] = ACTIONS(1530), + [aux_sym_preproc_if_token1] = ACTIONS(1530), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1530), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1530), + [sym_preproc_directive] = ACTIONS(1530), + [anon_sym_LPAREN2] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(1532), + [anon_sym_TILDE] = ACTIONS(1532), + [anon_sym_DASH] = ACTIONS(1530), + [anon_sym_PLUS] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1532), + [anon_sym_AMP] = ACTIONS(1532), + [anon_sym___extension__] = ACTIONS(1530), + [anon_sym_typedef] = ACTIONS(1530), + [anon_sym_extern] = ACTIONS(1530), + [anon_sym___attribute__] = ACTIONS(1530), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1532), + [anon_sym___declspec] = ACTIONS(1530), + [anon_sym___cdecl] = ACTIONS(1530), + [anon_sym___clrcall] = ACTIONS(1530), + [anon_sym___stdcall] = ACTIONS(1530), + [anon_sym___fastcall] = ACTIONS(1530), + [anon_sym___thiscall] = ACTIONS(1530), + [anon_sym___vectorcall] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_signed] = ACTIONS(1530), + [anon_sym_unsigned] = ACTIONS(1530), + [anon_sym_long] = ACTIONS(1530), + [anon_sym_short] = ACTIONS(1530), + [anon_sym_static] = ACTIONS(1530), + [anon_sym_auto] = ACTIONS(1530), + [anon_sym_register] = ACTIONS(1530), + [anon_sym_inline] = ACTIONS(1530), + [anon_sym___inline] = ACTIONS(1530), + [anon_sym___inline__] = ACTIONS(1530), + [anon_sym___forceinline] = ACTIONS(1530), + [anon_sym_thread_local] = ACTIONS(1530), + [anon_sym___thread] = ACTIONS(1530), + [anon_sym_const] = ACTIONS(1530), + [anon_sym_constexpr] = ACTIONS(1530), + [anon_sym_volatile] = ACTIONS(1530), + [anon_sym_restrict] = ACTIONS(1530), + [anon_sym___restrict__] = ACTIONS(1530), + [anon_sym__Atomic] = ACTIONS(1530), + [anon_sym__Noreturn] = ACTIONS(1530), + [anon_sym_noreturn] = ACTIONS(1530), + [sym_primitive_type] = ACTIONS(1530), + [anon_sym_enum] = ACTIONS(1530), + [anon_sym_struct] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), + [anon_sym_if] = ACTIONS(1530), + [anon_sym_switch] = ACTIONS(1530), + [anon_sym_case] = ACTIONS(1530), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_while] = ACTIONS(1530), + [anon_sym_do] = ACTIONS(1530), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1530), + [anon_sym_continue] = ACTIONS(1530), + [anon_sym_goto] = ACTIONS(1530), + [anon_sym_DASH_DASH] = ACTIONS(1532), + [anon_sym_PLUS_PLUS] = ACTIONS(1532), + [anon_sym_sizeof] = ACTIONS(1530), + [anon_sym___alignof__] = ACTIONS(1530), + [anon_sym___alignof] = ACTIONS(1530), + [anon_sym__alignof] = ACTIONS(1530), + [anon_sym_alignof] = ACTIONS(1530), + [anon_sym__Alignof] = ACTIONS(1530), + [anon_sym_offsetof] = ACTIONS(1530), + [anon_sym___builtin_va_arg] = ACTIONS(1530), + [anon_sym__Generic] = ACTIONS(1530), + [anon_sym_asm] = ACTIONS(1530), + [anon_sym___asm__] = ACTIONS(1530), + [sym_number_literal] = ACTIONS(1532), + [anon_sym_L_SQUOTE] = ACTIONS(1532), + [anon_sym_u_SQUOTE] = ACTIONS(1532), + [anon_sym_U_SQUOTE] = ACTIONS(1532), + [anon_sym_u8_SQUOTE] = ACTIONS(1532), + [anon_sym_SQUOTE] = ACTIONS(1532), + [anon_sym_L_DQUOTE] = ACTIONS(1532), + [anon_sym_u_DQUOTE] = ACTIONS(1532), + [anon_sym_U_DQUOTE] = ACTIONS(1532), + [anon_sym_u8_DQUOTE] = ACTIONS(1532), + [anon_sym_DQUOTE] = ACTIONS(1532), + [sym_true] = ACTIONS(1530), + [sym_false] = ACTIONS(1530), + [anon_sym_NULL] = ACTIONS(1530), + [anon_sym_nullptr] = ACTIONS(1530), + [sym_comment] = ACTIONS(3), + }, + [489] = { + [ts_builtin_sym_end] = ACTIONS(1520), + [sym_identifier] = ACTIONS(1518), + [aux_sym_preproc_include_token1] = ACTIONS(1518), + [aux_sym_preproc_def_token1] = ACTIONS(1518), + [aux_sym_preproc_if_token1] = ACTIONS(1518), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1518), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1518), + [sym_preproc_directive] = ACTIONS(1518), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_BANG] = ACTIONS(1520), + [anon_sym_TILDE] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_PLUS] = ACTIONS(1518), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym___extension__] = ACTIONS(1518), + [anon_sym_typedef] = ACTIONS(1518), + [anon_sym_extern] = ACTIONS(1518), + [anon_sym___attribute__] = ACTIONS(1518), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1520), + [anon_sym___declspec] = ACTIONS(1518), + [anon_sym___cdecl] = ACTIONS(1518), + [anon_sym___clrcall] = ACTIONS(1518), + [anon_sym___stdcall] = ACTIONS(1518), + [anon_sym___fastcall] = ACTIONS(1518), + [anon_sym___thiscall] = ACTIONS(1518), + [anon_sym___vectorcall] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_signed] = ACTIONS(1518), + [anon_sym_unsigned] = ACTIONS(1518), + [anon_sym_long] = ACTIONS(1518), + [anon_sym_short] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_auto] = ACTIONS(1518), + [anon_sym_register] = ACTIONS(1518), + [anon_sym_inline] = ACTIONS(1518), + [anon_sym___inline] = ACTIONS(1518), + [anon_sym___inline__] = ACTIONS(1518), + [anon_sym___forceinline] = ACTIONS(1518), + [anon_sym_thread_local] = ACTIONS(1518), + [anon_sym___thread] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1518), + [anon_sym_constexpr] = ACTIONS(1518), + [anon_sym_volatile] = ACTIONS(1518), + [anon_sym_restrict] = ACTIONS(1518), + [anon_sym___restrict__] = ACTIONS(1518), + [anon_sym__Atomic] = ACTIONS(1518), + [anon_sym__Noreturn] = ACTIONS(1518), + [anon_sym_noreturn] = ACTIONS(1518), + [sym_primitive_type] = ACTIONS(1518), + [anon_sym_enum] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1518), + [anon_sym_union] = ACTIONS(1518), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1518), + [anon_sym_case] = ACTIONS(1518), + [anon_sym_default] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(1518), + [anon_sym_do] = ACTIONS(1518), + [anon_sym_for] = ACTIONS(1518), + [anon_sym_return] = ACTIONS(1518), + [anon_sym_break] = ACTIONS(1518), + [anon_sym_continue] = ACTIONS(1518), + [anon_sym_goto] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1520), + [anon_sym_PLUS_PLUS] = ACTIONS(1520), + [anon_sym_sizeof] = ACTIONS(1518), + [anon_sym___alignof__] = ACTIONS(1518), + [anon_sym___alignof] = ACTIONS(1518), + [anon_sym__alignof] = ACTIONS(1518), + [anon_sym_alignof] = ACTIONS(1518), + [anon_sym__Alignof] = ACTIONS(1518), + [anon_sym_offsetof] = ACTIONS(1518), + [anon_sym___builtin_va_arg] = ACTIONS(1518), + [anon_sym__Generic] = ACTIONS(1518), + [anon_sym_asm] = ACTIONS(1518), + [anon_sym___asm__] = ACTIONS(1518), + [sym_number_literal] = ACTIONS(1520), + [anon_sym_L_SQUOTE] = ACTIONS(1520), + [anon_sym_u_SQUOTE] = ACTIONS(1520), + [anon_sym_U_SQUOTE] = ACTIONS(1520), + [anon_sym_u8_SQUOTE] = ACTIONS(1520), + [anon_sym_SQUOTE] = ACTIONS(1520), + [anon_sym_L_DQUOTE] = ACTIONS(1520), + [anon_sym_u_DQUOTE] = ACTIONS(1520), + [anon_sym_U_DQUOTE] = ACTIONS(1520), + [anon_sym_u8_DQUOTE] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1520), + [sym_true] = ACTIONS(1518), + [sym_false] = ACTIONS(1518), + [anon_sym_NULL] = ACTIONS(1518), + [anon_sym_nullptr] = ACTIONS(1518), + [sym_comment] = ACTIONS(3), + }, + [490] = { + [ts_builtin_sym_end] = ACTIONS(1536), + [sym_identifier] = ACTIONS(1534), + [aux_sym_preproc_include_token1] = ACTIONS(1534), + [aux_sym_preproc_def_token1] = ACTIONS(1534), + [aux_sym_preproc_if_token1] = ACTIONS(1534), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1534), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1534), + [sym_preproc_directive] = ACTIONS(1534), + [anon_sym_LPAREN2] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1536), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_DASH] = ACTIONS(1534), + [anon_sym_PLUS] = ACTIONS(1534), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_AMP] = ACTIONS(1536), + [anon_sym___extension__] = ACTIONS(1534), + [anon_sym_typedef] = ACTIONS(1534), + [anon_sym_extern] = ACTIONS(1534), + [anon_sym___attribute__] = ACTIONS(1534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1536), + [anon_sym___declspec] = ACTIONS(1534), + [anon_sym___cdecl] = ACTIONS(1534), + [anon_sym___clrcall] = ACTIONS(1534), + [anon_sym___stdcall] = ACTIONS(1534), + [anon_sym___fastcall] = ACTIONS(1534), + [anon_sym___thiscall] = ACTIONS(1534), + [anon_sym___vectorcall] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_signed] = ACTIONS(1534), + [anon_sym_unsigned] = ACTIONS(1534), + [anon_sym_long] = ACTIONS(1534), + [anon_sym_short] = ACTIONS(1534), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_auto] = ACTIONS(1534), + [anon_sym_register] = ACTIONS(1534), + [anon_sym_inline] = ACTIONS(1534), + [anon_sym___inline] = ACTIONS(1534), + [anon_sym___inline__] = ACTIONS(1534), + [anon_sym___forceinline] = ACTIONS(1534), + [anon_sym_thread_local] = ACTIONS(1534), + [anon_sym___thread] = ACTIONS(1534), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_constexpr] = ACTIONS(1534), + [anon_sym_volatile] = ACTIONS(1534), + [anon_sym_restrict] = ACTIONS(1534), + [anon_sym___restrict__] = ACTIONS(1534), + [anon_sym__Atomic] = ACTIONS(1534), + [anon_sym__Noreturn] = ACTIONS(1534), + [anon_sym_noreturn] = ACTIONS(1534), + [sym_primitive_type] = ACTIONS(1534), + [anon_sym_enum] = ACTIONS(1534), + [anon_sym_struct] = ACTIONS(1534), + [anon_sym_union] = ACTIONS(1534), + [anon_sym_if] = ACTIONS(1534), + [anon_sym_switch] = ACTIONS(1534), + [anon_sym_case] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1534), + [anon_sym_while] = ACTIONS(1534), + [anon_sym_do] = ACTIONS(1534), + [anon_sym_for] = ACTIONS(1534), + [anon_sym_return] = ACTIONS(1534), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1534), + [anon_sym_goto] = ACTIONS(1534), + [anon_sym_DASH_DASH] = ACTIONS(1536), + [anon_sym_PLUS_PLUS] = ACTIONS(1536), + [anon_sym_sizeof] = ACTIONS(1534), + [anon_sym___alignof__] = ACTIONS(1534), + [anon_sym___alignof] = ACTIONS(1534), + [anon_sym__alignof] = ACTIONS(1534), + [anon_sym_alignof] = ACTIONS(1534), + [anon_sym__Alignof] = ACTIONS(1534), + [anon_sym_offsetof] = ACTIONS(1534), + [anon_sym___builtin_va_arg] = ACTIONS(1534), + [anon_sym__Generic] = ACTIONS(1534), + [anon_sym_asm] = ACTIONS(1534), + [anon_sym___asm__] = ACTIONS(1534), + [sym_number_literal] = ACTIONS(1536), + [anon_sym_L_SQUOTE] = ACTIONS(1536), + [anon_sym_u_SQUOTE] = ACTIONS(1536), + [anon_sym_U_SQUOTE] = ACTIONS(1536), + [anon_sym_u8_SQUOTE] = ACTIONS(1536), + [anon_sym_SQUOTE] = ACTIONS(1536), + [anon_sym_L_DQUOTE] = ACTIONS(1536), + [anon_sym_u_DQUOTE] = ACTIONS(1536), + [anon_sym_U_DQUOTE] = ACTIONS(1536), + [anon_sym_u8_DQUOTE] = ACTIONS(1536), + [anon_sym_DQUOTE] = ACTIONS(1536), + [sym_true] = ACTIONS(1534), + [sym_false] = ACTIONS(1534), + [anon_sym_NULL] = ACTIONS(1534), + [anon_sym_nullptr] = ACTIONS(1534), + [sym_comment] = ACTIONS(3), + }, + [491] = { + [ts_builtin_sym_end] = ACTIONS(1474), + [sym_identifier] = ACTIONS(1472), + [aux_sym_preproc_include_token1] = ACTIONS(1472), + [aux_sym_preproc_def_token1] = ACTIONS(1472), + [aux_sym_preproc_if_token1] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), + [sym_preproc_directive] = ACTIONS(1472), + [anon_sym_LPAREN2] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [anon_sym___extension__] = ACTIONS(1472), + [anon_sym_typedef] = ACTIONS(1472), + [anon_sym_extern] = ACTIONS(1472), + [anon_sym___attribute__] = ACTIONS(1472), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), + [anon_sym___declspec] = ACTIONS(1472), + [anon_sym___cdecl] = ACTIONS(1472), + [anon_sym___clrcall] = ACTIONS(1472), + [anon_sym___stdcall] = ACTIONS(1472), + [anon_sym___fastcall] = ACTIONS(1472), + [anon_sym___thiscall] = ACTIONS(1472), + [anon_sym___vectorcall] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_signed] = ACTIONS(1472), + [anon_sym_unsigned] = ACTIONS(1472), + [anon_sym_long] = ACTIONS(1472), + [anon_sym_short] = ACTIONS(1472), + [anon_sym_static] = ACTIONS(1472), + [anon_sym_auto] = ACTIONS(1472), + [anon_sym_register] = ACTIONS(1472), + [anon_sym_inline] = ACTIONS(1472), + [anon_sym___inline] = ACTIONS(1472), + [anon_sym___inline__] = ACTIONS(1472), + [anon_sym___forceinline] = ACTIONS(1472), + [anon_sym_thread_local] = ACTIONS(1472), + [anon_sym___thread] = ACTIONS(1472), + [anon_sym_const] = ACTIONS(1472), + [anon_sym_constexpr] = ACTIONS(1472), + [anon_sym_volatile] = ACTIONS(1472), + [anon_sym_restrict] = ACTIONS(1472), + [anon_sym___restrict__] = ACTIONS(1472), + [anon_sym__Atomic] = ACTIONS(1472), + [anon_sym__Noreturn] = ACTIONS(1472), + [anon_sym_noreturn] = ACTIONS(1472), + [sym_primitive_type] = ACTIONS(1472), + [anon_sym_enum] = ACTIONS(1472), + [anon_sym_struct] = ACTIONS(1472), + [anon_sym_union] = ACTIONS(1472), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_switch] = ACTIONS(1472), + [anon_sym_case] = ACTIONS(1472), + [anon_sym_default] = ACTIONS(1472), + [anon_sym_while] = ACTIONS(1472), + [anon_sym_do] = ACTIONS(1472), + [anon_sym_for] = ACTIONS(1472), + [anon_sym_return] = ACTIONS(1472), + [anon_sym_break] = ACTIONS(1472), + [anon_sym_continue] = ACTIONS(1472), + [anon_sym_goto] = ACTIONS(1472), + [anon_sym_DASH_DASH] = ACTIONS(1474), + [anon_sym_PLUS_PLUS] = ACTIONS(1474), + [anon_sym_sizeof] = ACTIONS(1472), + [anon_sym___alignof__] = ACTIONS(1472), + [anon_sym___alignof] = ACTIONS(1472), + [anon_sym__alignof] = ACTIONS(1472), + [anon_sym_alignof] = ACTIONS(1472), + [anon_sym__Alignof] = ACTIONS(1472), + [anon_sym_offsetof] = ACTIONS(1472), + [anon_sym___builtin_va_arg] = ACTIONS(1472), + [anon_sym__Generic] = ACTIONS(1472), + [anon_sym_asm] = ACTIONS(1472), + [anon_sym___asm__] = ACTIONS(1472), + [sym_number_literal] = ACTIONS(1474), + [anon_sym_L_SQUOTE] = ACTIONS(1474), + [anon_sym_u_SQUOTE] = ACTIONS(1474), + [anon_sym_U_SQUOTE] = ACTIONS(1474), + [anon_sym_u8_SQUOTE] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1474), + [anon_sym_L_DQUOTE] = ACTIONS(1474), + [anon_sym_u_DQUOTE] = ACTIONS(1474), + [anon_sym_U_DQUOTE] = ACTIONS(1474), + [anon_sym_u8_DQUOTE] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [sym_true] = ACTIONS(1472), + [sym_false] = ACTIONS(1472), + [anon_sym_NULL] = ACTIONS(1472), + [anon_sym_nullptr] = ACTIONS(1472), + [sym_comment] = ACTIONS(3), + }, + [492] = { + [ts_builtin_sym_end] = ACTIONS(1524), + [sym_identifier] = ACTIONS(1522), + [aux_sym_preproc_include_token1] = ACTIONS(1522), + [aux_sym_preproc_def_token1] = ACTIONS(1522), + [aux_sym_preproc_if_token1] = ACTIONS(1522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1522), + [sym_preproc_directive] = ACTIONS(1522), + [anon_sym_LPAREN2] = ACTIONS(1524), + [anon_sym_BANG] = ACTIONS(1524), + [anon_sym_TILDE] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1522), + [anon_sym_PLUS] = ACTIONS(1522), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(1522), + [anon_sym_typedef] = ACTIONS(1522), + [anon_sym_extern] = ACTIONS(1522), + [anon_sym___attribute__] = ACTIONS(1522), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1524), + [anon_sym___declspec] = ACTIONS(1522), + [anon_sym___cdecl] = ACTIONS(1522), + [anon_sym___clrcall] = ACTIONS(1522), + [anon_sym___stdcall] = ACTIONS(1522), + [anon_sym___fastcall] = ACTIONS(1522), + [anon_sym___thiscall] = ACTIONS(1522), + [anon_sym___vectorcall] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_signed] = ACTIONS(1522), + [anon_sym_unsigned] = ACTIONS(1522), + [anon_sym_long] = ACTIONS(1522), + [anon_sym_short] = ACTIONS(1522), + [anon_sym_static] = ACTIONS(1522), + [anon_sym_auto] = ACTIONS(1522), + [anon_sym_register] = ACTIONS(1522), + [anon_sym_inline] = ACTIONS(1522), + [anon_sym___inline] = ACTIONS(1522), + [anon_sym___inline__] = ACTIONS(1522), + [anon_sym___forceinline] = ACTIONS(1522), + [anon_sym_thread_local] = ACTIONS(1522), + [anon_sym___thread] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1522), + [anon_sym_constexpr] = ACTIONS(1522), + [anon_sym_volatile] = ACTIONS(1522), + [anon_sym_restrict] = ACTIONS(1522), + [anon_sym___restrict__] = ACTIONS(1522), + [anon_sym__Atomic] = ACTIONS(1522), + [anon_sym__Noreturn] = ACTIONS(1522), + [anon_sym_noreturn] = ACTIONS(1522), + [sym_primitive_type] = ACTIONS(1522), + [anon_sym_enum] = ACTIONS(1522), + [anon_sym_struct] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_if] = ACTIONS(1522), + [anon_sym_switch] = ACTIONS(1522), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_while] = ACTIONS(1522), + [anon_sym_do] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1522), + [anon_sym_return] = ACTIONS(1522), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_goto] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1524), + [anon_sym_PLUS_PLUS] = ACTIONS(1524), + [anon_sym_sizeof] = ACTIONS(1522), + [anon_sym___alignof__] = ACTIONS(1522), + [anon_sym___alignof] = ACTIONS(1522), + [anon_sym__alignof] = ACTIONS(1522), + [anon_sym_alignof] = ACTIONS(1522), + [anon_sym__Alignof] = ACTIONS(1522), + [anon_sym_offsetof] = ACTIONS(1522), + [anon_sym___builtin_va_arg] = ACTIONS(1522), + [anon_sym__Generic] = ACTIONS(1522), + [anon_sym_asm] = ACTIONS(1522), + [anon_sym___asm__] = ACTIONS(1522), + [sym_number_literal] = ACTIONS(1524), + [anon_sym_L_SQUOTE] = ACTIONS(1524), + [anon_sym_u_SQUOTE] = ACTIONS(1524), + [anon_sym_U_SQUOTE] = ACTIONS(1524), + [anon_sym_u8_SQUOTE] = ACTIONS(1524), + [anon_sym_SQUOTE] = ACTIONS(1524), + [anon_sym_L_DQUOTE] = ACTIONS(1524), + [anon_sym_u_DQUOTE] = ACTIONS(1524), + [anon_sym_U_DQUOTE] = ACTIONS(1524), + [anon_sym_u8_DQUOTE] = ACTIONS(1524), + [anon_sym_DQUOTE] = ACTIONS(1524), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [anon_sym_NULL] = ACTIONS(1522), + [anon_sym_nullptr] = ACTIONS(1522), + [sym_comment] = ACTIONS(3), + }, + [493] = { + [sym_attribute_declaration] = STATE(560), + [sym_compound_statement] = STATE(218), + [sym_attributed_statement] = STATE(218), + [sym_labeled_statement] = STATE(218), + [sym_expression_statement] = STATE(218), + [sym_if_statement] = STATE(218), + [sym_switch_statement] = STATE(218), + [sym_case_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_do_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_return_statement] = STATE(218), + [sym_break_statement] = STATE(218), + [sym_continue_statement] = STATE(218), + [sym_goto_statement] = STATE(218), + [sym__expression] = STATE(1240), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2024), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(560), + [sym_identifier] = ACTIONS(1592), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -66033,81 +69183,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(1757), - [anon_sym_unsigned] = ACTIONS(1757), - [anon_sym_long] = ACTIONS(1757), - [anon_sym_short] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(1759), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_if] = ACTIONS(201), + [anon_sym_switch] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_default] = ACTIONS(207), + [anon_sym_while] = ACTIONS(209), + [anon_sym_do] = ACTIONS(211), + [anon_sym_for] = ACTIONS(213), + [anon_sym_return] = ACTIONS(215), + [anon_sym_break] = ACTIONS(217), + [anon_sym_continue] = ACTIONS(219), + [anon_sym_goto] = ACTIONS(221), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [527] = { - [sym_type_qualifier] = STATE(1190), - [sym__type_specifier] = STATE(1239), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym__expression] = STATE(1095), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1757), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_type_descriptor] = STATE(1788), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_type_definition_repeat1] = STATE(1190), - [aux_sym_sized_type_specifier_repeat1] = STATE(1254), - [sym_identifier] = ACTIONS(1755), + [494] = { + [sym_attribute_declaration] = STATE(503), + [sym_compound_statement] = STATE(325), + [sym_attributed_statement] = STATE(325), + [sym_labeled_statement] = STATE(325), + [sym_expression_statement] = STATE(325), + [sym_if_statement] = STATE(325), + [sym_switch_statement] = STATE(325), + [sym_case_statement] = STATE(325), + [sym_while_statement] = STATE(325), + [sym_do_statement] = STATE(325), + [sym_for_statement] = STATE(325), + [sym_return_statement] = STATE(325), + [sym_break_statement] = STATE(325), + [sym_continue_statement] = STATE(325), + [sym_goto_statement] = STATE(325), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(1596), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -66115,81 +69277,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(1757), - [anon_sym_unsigned] = ACTIONS(1757), - [anon_sym_long] = ACTIONS(1757), - [anon_sym_short] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(1759), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [528] = { - [sym_type_qualifier] = STATE(1190), - [sym__type_specifier] = STATE(1239), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym__expression] = STATE(1095), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1757), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_type_descriptor] = STATE(1758), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_type_definition_repeat1] = STATE(1190), - [aux_sym_sized_type_specifier_repeat1] = STATE(1254), - [sym_identifier] = ACTIONS(1755), + [495] = { + [sym_attribute_declaration] = STATE(503), + [sym_compound_statement] = STATE(363), + [sym_attributed_statement] = STATE(363), + [sym_labeled_statement] = STATE(363), + [sym_expression_statement] = STATE(363), + [sym_if_statement] = STATE(363), + [sym_switch_statement] = STATE(363), + [sym_case_statement] = STATE(363), + [sym_while_statement] = STATE(363), + [sym_do_statement] = STATE(363), + [sym_for_statement] = STATE(363), + [sym_return_statement] = STATE(363), + [sym_break_statement] = STATE(363), + [sym_continue_statement] = STATE(363), + [sym_goto_statement] = STATE(363), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(1596), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -66197,81 +69371,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(1757), - [anon_sym_unsigned] = ACTIONS(1757), - [anon_sym_long] = ACTIONS(1757), - [anon_sym_short] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(1759), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [529] = { - [sym_type_qualifier] = STATE(1190), - [sym__type_specifier] = STATE(1239), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym__expression] = STATE(1095), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1757), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_type_descriptor] = STATE(1798), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_type_definition_repeat1] = STATE(1190), - [aux_sym_sized_type_specifier_repeat1] = STATE(1254), - [sym_identifier] = ACTIONS(1755), + [496] = { + [sym_attribute_declaration] = STATE(496), + [sym_compound_statement] = STATE(419), + [sym_attributed_statement] = STATE(419), + [sym_labeled_statement] = STATE(419), + [sym_expression_statement] = STATE(419), + [sym_if_statement] = STATE(419), + [sym_switch_statement] = STATE(419), + [sym_case_statement] = STATE(419), + [sym_while_statement] = STATE(419), + [sym_do_statement] = STATE(419), + [sym_for_statement] = STATE(419), + [sym_return_statement] = STATE(419), + [sym_break_statement] = STATE(419), + [sym_continue_statement] = STATE(419), + [sym_goto_statement] = STATE(419), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2191), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(496), + [sym_identifier] = ACTIONS(1598), + [anon_sym_LPAREN2] = ACTIONS(1601), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1613), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1619), + [anon_sym_if] = ACTIONS(1622), + [anon_sym_switch] = ACTIONS(1625), + [anon_sym_case] = ACTIONS(1628), + [anon_sym_default] = ACTIONS(1631), + [anon_sym_while] = ACTIONS(1634), + [anon_sym_do] = ACTIONS(1637), + [anon_sym_for] = ACTIONS(1640), + [anon_sym_return] = ACTIONS(1643), + [anon_sym_break] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(1649), + [anon_sym_goto] = ACTIONS(1652), + [anon_sym_DASH_DASH] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_sizeof] = ACTIONS(1658), + [anon_sym___alignof__] = ACTIONS(1661), + [anon_sym___alignof] = ACTIONS(1661), + [anon_sym__alignof] = ACTIONS(1661), + [anon_sym_alignof] = ACTIONS(1661), + [anon_sym__Alignof] = ACTIONS(1661), + [anon_sym_offsetof] = ACTIONS(1664), + [anon_sym___builtin_va_arg] = ACTIONS(1667), + [anon_sym__Generic] = ACTIONS(1670), + [anon_sym_asm] = ACTIONS(1673), + [anon_sym___asm__] = ACTIONS(1673), + [sym_number_literal] = ACTIONS(1676), + [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(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(1685), + [sym_false] = ACTIONS(1685), + [anon_sym_NULL] = ACTIONS(1688), + [anon_sym_nullptr] = ACTIONS(1688), + [sym_comment] = ACTIONS(3), + }, + [497] = { + [sym_attribute_declaration] = STATE(503), + [sym_compound_statement] = STATE(361), + [sym_attributed_statement] = STATE(361), + [sym_labeled_statement] = STATE(361), + [sym_expression_statement] = STATE(361), + [sym_if_statement] = STATE(361), + [sym_switch_statement] = STATE(361), + [sym_case_statement] = STATE(361), + [sym_while_statement] = STATE(361), + [sym_do_statement] = STATE(361), + [sym_for_statement] = STATE(361), + [sym_return_statement] = STATE(361), + [sym_break_statement] = STATE(361), + [sym_continue_statement] = STATE(361), + [sym_goto_statement] = STATE(361), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(1596), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -66279,81 +69559,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(1757), - [anon_sym_unsigned] = ACTIONS(1757), - [anon_sym_long] = ACTIONS(1757), - [anon_sym_short] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(1759), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [530] = { - [sym_type_qualifier] = STATE(1190), - [sym__type_specifier] = STATE(1239), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym__expression] = STATE(1095), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1757), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_type_descriptor] = STATE(1802), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_type_definition_repeat1] = STATE(1190), - [aux_sym_sized_type_specifier_repeat1] = STATE(1254), - [sym_identifier] = ACTIONS(1755), + [498] = { + [sym_attribute_declaration] = STATE(539), + [sym_compound_statement] = STATE(423), + [sym_attributed_statement] = STATE(423), + [sym_labeled_statement] = STATE(423), + [sym_expression_statement] = STATE(423), + [sym_if_statement] = STATE(423), + [sym_switch_statement] = STATE(423), + [sym_case_statement] = STATE(423), + [sym_while_statement] = STATE(423), + [sym_do_statement] = STATE(423), + [sym_for_statement] = STATE(423), + [sym_return_statement] = STATE(423), + [sym_break_statement] = STATE(423), + [sym_continue_statement] = STATE(423), + [sym_goto_statement] = STATE(423), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2191), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(1691), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -66361,81 +69653,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(1757), - [anon_sym_unsigned] = ACTIONS(1757), - [anon_sym_long] = ACTIONS(1757), - [anon_sym_short] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(1759), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(604), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_if] = ACTIONS(614), + [anon_sym_switch] = ACTIONS(616), + [anon_sym_case] = ACTIONS(618), + [anon_sym_default] = ACTIONS(620), + [anon_sym_while] = ACTIONS(622), + [anon_sym_do] = ACTIONS(624), + [anon_sym_for] = ACTIONS(626), + [anon_sym_return] = ACTIONS(628), + [anon_sym_break] = ACTIONS(630), + [anon_sym_continue] = ACTIONS(632), + [anon_sym_goto] = ACTIONS(634), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [531] = { - [sym_type_qualifier] = STATE(1190), - [sym__type_specifier] = STATE(1239), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym__expression] = STATE(1095), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1757), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_type_descriptor] = STATE(1874), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_type_definition_repeat1] = STATE(1190), - [aux_sym_sized_type_specifier_repeat1] = STATE(1254), - [sym_identifier] = ACTIONS(1755), + [499] = { + [sym_attribute_declaration] = STATE(594), + [sym_compound_statement] = STATE(278), + [sym_attributed_statement] = STATE(278), + [sym_labeled_statement] = STATE(278), + [sym_expression_statement] = STATE(278), + [sym_if_statement] = STATE(278), + [sym_switch_statement] = STATE(278), + [sym_case_statement] = STATE(278), + [sym_while_statement] = STATE(278), + [sym_do_statement] = STATE(278), + [sym_for_statement] = STATE(278), + [sym_return_statement] = STATE(278), + [sym_break_statement] = STATE(278), + [sym_continue_statement] = STATE(278), + [sym_goto_statement] = STATE(278), + [sym__expression] = STATE(1251), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2030), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(594), + [sym_identifier] = ACTIONS(1693), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -66443,81 +69747,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(1757), - [anon_sym_unsigned] = ACTIONS(1757), - [anon_sym_long] = ACTIONS(1757), - [anon_sym_short] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(1759), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [532] = { - [sym_type_qualifier] = STATE(1190), - [sym__type_specifier] = STATE(1239), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym__expression] = STATE(1095), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1757), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_type_descriptor] = STATE(1857), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_type_definition_repeat1] = STATE(1190), - [aux_sym_sized_type_specifier_repeat1] = STATE(1254), - [sym_identifier] = ACTIONS(1755), + [500] = { + [sym_attribute_declaration] = STATE(539), + [sym_compound_statement] = STATE(426), + [sym_attributed_statement] = STATE(426), + [sym_labeled_statement] = STATE(426), + [sym_expression_statement] = STATE(426), + [sym_if_statement] = STATE(426), + [sym_switch_statement] = STATE(426), + [sym_case_statement] = STATE(426), + [sym_while_statement] = STATE(426), + [sym_do_statement] = STATE(426), + [sym_for_statement] = STATE(426), + [sym_return_statement] = STATE(426), + [sym_break_statement] = STATE(426), + [sym_continue_statement] = STATE(426), + [sym_goto_statement] = STATE(426), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2191), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(1691), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -66525,81 +69841,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(1757), - [anon_sym_unsigned] = ACTIONS(1757), - [anon_sym_long] = ACTIONS(1757), - [anon_sym_short] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(1759), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(604), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_if] = ACTIONS(614), + [anon_sym_switch] = ACTIONS(616), + [anon_sym_case] = ACTIONS(618), + [anon_sym_default] = ACTIONS(620), + [anon_sym_while] = ACTIONS(622), + [anon_sym_do] = ACTIONS(624), + [anon_sym_for] = ACTIONS(626), + [anon_sym_return] = ACTIONS(628), + [anon_sym_break] = ACTIONS(630), + [anon_sym_continue] = ACTIONS(632), + [anon_sym_goto] = ACTIONS(634), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [533] = { - [sym_type_qualifier] = STATE(1190), - [sym__type_specifier] = STATE(1239), - [sym_sized_type_specifier] = STATE(1028), - [sym_enum_specifier] = STATE(1028), - [sym_struct_specifier] = STATE(1028), - [sym_union_specifier] = STATE(1028), - [sym__expression] = STATE(1095), - [sym__expression_not_binary] = STATE(795), - [sym_comma_expression] = STATE(1757), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_type_descriptor] = STATE(1961), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_macro_type_specifier] = STATE(1028), - [aux_sym_type_definition_repeat1] = STATE(1190), - [aux_sym_sized_type_specifier_repeat1] = STATE(1254), - [sym_identifier] = ACTIONS(1755), + [501] = { + [sym_attribute_declaration] = STATE(503), + [sym_compound_statement] = STATE(358), + [sym_attributed_statement] = STATE(358), + [sym_labeled_statement] = STATE(358), + [sym_expression_statement] = STATE(358), + [sym_if_statement] = STATE(358), + [sym_switch_statement] = STATE(358), + [sym_case_statement] = STATE(358), + [sym_while_statement] = STATE(358), + [sym_do_statement] = STATE(358), + [sym_for_statement] = STATE(358), + [sym_return_statement] = STATE(358), + [sym_break_statement] = STATE(358), + [sym_continue_statement] = STATE(358), + [sym_goto_statement] = STATE(358), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(1596), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -66607,4995 +69935,14761 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_signed] = ACTIONS(1757), - [anon_sym_unsigned] = ACTIONS(1757), - [anon_sym_long] = ACTIONS(1757), - [anon_sym_short] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = ACTIONS(45), - [anon_sym_volatile] = ACTIONS(45), - [anon_sym_restrict] = ACTIONS(45), - [anon_sym___restrict__] = ACTIONS(45), - [anon_sym__Atomic] = ACTIONS(45), - [anon_sym__Noreturn] = ACTIONS(45), - [anon_sym_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(1759), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [534] = { - [sym__expression] = STATE(802), - [sym__expression_not_binary] = STATE(795), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(824), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(824), - [sym_call_expression] = STATE(824), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(824), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(824), - [sym_initializer_list] = STATE(815), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_identifier] = ACTIONS(1761), - [anon_sym_COMMA] = ACTIONS(1178), - [anon_sym_RPAREN] = ACTIONS(1178), + [502] = { + [sym_attribute_declaration] = STATE(505), + [sym_compound_statement] = STATE(2224), + [sym_attributed_statement] = STATE(2224), + [sym_labeled_statement] = STATE(2224), + [sym_expression_statement] = STATE(2224), + [sym_if_statement] = STATE(2224), + [sym_switch_statement] = STATE(2224), + [sym_case_statement] = STATE(2224), + [sym_while_statement] = STATE(2224), + [sym_do_statement] = STATE(2224), + [sym_for_statement] = STATE(2224), + [sym_return_statement] = STATE(2224), + [sym_break_statement] = STATE(2224), + [sym_continue_statement] = STATE(2224), + [sym_goto_statement] = STATE(2224), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(1695), [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(23), [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), - [anon_sym_SLASH] = ACTIONS(1188), - [anon_sym_PERCENT] = ACTIONS(1178), - [anon_sym_PIPE_PIPE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(1178), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_CARET] = ACTIONS(1178), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1178), - [anon_sym_BANG_EQ] = ACTIONS(1178), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_GT_EQ] = ACTIONS(1178), - [anon_sym_LT_EQ] = ACTIONS(1178), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_LT_LT] = ACTIONS(1178), - [anon_sym_GT_GT] = ACTIONS(1178), - [anon_sym_SEMI] = ACTIONS(1178), - [anon_sym___attribute__] = ACTIONS(1188), - [anon_sym_LBRACE] = ACTIONS(1190), - [anon_sym_RBRACE] = ACTIONS(1178), - [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_COLON] = ACTIONS(1178), - [anon_sym_QMARK] = ACTIONS(1178), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [anon_sym_DOT] = ACTIONS(1188), - [anon_sym_DASH_GT] = ACTIONS(1178), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [535] = { - [sym_identifier] = ACTIONS(1763), - [anon_sym_COMMA] = ACTIONS(1765), - [anon_sym_RPAREN] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1765), - [anon_sym_BANG] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1763), - [anon_sym___attribute__] = ACTIONS(1763), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1765), - [anon_sym___declspec] = ACTIONS(1763), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_signed] = ACTIONS(1763), - [anon_sym_unsigned] = ACTIONS(1763), - [anon_sym_long] = ACTIONS(1763), - [anon_sym_short] = ACTIONS(1763), - [anon_sym_LBRACK] = ACTIONS(1763), - [anon_sym_EQ] = ACTIONS(1765), - [anon_sym_static] = ACTIONS(1763), - [anon_sym_auto] = ACTIONS(1763), - [anon_sym_register] = ACTIONS(1763), - [anon_sym_inline] = ACTIONS(1763), - [anon_sym_thread_local] = ACTIONS(1763), - [anon_sym___thread] = ACTIONS(1763), - [anon_sym_const] = ACTIONS(1763), - [anon_sym_constexpr] = ACTIONS(1763), - [anon_sym_volatile] = ACTIONS(1763), - [anon_sym_restrict] = ACTIONS(1763), - [anon_sym___restrict__] = ACTIONS(1763), - [anon_sym__Atomic] = ACTIONS(1763), - [anon_sym__Noreturn] = ACTIONS(1763), - [anon_sym_noreturn] = ACTIONS(1763), - [sym_primitive_type] = ACTIONS(1763), - [anon_sym_enum] = ACTIONS(1763), - [anon_sym_COLON] = ACTIONS(1765), - [anon_sym_struct] = ACTIONS(1763), - [anon_sym_union] = ACTIONS(1763), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_switch] = ACTIONS(1763), - [anon_sym_case] = ACTIONS(1763), - [anon_sym_default] = ACTIONS(1763), - [anon_sym_while] = ACTIONS(1763), - [anon_sym_do] = ACTIONS(1763), - [anon_sym_for] = ACTIONS(1763), - [anon_sym_return] = ACTIONS(1763), - [anon_sym_break] = ACTIONS(1763), - [anon_sym_continue] = ACTIONS(1763), - [anon_sym_goto] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_sizeof] = ACTIONS(1763), - [anon_sym_offsetof] = ACTIONS(1763), - [anon_sym__Generic] = ACTIONS(1763), - [anon_sym_asm] = ACTIONS(1763), - [anon_sym___asm__] = ACTIONS(1763), - [sym_number_literal] = ACTIONS(1765), - [anon_sym_L_SQUOTE] = ACTIONS(1765), - [anon_sym_u_SQUOTE] = ACTIONS(1765), - [anon_sym_U_SQUOTE] = ACTIONS(1765), - [anon_sym_u8_SQUOTE] = ACTIONS(1765), - [anon_sym_SQUOTE] = ACTIONS(1765), - [anon_sym_L_DQUOTE] = ACTIONS(1765), - [anon_sym_u_DQUOTE] = ACTIONS(1765), - [anon_sym_U_DQUOTE] = ACTIONS(1765), - [anon_sym_u8_DQUOTE] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [sym_true] = ACTIONS(1763), - [sym_false] = ACTIONS(1763), - [anon_sym_NULL] = ACTIONS(1763), - [anon_sym_nullptr] = ACTIONS(1763), + [503] = { + [sym_attribute_declaration] = STATE(578), + [sym_compound_statement] = STATE(302), + [sym_attributed_statement] = STATE(302), + [sym_labeled_statement] = STATE(302), + [sym_expression_statement] = STATE(302), + [sym_if_statement] = STATE(302), + [sym_switch_statement] = STATE(302), + [sym_case_statement] = STATE(302), + [sym_while_statement] = STATE(302), + [sym_do_statement] = STATE(302), + [sym_for_statement] = STATE(302), + [sym_return_statement] = STATE(302), + [sym_break_statement] = STATE(302), + [sym_continue_statement] = STATE(302), + [sym_goto_statement] = STATE(302), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(578), + [sym_identifier] = ACTIONS(1596), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [536] = { - [sym_identifier] = ACTIONS(1767), - [anon_sym_COMMA] = ACTIONS(1769), - [anon_sym_RPAREN] = ACTIONS(1769), - [anon_sym_LPAREN2] = ACTIONS(1769), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1767), - [anon_sym_PLUS] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1769), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_SEMI] = ACTIONS(1769), - [anon_sym_extern] = ACTIONS(1767), - [anon_sym___attribute__] = ACTIONS(1767), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1769), - [anon_sym___declspec] = ACTIONS(1767), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_signed] = ACTIONS(1767), - [anon_sym_unsigned] = ACTIONS(1767), - [anon_sym_long] = ACTIONS(1767), - [anon_sym_short] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_EQ] = ACTIONS(1769), - [anon_sym_static] = ACTIONS(1767), - [anon_sym_auto] = ACTIONS(1767), - [anon_sym_register] = ACTIONS(1767), - [anon_sym_inline] = ACTIONS(1767), - [anon_sym_thread_local] = ACTIONS(1767), - [anon_sym___thread] = ACTIONS(1767), - [anon_sym_const] = ACTIONS(1767), - [anon_sym_constexpr] = ACTIONS(1767), - [anon_sym_volatile] = ACTIONS(1767), - [anon_sym_restrict] = ACTIONS(1767), - [anon_sym___restrict__] = ACTIONS(1767), - [anon_sym__Atomic] = ACTIONS(1767), - [anon_sym__Noreturn] = ACTIONS(1767), - [anon_sym_noreturn] = ACTIONS(1767), - [sym_primitive_type] = ACTIONS(1767), - [anon_sym_enum] = ACTIONS(1767), - [anon_sym_COLON] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1767), - [anon_sym_union] = ACTIONS(1767), - [anon_sym_if] = ACTIONS(1767), - [anon_sym_switch] = ACTIONS(1767), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1767), - [anon_sym_while] = ACTIONS(1767), - [anon_sym_do] = ACTIONS(1767), - [anon_sym_for] = ACTIONS(1767), - [anon_sym_return] = ACTIONS(1767), - [anon_sym_break] = ACTIONS(1767), - [anon_sym_continue] = ACTIONS(1767), - [anon_sym_goto] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_sizeof] = ACTIONS(1767), - [anon_sym_offsetof] = ACTIONS(1767), - [anon_sym__Generic] = ACTIONS(1767), - [anon_sym_asm] = ACTIONS(1767), - [anon_sym___asm__] = ACTIONS(1767), - [sym_number_literal] = ACTIONS(1769), - [anon_sym_L_SQUOTE] = ACTIONS(1769), - [anon_sym_u_SQUOTE] = ACTIONS(1769), - [anon_sym_U_SQUOTE] = ACTIONS(1769), - [anon_sym_u8_SQUOTE] = ACTIONS(1769), - [anon_sym_SQUOTE] = ACTIONS(1769), - [anon_sym_L_DQUOTE] = ACTIONS(1769), - [anon_sym_u_DQUOTE] = ACTIONS(1769), - [anon_sym_U_DQUOTE] = ACTIONS(1769), - [anon_sym_u8_DQUOTE] = ACTIONS(1769), - [anon_sym_DQUOTE] = ACTIONS(1769), - [sym_true] = ACTIONS(1767), - [sym_false] = ACTIONS(1767), - [anon_sym_NULL] = ACTIONS(1767), - [anon_sym_nullptr] = ACTIONS(1767), + [504] = { + [sym_attribute_declaration] = STATE(539), + [sym_compound_statement] = STATE(247), + [sym_attributed_statement] = STATE(247), + [sym_labeled_statement] = STATE(247), + [sym_expression_statement] = STATE(247), + [sym_if_statement] = STATE(247), + [sym_switch_statement] = STATE(247), + [sym_case_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_do_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_return_statement] = STATE(247), + [sym_break_statement] = STATE(247), + [sym_continue_statement] = STATE(247), + [sym_goto_statement] = STATE(247), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2191), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(1691), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(604), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_if] = ACTIONS(614), + [anon_sym_switch] = ACTIONS(616), + [anon_sym_case] = ACTIONS(618), + [anon_sym_default] = ACTIONS(620), + [anon_sym_while] = ACTIONS(622), + [anon_sym_do] = ACTIONS(624), + [anon_sym_for] = ACTIONS(626), + [anon_sym_return] = ACTIONS(628), + [anon_sym_break] = ACTIONS(630), + [anon_sym_continue] = ACTIONS(632), + [anon_sym_goto] = ACTIONS(634), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [537] = { - [sym__expression] = STATE(840), - [sym__expression_not_binary] = STATE(795), - [sym_conditional_expression] = STATE(795), - [sym_assignment_expression] = STATE(795), - [sym_pointer_expression] = STATE(865), - [sym_unary_expression] = STATE(795), - [sym_binary_expression] = STATE(795), - [sym_update_expression] = STATE(795), - [sym_cast_expression] = STATE(795), - [sym_sizeof_expression] = STATE(795), - [sym_offsetof_expression] = STATE(795), - [sym_generic_expression] = STATE(795), - [sym_subscript_expression] = STATE(865), - [sym_call_expression] = STATE(865), - [sym_gnu_asm_expression] = STATE(795), - [sym_field_expression] = STATE(865), - [sym_compound_literal_expression] = STATE(795), - [sym_parenthesized_expression] = STATE(865), - [sym_initializer_list] = STATE(815), - [sym_char_literal] = STATE(795), - [sym_concatenated_string] = STATE(795), - [sym_string_literal] = STATE(763), - [sym_null] = STATE(795), - [sym_identifier] = ACTIONS(1771), - [anon_sym_LPAREN2] = ACTIONS(1773), - [anon_sym_BANG] = ACTIONS(1775), - [anon_sym_TILDE] = ACTIONS(1777), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1779), - [anon_sym_SLASH] = ACTIONS(1188), - [anon_sym_PERCENT] = ACTIONS(1178), - [anon_sym_PIPE_PIPE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(1178), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_CARET] = ACTIONS(1178), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_EQ_EQ] = ACTIONS(1178), - [anon_sym_BANG_EQ] = ACTIONS(1178), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_GT_EQ] = ACTIONS(1178), - [anon_sym_LT_EQ] = ACTIONS(1178), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_LT_LT] = ACTIONS(1178), - [anon_sym_GT_GT] = ACTIONS(1178), - [anon_sym_LBRACE] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_RBRACK] = ACTIONS(1178), - [anon_sym_QMARK] = ACTIONS(1178), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_sizeof] = ACTIONS(1783), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [anon_sym_DOT] = ACTIONS(1188), - [anon_sym_DASH_GT] = ACTIONS(1178), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [505] = { + [sym_attribute_declaration] = STATE(555), + [sym_compound_statement] = STATE(395), + [sym_attributed_statement] = STATE(395), + [sym_labeled_statement] = STATE(395), + [sym_expression_statement] = STATE(395), + [sym_if_statement] = STATE(395), + [sym_switch_statement] = STATE(395), + [sym_case_statement] = STATE(395), + [sym_while_statement] = STATE(395), + [sym_do_statement] = STATE(395), + [sym_for_statement] = STATE(395), + [sym_return_statement] = STATE(395), + [sym_break_statement] = STATE(395), + [sym_continue_statement] = STATE(395), + [sym_goto_statement] = STATE(395), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(555), + [sym_identifier] = ACTIONS(1695), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [538] = { - [sym_else_clause] = STATE(342), - [sym_identifier] = ACTIONS(1172), - [anon_sym_LPAREN2] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1174), - [anon_sym_TILDE] = ACTIONS(1174), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_PLUS] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(1174), - [anon_sym_SEMI] = ACTIONS(1174), - [anon_sym_typedef] = ACTIONS(1172), - [anon_sym_extern] = ACTIONS(1172), - [anon_sym___attribute__] = ACTIONS(1172), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1174), - [anon_sym___declspec] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1174), - [anon_sym_signed] = ACTIONS(1172), - [anon_sym_unsigned] = ACTIONS(1172), - [anon_sym_long] = ACTIONS(1172), - [anon_sym_short] = ACTIONS(1172), - [anon_sym_static] = ACTIONS(1172), - [anon_sym_auto] = ACTIONS(1172), - [anon_sym_register] = ACTIONS(1172), - [anon_sym_inline] = ACTIONS(1172), - [anon_sym_thread_local] = ACTIONS(1172), - [anon_sym___thread] = ACTIONS(1172), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_constexpr] = ACTIONS(1172), - [anon_sym_volatile] = ACTIONS(1172), - [anon_sym_restrict] = ACTIONS(1172), - [anon_sym___restrict__] = ACTIONS(1172), - [anon_sym__Atomic] = ACTIONS(1172), - [anon_sym__Noreturn] = ACTIONS(1172), - [anon_sym_noreturn] = ACTIONS(1172), - [sym_primitive_type] = ACTIONS(1172), - [anon_sym_enum] = ACTIONS(1172), - [anon_sym_struct] = ACTIONS(1172), - [anon_sym_union] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_switch] = ACTIONS(1172), - [anon_sym_while] = ACTIONS(1172), - [anon_sym_do] = ACTIONS(1172), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1172), - [anon_sym_break] = ACTIONS(1172), - [anon_sym_continue] = ACTIONS(1172), - [anon_sym_goto] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1174), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_sizeof] = ACTIONS(1172), - [anon_sym_offsetof] = ACTIONS(1172), - [anon_sym__Generic] = ACTIONS(1172), - [anon_sym_asm] = ACTIONS(1172), - [anon_sym___asm__] = ACTIONS(1172), - [sym_number_literal] = ACTIONS(1174), - [anon_sym_L_SQUOTE] = ACTIONS(1174), - [anon_sym_u_SQUOTE] = ACTIONS(1174), - [anon_sym_U_SQUOTE] = ACTIONS(1174), - [anon_sym_u8_SQUOTE] = ACTIONS(1174), - [anon_sym_SQUOTE] = ACTIONS(1174), - [anon_sym_L_DQUOTE] = ACTIONS(1174), - [anon_sym_u_DQUOTE] = ACTIONS(1174), - [anon_sym_U_DQUOTE] = ACTIONS(1174), - [anon_sym_u8_DQUOTE] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1174), - [sym_true] = ACTIONS(1172), - [sym_false] = ACTIONS(1172), - [anon_sym_NULL] = ACTIONS(1172), - [anon_sym_nullptr] = ACTIONS(1172), + [506] = { + [sym_attribute_declaration] = STATE(505), + [sym_compound_statement] = STATE(2190), + [sym_attributed_statement] = STATE(2190), + [sym_labeled_statement] = STATE(2190), + [sym_expression_statement] = STATE(2190), + [sym_if_statement] = STATE(2190), + [sym_switch_statement] = STATE(2190), + [sym_case_statement] = STATE(2190), + [sym_while_statement] = STATE(2190), + [sym_do_statement] = STATE(2190), + [sym_for_statement] = STATE(2190), + [sym_return_statement] = STATE(2190), + [sym_break_statement] = STATE(2190), + [sym_continue_statement] = STATE(2190), + [sym_goto_statement] = STATE(2190), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(1695), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, - [539] = { - [sym_identifier] = ACTIONS(1787), - [anon_sym_LPAREN2] = ACTIONS(1790), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_TILDE] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1792), - [anon_sym_STAR] = ACTIONS(1790), - [anon_sym_AMP] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1794), - [anon_sym___attribute__] = ACTIONS(1794), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1796), - [anon_sym___declspec] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1794), - [anon_sym_unsigned] = ACTIONS(1794), - [anon_sym_long] = ACTIONS(1794), - [anon_sym_short] = ACTIONS(1794), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_auto] = ACTIONS(1794), - [anon_sym_register] = ACTIONS(1794), - [anon_sym_inline] = ACTIONS(1794), - [anon_sym_thread_local] = ACTIONS(1794), - [anon_sym___thread] = ACTIONS(1794), - [anon_sym_const] = ACTIONS(1794), - [anon_sym_constexpr] = ACTIONS(1794), - [anon_sym_volatile] = ACTIONS(1794), - [anon_sym_restrict] = ACTIONS(1794), - [anon_sym___restrict__] = ACTIONS(1794), - [anon_sym__Atomic] = ACTIONS(1794), - [anon_sym__Noreturn] = ACTIONS(1794), - [anon_sym_noreturn] = ACTIONS(1794), - [sym_primitive_type] = ACTIONS(1794), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_struct] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [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(1790), - [anon_sym_PLUS_PLUS] = ACTIONS(1790), - [anon_sym_sizeof] = ACTIONS(1792), - [anon_sym_offsetof] = ACTIONS(1792), - [anon_sym__Generic] = ACTIONS(1792), - [anon_sym_asm] = ACTIONS(1792), - [anon_sym___asm__] = ACTIONS(1792), - [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(1792), - [sym_false] = ACTIONS(1792), - [anon_sym_NULL] = ACTIONS(1792), - [anon_sym_nullptr] = ACTIONS(1792), + [507] = { + [sym_attribute_declaration] = STATE(505), + [sym_compound_statement] = STATE(2164), + [sym_attributed_statement] = STATE(2164), + [sym_labeled_statement] = STATE(2164), + [sym_expression_statement] = STATE(2164), + [sym_if_statement] = STATE(2164), + [sym_switch_statement] = STATE(2164), + [sym_case_statement] = STATE(2164), + [sym_while_statement] = STATE(2164), + [sym_do_statement] = STATE(2164), + [sym_for_statement] = STATE(2164), + [sym_return_statement] = STATE(2164), + [sym_break_statement] = STATE(2164), + [sym_continue_statement] = STATE(2164), + [sym_goto_statement] = STATE(2164), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(1695), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), [sym_comment] = ACTIONS(3), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1771), 1, - sym_identifier, - ACTIONS(1773), 1, - anon_sym_LPAREN2, - ACTIONS(1779), 1, - anon_sym_AMP, - ACTIONS(1783), 1, - anon_sym_sizeof, - ACTIONS(1799), 1, - anon_sym_STAR, - ACTIONS(1801), 1, - anon_sym_RBRACK, - STATE(763), 1, - sym_string_literal, - STATE(1153), 1, - sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1777), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1781), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(828), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(865), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - ACTIONS(1803), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(795), 15, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [113] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1805), 1, - sym_identifier, - ACTIONS(1807), 1, - aux_sym_preproc_def_token1, - ACTIONS(1809), 1, - aux_sym_preproc_if_token1, - ACTIONS(1811), 1, - aux_sym_preproc_if_token2, - ACTIONS(1815), 1, - aux_sym_preproc_else_token1, - ACTIONS(1817), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1819), 1, - sym_preproc_directive, - STATE(939), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1358), 1, - sym__declaration_specifiers, - ACTIONS(113), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - ACTIONS(1813), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1774), 3, - sym_preproc_elifdef, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(827), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(572), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [232] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1805), 1, - sym_identifier, - ACTIONS(1807), 1, - aux_sym_preproc_def_token1, - ACTIONS(1809), 1, - aux_sym_preproc_if_token1, - ACTIONS(1815), 1, - aux_sym_preproc_else_token1, - ACTIONS(1817), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1819), 1, - sym_preproc_directive, - ACTIONS(1821), 1, - aux_sym_preproc_if_token2, - STATE(939), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1358), 1, - sym__declaration_specifiers, - ACTIONS(113), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - ACTIONS(1813), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1834), 3, - sym_preproc_elifdef, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(827), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(572), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [351] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1771), 1, - sym_identifier, - ACTIONS(1773), 1, - anon_sym_LPAREN2, - ACTIONS(1779), 1, - anon_sym_AMP, - ACTIONS(1783), 1, - anon_sym_sizeof, - ACTIONS(1823), 1, - anon_sym_STAR, - ACTIONS(1825), 1, - anon_sym_RBRACK, - STATE(763), 1, - sym_string_literal, - STATE(1157), 1, - sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1777), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1781), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(551), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(865), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - ACTIONS(1803), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(795), 15, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [464] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1771), 1, - sym_identifier, - ACTIONS(1773), 1, - anon_sym_LPAREN2, - ACTIONS(1779), 1, - anon_sym_AMP, - ACTIONS(1783), 1, - anon_sym_sizeof, - ACTIONS(1827), 1, - anon_sym_STAR, - ACTIONS(1829), 1, - anon_sym_RBRACK, - STATE(763), 1, - sym_string_literal, - STATE(1159), 1, - sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1777), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1781), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(828), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(865), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - ACTIONS(1803), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(795), 15, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [577] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1771), 1, - sym_identifier, - ACTIONS(1773), 1, - anon_sym_LPAREN2, - ACTIONS(1779), 1, - anon_sym_AMP, - ACTIONS(1783), 1, - anon_sym_sizeof, - ACTIONS(1831), 1, - anon_sym_STAR, - ACTIONS(1833), 1, - anon_sym_RBRACK, - STATE(763), 1, - sym_string_literal, - STATE(1164), 1, - sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1777), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1781), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(548), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(865), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - ACTIONS(1803), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(795), 15, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [690] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1805), 1, - sym_identifier, - ACTIONS(1807), 1, - aux_sym_preproc_def_token1, - ACTIONS(1809), 1, - aux_sym_preproc_if_token1, - ACTIONS(1815), 1, - aux_sym_preproc_else_token1, - ACTIONS(1817), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1819), 1, - sym_preproc_directive, - ACTIONS(1835), 1, - aux_sym_preproc_if_token2, - STATE(939), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1358), 1, - sym__declaration_specifiers, - ACTIONS(113), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - ACTIONS(1813), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1840), 3, - sym_preproc_elifdef, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(827), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(542), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [809] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1771), 1, - sym_identifier, - ACTIONS(1773), 1, - anon_sym_LPAREN2, - ACTIONS(1779), 1, - anon_sym_AMP, - ACTIONS(1783), 1, - anon_sym_sizeof, - ACTIONS(1837), 1, - anon_sym_STAR, - ACTIONS(1839), 1, - anon_sym_RBRACK, - STATE(763), 1, - sym_string_literal, - STATE(1147), 1, - sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1777), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1781), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(540), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(865), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - ACTIONS(1803), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(795), 15, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [922] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1771), 1, - sym_identifier, - ACTIONS(1773), 1, - anon_sym_LPAREN2, - ACTIONS(1779), 1, - anon_sym_AMP, - ACTIONS(1783), 1, - anon_sym_sizeof, - ACTIONS(1841), 1, - anon_sym_STAR, - ACTIONS(1843), 1, - anon_sym_RBRACK, - STATE(763), 1, - sym_string_literal, - STATE(1149), 1, - sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1777), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1781), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(828), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(865), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - ACTIONS(1803), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(795), 15, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [1035] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1771), 1, - sym_identifier, - ACTIONS(1773), 1, - anon_sym_LPAREN2, - ACTIONS(1779), 1, - anon_sym_AMP, - ACTIONS(1783), 1, - anon_sym_sizeof, - ACTIONS(1845), 1, - anon_sym_STAR, - ACTIONS(1847), 1, - anon_sym_RBRACK, - STATE(763), 1, - sym_string_literal, - STATE(1148), 1, - sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1777), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1781), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(550), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(865), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - ACTIONS(1803), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(795), 15, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [1148] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1771), 1, - sym_identifier, - ACTIONS(1773), 1, - anon_sym_LPAREN2, - ACTIONS(1779), 1, - anon_sym_AMP, - ACTIONS(1783), 1, - anon_sym_sizeof, - ACTIONS(1849), 1, - anon_sym_STAR, - ACTIONS(1851), 1, - anon_sym_RBRACK, - STATE(763), 1, - sym_string_literal, - STATE(1180), 1, - sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1777), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1781), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(828), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(865), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - ACTIONS(1803), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(795), 15, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [1261] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1771), 1, - sym_identifier, - ACTIONS(1773), 1, - anon_sym_LPAREN2, - ACTIONS(1779), 1, - anon_sym_AMP, - ACTIONS(1783), 1, - anon_sym_sizeof, - ACTIONS(1853), 1, - anon_sym_STAR, - ACTIONS(1855), 1, - anon_sym_RBRACK, - STATE(763), 1, - sym_string_literal, - STATE(1185), 1, - sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1777), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1781), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(828), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(865), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - ACTIONS(1803), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(795), 15, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [1374] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1805), 1, - sym_identifier, - ACTIONS(1807), 1, - aux_sym_preproc_def_token1, - ACTIONS(1809), 1, - aux_sym_preproc_if_token1, - ACTIONS(1815), 1, - aux_sym_preproc_else_token1, - ACTIONS(1817), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1819), 1, - sym_preproc_directive, - ACTIONS(1857), 1, - aux_sym_preproc_if_token2, - STATE(939), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1358), 1, - sym__declaration_specifiers, - ACTIONS(113), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - ACTIONS(1813), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1781), 3, - sym_preproc_elifdef, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(827), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(541), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [1493] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1771), 1, - sym_identifier, - ACTIONS(1773), 1, - anon_sym_LPAREN2, - ACTIONS(1779), 1, - anon_sym_AMP, - ACTIONS(1783), 1, - anon_sym_sizeof, - ACTIONS(1859), 1, - anon_sym_STAR, - ACTIONS(1861), 1, - anon_sym_RBRACK, - STATE(763), 1, - sym_string_literal, - STATE(1189), 1, - sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1777), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1781), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(544), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(865), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - ACTIONS(1803), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(795), 15, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [1606] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1805), 1, - sym_identifier, - ACTIONS(1807), 1, - aux_sym_preproc_def_token1, - ACTIONS(1809), 1, - aux_sym_preproc_if_token1, - ACTIONS(1815), 1, - aux_sym_preproc_else_token1, - ACTIONS(1817), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1819), 1, - sym_preproc_directive, - ACTIONS(1863), 1, - aux_sym_preproc_if_token2, - STATE(939), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1358), 1, - sym__declaration_specifiers, - ACTIONS(113), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - ACTIONS(1813), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(2018), 3, - sym_preproc_elifdef, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(827), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(572), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [1725] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1805), 1, - sym_identifier, - ACTIONS(1807), 1, - aux_sym_preproc_def_token1, - ACTIONS(1809), 1, - aux_sym_preproc_if_token1, - ACTIONS(1815), 1, - aux_sym_preproc_else_token1, - ACTIONS(1817), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1819), 1, - sym_preproc_directive, - ACTIONS(1865), 1, - aux_sym_preproc_if_token2, - STATE(939), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1358), 1, - sym__declaration_specifiers, - ACTIONS(113), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - ACTIONS(1813), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1999), 3, - sym_preproc_elifdef, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(827), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(572), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [1844] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1805), 1, - sym_identifier, - ACTIONS(1807), 1, - aux_sym_preproc_def_token1, - ACTIONS(1809), 1, - aux_sym_preproc_if_token1, - ACTIONS(1815), 1, - aux_sym_preproc_else_token1, - ACTIONS(1817), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1819), 1, - sym_preproc_directive, - ACTIONS(1867), 1, - aux_sym_preproc_if_token2, - STATE(939), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1358), 1, - sym__declaration_specifiers, - ACTIONS(113), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - ACTIONS(1813), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1960), 3, - sym_preproc_elifdef, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(827), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(554), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [1963] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1869), 1, - sym_identifier, - ACTIONS(1871), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1873), 1, - anon_sym_RPAREN, - ACTIONS(1875), 1, - anon_sym_LPAREN2, - ACTIONS(1877), 1, - anon_sym_STAR, - ACTIONS(1879), 1, - anon_sym___based, - ACTIONS(1881), 1, - anon_sym_LBRACK, - STATE(939), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1304), 1, - sym__declaration_specifiers, - STATE(1470), 1, - sym__declarator, - STATE(1509), 1, - sym_parameter_list, - STATE(1532), 1, - sym__abstract_declarator, - STATE(1823), 1, - sym_ms_based_modifier, - STATE(1649), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1510), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(1415), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(827), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [2088] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1805), 1, - sym_identifier, - ACTIONS(1807), 1, - aux_sym_preproc_def_token1, - ACTIONS(1809), 1, - aux_sym_preproc_if_token1, - ACTIONS(1815), 1, - aux_sym_preproc_else_token1, - ACTIONS(1817), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1819), 1, - sym_preproc_directive, - ACTIONS(1883), 1, - aux_sym_preproc_if_token2, - STATE(939), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1358), 1, - sym__declaration_specifiers, - ACTIONS(113), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - ACTIONS(1813), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1902), 3, - sym_preproc_elifdef, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(827), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(555), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [2207] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1190), 1, - anon_sym_LBRACE, - ACTIONS(1761), 1, - sym_identifier, - ACTIONS(1885), 1, - anon_sym_COMMA, - ACTIONS(1887), 1, - anon_sym_RBRACE, - ACTIONS(1889), 1, - anon_sym_LBRACK, - ACTIONS(1891), 1, - anon_sym_DOT, - STATE(763), 1, - sym_string_literal, - STATE(1051), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - STATE(1600), 2, - sym_initializer_list, - sym_initializer_pair, - STATE(1473), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(824), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(795), 15, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [2325] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1190), 1, - anon_sym_LBRACE, - ACTIONS(1761), 1, - sym_identifier, - ACTIONS(1889), 1, - anon_sym_LBRACK, - ACTIONS(1891), 1, - anon_sym_DOT, - ACTIONS(1893), 1, - anon_sym_RBRACE, - STATE(763), 1, - sym_string_literal, - STATE(1075), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - STATE(1681), 2, - sym_initializer_list, - sym_initializer_pair, - STATE(1473), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(824), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(795), 15, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [2440] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1190), 1, - anon_sym_LBRACE, - ACTIONS(1761), 1, - sym_identifier, - ACTIONS(1889), 1, - anon_sym_LBRACK, - ACTIONS(1891), 1, - anon_sym_DOT, - ACTIONS(1895), 1, - anon_sym_RBRACE, - STATE(763), 1, - sym_string_literal, - STATE(1075), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - STATE(1681), 2, - sym_initializer_list, - sym_initializer_pair, - STATE(1473), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(824), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(795), 15, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [2555] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1805), 1, - sym_identifier, - ACTIONS(1815), 1, - aux_sym_preproc_else_token1, - ACTIONS(1817), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1897), 1, - aux_sym_preproc_def_token1, - ACTIONS(1899), 1, - aux_sym_preproc_if_token1, - ACTIONS(1901), 1, - aux_sym_preproc_if_token2, - ACTIONS(1905), 1, - sym_preproc_directive, - STATE(939), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1359), 1, - sym__declaration_specifiers, - ACTIONS(1903), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1835), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(827), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(573), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [2669] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1805), 1, - sym_identifier, - ACTIONS(1815), 1, - aux_sym_preproc_else_token1, - ACTIONS(1817), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1897), 1, - aux_sym_preproc_def_token1, - ACTIONS(1899), 1, - aux_sym_preproc_if_token1, - ACTIONS(1905), 1, - sym_preproc_directive, - ACTIONS(1907), 1, - aux_sym_preproc_if_token2, - STATE(939), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1359), 1, - sym__declaration_specifiers, - ACTIONS(1903), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1973), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(827), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(586), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [2783] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1190), 1, - anon_sym_LBRACE, - ACTIONS(1761), 1, - sym_identifier, - ACTIONS(1889), 1, - anon_sym_LBRACK, - ACTIONS(1891), 1, - anon_sym_DOT, - STATE(763), 1, - sym_string_literal, - STATE(1075), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - STATE(1681), 2, - sym_initializer_list, - sym_initializer_pair, - STATE(1473), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(824), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(795), 15, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [2895] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1805), 1, - sym_identifier, - ACTIONS(1815), 1, - aux_sym_preproc_else_token1, - ACTIONS(1817), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1897), 1, - aux_sym_preproc_def_token1, - ACTIONS(1899), 1, - aux_sym_preproc_if_token1, - ACTIONS(1905), 1, - sym_preproc_directive, - ACTIONS(1909), 1, - aux_sym_preproc_if_token2, - STATE(939), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1359), 1, - sym__declaration_specifiers, - ACTIONS(1903), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1949), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(827), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(568), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [3009] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1805), 1, - sym_identifier, - ACTIONS(1815), 1, - aux_sym_preproc_else_token1, - ACTIONS(1817), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1897), 1, - aux_sym_preproc_def_token1, - ACTIONS(1899), 1, - aux_sym_preproc_if_token1, - ACTIONS(1905), 1, - sym_preproc_directive, - ACTIONS(1911), 1, - aux_sym_preproc_if_token2, - STATE(939), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1359), 1, - sym__declaration_specifiers, - ACTIONS(1903), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1998), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(827), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(586), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [3123] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1805), 1, - sym_identifier, - ACTIONS(1815), 1, - aux_sym_preproc_else_token1, - ACTIONS(1817), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1897), 1, - aux_sym_preproc_def_token1, - ACTIONS(1899), 1, - aux_sym_preproc_if_token1, - ACTIONS(1905), 1, - sym_preproc_directive, - ACTIONS(1913), 1, - aux_sym_preproc_if_token2, - STATE(939), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1359), 1, - sym__declaration_specifiers, - ACTIONS(1903), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1767), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(827), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(586), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [3237] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1805), 1, - sym_identifier, - ACTIONS(1815), 1, - aux_sym_preproc_else_token1, - ACTIONS(1817), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1897), 1, - aux_sym_preproc_def_token1, - ACTIONS(1899), 1, - aux_sym_preproc_if_token1, - ACTIONS(1905), 1, - sym_preproc_directive, - ACTIONS(1915), 1, - aux_sym_preproc_if_token2, - STATE(939), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1359), 1, - sym__declaration_specifiers, - ACTIONS(1903), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(2030), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(827), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(586), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [3351] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1805), 1, - sym_identifier, - ACTIONS(1815), 1, - aux_sym_preproc_else_token1, - ACTIONS(1817), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1897), 1, - aux_sym_preproc_def_token1, - ACTIONS(1899), 1, - aux_sym_preproc_if_token1, - ACTIONS(1905), 1, - sym_preproc_directive, - ACTIONS(1917), 1, - aux_sym_preproc_if_token2, - STATE(939), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1359), 1, - sym__declaration_specifiers, - ACTIONS(1903), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1775), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(827), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(567), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [3465] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1805), 1, - sym_identifier, - ACTIONS(1815), 1, - aux_sym_preproc_else_token1, - ACTIONS(1817), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1897), 1, - aux_sym_preproc_def_token1, - ACTIONS(1899), 1, - aux_sym_preproc_if_token1, - ACTIONS(1905), 1, - sym_preproc_directive, - ACTIONS(1919), 1, - aux_sym_preproc_if_token2, - STATE(939), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1359), 1, - sym__declaration_specifiers, - ACTIONS(1903), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1980), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(827), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(563), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [3579] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1805), 1, - sym_identifier, - ACTIONS(1815), 1, - aux_sym_preproc_else_token1, - ACTIONS(1817), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1897), 1, - aux_sym_preproc_def_token1, - ACTIONS(1899), 1, - aux_sym_preproc_if_token1, - ACTIONS(1905), 1, - sym_preproc_directive, - ACTIONS(1921), 1, - aux_sym_preproc_if_token2, - STATE(939), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1359), 1, - sym__declaration_specifiers, - ACTIONS(1903), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(2019), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(827), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(566), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [3693] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1923), 1, - sym_identifier, - ACTIONS(1926), 1, - aux_sym_preproc_def_token1, - ACTIONS(1929), 1, - aux_sym_preproc_if_token1, - ACTIONS(1937), 1, - sym_preproc_directive, - ACTIONS(1943), 1, - anon_sym___attribute__, - ACTIONS(1946), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1949), 1, - anon_sym___declspec, - ACTIONS(1958), 1, - sym_primitive_type, - ACTIONS(1961), 1, - anon_sym_enum, - ACTIONS(1964), 1, - anon_sym_struct, - ACTIONS(1967), 1, - anon_sym_union, - STATE(939), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1358), 1, - sym__declaration_specifiers, - ACTIONS(1934), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(1952), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1932), 5, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(1940), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(827), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(1955), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(572), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [3801] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1805), 1, - sym_identifier, - ACTIONS(1815), 1, - aux_sym_preproc_else_token1, - ACTIONS(1817), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1897), 1, - aux_sym_preproc_def_token1, - ACTIONS(1899), 1, - aux_sym_preproc_if_token1, - ACTIONS(1905), 1, - sym_preproc_directive, - ACTIONS(1970), 1, - aux_sym_preproc_if_token2, - STATE(939), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1359), 1, - sym__declaration_specifiers, - ACTIONS(1903), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1828), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(827), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(586), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [3915] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1976), 1, - anon_sym_LPAREN2, - ACTIONS(1982), 1, - anon_sym_STAR, - ACTIONS(1985), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1987), 1, - anon_sym_EQ, - ACTIONS(1989), 1, - anon_sym_COLON, - ACTIONS(1991), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1980), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1974), 13, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1972), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [3996] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1976), 1, - anon_sym_LPAREN2, - ACTIONS(1982), 1, - anon_sym_STAR, - ACTIONS(1985), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1987), 1, - anon_sym_EQ, - ACTIONS(1993), 1, - anon_sym_COLON, - ACTIONS(1991), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1980), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1974), 13, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1972), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [4077] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1976), 1, - anon_sym_LPAREN2, - ACTIONS(1982), 1, - anon_sym_STAR, - ACTIONS(1985), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1987), 1, - anon_sym_EQ, - ACTIONS(1995), 1, - anon_sym_COLON, - ACTIONS(1991), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1980), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1974), 13, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1972), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [4158] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1976), 1, - anon_sym_LPAREN2, - ACTIONS(1982), 1, - anon_sym_STAR, - ACTIONS(1985), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1987), 1, - anon_sym_EQ, - ACTIONS(1997), 1, - anon_sym_COLON, - ACTIONS(1991), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1980), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1974), 13, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1972), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [4239] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1976), 1, - anon_sym_LPAREN2, - ACTIONS(1982), 1, - anon_sym_STAR, - ACTIONS(1985), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1987), 1, - anon_sym_EQ, - ACTIONS(1999), 1, - anon_sym_COLON, - ACTIONS(1991), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1980), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1974), 13, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1972), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [4320] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1976), 1, - anon_sym_LPAREN2, - ACTIONS(1982), 1, - anon_sym_STAR, - ACTIONS(1985), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1987), 1, - anon_sym_EQ, - ACTIONS(1995), 1, - anon_sym_COLON, - ACTIONS(2001), 1, - anon_sym_SEMI, - ACTIONS(1991), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1974), 12, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1980), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1972), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [4403] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1976), 1, - anon_sym_LPAREN2, - ACTIONS(1982), 1, - anon_sym_STAR, - ACTIONS(1985), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1987), 1, - anon_sym_EQ, - ACTIONS(2004), 1, - anon_sym_COLON, - ACTIONS(1991), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1980), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1974), 13, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1972), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [4484] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1976), 1, - anon_sym_LPAREN2, - ACTIONS(1982), 1, - anon_sym_STAR, - ACTIONS(1985), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1987), 1, - anon_sym_EQ, - ACTIONS(2001), 1, - anon_sym_SEMI, - ACTIONS(2004), 1, - anon_sym_COLON, - ACTIONS(1991), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1974), 12, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1980), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1972), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [4567] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1976), 1, - anon_sym_LPAREN2, - ACTIONS(1982), 1, - anon_sym_STAR, - ACTIONS(1985), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1987), 1, - anon_sym_EQ, - ACTIONS(1999), 1, - anon_sym_COLON, - ACTIONS(2001), 1, - anon_sym_SEMI, - ACTIONS(1991), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1974), 12, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1980), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1972), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [4650] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1976), 1, - anon_sym_LPAREN2, - ACTIONS(1982), 1, - anon_sym_STAR, - ACTIONS(1985), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1987), 1, - anon_sym_EQ, - ACTIONS(1989), 1, - anon_sym_COLON, - ACTIONS(2001), 1, - anon_sym_SEMI, - ACTIONS(1991), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1974), 12, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1980), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1972), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [4733] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1976), 1, - anon_sym_LPAREN2, - ACTIONS(1982), 1, - anon_sym_STAR, - ACTIONS(1985), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1987), 1, - anon_sym_EQ, - ACTIONS(1997), 1, - anon_sym_COLON, - ACTIONS(2001), 1, - anon_sym_SEMI, - ACTIONS(1991), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1974), 11, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1980), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1972), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [4815] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1976), 1, - anon_sym_LPAREN2, - ACTIONS(1982), 1, - anon_sym_STAR, - ACTIONS(1985), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1987), 1, - anon_sym_EQ, - ACTIONS(1991), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1980), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1974), 13, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1972), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [4893] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1923), 1, - sym_identifier, - ACTIONS(1943), 1, - anon_sym___attribute__, - ACTIONS(1946), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1949), 1, - anon_sym___declspec, - ACTIONS(1958), 1, - sym_primitive_type, - ACTIONS(1961), 1, - anon_sym_enum, - ACTIONS(1964), 1, - anon_sym_struct, - ACTIONS(1967), 1, - anon_sym_union, - ACTIONS(2006), 1, - aux_sym_preproc_def_token1, - ACTIONS(2009), 1, - aux_sym_preproc_if_token1, - ACTIONS(2015), 1, - sym_preproc_directive, - STATE(939), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1359), 1, - sym__declaration_specifiers, - ACTIONS(2012), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(1932), 3, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - ACTIONS(1952), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(1940), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(827), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(1955), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(586), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [4999] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1805), 1, - sym_identifier, - ACTIONS(2018), 1, - aux_sym_preproc_def_token1, - ACTIONS(2020), 1, - aux_sym_preproc_if_token1, - ACTIONS(2024), 1, - sym_preproc_directive, - ACTIONS(2026), 1, - anon_sym_RBRACE, - STATE(939), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1357), 1, - sym__declaration_specifiers, - ACTIONS(2022), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(827), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(591), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [5103] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1923), 1, - sym_identifier, - ACTIONS(1932), 1, - aux_sym_preproc_if_token2, - ACTIONS(1943), 1, - anon_sym___attribute__, - ACTIONS(1946), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1949), 1, - anon_sym___declspec, - ACTIONS(1958), 1, - sym_primitive_type, - ACTIONS(1961), 1, - anon_sym_enum, - ACTIONS(1964), 1, - anon_sym_struct, - ACTIONS(1967), 1, - anon_sym_union, - ACTIONS(2028), 1, - aux_sym_preproc_def_token1, - ACTIONS(2031), 1, - aux_sym_preproc_if_token1, - ACTIONS(2037), 1, - sym_preproc_directive, - STATE(939), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1356), 1, - sym__declaration_specifiers, - ACTIONS(2034), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(1952), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(1940), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(827), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(1955), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(588), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [5207] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1805), 1, - sym_identifier, - ACTIONS(2040), 1, - aux_sym_preproc_def_token1, - ACTIONS(2042), 1, - aux_sym_preproc_if_token1, - ACTIONS(2044), 1, - aux_sym_preproc_if_token2, - ACTIONS(2048), 1, - sym_preproc_directive, - STATE(939), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1356), 1, - sym__declaration_specifiers, - ACTIONS(2046), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(827), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(592), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [5311] = 23, + [508] = { + [sym_attribute_declaration] = STATE(524), + [sym_compound_statement] = STATE(95), + [sym_attributed_statement] = STATE(95), + [sym_labeled_statement] = STATE(95), + [sym_expression_statement] = STATE(95), + [sym_if_statement] = STATE(95), + [sym_switch_statement] = STATE(95), + [sym_case_statement] = STATE(95), + [sym_while_statement] = STATE(95), + [sym_do_statement] = STATE(95), + [sym_for_statement] = STATE(95), + [sym_return_statement] = STATE(95), + [sym_break_statement] = STATE(95), + [sym_continue_statement] = STATE(95), + [sym_goto_statement] = STATE(95), + [sym__expression] = STATE(1198), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2197), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(524), + [sym_identifier] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [509] = { + [sym_attribute_declaration] = STATE(594), + [sym_compound_statement] = STATE(277), + [sym_attributed_statement] = STATE(277), + [sym_labeled_statement] = STATE(277), + [sym_expression_statement] = STATE(277), + [sym_if_statement] = STATE(277), + [sym_switch_statement] = STATE(277), + [sym_case_statement] = STATE(277), + [sym_while_statement] = STATE(277), + [sym_do_statement] = STATE(277), + [sym_for_statement] = STATE(277), + [sym_return_statement] = STATE(277), + [sym_break_statement] = STATE(277), + [sym_continue_statement] = STATE(277), + [sym_goto_statement] = STATE(277), + [sym__expression] = STATE(1251), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2030), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(594), + [sym_identifier] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [510] = { + [sym_attribute_declaration] = STATE(508), + [sym_compound_statement] = STATE(90), + [sym_attributed_statement] = STATE(90), + [sym_labeled_statement] = STATE(90), + [sym_expression_statement] = STATE(90), + [sym_if_statement] = STATE(90), + [sym_switch_statement] = STATE(90), + [sym_case_statement] = STATE(90), + [sym_while_statement] = STATE(90), + [sym_do_statement] = STATE(90), + [sym_for_statement] = STATE(90), + [sym_return_statement] = STATE(90), + [sym_break_statement] = STATE(90), + [sym_continue_statement] = STATE(90), + [sym_goto_statement] = STATE(90), + [sym__expression] = STATE(1198), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2197), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(508), + [sym_identifier] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [511] = { + [sym_attribute_declaration] = STATE(508), + [sym_compound_statement] = STATE(104), + [sym_attributed_statement] = STATE(104), + [sym_labeled_statement] = STATE(104), + [sym_expression_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_switch_statement] = STATE(104), + [sym_case_statement] = STATE(104), + [sym_while_statement] = STATE(104), + [sym_do_statement] = STATE(104), + [sym_for_statement] = STATE(104), + [sym_return_statement] = STATE(104), + [sym_break_statement] = STATE(104), + [sym_continue_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym__expression] = STATE(1198), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2197), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(508), + [sym_identifier] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [512] = { + [sym_attribute_declaration] = STATE(503), + [sym_compound_statement] = STATE(349), + [sym_attributed_statement] = STATE(349), + [sym_labeled_statement] = STATE(349), + [sym_expression_statement] = STATE(349), + [sym_if_statement] = STATE(349), + [sym_switch_statement] = STATE(349), + [sym_case_statement] = STATE(349), + [sym_while_statement] = STATE(349), + [sym_do_statement] = STATE(349), + [sym_for_statement] = STATE(349), + [sym_return_statement] = STATE(349), + [sym_break_statement] = STATE(349), + [sym_continue_statement] = STATE(349), + [sym_goto_statement] = STATE(349), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(1596), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [513] = { + [sym_attribute_declaration] = STATE(594), + [sym_compound_statement] = STATE(279), + [sym_attributed_statement] = STATE(279), + [sym_labeled_statement] = STATE(279), + [sym_expression_statement] = STATE(279), + [sym_if_statement] = STATE(279), + [sym_switch_statement] = STATE(279), + [sym_case_statement] = STATE(279), + [sym_while_statement] = STATE(279), + [sym_do_statement] = STATE(279), + [sym_for_statement] = STATE(279), + [sym_return_statement] = STATE(279), + [sym_break_statement] = STATE(279), + [sym_continue_statement] = STATE(279), + [sym_goto_statement] = STATE(279), + [sym__expression] = STATE(1251), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2030), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(594), + [sym_identifier] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [514] = { + [sym_attribute_declaration] = STATE(503), + [sym_compound_statement] = STATE(348), + [sym_attributed_statement] = STATE(348), + [sym_labeled_statement] = STATE(348), + [sym_expression_statement] = STATE(348), + [sym_if_statement] = STATE(348), + [sym_switch_statement] = STATE(348), + [sym_case_statement] = STATE(348), + [sym_while_statement] = STATE(348), + [sym_do_statement] = STATE(348), + [sym_for_statement] = STATE(348), + [sym_return_statement] = STATE(348), + [sym_break_statement] = STATE(348), + [sym_continue_statement] = STATE(348), + [sym_goto_statement] = STATE(348), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(1596), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [515] = { + [sym_attribute_declaration] = STATE(503), + [sym_compound_statement] = STATE(347), + [sym_attributed_statement] = STATE(347), + [sym_labeled_statement] = STATE(347), + [sym_expression_statement] = STATE(347), + [sym_if_statement] = STATE(347), + [sym_switch_statement] = STATE(347), + [sym_case_statement] = STATE(347), + [sym_while_statement] = STATE(347), + [sym_do_statement] = STATE(347), + [sym_for_statement] = STATE(347), + [sym_return_statement] = STATE(347), + [sym_break_statement] = STATE(347), + [sym_continue_statement] = STATE(347), + [sym_goto_statement] = STATE(347), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(1596), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [516] = { + [sym_attribute_declaration] = STATE(505), + [sym_compound_statement] = STATE(292), + [sym_attributed_statement] = STATE(292), + [sym_labeled_statement] = STATE(292), + [sym_expression_statement] = STATE(292), + [sym_if_statement] = STATE(292), + [sym_switch_statement] = STATE(292), + [sym_case_statement] = STATE(292), + [sym_while_statement] = STATE(292), + [sym_do_statement] = STATE(292), + [sym_for_statement] = STATE(292), + [sym_return_statement] = STATE(292), + [sym_break_statement] = STATE(292), + [sym_continue_statement] = STATE(292), + [sym_goto_statement] = STATE(292), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(1695), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [517] = { + [sym_attribute_declaration] = STATE(503), + [sym_compound_statement] = STATE(346), + [sym_attributed_statement] = STATE(346), + [sym_labeled_statement] = STATE(346), + [sym_expression_statement] = STATE(346), + [sym_if_statement] = STATE(346), + [sym_switch_statement] = STATE(346), + [sym_case_statement] = STATE(346), + [sym_while_statement] = STATE(346), + [sym_do_statement] = STATE(346), + [sym_for_statement] = STATE(346), + [sym_return_statement] = STATE(346), + [sym_break_statement] = STATE(346), + [sym_continue_statement] = STATE(346), + [sym_goto_statement] = STATE(346), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(1596), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [518] = { + [sym_attribute_declaration] = STATE(503), + [sym_compound_statement] = STATE(345), + [sym_attributed_statement] = STATE(345), + [sym_labeled_statement] = STATE(345), + [sym_expression_statement] = STATE(345), + [sym_if_statement] = STATE(345), + [sym_switch_statement] = STATE(345), + [sym_case_statement] = STATE(345), + [sym_while_statement] = STATE(345), + [sym_do_statement] = STATE(345), + [sym_for_statement] = STATE(345), + [sym_return_statement] = STATE(345), + [sym_break_statement] = STATE(345), + [sym_continue_statement] = STATE(345), + [sym_goto_statement] = STATE(345), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(1596), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [519] = { + [sym_attribute_declaration] = STATE(560), + [sym_compound_statement] = STATE(192), + [sym_attributed_statement] = STATE(192), + [sym_labeled_statement] = STATE(192), + [sym_expression_statement] = STATE(192), + [sym_if_statement] = STATE(192), + [sym_switch_statement] = STATE(192), + [sym_case_statement] = STATE(192), + [sym_while_statement] = STATE(192), + [sym_do_statement] = STATE(192), + [sym_for_statement] = STATE(192), + [sym_return_statement] = STATE(192), + [sym_break_statement] = STATE(192), + [sym_continue_statement] = STATE(192), + [sym_goto_statement] = STATE(192), + [sym__expression] = STATE(1240), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2024), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(560), + [sym_identifier] = ACTIONS(1592), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_if] = ACTIONS(201), + [anon_sym_switch] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_default] = ACTIONS(207), + [anon_sym_while] = ACTIONS(209), + [anon_sym_do] = ACTIONS(211), + [anon_sym_for] = ACTIONS(213), + [anon_sym_return] = ACTIONS(215), + [anon_sym_break] = ACTIONS(217), + [anon_sym_continue] = ACTIONS(219), + [anon_sym_goto] = ACTIONS(221), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [520] = { + [sym_attribute_declaration] = STATE(594), + [sym_compound_statement] = STATE(280), + [sym_attributed_statement] = STATE(280), + [sym_labeled_statement] = STATE(280), + [sym_expression_statement] = STATE(280), + [sym_if_statement] = STATE(280), + [sym_switch_statement] = STATE(280), + [sym_case_statement] = STATE(280), + [sym_while_statement] = STATE(280), + [sym_do_statement] = STATE(280), + [sym_for_statement] = STATE(280), + [sym_return_statement] = STATE(280), + [sym_break_statement] = STATE(280), + [sym_continue_statement] = STATE(280), + [sym_goto_statement] = STATE(280), + [sym__expression] = STATE(1251), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2030), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(594), + [sym_identifier] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [521] = { + [sym_attribute_declaration] = STATE(508), + [sym_compound_statement] = STATE(107), + [sym_attributed_statement] = STATE(107), + [sym_labeled_statement] = STATE(107), + [sym_expression_statement] = STATE(107), + [sym_if_statement] = STATE(107), + [sym_switch_statement] = STATE(107), + [sym_case_statement] = STATE(107), + [sym_while_statement] = STATE(107), + [sym_do_statement] = STATE(107), + [sym_for_statement] = STATE(107), + [sym_return_statement] = STATE(107), + [sym_break_statement] = STATE(107), + [sym_continue_statement] = STATE(107), + [sym_goto_statement] = STATE(107), + [sym__expression] = STATE(1198), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2197), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(508), + [sym_identifier] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [522] = { + [sym_attribute_declaration] = STATE(560), + [sym_compound_statement] = STATE(194), + [sym_attributed_statement] = STATE(194), + [sym_labeled_statement] = STATE(194), + [sym_expression_statement] = STATE(194), + [sym_if_statement] = STATE(194), + [sym_switch_statement] = STATE(194), + [sym_case_statement] = STATE(194), + [sym_while_statement] = STATE(194), + [sym_do_statement] = STATE(194), + [sym_for_statement] = STATE(194), + [sym_return_statement] = STATE(194), + [sym_break_statement] = STATE(194), + [sym_continue_statement] = STATE(194), + [sym_goto_statement] = STATE(194), + [sym__expression] = STATE(1240), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2024), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(560), + [sym_identifier] = ACTIONS(1592), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_if] = ACTIONS(201), + [anon_sym_switch] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_default] = ACTIONS(207), + [anon_sym_while] = ACTIONS(209), + [anon_sym_do] = ACTIONS(211), + [anon_sym_for] = ACTIONS(213), + [anon_sym_return] = ACTIONS(215), + [anon_sym_break] = ACTIONS(217), + [anon_sym_continue] = ACTIONS(219), + [anon_sym_goto] = ACTIONS(221), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [523] = { + [sym_attribute_declaration] = STATE(505), + [sym_compound_statement] = STATE(289), + [sym_attributed_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_switch_statement] = STATE(289), + [sym_case_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_goto_statement] = STATE(289), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(1695), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [524] = { + [sym_attribute_declaration] = STATE(524), + [sym_compound_statement] = STATE(95), + [sym_attributed_statement] = STATE(95), + [sym_labeled_statement] = STATE(95), + [sym_expression_statement] = STATE(95), + [sym_if_statement] = STATE(95), + [sym_switch_statement] = STATE(95), + [sym_case_statement] = STATE(95), + [sym_while_statement] = STATE(95), + [sym_do_statement] = STATE(95), + [sym_for_statement] = STATE(95), + [sym_return_statement] = STATE(95), + [sym_break_statement] = STATE(95), + [sym_continue_statement] = STATE(95), + [sym_goto_statement] = STATE(95), + [sym__expression] = STATE(1198), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2197), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(524), + [sym_identifier] = ACTIONS(1703), + [anon_sym_LPAREN2] = ACTIONS(1601), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1709), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_switch] = ACTIONS(1715), + [anon_sym_case] = ACTIONS(1718), + [anon_sym_default] = ACTIONS(1721), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_do] = ACTIONS(1727), + [anon_sym_for] = ACTIONS(1730), + [anon_sym_return] = ACTIONS(1733), + [anon_sym_break] = ACTIONS(1736), + [anon_sym_continue] = ACTIONS(1739), + [anon_sym_goto] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_sizeof] = ACTIONS(1658), + [anon_sym___alignof__] = ACTIONS(1661), + [anon_sym___alignof] = ACTIONS(1661), + [anon_sym__alignof] = ACTIONS(1661), + [anon_sym_alignof] = ACTIONS(1661), + [anon_sym__Alignof] = ACTIONS(1661), + [anon_sym_offsetof] = ACTIONS(1664), + [anon_sym___builtin_va_arg] = ACTIONS(1667), + [anon_sym__Generic] = ACTIONS(1670), + [anon_sym_asm] = ACTIONS(1673), + [anon_sym___asm__] = ACTIONS(1673), + [sym_number_literal] = ACTIONS(1676), + [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(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(1685), + [sym_false] = ACTIONS(1685), + [anon_sym_NULL] = ACTIONS(1688), + [anon_sym_nullptr] = ACTIONS(1688), + [sym_comment] = ACTIONS(3), + }, + [525] = { + [sym_attribute_declaration] = STATE(560), + [sym_compound_statement] = STATE(196), + [sym_attributed_statement] = STATE(196), + [sym_labeled_statement] = STATE(196), + [sym_expression_statement] = STATE(196), + [sym_if_statement] = STATE(196), + [sym_switch_statement] = STATE(196), + [sym_case_statement] = STATE(196), + [sym_while_statement] = STATE(196), + [sym_do_statement] = STATE(196), + [sym_for_statement] = STATE(196), + [sym_return_statement] = STATE(196), + [sym_break_statement] = STATE(196), + [sym_continue_statement] = STATE(196), + [sym_goto_statement] = STATE(196), + [sym__expression] = STATE(1240), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2024), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(560), + [sym_identifier] = ACTIONS(1592), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_if] = ACTIONS(201), + [anon_sym_switch] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_default] = ACTIONS(207), + [anon_sym_while] = ACTIONS(209), + [anon_sym_do] = ACTIONS(211), + [anon_sym_for] = ACTIONS(213), + [anon_sym_return] = ACTIONS(215), + [anon_sym_break] = ACTIONS(217), + [anon_sym_continue] = ACTIONS(219), + [anon_sym_goto] = ACTIONS(221), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [526] = { + [sym_attribute_declaration] = STATE(560), + [sym_compound_statement] = STATE(198), + [sym_attributed_statement] = STATE(198), + [sym_labeled_statement] = STATE(198), + [sym_expression_statement] = STATE(198), + [sym_if_statement] = STATE(198), + [sym_switch_statement] = STATE(198), + [sym_case_statement] = STATE(198), + [sym_while_statement] = STATE(198), + [sym_do_statement] = STATE(198), + [sym_for_statement] = STATE(198), + [sym_return_statement] = STATE(198), + [sym_break_statement] = STATE(198), + [sym_continue_statement] = STATE(198), + [sym_goto_statement] = STATE(198), + [sym__expression] = STATE(1240), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2024), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(560), + [sym_identifier] = ACTIONS(1592), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_if] = ACTIONS(201), + [anon_sym_switch] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_default] = ACTIONS(207), + [anon_sym_while] = ACTIONS(209), + [anon_sym_do] = ACTIONS(211), + [anon_sym_for] = ACTIONS(213), + [anon_sym_return] = ACTIONS(215), + [anon_sym_break] = ACTIONS(217), + [anon_sym_continue] = ACTIONS(219), + [anon_sym_goto] = ACTIONS(221), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [527] = { + [sym_attribute_declaration] = STATE(505), + [sym_compound_statement] = STATE(2187), + [sym_attributed_statement] = STATE(2187), + [sym_labeled_statement] = STATE(2187), + [sym_expression_statement] = STATE(2187), + [sym_if_statement] = STATE(2187), + [sym_switch_statement] = STATE(2187), + [sym_case_statement] = STATE(2187), + [sym_while_statement] = STATE(2187), + [sym_do_statement] = STATE(2187), + [sym_for_statement] = STATE(2187), + [sym_return_statement] = STATE(2187), + [sym_break_statement] = STATE(2187), + [sym_continue_statement] = STATE(2187), + [sym_goto_statement] = STATE(2187), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(1695), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [528] = { + [sym_attribute_declaration] = STATE(503), + [sym_compound_statement] = STATE(337), + [sym_attributed_statement] = STATE(337), + [sym_labeled_statement] = STATE(337), + [sym_expression_statement] = STATE(337), + [sym_if_statement] = STATE(337), + [sym_switch_statement] = STATE(337), + [sym_case_statement] = STATE(337), + [sym_while_statement] = STATE(337), + [sym_do_statement] = STATE(337), + [sym_for_statement] = STATE(337), + [sym_return_statement] = STATE(337), + [sym_break_statement] = STATE(337), + [sym_continue_statement] = STATE(337), + [sym_goto_statement] = STATE(337), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(1596), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [529] = { + [sym_attribute_declaration] = STATE(503), + [sym_compound_statement] = STATE(336), + [sym_attributed_statement] = STATE(336), + [sym_labeled_statement] = STATE(336), + [sym_expression_statement] = STATE(336), + [sym_if_statement] = STATE(336), + [sym_switch_statement] = STATE(336), + [sym_case_statement] = STATE(336), + [sym_while_statement] = STATE(336), + [sym_do_statement] = STATE(336), + [sym_for_statement] = STATE(336), + [sym_return_statement] = STATE(336), + [sym_break_statement] = STATE(336), + [sym_continue_statement] = STATE(336), + [sym_goto_statement] = STATE(336), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(1596), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [530] = { + [sym_attribute_declaration] = STATE(560), + [sym_compound_statement] = STATE(199), + [sym_attributed_statement] = STATE(199), + [sym_labeled_statement] = STATE(199), + [sym_expression_statement] = STATE(199), + [sym_if_statement] = STATE(199), + [sym_switch_statement] = STATE(199), + [sym_case_statement] = STATE(199), + [sym_while_statement] = STATE(199), + [sym_do_statement] = STATE(199), + [sym_for_statement] = STATE(199), + [sym_return_statement] = STATE(199), + [sym_break_statement] = STATE(199), + [sym_continue_statement] = STATE(199), + [sym_goto_statement] = STATE(199), + [sym__expression] = STATE(1240), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2024), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(560), + [sym_identifier] = ACTIONS(1592), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_if] = ACTIONS(201), + [anon_sym_switch] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_default] = ACTIONS(207), + [anon_sym_while] = ACTIONS(209), + [anon_sym_do] = ACTIONS(211), + [anon_sym_for] = ACTIONS(213), + [anon_sym_return] = ACTIONS(215), + [anon_sym_break] = ACTIONS(217), + [anon_sym_continue] = ACTIONS(219), + [anon_sym_goto] = ACTIONS(221), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [531] = { + [sym_attribute_declaration] = STATE(594), + [sym_compound_statement] = STATE(281), + [sym_attributed_statement] = STATE(281), + [sym_labeled_statement] = STATE(281), + [sym_expression_statement] = STATE(281), + [sym_if_statement] = STATE(281), + [sym_switch_statement] = STATE(281), + [sym_case_statement] = STATE(281), + [sym_while_statement] = STATE(281), + [sym_do_statement] = STATE(281), + [sym_for_statement] = STATE(281), + [sym_return_statement] = STATE(281), + [sym_break_statement] = STATE(281), + [sym_continue_statement] = STATE(281), + [sym_goto_statement] = STATE(281), + [sym__expression] = STATE(1251), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2030), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(594), + [sym_identifier] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [532] = { + [sym_attribute_declaration] = STATE(560), + [sym_compound_statement] = STATE(229), + [sym_attributed_statement] = STATE(229), + [sym_labeled_statement] = STATE(229), + [sym_expression_statement] = STATE(229), + [sym_if_statement] = STATE(229), + [sym_switch_statement] = STATE(229), + [sym_case_statement] = STATE(229), + [sym_while_statement] = STATE(229), + [sym_do_statement] = STATE(229), + [sym_for_statement] = STATE(229), + [sym_return_statement] = STATE(229), + [sym_break_statement] = STATE(229), + [sym_continue_statement] = STATE(229), + [sym_goto_statement] = STATE(229), + [sym__expression] = STATE(1240), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2024), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(560), + [sym_identifier] = ACTIONS(1592), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_if] = ACTIONS(201), + [anon_sym_switch] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_default] = ACTIONS(207), + [anon_sym_while] = ACTIONS(209), + [anon_sym_do] = ACTIONS(211), + [anon_sym_for] = ACTIONS(213), + [anon_sym_return] = ACTIONS(215), + [anon_sym_break] = ACTIONS(217), + [anon_sym_continue] = ACTIONS(219), + [anon_sym_goto] = ACTIONS(221), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [533] = { + [sym_attribute_declaration] = STATE(560), + [sym_compound_statement] = STATE(231), + [sym_attributed_statement] = STATE(231), + [sym_labeled_statement] = STATE(231), + [sym_expression_statement] = STATE(231), + [sym_if_statement] = STATE(231), + [sym_switch_statement] = STATE(231), + [sym_case_statement] = STATE(231), + [sym_while_statement] = STATE(231), + [sym_do_statement] = STATE(231), + [sym_for_statement] = STATE(231), + [sym_return_statement] = STATE(231), + [sym_break_statement] = STATE(231), + [sym_continue_statement] = STATE(231), + [sym_goto_statement] = STATE(231), + [sym__expression] = STATE(1240), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2024), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(560), + [sym_identifier] = ACTIONS(1592), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_if] = ACTIONS(201), + [anon_sym_switch] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_default] = ACTIONS(207), + [anon_sym_while] = ACTIONS(209), + [anon_sym_do] = ACTIONS(211), + [anon_sym_for] = ACTIONS(213), + [anon_sym_return] = ACTIONS(215), + [anon_sym_break] = ACTIONS(217), + [anon_sym_continue] = ACTIONS(219), + [anon_sym_goto] = ACTIONS(221), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [534] = { + [sym_attribute_declaration] = STATE(560), + [sym_compound_statement] = STATE(230), + [sym_attributed_statement] = STATE(230), + [sym_labeled_statement] = STATE(230), + [sym_expression_statement] = STATE(230), + [sym_if_statement] = STATE(230), + [sym_switch_statement] = STATE(230), + [sym_case_statement] = STATE(230), + [sym_while_statement] = STATE(230), + [sym_do_statement] = STATE(230), + [sym_for_statement] = STATE(230), + [sym_return_statement] = STATE(230), + [sym_break_statement] = STATE(230), + [sym_continue_statement] = STATE(230), + [sym_goto_statement] = STATE(230), + [sym__expression] = STATE(1240), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2024), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(560), + [sym_identifier] = ACTIONS(1592), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_if] = ACTIONS(201), + [anon_sym_switch] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_default] = ACTIONS(207), + [anon_sym_while] = ACTIONS(209), + [anon_sym_do] = ACTIONS(211), + [anon_sym_for] = ACTIONS(213), + [anon_sym_return] = ACTIONS(215), + [anon_sym_break] = ACTIONS(217), + [anon_sym_continue] = ACTIONS(219), + [anon_sym_goto] = ACTIONS(221), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [535] = { + [sym_attribute_declaration] = STATE(560), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym__expression] = STATE(1240), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2024), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(560), + [sym_identifier] = ACTIONS(1592), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_if] = ACTIONS(201), + [anon_sym_switch] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_default] = ACTIONS(207), + [anon_sym_while] = ACTIONS(209), + [anon_sym_do] = ACTIONS(211), + [anon_sym_for] = ACTIONS(213), + [anon_sym_return] = ACTIONS(215), + [anon_sym_break] = ACTIONS(217), + [anon_sym_continue] = ACTIONS(219), + [anon_sym_goto] = ACTIONS(221), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [536] = { + [sym_attribute_declaration] = STATE(594), + [sym_compound_statement] = STATE(299), + [sym_attributed_statement] = STATE(299), + [sym_labeled_statement] = STATE(299), + [sym_expression_statement] = STATE(299), + [sym_if_statement] = STATE(299), + [sym_switch_statement] = STATE(299), + [sym_case_statement] = STATE(299), + [sym_while_statement] = STATE(299), + [sym_do_statement] = STATE(299), + [sym_for_statement] = STATE(299), + [sym_return_statement] = STATE(299), + [sym_break_statement] = STATE(299), + [sym_continue_statement] = STATE(299), + [sym_goto_statement] = STATE(299), + [sym__expression] = STATE(1251), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2030), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(594), + [sym_identifier] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [537] = { + [sym_attribute_declaration] = STATE(505), + [sym_compound_statement] = STATE(287), + [sym_attributed_statement] = STATE(287), + [sym_labeled_statement] = STATE(287), + [sym_expression_statement] = STATE(287), + [sym_if_statement] = STATE(287), + [sym_switch_statement] = STATE(287), + [sym_case_statement] = STATE(287), + [sym_while_statement] = STATE(287), + [sym_do_statement] = STATE(287), + [sym_for_statement] = STATE(287), + [sym_return_statement] = STATE(287), + [sym_break_statement] = STATE(287), + [sym_continue_statement] = STATE(287), + [sym_goto_statement] = STATE(287), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(1695), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [538] = { + [sym_attribute_declaration] = STATE(505), + [sym_compound_statement] = STATE(286), + [sym_attributed_statement] = STATE(286), + [sym_labeled_statement] = STATE(286), + [sym_expression_statement] = STATE(286), + [sym_if_statement] = STATE(286), + [sym_switch_statement] = STATE(286), + [sym_case_statement] = STATE(286), + [sym_while_statement] = STATE(286), + [sym_do_statement] = STATE(286), + [sym_for_statement] = STATE(286), + [sym_return_statement] = STATE(286), + [sym_break_statement] = STATE(286), + [sym_continue_statement] = STATE(286), + [sym_goto_statement] = STATE(286), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(1695), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [539] = { + [sym_attribute_declaration] = STATE(496), + [sym_compound_statement] = STATE(419), + [sym_attributed_statement] = STATE(419), + [sym_labeled_statement] = STATE(419), + [sym_expression_statement] = STATE(419), + [sym_if_statement] = STATE(419), + [sym_switch_statement] = STATE(419), + [sym_case_statement] = STATE(419), + [sym_while_statement] = STATE(419), + [sym_do_statement] = STATE(419), + [sym_for_statement] = STATE(419), + [sym_return_statement] = STATE(419), + [sym_break_statement] = STATE(419), + [sym_continue_statement] = STATE(419), + [sym_goto_statement] = STATE(419), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2191), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(496), + [sym_identifier] = ACTIONS(1691), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(604), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_if] = ACTIONS(614), + [anon_sym_switch] = ACTIONS(616), + [anon_sym_case] = ACTIONS(618), + [anon_sym_default] = ACTIONS(620), + [anon_sym_while] = ACTIONS(622), + [anon_sym_do] = ACTIONS(624), + [anon_sym_for] = ACTIONS(626), + [anon_sym_return] = ACTIONS(628), + [anon_sym_break] = ACTIONS(630), + [anon_sym_continue] = ACTIONS(632), + [anon_sym_goto] = ACTIONS(634), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [540] = { + [sym_attribute_declaration] = STATE(560), + [sym_compound_statement] = STATE(227), + [sym_attributed_statement] = STATE(227), + [sym_labeled_statement] = STATE(227), + [sym_expression_statement] = STATE(227), + [sym_if_statement] = STATE(227), + [sym_switch_statement] = STATE(227), + [sym_case_statement] = STATE(227), + [sym_while_statement] = STATE(227), + [sym_do_statement] = STATE(227), + [sym_for_statement] = STATE(227), + [sym_return_statement] = STATE(227), + [sym_break_statement] = STATE(227), + [sym_continue_statement] = STATE(227), + [sym_goto_statement] = STATE(227), + [sym__expression] = STATE(1240), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2024), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(560), + [sym_identifier] = ACTIONS(1592), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_if] = ACTIONS(201), + [anon_sym_switch] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_default] = ACTIONS(207), + [anon_sym_while] = ACTIONS(209), + [anon_sym_do] = ACTIONS(211), + [anon_sym_for] = ACTIONS(213), + [anon_sym_return] = ACTIONS(215), + [anon_sym_break] = ACTIONS(217), + [anon_sym_continue] = ACTIONS(219), + [anon_sym_goto] = ACTIONS(221), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [541] = { + [sym_attribute_declaration] = STATE(505), + [sym_compound_statement] = STATE(285), + [sym_attributed_statement] = STATE(285), + [sym_labeled_statement] = STATE(285), + [sym_expression_statement] = STATE(285), + [sym_if_statement] = STATE(285), + [sym_switch_statement] = STATE(285), + [sym_case_statement] = STATE(285), + [sym_while_statement] = STATE(285), + [sym_do_statement] = STATE(285), + [sym_for_statement] = STATE(285), + [sym_return_statement] = STATE(285), + [sym_break_statement] = STATE(285), + [sym_continue_statement] = STATE(285), + [sym_goto_statement] = STATE(285), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(1695), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [542] = { + [sym_attribute_declaration] = STATE(503), + [sym_compound_statement] = STATE(389), + [sym_attributed_statement] = STATE(389), + [sym_labeled_statement] = STATE(389), + [sym_expression_statement] = STATE(389), + [sym_if_statement] = STATE(389), + [sym_switch_statement] = STATE(389), + [sym_case_statement] = STATE(389), + [sym_while_statement] = STATE(389), + [sym_do_statement] = STATE(389), + [sym_for_statement] = STATE(389), + [sym_return_statement] = STATE(389), + [sym_break_statement] = STATE(389), + [sym_continue_statement] = STATE(389), + [sym_goto_statement] = STATE(389), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(1596), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [543] = { + [sym_attribute_declaration] = STATE(505), + [sym_compound_statement] = STATE(281), + [sym_attributed_statement] = STATE(281), + [sym_labeled_statement] = STATE(281), + [sym_expression_statement] = STATE(281), + [sym_if_statement] = STATE(281), + [sym_switch_statement] = STATE(281), + [sym_case_statement] = STATE(281), + [sym_while_statement] = STATE(281), + [sym_do_statement] = STATE(281), + [sym_for_statement] = STATE(281), + [sym_return_statement] = STATE(281), + [sym_break_statement] = STATE(281), + [sym_continue_statement] = STATE(281), + [sym_goto_statement] = STATE(281), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(1695), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [544] = { + [sym_attribute_declaration] = STATE(505), + [sym_compound_statement] = STATE(280), + [sym_attributed_statement] = STATE(280), + [sym_labeled_statement] = STATE(280), + [sym_expression_statement] = STATE(280), + [sym_if_statement] = STATE(280), + [sym_switch_statement] = STATE(280), + [sym_case_statement] = STATE(280), + [sym_while_statement] = STATE(280), + [sym_do_statement] = STATE(280), + [sym_for_statement] = STATE(280), + [sym_return_statement] = STATE(280), + [sym_break_statement] = STATE(280), + [sym_continue_statement] = STATE(280), + [sym_goto_statement] = STATE(280), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(1695), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [545] = { + [sym_attribute_declaration] = STATE(508), + [sym_compound_statement] = STATE(99), + [sym_attributed_statement] = STATE(99), + [sym_labeled_statement] = STATE(99), + [sym_expression_statement] = STATE(99), + [sym_if_statement] = STATE(99), + [sym_switch_statement] = STATE(99), + [sym_case_statement] = STATE(99), + [sym_while_statement] = STATE(99), + [sym_do_statement] = STATE(99), + [sym_for_statement] = STATE(99), + [sym_return_statement] = STATE(99), + [sym_break_statement] = STATE(99), + [sym_continue_statement] = STATE(99), + [sym_goto_statement] = STATE(99), + [sym__expression] = STATE(1198), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2197), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(508), + [sym_identifier] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [546] = { + [sym_attribute_declaration] = STATE(560), + [sym_compound_statement] = STATE(219), + [sym_attributed_statement] = STATE(219), + [sym_labeled_statement] = STATE(219), + [sym_expression_statement] = STATE(219), + [sym_if_statement] = STATE(219), + [sym_switch_statement] = STATE(219), + [sym_case_statement] = STATE(219), + [sym_while_statement] = STATE(219), + [sym_do_statement] = STATE(219), + [sym_for_statement] = STATE(219), + [sym_return_statement] = STATE(219), + [sym_break_statement] = STATE(219), + [sym_continue_statement] = STATE(219), + [sym_goto_statement] = STATE(219), + [sym__expression] = STATE(1240), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2024), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(560), + [sym_identifier] = ACTIONS(1592), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_if] = ACTIONS(201), + [anon_sym_switch] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_default] = ACTIONS(207), + [anon_sym_while] = ACTIONS(209), + [anon_sym_do] = ACTIONS(211), + [anon_sym_for] = ACTIONS(213), + [anon_sym_return] = ACTIONS(215), + [anon_sym_break] = ACTIONS(217), + [anon_sym_continue] = ACTIONS(219), + [anon_sym_goto] = ACTIONS(221), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [547] = { + [sym_attribute_declaration] = STATE(505), + [sym_compound_statement] = STATE(279), + [sym_attributed_statement] = STATE(279), + [sym_labeled_statement] = STATE(279), + [sym_expression_statement] = STATE(279), + [sym_if_statement] = STATE(279), + [sym_switch_statement] = STATE(279), + [sym_case_statement] = STATE(279), + [sym_while_statement] = STATE(279), + [sym_do_statement] = STATE(279), + [sym_for_statement] = STATE(279), + [sym_return_statement] = STATE(279), + [sym_break_statement] = STATE(279), + [sym_continue_statement] = STATE(279), + [sym_goto_statement] = STATE(279), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(1695), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [548] = { + [sym_attribute_declaration] = STATE(505), + [sym_compound_statement] = STATE(278), + [sym_attributed_statement] = STATE(278), + [sym_labeled_statement] = STATE(278), + [sym_expression_statement] = STATE(278), + [sym_if_statement] = STATE(278), + [sym_switch_statement] = STATE(278), + [sym_case_statement] = STATE(278), + [sym_while_statement] = STATE(278), + [sym_do_statement] = STATE(278), + [sym_for_statement] = STATE(278), + [sym_return_statement] = STATE(278), + [sym_break_statement] = STATE(278), + [sym_continue_statement] = STATE(278), + [sym_goto_statement] = STATE(278), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(1695), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [549] = { + [sym_attribute_declaration] = STATE(505), + [sym_compound_statement] = STATE(277), + [sym_attributed_statement] = STATE(277), + [sym_labeled_statement] = STATE(277), + [sym_expression_statement] = STATE(277), + [sym_if_statement] = STATE(277), + [sym_switch_statement] = STATE(277), + [sym_case_statement] = STATE(277), + [sym_while_statement] = STATE(277), + [sym_do_statement] = STATE(277), + [sym_for_statement] = STATE(277), + [sym_return_statement] = STATE(277), + [sym_break_statement] = STATE(277), + [sym_continue_statement] = STATE(277), + [sym_goto_statement] = STATE(277), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(1695), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [550] = { + [sym_attribute_declaration] = STATE(539), + [sym_compound_statement] = STATE(370), + [sym_attributed_statement] = STATE(370), + [sym_labeled_statement] = STATE(370), + [sym_expression_statement] = STATE(370), + [sym_if_statement] = STATE(370), + [sym_switch_statement] = STATE(370), + [sym_case_statement] = STATE(370), + [sym_while_statement] = STATE(370), + [sym_do_statement] = STATE(370), + [sym_for_statement] = STATE(370), + [sym_return_statement] = STATE(370), + [sym_break_statement] = STATE(370), + [sym_continue_statement] = STATE(370), + [sym_goto_statement] = STATE(370), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2191), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(1691), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(604), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_if] = ACTIONS(614), + [anon_sym_switch] = ACTIONS(616), + [anon_sym_case] = ACTIONS(618), + [anon_sym_default] = ACTIONS(620), + [anon_sym_while] = ACTIONS(622), + [anon_sym_do] = ACTIONS(624), + [anon_sym_for] = ACTIONS(626), + [anon_sym_return] = ACTIONS(628), + [anon_sym_break] = ACTIONS(630), + [anon_sym_continue] = ACTIONS(632), + [anon_sym_goto] = ACTIONS(634), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [551] = { + [sym_attribute_declaration] = STATE(505), + [sym_compound_statement] = STATE(262), + [sym_attributed_statement] = STATE(262), + [sym_labeled_statement] = STATE(262), + [sym_expression_statement] = STATE(262), + [sym_if_statement] = STATE(262), + [sym_switch_statement] = STATE(262), + [sym_case_statement] = STATE(262), + [sym_while_statement] = STATE(262), + [sym_do_statement] = STATE(262), + [sym_for_statement] = STATE(262), + [sym_return_statement] = STATE(262), + [sym_break_statement] = STATE(262), + [sym_continue_statement] = STATE(262), + [sym_goto_statement] = STATE(262), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(1695), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [552] = { + [sym_attribute_declaration] = STATE(505), + [sym_compound_statement] = STATE(260), + [sym_attributed_statement] = STATE(260), + [sym_labeled_statement] = STATE(260), + [sym_expression_statement] = STATE(260), + [sym_if_statement] = STATE(260), + [sym_switch_statement] = STATE(260), + [sym_case_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_do_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_return_statement] = STATE(260), + [sym_break_statement] = STATE(260), + [sym_continue_statement] = STATE(260), + [sym_goto_statement] = STATE(260), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(1695), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [553] = { + [sym_attribute_declaration] = STATE(505), + [sym_compound_statement] = STATE(299), + [sym_attributed_statement] = STATE(299), + [sym_labeled_statement] = STATE(299), + [sym_expression_statement] = STATE(299), + [sym_if_statement] = STATE(299), + [sym_switch_statement] = STATE(299), + [sym_case_statement] = STATE(299), + [sym_while_statement] = STATE(299), + [sym_do_statement] = STATE(299), + [sym_for_statement] = STATE(299), + [sym_return_statement] = STATE(299), + [sym_break_statement] = STATE(299), + [sym_continue_statement] = STATE(299), + [sym_goto_statement] = STATE(299), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(1695), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [554] = { + [sym_attribute_declaration] = STATE(594), + [sym_compound_statement] = STATE(285), + [sym_attributed_statement] = STATE(285), + [sym_labeled_statement] = STATE(285), + [sym_expression_statement] = STATE(285), + [sym_if_statement] = STATE(285), + [sym_switch_statement] = STATE(285), + [sym_case_statement] = STATE(285), + [sym_while_statement] = STATE(285), + [sym_do_statement] = STATE(285), + [sym_for_statement] = STATE(285), + [sym_return_statement] = STATE(285), + [sym_break_statement] = STATE(285), + [sym_continue_statement] = STATE(285), + [sym_goto_statement] = STATE(285), + [sym__expression] = STATE(1251), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2030), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(594), + [sym_identifier] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [555] = { + [sym_attribute_declaration] = STATE(555), + [sym_compound_statement] = STATE(395), + [sym_attributed_statement] = STATE(395), + [sym_labeled_statement] = STATE(395), + [sym_expression_statement] = STATE(395), + [sym_if_statement] = STATE(395), + [sym_switch_statement] = STATE(395), + [sym_case_statement] = STATE(395), + [sym_while_statement] = STATE(395), + [sym_do_statement] = STATE(395), + [sym_for_statement] = STATE(395), + [sym_return_statement] = STATE(395), + [sym_break_statement] = STATE(395), + [sym_continue_statement] = STATE(395), + [sym_goto_statement] = STATE(395), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(555), + [sym_identifier] = ACTIONS(1745), + [anon_sym_LPAREN2] = ACTIONS(1601), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1748), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1751), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_switch] = ACTIONS(1757), + [anon_sym_case] = ACTIONS(1760), + [anon_sym_default] = ACTIONS(1763), + [anon_sym_while] = ACTIONS(1766), + [anon_sym_do] = ACTIONS(1769), + [anon_sym_for] = ACTIONS(1772), + [anon_sym_return] = ACTIONS(1775), + [anon_sym_break] = ACTIONS(1778), + [anon_sym_continue] = ACTIONS(1781), + [anon_sym_goto] = ACTIONS(1784), + [anon_sym_DASH_DASH] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_sizeof] = ACTIONS(1658), + [anon_sym___alignof__] = ACTIONS(1661), + [anon_sym___alignof] = ACTIONS(1661), + [anon_sym__alignof] = ACTIONS(1661), + [anon_sym_alignof] = ACTIONS(1661), + [anon_sym__Alignof] = ACTIONS(1661), + [anon_sym_offsetof] = ACTIONS(1664), + [anon_sym___builtin_va_arg] = ACTIONS(1667), + [anon_sym__Generic] = ACTIONS(1670), + [anon_sym_asm] = ACTIONS(1673), + [anon_sym___asm__] = ACTIONS(1673), + [sym_number_literal] = ACTIONS(1676), + [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(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(1685), + [sym_false] = ACTIONS(1685), + [anon_sym_NULL] = ACTIONS(1688), + [anon_sym_nullptr] = ACTIONS(1688), + [sym_comment] = ACTIONS(3), + }, + [556] = { + [sym_attribute_declaration] = STATE(594), + [sym_compound_statement] = STATE(286), + [sym_attributed_statement] = STATE(286), + [sym_labeled_statement] = STATE(286), + [sym_expression_statement] = STATE(286), + [sym_if_statement] = STATE(286), + [sym_switch_statement] = STATE(286), + [sym_case_statement] = STATE(286), + [sym_while_statement] = STATE(286), + [sym_do_statement] = STATE(286), + [sym_for_statement] = STATE(286), + [sym_return_statement] = STATE(286), + [sym_break_statement] = STATE(286), + [sym_continue_statement] = STATE(286), + [sym_goto_statement] = STATE(286), + [sym__expression] = STATE(1251), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2030), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(594), + [sym_identifier] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [557] = { + [sym_attribute_declaration] = STATE(505), + [sym_compound_statement] = STATE(288), + [sym_attributed_statement] = STATE(288), + [sym_labeled_statement] = STATE(288), + [sym_expression_statement] = STATE(288), + [sym_if_statement] = STATE(288), + [sym_switch_statement] = STATE(288), + [sym_case_statement] = STATE(288), + [sym_while_statement] = STATE(288), + [sym_do_statement] = STATE(288), + [sym_for_statement] = STATE(288), + [sym_return_statement] = STATE(288), + [sym_break_statement] = STATE(288), + [sym_continue_statement] = STATE(288), + [sym_goto_statement] = STATE(288), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(1695), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [558] = { + [sym_attribute_declaration] = STATE(594), + [sym_compound_statement] = STATE(287), + [sym_attributed_statement] = STATE(287), + [sym_labeled_statement] = STATE(287), + [sym_expression_statement] = STATE(287), + [sym_if_statement] = STATE(287), + [sym_switch_statement] = STATE(287), + [sym_case_statement] = STATE(287), + [sym_while_statement] = STATE(287), + [sym_do_statement] = STATE(287), + [sym_for_statement] = STATE(287), + [sym_return_statement] = STATE(287), + [sym_break_statement] = STATE(287), + [sym_continue_statement] = STATE(287), + [sym_goto_statement] = STATE(287), + [sym__expression] = STATE(1251), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2030), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(594), + [sym_identifier] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [559] = { + [sym_attribute_declaration] = STATE(594), + [sym_compound_statement] = STATE(289), + [sym_attributed_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_switch_statement] = STATE(289), + [sym_case_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_goto_statement] = STATE(289), + [sym__expression] = STATE(1251), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2030), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(594), + [sym_identifier] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [560] = { + [sym_attribute_declaration] = STATE(583), + [sym_compound_statement] = STATE(180), + [sym_attributed_statement] = STATE(180), + [sym_labeled_statement] = STATE(180), + [sym_expression_statement] = STATE(180), + [sym_if_statement] = STATE(180), + [sym_switch_statement] = STATE(180), + [sym_case_statement] = STATE(180), + [sym_while_statement] = STATE(180), + [sym_do_statement] = STATE(180), + [sym_for_statement] = STATE(180), + [sym_return_statement] = STATE(180), + [sym_break_statement] = STATE(180), + [sym_continue_statement] = STATE(180), + [sym_goto_statement] = STATE(180), + [sym__expression] = STATE(1240), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2024), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(583), + [sym_identifier] = ACTIONS(1592), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_if] = ACTIONS(201), + [anon_sym_switch] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_default] = ACTIONS(207), + [anon_sym_while] = ACTIONS(209), + [anon_sym_do] = ACTIONS(211), + [anon_sym_for] = ACTIONS(213), + [anon_sym_return] = ACTIONS(215), + [anon_sym_break] = ACTIONS(217), + [anon_sym_continue] = ACTIONS(219), + [anon_sym_goto] = ACTIONS(221), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [561] = { + [sym_attribute_declaration] = STATE(561), + [sym_compound_statement] = STATE(395), + [sym_attributed_statement] = STATE(395), + [sym_labeled_statement] = STATE(395), + [sym_expression_statement] = STATE(395), + [sym_if_statement] = STATE(395), + [sym_switch_statement] = STATE(395), + [sym_case_statement] = STATE(395), + [sym_while_statement] = STATE(395), + [sym_do_statement] = STATE(395), + [sym_for_statement] = STATE(395), + [sym_return_statement] = STATE(395), + [sym_break_statement] = STATE(395), + [sym_continue_statement] = STATE(395), + [sym_goto_statement] = STATE(395), + [sym__expression] = STATE(1251), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2030), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(561), + [sym_identifier] = ACTIONS(1787), + [anon_sym_LPAREN2] = ACTIONS(1601), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1751), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_switch] = ACTIONS(1757), + [anon_sym_case] = ACTIONS(1796), + [anon_sym_default] = ACTIONS(1799), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_do] = ACTIONS(1769), + [anon_sym_for] = ACTIONS(1805), + [anon_sym_return] = ACTIONS(1775), + [anon_sym_break] = ACTIONS(1778), + [anon_sym_continue] = ACTIONS(1781), + [anon_sym_goto] = ACTIONS(1784), + [anon_sym_DASH_DASH] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_sizeof] = ACTIONS(1658), + [anon_sym___alignof__] = ACTIONS(1661), + [anon_sym___alignof] = ACTIONS(1661), + [anon_sym__alignof] = ACTIONS(1661), + [anon_sym_alignof] = ACTIONS(1661), + [anon_sym__Alignof] = ACTIONS(1661), + [anon_sym_offsetof] = ACTIONS(1664), + [anon_sym___builtin_va_arg] = ACTIONS(1667), + [anon_sym__Generic] = ACTIONS(1670), + [anon_sym_asm] = ACTIONS(1673), + [anon_sym___asm__] = ACTIONS(1673), + [sym_number_literal] = ACTIONS(1676), + [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(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(1685), + [sym_false] = ACTIONS(1685), + [anon_sym_NULL] = ACTIONS(1688), + [anon_sym_nullptr] = ACTIONS(1688), + [sym_comment] = ACTIONS(3), + }, + [562] = { + [sym_attribute_declaration] = STATE(539), + [sym_compound_statement] = STATE(364), + [sym_attributed_statement] = STATE(364), + [sym_labeled_statement] = STATE(364), + [sym_expression_statement] = STATE(364), + [sym_if_statement] = STATE(364), + [sym_switch_statement] = STATE(364), + [sym_case_statement] = STATE(364), + [sym_while_statement] = STATE(364), + [sym_do_statement] = STATE(364), + [sym_for_statement] = STATE(364), + [sym_return_statement] = STATE(364), + [sym_break_statement] = STATE(364), + [sym_continue_statement] = STATE(364), + [sym_goto_statement] = STATE(364), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2191), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(1691), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(604), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_if] = ACTIONS(614), + [anon_sym_switch] = ACTIONS(616), + [anon_sym_case] = ACTIONS(618), + [anon_sym_default] = ACTIONS(620), + [anon_sym_while] = ACTIONS(622), + [anon_sym_do] = ACTIONS(624), + [anon_sym_for] = ACTIONS(626), + [anon_sym_return] = ACTIONS(628), + [anon_sym_break] = ACTIONS(630), + [anon_sym_continue] = ACTIONS(632), + [anon_sym_goto] = ACTIONS(634), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [563] = { + [sym_attribute_declaration] = STATE(505), + [sym_compound_statement] = STATE(265), + [sym_attributed_statement] = STATE(265), + [sym_labeled_statement] = STATE(265), + [sym_expression_statement] = STATE(265), + [sym_if_statement] = STATE(265), + [sym_switch_statement] = STATE(265), + [sym_case_statement] = STATE(265), + [sym_while_statement] = STATE(265), + [sym_do_statement] = STATE(265), + [sym_for_statement] = STATE(265), + [sym_return_statement] = STATE(265), + [sym_break_statement] = STATE(265), + [sym_continue_statement] = STATE(265), + [sym_goto_statement] = STATE(265), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(1695), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [564] = { + [sym_attribute_declaration] = STATE(560), + [sym_compound_statement] = STATE(208), + [sym_attributed_statement] = STATE(208), + [sym_labeled_statement] = STATE(208), + [sym_expression_statement] = STATE(208), + [sym_if_statement] = STATE(208), + [sym_switch_statement] = STATE(208), + [sym_case_statement] = STATE(208), + [sym_while_statement] = STATE(208), + [sym_do_statement] = STATE(208), + [sym_for_statement] = STATE(208), + [sym_return_statement] = STATE(208), + [sym_break_statement] = STATE(208), + [sym_continue_statement] = STATE(208), + [sym_goto_statement] = STATE(208), + [sym__expression] = STATE(1240), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2024), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(560), + [sym_identifier] = ACTIONS(1592), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_if] = ACTIONS(201), + [anon_sym_switch] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_default] = ACTIONS(207), + [anon_sym_while] = ACTIONS(209), + [anon_sym_do] = ACTIONS(211), + [anon_sym_for] = ACTIONS(213), + [anon_sym_return] = ACTIONS(215), + [anon_sym_break] = ACTIONS(217), + [anon_sym_continue] = ACTIONS(219), + [anon_sym_goto] = ACTIONS(221), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [565] = { + [sym_attribute_declaration] = STATE(505), + [sym_compound_statement] = STATE(618), + [sym_attributed_statement] = STATE(618), + [sym_labeled_statement] = STATE(618), + [sym_expression_statement] = STATE(618), + [sym_if_statement] = STATE(618), + [sym_switch_statement] = STATE(618), + [sym_case_statement] = STATE(618), + [sym_while_statement] = STATE(618), + [sym_do_statement] = STATE(618), + [sym_for_statement] = STATE(618), + [sym_return_statement] = STATE(618), + [sym_break_statement] = STATE(618), + [sym_continue_statement] = STATE(618), + [sym_goto_statement] = STATE(618), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(1695), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [566] = { + [sym_attribute_declaration] = STATE(539), + [sym_compound_statement] = STATE(366), + [sym_attributed_statement] = STATE(366), + [sym_labeled_statement] = STATE(366), + [sym_expression_statement] = STATE(366), + [sym_if_statement] = STATE(366), + [sym_switch_statement] = STATE(366), + [sym_case_statement] = STATE(366), + [sym_while_statement] = STATE(366), + [sym_do_statement] = STATE(366), + [sym_for_statement] = STATE(366), + [sym_return_statement] = STATE(366), + [sym_break_statement] = STATE(366), + [sym_continue_statement] = STATE(366), + [sym_goto_statement] = STATE(366), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2191), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(1691), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(604), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_if] = ACTIONS(614), + [anon_sym_switch] = ACTIONS(616), + [anon_sym_case] = ACTIONS(618), + [anon_sym_default] = ACTIONS(620), + [anon_sym_while] = ACTIONS(622), + [anon_sym_do] = ACTIONS(624), + [anon_sym_for] = ACTIONS(626), + [anon_sym_return] = ACTIONS(628), + [anon_sym_break] = ACTIONS(630), + [anon_sym_continue] = ACTIONS(632), + [anon_sym_goto] = ACTIONS(634), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [567] = { + [sym_attribute_declaration] = STATE(508), + [sym_compound_statement] = STATE(118), + [sym_attributed_statement] = STATE(118), + [sym_labeled_statement] = STATE(118), + [sym_expression_statement] = STATE(118), + [sym_if_statement] = STATE(118), + [sym_switch_statement] = STATE(118), + [sym_case_statement] = STATE(118), + [sym_while_statement] = STATE(118), + [sym_do_statement] = STATE(118), + [sym_for_statement] = STATE(118), + [sym_return_statement] = STATE(118), + [sym_break_statement] = STATE(118), + [sym_continue_statement] = STATE(118), + [sym_goto_statement] = STATE(118), + [sym__expression] = STATE(1198), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2197), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(508), + [sym_identifier] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [568] = { + [sym_attribute_declaration] = STATE(508), + [sym_compound_statement] = STATE(119), + [sym_attributed_statement] = STATE(119), + [sym_labeled_statement] = STATE(119), + [sym_expression_statement] = STATE(119), + [sym_if_statement] = STATE(119), + [sym_switch_statement] = STATE(119), + [sym_case_statement] = STATE(119), + [sym_while_statement] = STATE(119), + [sym_do_statement] = STATE(119), + [sym_for_statement] = STATE(119), + [sym_return_statement] = STATE(119), + [sym_break_statement] = STATE(119), + [sym_continue_statement] = STATE(119), + [sym_goto_statement] = STATE(119), + [sym__expression] = STATE(1198), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2197), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(508), + [sym_identifier] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [569] = { + [sym_attribute_declaration] = STATE(539), + [sym_compound_statement] = STATE(367), + [sym_attributed_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_expression_statement] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_case_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_goto_statement] = STATE(367), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2191), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(1691), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(604), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_if] = ACTIONS(614), + [anon_sym_switch] = ACTIONS(616), + [anon_sym_case] = ACTIONS(618), + [anon_sym_default] = ACTIONS(620), + [anon_sym_while] = ACTIONS(622), + [anon_sym_do] = ACTIONS(624), + [anon_sym_for] = ACTIONS(626), + [anon_sym_return] = ACTIONS(628), + [anon_sym_break] = ACTIONS(630), + [anon_sym_continue] = ACTIONS(632), + [anon_sym_goto] = ACTIONS(634), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [570] = { + [sym_attribute_declaration] = STATE(505), + [sym_compound_statement] = STATE(2207), + [sym_attributed_statement] = STATE(2207), + [sym_labeled_statement] = STATE(2207), + [sym_expression_statement] = STATE(2207), + [sym_if_statement] = STATE(2207), + [sym_switch_statement] = STATE(2207), + [sym_case_statement] = STATE(2207), + [sym_while_statement] = STATE(2207), + [sym_do_statement] = STATE(2207), + [sym_for_statement] = STATE(2207), + [sym_return_statement] = STATE(2207), + [sym_break_statement] = STATE(2207), + [sym_continue_statement] = STATE(2207), + [sym_goto_statement] = STATE(2207), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(1695), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [571] = { + [sym_attribute_declaration] = STATE(508), + [sym_compound_statement] = STATE(131), + [sym_attributed_statement] = STATE(131), + [sym_labeled_statement] = STATE(131), + [sym_expression_statement] = STATE(131), + [sym_if_statement] = STATE(131), + [sym_switch_statement] = STATE(131), + [sym_case_statement] = STATE(131), + [sym_while_statement] = STATE(131), + [sym_do_statement] = STATE(131), + [sym_for_statement] = STATE(131), + [sym_return_statement] = STATE(131), + [sym_break_statement] = STATE(131), + [sym_continue_statement] = STATE(131), + [sym_goto_statement] = STATE(131), + [sym__expression] = STATE(1198), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2197), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(508), + [sym_identifier] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [572] = { + [sym_attribute_declaration] = STATE(508), + [sym_compound_statement] = STATE(133), + [sym_attributed_statement] = STATE(133), + [sym_labeled_statement] = STATE(133), + [sym_expression_statement] = STATE(133), + [sym_if_statement] = STATE(133), + [sym_switch_statement] = STATE(133), + [sym_case_statement] = STATE(133), + [sym_while_statement] = STATE(133), + [sym_do_statement] = STATE(133), + [sym_for_statement] = STATE(133), + [sym_return_statement] = STATE(133), + [sym_break_statement] = STATE(133), + [sym_continue_statement] = STATE(133), + [sym_goto_statement] = STATE(133), + [sym__expression] = STATE(1198), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2197), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(508), + [sym_identifier] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [573] = { + [sym_attribute_declaration] = STATE(594), + [sym_compound_statement] = STATE(288), + [sym_attributed_statement] = STATE(288), + [sym_labeled_statement] = STATE(288), + [sym_expression_statement] = STATE(288), + [sym_if_statement] = STATE(288), + [sym_switch_statement] = STATE(288), + [sym_case_statement] = STATE(288), + [sym_while_statement] = STATE(288), + [sym_do_statement] = STATE(288), + [sym_for_statement] = STATE(288), + [sym_return_statement] = STATE(288), + [sym_break_statement] = STATE(288), + [sym_continue_statement] = STATE(288), + [sym_goto_statement] = STATE(288), + [sym__expression] = STATE(1251), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2030), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(594), + [sym_identifier] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [574] = { + [sym_attribute_declaration] = STATE(508), + [sym_compound_statement] = STATE(134), + [sym_attributed_statement] = STATE(134), + [sym_labeled_statement] = STATE(134), + [sym_expression_statement] = STATE(134), + [sym_if_statement] = STATE(134), + [sym_switch_statement] = STATE(134), + [sym_case_statement] = STATE(134), + [sym_while_statement] = STATE(134), + [sym_do_statement] = STATE(134), + [sym_for_statement] = STATE(134), + [sym_return_statement] = STATE(134), + [sym_break_statement] = STATE(134), + [sym_continue_statement] = STATE(134), + [sym_goto_statement] = STATE(134), + [sym__expression] = STATE(1198), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2197), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(508), + [sym_identifier] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [575] = { + [sym_attribute_declaration] = STATE(508), + [sym_compound_statement] = STATE(135), + [sym_attributed_statement] = STATE(135), + [sym_labeled_statement] = STATE(135), + [sym_expression_statement] = STATE(135), + [sym_if_statement] = STATE(135), + [sym_switch_statement] = STATE(135), + [sym_case_statement] = STATE(135), + [sym_while_statement] = STATE(135), + [sym_do_statement] = STATE(135), + [sym_for_statement] = STATE(135), + [sym_return_statement] = STATE(135), + [sym_break_statement] = STATE(135), + [sym_continue_statement] = STATE(135), + [sym_goto_statement] = STATE(135), + [sym__expression] = STATE(1198), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2197), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(508), + [sym_identifier] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [576] = { + [sym_attribute_declaration] = STATE(594), + [sym_compound_statement] = STATE(265), + [sym_attributed_statement] = STATE(265), + [sym_labeled_statement] = STATE(265), + [sym_expression_statement] = STATE(265), + [sym_if_statement] = STATE(265), + [sym_switch_statement] = STATE(265), + [sym_case_statement] = STATE(265), + [sym_while_statement] = STATE(265), + [sym_do_statement] = STATE(265), + [sym_for_statement] = STATE(265), + [sym_return_statement] = STATE(265), + [sym_break_statement] = STATE(265), + [sym_continue_statement] = STATE(265), + [sym_goto_statement] = STATE(265), + [sym__expression] = STATE(1251), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2030), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(594), + [sym_identifier] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [577] = { + [sym_attribute_declaration] = STATE(594), + [sym_compound_statement] = STATE(232), + [sym_attributed_statement] = STATE(232), + [sym_labeled_statement] = STATE(232), + [sym_expression_statement] = STATE(232), + [sym_if_statement] = STATE(232), + [sym_switch_statement] = STATE(232), + [sym_case_statement] = STATE(232), + [sym_while_statement] = STATE(232), + [sym_do_statement] = STATE(232), + [sym_for_statement] = STATE(232), + [sym_return_statement] = STATE(232), + [sym_break_statement] = STATE(232), + [sym_continue_statement] = STATE(232), + [sym_goto_statement] = STATE(232), + [sym__expression] = STATE(1251), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2030), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(594), + [sym_identifier] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [578] = { + [sym_attribute_declaration] = STATE(578), + [sym_compound_statement] = STATE(302), + [sym_attributed_statement] = STATE(302), + [sym_labeled_statement] = STATE(302), + [sym_expression_statement] = STATE(302), + [sym_if_statement] = STATE(302), + [sym_switch_statement] = STATE(302), + [sym_case_statement] = STATE(302), + [sym_while_statement] = STATE(302), + [sym_do_statement] = STATE(302), + [sym_for_statement] = STATE(302), + [sym_return_statement] = STATE(302), + [sym_break_statement] = STATE(302), + [sym_continue_statement] = STATE(302), + [sym_goto_statement] = STATE(302), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(578), + [sym_identifier] = ACTIONS(1808), + [anon_sym_LPAREN2] = ACTIONS(1601), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1748), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1811), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_switch] = ACTIONS(1817), + [anon_sym_case] = ACTIONS(1820), + [anon_sym_default] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(1826), + [anon_sym_do] = ACTIONS(1829), + [anon_sym_for] = ACTIONS(1832), + [anon_sym_return] = ACTIONS(1835), + [anon_sym_break] = ACTIONS(1838), + [anon_sym_continue] = ACTIONS(1841), + [anon_sym_goto] = ACTIONS(1844), + [anon_sym_DASH_DASH] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_sizeof] = ACTIONS(1658), + [anon_sym___alignof__] = ACTIONS(1661), + [anon_sym___alignof] = ACTIONS(1661), + [anon_sym__alignof] = ACTIONS(1661), + [anon_sym_alignof] = ACTIONS(1661), + [anon_sym__Alignof] = ACTIONS(1661), + [anon_sym_offsetof] = ACTIONS(1664), + [anon_sym___builtin_va_arg] = ACTIONS(1667), + [anon_sym__Generic] = ACTIONS(1670), + [anon_sym_asm] = ACTIONS(1673), + [anon_sym___asm__] = ACTIONS(1673), + [sym_number_literal] = ACTIONS(1676), + [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(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(1685), + [sym_false] = ACTIONS(1685), + [anon_sym_NULL] = ACTIONS(1688), + [anon_sym_nullptr] = ACTIONS(1688), + [sym_comment] = ACTIONS(3), + }, + [579] = { + [sym_attribute_declaration] = STATE(508), + [sym_compound_statement] = STATE(136), + [sym_attributed_statement] = STATE(136), + [sym_labeled_statement] = STATE(136), + [sym_expression_statement] = STATE(136), + [sym_if_statement] = STATE(136), + [sym_switch_statement] = STATE(136), + [sym_case_statement] = STATE(136), + [sym_while_statement] = STATE(136), + [sym_do_statement] = STATE(136), + [sym_for_statement] = STATE(136), + [sym_return_statement] = STATE(136), + [sym_break_statement] = STATE(136), + [sym_continue_statement] = STATE(136), + [sym_goto_statement] = STATE(136), + [sym__expression] = STATE(1198), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2197), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(508), + [sym_identifier] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [580] = { + [sym_attribute_declaration] = STATE(503), + [sym_compound_statement] = STATE(368), + [sym_attributed_statement] = STATE(368), + [sym_labeled_statement] = STATE(368), + [sym_expression_statement] = STATE(368), + [sym_if_statement] = STATE(368), + [sym_switch_statement] = STATE(368), + [sym_case_statement] = STATE(368), + [sym_while_statement] = STATE(368), + [sym_do_statement] = STATE(368), + [sym_for_statement] = STATE(368), + [sym_return_statement] = STATE(368), + [sym_break_statement] = STATE(368), + [sym_continue_statement] = STATE(368), + [sym_goto_statement] = STATE(368), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(1596), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [581] = { + [sym_attribute_declaration] = STATE(503), + [sym_compound_statement] = STATE(310), + [sym_attributed_statement] = STATE(310), + [sym_labeled_statement] = STATE(310), + [sym_expression_statement] = STATE(310), + [sym_if_statement] = STATE(310), + [sym_switch_statement] = STATE(310), + [sym_case_statement] = STATE(310), + [sym_while_statement] = STATE(310), + [sym_do_statement] = STATE(310), + [sym_for_statement] = STATE(310), + [sym_return_statement] = STATE(310), + [sym_break_statement] = STATE(310), + [sym_continue_statement] = STATE(310), + [sym_goto_statement] = STATE(310), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(1596), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [582] = { + [sym_attribute_declaration] = STATE(594), + [sym_compound_statement] = STATE(292), + [sym_attributed_statement] = STATE(292), + [sym_labeled_statement] = STATE(292), + [sym_expression_statement] = STATE(292), + [sym_if_statement] = STATE(292), + [sym_switch_statement] = STATE(292), + [sym_case_statement] = STATE(292), + [sym_while_statement] = STATE(292), + [sym_do_statement] = STATE(292), + [sym_for_statement] = STATE(292), + [sym_return_statement] = STATE(292), + [sym_break_statement] = STATE(292), + [sym_continue_statement] = STATE(292), + [sym_goto_statement] = STATE(292), + [sym__expression] = STATE(1251), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2030), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(594), + [sym_identifier] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [583] = { + [sym_attribute_declaration] = STATE(583), + [sym_compound_statement] = STATE(180), + [sym_attributed_statement] = STATE(180), + [sym_labeled_statement] = STATE(180), + [sym_expression_statement] = STATE(180), + [sym_if_statement] = STATE(180), + [sym_switch_statement] = STATE(180), + [sym_case_statement] = STATE(180), + [sym_while_statement] = STATE(180), + [sym_do_statement] = STATE(180), + [sym_for_statement] = STATE(180), + [sym_return_statement] = STATE(180), + [sym_break_statement] = STATE(180), + [sym_continue_statement] = STATE(180), + [sym_goto_statement] = STATE(180), + [sym__expression] = STATE(1240), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2024), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(583), + [sym_identifier] = ACTIONS(1847), + [anon_sym_LPAREN2] = ACTIONS(1601), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1853), + [anon_sym_if] = ACTIONS(1856), + [anon_sym_switch] = ACTIONS(1859), + [anon_sym_case] = ACTIONS(1862), + [anon_sym_default] = ACTIONS(1865), + [anon_sym_while] = ACTIONS(1868), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_for] = ACTIONS(1874), + [anon_sym_return] = ACTIONS(1877), + [anon_sym_break] = ACTIONS(1880), + [anon_sym_continue] = ACTIONS(1883), + [anon_sym_goto] = ACTIONS(1886), + [anon_sym_DASH_DASH] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_sizeof] = ACTIONS(1658), + [anon_sym___alignof__] = ACTIONS(1661), + [anon_sym___alignof] = ACTIONS(1661), + [anon_sym__alignof] = ACTIONS(1661), + [anon_sym_alignof] = ACTIONS(1661), + [anon_sym__Alignof] = ACTIONS(1661), + [anon_sym_offsetof] = ACTIONS(1664), + [anon_sym___builtin_va_arg] = ACTIONS(1667), + [anon_sym__Generic] = ACTIONS(1670), + [anon_sym_asm] = ACTIONS(1673), + [anon_sym___asm__] = ACTIONS(1673), + [sym_number_literal] = ACTIONS(1676), + [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(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(1685), + [sym_false] = ACTIONS(1685), + [anon_sym_NULL] = ACTIONS(1688), + [anon_sym_nullptr] = ACTIONS(1688), + [sym_comment] = ACTIONS(3), + }, + [584] = { + [sym_attribute_declaration] = STATE(508), + [sym_compound_statement] = STATE(145), + [sym_attributed_statement] = STATE(145), + [sym_labeled_statement] = STATE(145), + [sym_expression_statement] = STATE(145), + [sym_if_statement] = STATE(145), + [sym_switch_statement] = STATE(145), + [sym_case_statement] = STATE(145), + [sym_while_statement] = STATE(145), + [sym_do_statement] = STATE(145), + [sym_for_statement] = STATE(145), + [sym_return_statement] = STATE(145), + [sym_break_statement] = STATE(145), + [sym_continue_statement] = STATE(145), + [sym_goto_statement] = STATE(145), + [sym__expression] = STATE(1198), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2197), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(508), + [sym_identifier] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [585] = { + [sym_attribute_declaration] = STATE(594), + [sym_compound_statement] = STATE(260), + [sym_attributed_statement] = STATE(260), + [sym_labeled_statement] = STATE(260), + [sym_expression_statement] = STATE(260), + [sym_if_statement] = STATE(260), + [sym_switch_statement] = STATE(260), + [sym_case_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_do_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_return_statement] = STATE(260), + [sym_break_statement] = STATE(260), + [sym_continue_statement] = STATE(260), + [sym_goto_statement] = STATE(260), + [sym__expression] = STATE(1251), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2030), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(594), + [sym_identifier] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [586] = { + [sym_attribute_declaration] = STATE(508), + [sym_compound_statement] = STATE(144), + [sym_attributed_statement] = STATE(144), + [sym_labeled_statement] = STATE(144), + [sym_expression_statement] = STATE(144), + [sym_if_statement] = STATE(144), + [sym_switch_statement] = STATE(144), + [sym_case_statement] = STATE(144), + [sym_while_statement] = STATE(144), + [sym_do_statement] = STATE(144), + [sym_for_statement] = STATE(144), + [sym_return_statement] = STATE(144), + [sym_break_statement] = STATE(144), + [sym_continue_statement] = STATE(144), + [sym_goto_statement] = STATE(144), + [sym__expression] = STATE(1198), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2197), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(508), + [sym_identifier] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [587] = { + [sym_attribute_declaration] = STATE(560), + [sym_compound_statement] = STATE(190), + [sym_attributed_statement] = STATE(190), + [sym_labeled_statement] = STATE(190), + [sym_expression_statement] = STATE(190), + [sym_if_statement] = STATE(190), + [sym_switch_statement] = STATE(190), + [sym_case_statement] = STATE(190), + [sym_while_statement] = STATE(190), + [sym_do_statement] = STATE(190), + [sym_for_statement] = STATE(190), + [sym_return_statement] = STATE(190), + [sym_break_statement] = STATE(190), + [sym_continue_statement] = STATE(190), + [sym_goto_statement] = STATE(190), + [sym__expression] = STATE(1240), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2024), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(560), + [sym_identifier] = ACTIONS(1592), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_if] = ACTIONS(201), + [anon_sym_switch] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_default] = ACTIONS(207), + [anon_sym_while] = ACTIONS(209), + [anon_sym_do] = ACTIONS(211), + [anon_sym_for] = ACTIONS(213), + [anon_sym_return] = ACTIONS(215), + [anon_sym_break] = ACTIONS(217), + [anon_sym_continue] = ACTIONS(219), + [anon_sym_goto] = ACTIONS(221), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [588] = { + [sym_attribute_declaration] = STATE(503), + [sym_compound_statement] = STATE(306), + [sym_attributed_statement] = STATE(306), + [sym_labeled_statement] = STATE(306), + [sym_expression_statement] = STATE(306), + [sym_if_statement] = STATE(306), + [sym_switch_statement] = STATE(306), + [sym_case_statement] = STATE(306), + [sym_while_statement] = STATE(306), + [sym_do_statement] = STATE(306), + [sym_for_statement] = STATE(306), + [sym_return_statement] = STATE(306), + [sym_break_statement] = STATE(306), + [sym_continue_statement] = STATE(306), + [sym_goto_statement] = STATE(306), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(1596), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [589] = { + [sym_attribute_declaration] = STATE(594), + [sym_compound_statement] = STATE(262), + [sym_attributed_statement] = STATE(262), + [sym_labeled_statement] = STATE(262), + [sym_expression_statement] = STATE(262), + [sym_if_statement] = STATE(262), + [sym_switch_statement] = STATE(262), + [sym_case_statement] = STATE(262), + [sym_while_statement] = STATE(262), + [sym_do_statement] = STATE(262), + [sym_for_statement] = STATE(262), + [sym_return_statement] = STATE(262), + [sym_break_statement] = STATE(262), + [sym_continue_statement] = STATE(262), + [sym_goto_statement] = STATE(262), + [sym__expression] = STATE(1251), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2030), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(594), + [sym_identifier] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [590] = { + [sym_attribute_declaration] = STATE(503), + [sym_compound_statement] = STATE(233), + [sym_attributed_statement] = STATE(233), + [sym_labeled_statement] = STATE(233), + [sym_expression_statement] = STATE(233), + [sym_if_statement] = STATE(233), + [sym_switch_statement] = STATE(233), + [sym_case_statement] = STATE(233), + [sym_while_statement] = STATE(233), + [sym_do_statement] = STATE(233), + [sym_for_statement] = STATE(233), + [sym_return_statement] = STATE(233), + [sym_break_statement] = STATE(233), + [sym_continue_statement] = STATE(233), + [sym_goto_statement] = STATE(233), + [sym__expression] = STATE(1187), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2199), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(1596), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_if] = ACTIONS(554), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_case] = ACTIONS(558), + [anon_sym_default] = ACTIONS(560), + [anon_sym_while] = ACTIONS(562), + [anon_sym_do] = ACTIONS(564), + [anon_sym_for] = ACTIONS(566), + [anon_sym_return] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_goto] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [591] = { + [sym_attribute_declaration] = STATE(508), + [sym_compound_statement] = STATE(143), + [sym_attributed_statement] = STATE(143), + [sym_labeled_statement] = STATE(143), + [sym_expression_statement] = STATE(143), + [sym_if_statement] = STATE(143), + [sym_switch_statement] = STATE(143), + [sym_case_statement] = STATE(143), + [sym_while_statement] = STATE(143), + [sym_do_statement] = STATE(143), + [sym_for_statement] = STATE(143), + [sym_return_statement] = STATE(143), + [sym_break_statement] = STATE(143), + [sym_continue_statement] = STATE(143), + [sym_goto_statement] = STATE(143), + [sym__expression] = STATE(1198), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2197), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(508), + [sym_identifier] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [592] = { + [sym_attribute_declaration] = STATE(508), + [sym_compound_statement] = STATE(142), + [sym_attributed_statement] = STATE(142), + [sym_labeled_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym_if_statement] = STATE(142), + [sym_switch_statement] = STATE(142), + [sym_case_statement] = STATE(142), + [sym_while_statement] = STATE(142), + [sym_do_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym_return_statement] = STATE(142), + [sym_break_statement] = STATE(142), + [sym_continue_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym__expression] = STATE(1198), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2197), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(508), + [sym_identifier] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [593] = { + [sym_attribute_declaration] = STATE(508), + [sym_compound_statement] = STATE(141), + [sym_attributed_statement] = STATE(141), + [sym_labeled_statement] = STATE(141), + [sym_expression_statement] = STATE(141), + [sym_if_statement] = STATE(141), + [sym_switch_statement] = STATE(141), + [sym_case_statement] = STATE(141), + [sym_while_statement] = STATE(141), + [sym_do_statement] = STATE(141), + [sym_for_statement] = STATE(141), + [sym_return_statement] = STATE(141), + [sym_break_statement] = STATE(141), + [sym_continue_statement] = STATE(141), + [sym_goto_statement] = STATE(141), + [sym__expression] = STATE(1198), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2197), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(508), + [sym_identifier] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_case] = ACTIONS(137), + [anon_sym_default] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_do] = ACTIONS(143), + [anon_sym_for] = ACTIONS(145), + [anon_sym_return] = ACTIONS(147), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_goto] = ACTIONS(153), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [594] = { + [sym_attribute_declaration] = STATE(561), + [sym_compound_statement] = STATE(395), + [sym_attributed_statement] = STATE(395), + [sym_labeled_statement] = STATE(395), + [sym_expression_statement] = STATE(395), + [sym_if_statement] = STATE(395), + [sym_switch_statement] = STATE(395), + [sym_case_statement] = STATE(395), + [sym_while_statement] = STATE(395), + [sym_do_statement] = STATE(395), + [sym_for_statement] = STATE(395), + [sym_return_statement] = STATE(395), + [sym_break_statement] = STATE(395), + [sym_continue_statement] = STATE(395), + [sym_goto_statement] = STATE(395), + [sym__expression] = STATE(1251), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2030), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(561), + [sym_identifier] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [595] = { + [sym_attribute_declaration] = STATE(539), + [sym_compound_statement] = STATE(405), + [sym_attributed_statement] = STATE(405), + [sym_labeled_statement] = STATE(405), + [sym_expression_statement] = STATE(405), + [sym_if_statement] = STATE(405), + [sym_switch_statement] = STATE(405), + [sym_case_statement] = STATE(405), + [sym_while_statement] = STATE(405), + [sym_do_statement] = STATE(405), + [sym_for_statement] = STATE(405), + [sym_return_statement] = STATE(405), + [sym_break_statement] = STATE(405), + [sym_continue_statement] = STATE(405), + [sym_goto_statement] = STATE(405), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2191), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(1691), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(604), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_if] = ACTIONS(614), + [anon_sym_switch] = ACTIONS(616), + [anon_sym_case] = ACTIONS(618), + [anon_sym_default] = ACTIONS(620), + [anon_sym_while] = ACTIONS(622), + [anon_sym_do] = ACTIONS(624), + [anon_sym_for] = ACTIONS(626), + [anon_sym_return] = ACTIONS(628), + [anon_sym_break] = ACTIONS(630), + [anon_sym_continue] = ACTIONS(632), + [anon_sym_goto] = ACTIONS(634), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [596] = { + [sym_attribute_declaration] = STATE(560), + [sym_compound_statement] = STATE(187), + [sym_attributed_statement] = STATE(187), + [sym_labeled_statement] = STATE(187), + [sym_expression_statement] = STATE(187), + [sym_if_statement] = STATE(187), + [sym_switch_statement] = STATE(187), + [sym_case_statement] = STATE(187), + [sym_while_statement] = STATE(187), + [sym_do_statement] = STATE(187), + [sym_for_statement] = STATE(187), + [sym_return_statement] = STATE(187), + [sym_break_statement] = STATE(187), + [sym_continue_statement] = STATE(187), + [sym_goto_statement] = STATE(187), + [sym__expression] = STATE(1240), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2024), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(560), + [sym_identifier] = ACTIONS(1592), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_if] = ACTIONS(201), + [anon_sym_switch] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_default] = ACTIONS(207), + [anon_sym_while] = ACTIONS(209), + [anon_sym_do] = ACTIONS(211), + [anon_sym_for] = ACTIONS(213), + [anon_sym_return] = ACTIONS(215), + [anon_sym_break] = ACTIONS(217), + [anon_sym_continue] = ACTIONS(219), + [anon_sym_goto] = ACTIONS(221), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [597] = { + [sym_attribute_declaration] = STATE(539), + [sym_compound_statement] = STATE(393), + [sym_attributed_statement] = STATE(393), + [sym_labeled_statement] = STATE(393), + [sym_expression_statement] = STATE(393), + [sym_if_statement] = STATE(393), + [sym_switch_statement] = STATE(393), + [sym_case_statement] = STATE(393), + [sym_while_statement] = STATE(393), + [sym_do_statement] = STATE(393), + [sym_for_statement] = STATE(393), + [sym_return_statement] = STATE(393), + [sym_break_statement] = STATE(393), + [sym_continue_statement] = STATE(393), + [sym_goto_statement] = STATE(393), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2191), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(1691), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(604), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_if] = ACTIONS(614), + [anon_sym_switch] = ACTIONS(616), + [anon_sym_case] = ACTIONS(618), + [anon_sym_default] = ACTIONS(620), + [anon_sym_while] = ACTIONS(622), + [anon_sym_do] = ACTIONS(624), + [anon_sym_for] = ACTIONS(626), + [anon_sym_return] = ACTIONS(628), + [anon_sym_break] = ACTIONS(630), + [anon_sym_continue] = ACTIONS(632), + [anon_sym_goto] = ACTIONS(634), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [598] = { + [sym_attribute_declaration] = STATE(560), + [sym_compound_statement] = STATE(155), + [sym_attributed_statement] = STATE(155), + [sym_labeled_statement] = STATE(155), + [sym_expression_statement] = STATE(155), + [sym_if_statement] = STATE(155), + [sym_switch_statement] = STATE(155), + [sym_case_statement] = STATE(155), + [sym_while_statement] = STATE(155), + [sym_do_statement] = STATE(155), + [sym_for_statement] = STATE(155), + [sym_return_statement] = STATE(155), + [sym_break_statement] = STATE(155), + [sym_continue_statement] = STATE(155), + [sym_goto_statement] = STATE(155), + [sym__expression] = STATE(1240), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2024), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(560), + [sym_identifier] = ACTIONS(1592), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_if] = ACTIONS(201), + [anon_sym_switch] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_default] = ACTIONS(207), + [anon_sym_while] = ACTIONS(209), + [anon_sym_do] = ACTIONS(211), + [anon_sym_for] = ACTIONS(213), + [anon_sym_return] = ACTIONS(215), + [anon_sym_break] = ACTIONS(217), + [anon_sym_continue] = ACTIONS(219), + [anon_sym_goto] = ACTIONS(221), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [599] = { + [sym_attribute_declaration] = STATE(539), + [sym_compound_statement] = STATE(392), + [sym_attributed_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_expression_statement] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_goto_statement] = STATE(392), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2191), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(1691), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(604), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_if] = ACTIONS(614), + [anon_sym_switch] = ACTIONS(616), + [anon_sym_case] = ACTIONS(618), + [anon_sym_default] = ACTIONS(620), + [anon_sym_while] = ACTIONS(622), + [anon_sym_do] = ACTIONS(624), + [anon_sym_for] = ACTIONS(626), + [anon_sym_return] = ACTIONS(628), + [anon_sym_break] = ACTIONS(630), + [anon_sym_continue] = ACTIONS(632), + [anon_sym_goto] = ACTIONS(634), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [600] = { + [sym_attribute_declaration] = STATE(539), + [sym_compound_statement] = STATE(382), + [sym_attributed_statement] = STATE(382), + [sym_labeled_statement] = STATE(382), + [sym_expression_statement] = STATE(382), + [sym_if_statement] = STATE(382), + [sym_switch_statement] = STATE(382), + [sym_case_statement] = STATE(382), + [sym_while_statement] = STATE(382), + [sym_do_statement] = STATE(382), + [sym_for_statement] = STATE(382), + [sym_return_statement] = STATE(382), + [sym_break_statement] = STATE(382), + [sym_continue_statement] = STATE(382), + [sym_goto_statement] = STATE(382), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2191), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(1691), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(604), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_if] = ACTIONS(614), + [anon_sym_switch] = ACTIONS(616), + [anon_sym_case] = ACTIONS(618), + [anon_sym_default] = ACTIONS(620), + [anon_sym_while] = ACTIONS(622), + [anon_sym_do] = ACTIONS(624), + [anon_sym_for] = ACTIONS(626), + [anon_sym_return] = ACTIONS(628), + [anon_sym_break] = ACTIONS(630), + [anon_sym_continue] = ACTIONS(632), + [anon_sym_goto] = ACTIONS(634), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [601] = { + [sym_attribute_declaration] = STATE(539), + [sym_compound_statement] = STATE(381), + [sym_attributed_statement] = STATE(381), + [sym_labeled_statement] = STATE(381), + [sym_expression_statement] = STATE(381), + [sym_if_statement] = STATE(381), + [sym_switch_statement] = STATE(381), + [sym_case_statement] = STATE(381), + [sym_while_statement] = STATE(381), + [sym_do_statement] = STATE(381), + [sym_for_statement] = STATE(381), + [sym_return_statement] = STATE(381), + [sym_break_statement] = STATE(381), + [sym_continue_statement] = STATE(381), + [sym_goto_statement] = STATE(381), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2191), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(1691), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(604), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_if] = ACTIONS(614), + [anon_sym_switch] = ACTIONS(616), + [anon_sym_case] = ACTIONS(618), + [anon_sym_default] = ACTIONS(620), + [anon_sym_while] = ACTIONS(622), + [anon_sym_do] = ACTIONS(624), + [anon_sym_for] = ACTIONS(626), + [anon_sym_return] = ACTIONS(628), + [anon_sym_break] = ACTIONS(630), + [anon_sym_continue] = ACTIONS(632), + [anon_sym_goto] = ACTIONS(634), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [602] = { + [sym_attribute_declaration] = STATE(539), + [sym_compound_statement] = STATE(380), + [sym_attributed_statement] = STATE(380), + [sym_labeled_statement] = STATE(380), + [sym_expression_statement] = STATE(380), + [sym_if_statement] = STATE(380), + [sym_switch_statement] = STATE(380), + [sym_case_statement] = STATE(380), + [sym_while_statement] = STATE(380), + [sym_do_statement] = STATE(380), + [sym_for_statement] = STATE(380), + [sym_return_statement] = STATE(380), + [sym_break_statement] = STATE(380), + [sym_continue_statement] = STATE(380), + [sym_goto_statement] = STATE(380), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2191), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(1691), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(604), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_if] = ACTIONS(614), + [anon_sym_switch] = ACTIONS(616), + [anon_sym_case] = ACTIONS(618), + [anon_sym_default] = ACTIONS(620), + [anon_sym_while] = ACTIONS(622), + [anon_sym_do] = ACTIONS(624), + [anon_sym_for] = ACTIONS(626), + [anon_sym_return] = ACTIONS(628), + [anon_sym_break] = ACTIONS(630), + [anon_sym_continue] = ACTIONS(632), + [anon_sym_goto] = ACTIONS(634), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [603] = { + [sym_attribute_declaration] = STATE(539), + [sym_compound_statement] = STATE(379), + [sym_attributed_statement] = STATE(379), + [sym_labeled_statement] = STATE(379), + [sym_expression_statement] = STATE(379), + [sym_if_statement] = STATE(379), + [sym_switch_statement] = STATE(379), + [sym_case_statement] = STATE(379), + [sym_while_statement] = STATE(379), + [sym_do_statement] = STATE(379), + [sym_for_statement] = STATE(379), + [sym_return_statement] = STATE(379), + [sym_break_statement] = STATE(379), + [sym_continue_statement] = STATE(379), + [sym_goto_statement] = STATE(379), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2191), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(1691), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(604), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_if] = ACTIONS(614), + [anon_sym_switch] = ACTIONS(616), + [anon_sym_case] = ACTIONS(618), + [anon_sym_default] = ACTIONS(620), + [anon_sym_while] = ACTIONS(622), + [anon_sym_do] = ACTIONS(624), + [anon_sym_for] = ACTIONS(626), + [anon_sym_return] = ACTIONS(628), + [anon_sym_break] = ACTIONS(630), + [anon_sym_continue] = ACTIONS(632), + [anon_sym_goto] = ACTIONS(634), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [604] = { + [sym_attribute_declaration] = STATE(539), + [sym_compound_statement] = STATE(378), + [sym_attributed_statement] = STATE(378), + [sym_labeled_statement] = STATE(378), + [sym_expression_statement] = STATE(378), + [sym_if_statement] = STATE(378), + [sym_switch_statement] = STATE(378), + [sym_case_statement] = STATE(378), + [sym_while_statement] = STATE(378), + [sym_do_statement] = STATE(378), + [sym_for_statement] = STATE(378), + [sym_return_statement] = STATE(378), + [sym_break_statement] = STATE(378), + [sym_continue_statement] = STATE(378), + [sym_goto_statement] = STATE(378), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2191), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(1691), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(604), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_if] = ACTIONS(614), + [anon_sym_switch] = ACTIONS(616), + [anon_sym_case] = ACTIONS(618), + [anon_sym_default] = ACTIONS(620), + [anon_sym_while] = ACTIONS(622), + [anon_sym_do] = ACTIONS(624), + [anon_sym_for] = ACTIONS(626), + [anon_sym_return] = ACTIONS(628), + [anon_sym_break] = ACTIONS(630), + [anon_sym_continue] = ACTIONS(632), + [anon_sym_goto] = ACTIONS(634), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [605] = { + [sym_attribute_declaration] = STATE(539), + [sym_compound_statement] = STATE(372), + [sym_attributed_statement] = STATE(372), + [sym_labeled_statement] = STATE(372), + [sym_expression_statement] = STATE(372), + [sym_if_statement] = STATE(372), + [sym_switch_statement] = STATE(372), + [sym_case_statement] = STATE(372), + [sym_while_statement] = STATE(372), + [sym_do_statement] = STATE(372), + [sym_for_statement] = STATE(372), + [sym_return_statement] = STATE(372), + [sym_break_statement] = STATE(372), + [sym_continue_statement] = STATE(372), + [sym_goto_statement] = STATE(372), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2191), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_attributed_declarator_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(1691), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(604), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_if] = ACTIONS(614), + [anon_sym_switch] = ACTIONS(616), + [anon_sym_case] = ACTIONS(618), + [anon_sym_default] = ACTIONS(620), + [anon_sym_while] = ACTIONS(622), + [anon_sym_do] = ACTIONS(624), + [anon_sym_for] = ACTIONS(626), + [anon_sym_return] = ACTIONS(628), + [anon_sym_break] = ACTIONS(630), + [anon_sym_continue] = ACTIONS(632), + [anon_sym_goto] = ACTIONS(634), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [606] = { + [sym_type_qualifier] = STATE(1272), + [sym__type_specifier] = STATE(1359), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym__expression] = STATE(1246), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2206), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_type_descriptor] = STATE(2160), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_type_definition_repeat1] = STATE(1272), + [aux_sym_sized_type_specifier_repeat1] = STATE(1366), + [sym_identifier] = ACTIONS(1889), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1891), + [anon_sym_unsigned] = ACTIONS(1891), + [anon_sym_long] = ACTIONS(1891), + [anon_sym_short] = ACTIONS(1891), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(1893), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [607] = { + [sym_type_qualifier] = STATE(1272), + [sym__type_specifier] = STATE(1359), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym__expression] = STATE(1246), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2206), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_type_descriptor] = STATE(2205), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_type_definition_repeat1] = STATE(1272), + [aux_sym_sized_type_specifier_repeat1] = STATE(1366), + [sym_identifier] = ACTIONS(1889), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1891), + [anon_sym_unsigned] = ACTIONS(1891), + [anon_sym_long] = ACTIONS(1891), + [anon_sym_short] = ACTIONS(1891), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(1893), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [608] = { + [sym_type_qualifier] = STATE(1272), + [sym__type_specifier] = STATE(1359), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym__expression] = STATE(1246), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2206), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_type_descriptor] = STATE(2203), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_type_definition_repeat1] = STATE(1272), + [aux_sym_sized_type_specifier_repeat1] = STATE(1366), + [sym_identifier] = ACTIONS(1889), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1891), + [anon_sym_unsigned] = ACTIONS(1891), + [anon_sym_long] = ACTIONS(1891), + [anon_sym_short] = ACTIONS(1891), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(1893), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [609] = { + [sym_type_qualifier] = STATE(1272), + [sym__type_specifier] = STATE(1359), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym__expression] = STATE(1246), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2206), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_type_descriptor] = STATE(2067), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_type_definition_repeat1] = STATE(1272), + [aux_sym_sized_type_specifier_repeat1] = STATE(1366), + [sym_identifier] = ACTIONS(1889), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1891), + [anon_sym_unsigned] = ACTIONS(1891), + [anon_sym_long] = ACTIONS(1891), + [anon_sym_short] = ACTIONS(1891), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(1893), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [610] = { + [sym_type_qualifier] = STATE(1272), + [sym__type_specifier] = STATE(1359), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym__expression] = STATE(1246), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2206), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_type_descriptor] = STATE(2028), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_type_definition_repeat1] = STATE(1272), + [aux_sym_sized_type_specifier_repeat1] = STATE(1366), + [sym_identifier] = ACTIONS(1889), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1891), + [anon_sym_unsigned] = ACTIONS(1891), + [anon_sym_long] = ACTIONS(1891), + [anon_sym_short] = ACTIONS(1891), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(1893), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [611] = { + [sym_type_qualifier] = STATE(1272), + [sym__type_specifier] = STATE(1359), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym__expression] = STATE(1246), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2206), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_type_descriptor] = STATE(2146), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_type_definition_repeat1] = STATE(1272), + [aux_sym_sized_type_specifier_repeat1] = STATE(1366), + [sym_identifier] = ACTIONS(1889), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1891), + [anon_sym_unsigned] = ACTIONS(1891), + [anon_sym_long] = ACTIONS(1891), + [anon_sym_short] = ACTIONS(1891), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(1893), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [612] = { + [sym_type_qualifier] = STATE(1272), + [sym__type_specifier] = STATE(1359), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym__expression] = STATE(1246), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2206), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_type_descriptor] = STATE(1992), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_type_definition_repeat1] = STATE(1272), + [aux_sym_sized_type_specifier_repeat1] = STATE(1366), + [sym_identifier] = ACTIONS(1889), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1891), + [anon_sym_unsigned] = ACTIONS(1891), + [anon_sym_long] = ACTIONS(1891), + [anon_sym_short] = ACTIONS(1891), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(1893), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [613] = { + [sym_type_qualifier] = STATE(1272), + [sym__type_specifier] = STATE(1359), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym__expression] = STATE(1246), + [sym__expression_not_binary] = STATE(904), + [sym_comma_expression] = STATE(2206), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_type_descriptor] = STATE(2139), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_type_definition_repeat1] = STATE(1272), + [aux_sym_sized_type_specifier_repeat1] = STATE(1366), + [sym_identifier] = ACTIONS(1889), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1891), + [anon_sym_unsigned] = ACTIONS(1891), + [anon_sym_long] = ACTIONS(1891), + [anon_sym_short] = ACTIONS(1891), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(1893), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [614] = { + [sym__expression] = STATE(917), + [sym__expression_not_binary] = STATE(904), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_initializer_list] = STATE(914), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_identifier] = ACTIONS(1895), + [anon_sym_COMMA] = ACTIONS(1486), + [anon_sym_RPAREN] = ACTIONS(1486), + [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(1496), + [anon_sym_PERCENT] = ACTIONS(1486), + [anon_sym_PIPE_PIPE] = ACTIONS(1486), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1496), + [anon_sym_CARET] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1494), + [anon_sym_EQ_EQ] = ACTIONS(1486), + [anon_sym_BANG_EQ] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1496), + [anon_sym_GT_EQ] = ACTIONS(1486), + [anon_sym_LT_EQ] = ACTIONS(1486), + [anon_sym_LT] = ACTIONS(1496), + [anon_sym_LT_LT] = ACTIONS(1486), + [anon_sym_GT_GT] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym___attribute__] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_RBRACE] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1486), + [anon_sym_COLON] = ACTIONS(1486), + [anon_sym_QMARK] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [anon_sym_DOT] = ACTIONS(1496), + [anon_sym_DASH_GT] = ACTIONS(1486), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [615] = { + [sym_identifier] = ACTIONS(1897), + [anon_sym_COMMA] = ACTIONS(1899), + [anon_sym_RPAREN] = ACTIONS(1899), + [anon_sym_LPAREN2] = ACTIONS(1899), + [anon_sym_BANG] = ACTIONS(1899), + [anon_sym_TILDE] = ACTIONS(1899), + [anon_sym_DASH] = ACTIONS(1897), + [anon_sym_PLUS] = ACTIONS(1897), + [anon_sym_STAR] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1899), + [anon_sym_SEMI] = ACTIONS(1899), + [anon_sym___extension__] = ACTIONS(1897), + [anon_sym_extern] = ACTIONS(1897), + [anon_sym___attribute__] = ACTIONS(1897), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1899), + [anon_sym___declspec] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_signed] = ACTIONS(1897), + [anon_sym_unsigned] = ACTIONS(1897), + [anon_sym_long] = ACTIONS(1897), + [anon_sym_short] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_EQ] = ACTIONS(1899), + [anon_sym_static] = ACTIONS(1897), + [anon_sym_auto] = ACTIONS(1897), + [anon_sym_register] = ACTIONS(1897), + [anon_sym_inline] = ACTIONS(1897), + [anon_sym___inline] = ACTIONS(1897), + [anon_sym___inline__] = ACTIONS(1897), + [anon_sym___forceinline] = ACTIONS(1897), + [anon_sym_thread_local] = ACTIONS(1897), + [anon_sym___thread] = ACTIONS(1897), + [anon_sym_const] = ACTIONS(1897), + [anon_sym_constexpr] = ACTIONS(1897), + [anon_sym_volatile] = ACTIONS(1897), + [anon_sym_restrict] = ACTIONS(1897), + [anon_sym___restrict__] = ACTIONS(1897), + [anon_sym__Atomic] = ACTIONS(1897), + [anon_sym__Noreturn] = ACTIONS(1897), + [anon_sym_noreturn] = ACTIONS(1897), + [sym_primitive_type] = ACTIONS(1897), + [anon_sym_enum] = ACTIONS(1897), + [anon_sym_COLON] = ACTIONS(1899), + [anon_sym_struct] = ACTIONS(1897), + [anon_sym_union] = ACTIONS(1897), + [anon_sym_if] = ACTIONS(1897), + [anon_sym_switch] = ACTIONS(1897), + [anon_sym_case] = ACTIONS(1897), + [anon_sym_default] = ACTIONS(1897), + [anon_sym_while] = ACTIONS(1897), + [anon_sym_do] = ACTIONS(1897), + [anon_sym_for] = ACTIONS(1897), + [anon_sym_return] = ACTIONS(1897), + [anon_sym_break] = ACTIONS(1897), + [anon_sym_continue] = ACTIONS(1897), + [anon_sym_goto] = ACTIONS(1897), + [anon_sym_DASH_DASH] = ACTIONS(1899), + [anon_sym_PLUS_PLUS] = ACTIONS(1899), + [anon_sym_sizeof] = ACTIONS(1897), + [anon_sym___alignof__] = ACTIONS(1897), + [anon_sym___alignof] = ACTIONS(1897), + [anon_sym__alignof] = ACTIONS(1897), + [anon_sym_alignof] = ACTIONS(1897), + [anon_sym__Alignof] = ACTIONS(1897), + [anon_sym_offsetof] = ACTIONS(1897), + [anon_sym___builtin_va_arg] = ACTIONS(1897), + [anon_sym__Generic] = ACTIONS(1897), + [anon_sym_asm] = ACTIONS(1897), + [anon_sym___asm__] = ACTIONS(1897), + [sym_number_literal] = ACTIONS(1899), + [anon_sym_L_SQUOTE] = ACTIONS(1899), + [anon_sym_u_SQUOTE] = ACTIONS(1899), + [anon_sym_U_SQUOTE] = ACTIONS(1899), + [anon_sym_u8_SQUOTE] = ACTIONS(1899), + [anon_sym_SQUOTE] = ACTIONS(1899), + [anon_sym_L_DQUOTE] = ACTIONS(1899), + [anon_sym_u_DQUOTE] = ACTIONS(1899), + [anon_sym_U_DQUOTE] = ACTIONS(1899), + [anon_sym_u8_DQUOTE] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1899), + [sym_true] = ACTIONS(1897), + [sym_false] = ACTIONS(1897), + [anon_sym_NULL] = ACTIONS(1897), + [anon_sym_nullptr] = ACTIONS(1897), + [sym_comment] = ACTIONS(3), + }, + [616] = { + [sym_identifier] = ACTIONS(1901), + [anon_sym_COMMA] = ACTIONS(1903), + [anon_sym_RPAREN] = ACTIONS(1903), + [anon_sym_LPAREN2] = ACTIONS(1903), + [anon_sym_BANG] = ACTIONS(1903), + [anon_sym_TILDE] = ACTIONS(1903), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_STAR] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_SEMI] = ACTIONS(1903), + [anon_sym___extension__] = ACTIONS(1901), + [anon_sym_extern] = ACTIONS(1901), + [anon_sym___attribute__] = ACTIONS(1901), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1903), + [anon_sym___declspec] = ACTIONS(1901), + [anon_sym_LBRACE] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1901), + [anon_sym_unsigned] = ACTIONS(1901), + [anon_sym_long] = ACTIONS(1901), + [anon_sym_short] = ACTIONS(1901), + [anon_sym_LBRACK] = ACTIONS(1901), + [anon_sym_EQ] = ACTIONS(1903), + [anon_sym_static] = ACTIONS(1901), + [anon_sym_auto] = ACTIONS(1901), + [anon_sym_register] = ACTIONS(1901), + [anon_sym_inline] = ACTIONS(1901), + [anon_sym___inline] = ACTIONS(1901), + [anon_sym___inline__] = ACTIONS(1901), + [anon_sym___forceinline] = ACTIONS(1901), + [anon_sym_thread_local] = ACTIONS(1901), + [anon_sym___thread] = ACTIONS(1901), + [anon_sym_const] = ACTIONS(1901), + [anon_sym_constexpr] = ACTIONS(1901), + [anon_sym_volatile] = ACTIONS(1901), + [anon_sym_restrict] = ACTIONS(1901), + [anon_sym___restrict__] = ACTIONS(1901), + [anon_sym__Atomic] = ACTIONS(1901), + [anon_sym__Noreturn] = ACTIONS(1901), + [anon_sym_noreturn] = ACTIONS(1901), + [sym_primitive_type] = ACTIONS(1901), + [anon_sym_enum] = ACTIONS(1901), + [anon_sym_COLON] = ACTIONS(1903), + [anon_sym_struct] = ACTIONS(1901), + [anon_sym_union] = ACTIONS(1901), + [anon_sym_if] = ACTIONS(1901), + [anon_sym_switch] = ACTIONS(1901), + [anon_sym_case] = ACTIONS(1901), + [anon_sym_default] = ACTIONS(1901), + [anon_sym_while] = ACTIONS(1901), + [anon_sym_do] = ACTIONS(1901), + [anon_sym_for] = ACTIONS(1901), + [anon_sym_return] = ACTIONS(1901), + [anon_sym_break] = ACTIONS(1901), + [anon_sym_continue] = ACTIONS(1901), + [anon_sym_goto] = ACTIONS(1901), + [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_PLUS_PLUS] = ACTIONS(1903), + [anon_sym_sizeof] = ACTIONS(1901), + [anon_sym___alignof__] = ACTIONS(1901), + [anon_sym___alignof] = ACTIONS(1901), + [anon_sym__alignof] = ACTIONS(1901), + [anon_sym_alignof] = ACTIONS(1901), + [anon_sym__Alignof] = ACTIONS(1901), + [anon_sym_offsetof] = ACTIONS(1901), + [anon_sym___builtin_va_arg] = ACTIONS(1901), + [anon_sym__Generic] = ACTIONS(1901), + [anon_sym_asm] = ACTIONS(1901), + [anon_sym___asm__] = ACTIONS(1901), + [sym_number_literal] = ACTIONS(1903), + [anon_sym_L_SQUOTE] = ACTIONS(1903), + [anon_sym_u_SQUOTE] = ACTIONS(1903), + [anon_sym_U_SQUOTE] = ACTIONS(1903), + [anon_sym_u8_SQUOTE] = ACTIONS(1903), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_L_DQUOTE] = ACTIONS(1903), + [anon_sym_u_DQUOTE] = ACTIONS(1903), + [anon_sym_U_DQUOTE] = ACTIONS(1903), + [anon_sym_u8_DQUOTE] = ACTIONS(1903), + [anon_sym_DQUOTE] = ACTIONS(1903), + [sym_true] = ACTIONS(1901), + [sym_false] = ACTIONS(1901), + [anon_sym_NULL] = ACTIONS(1901), + [anon_sym_nullptr] = ACTIONS(1901), + [sym_comment] = ACTIONS(3), + }, + [617] = { + [sym__expression] = STATE(1001), + [sym__expression_not_binary] = STATE(904), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(1056), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(1056), + [sym_call_expression] = STATE(1056), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(1056), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(1056), + [sym_initializer_list] = STATE(914), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_identifier] = ACTIONS(1905), + [anon_sym_LPAREN2] = ACTIONS(1907), + [anon_sym_BANG] = ACTIONS(1909), + [anon_sym_TILDE] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1909), + [anon_sym_PLUS] = ACTIONS(1909), + [anon_sym_STAR] = ACTIONS(1913), + [anon_sym_SLASH] = ACTIONS(1496), + [anon_sym_PERCENT] = ACTIONS(1486), + [anon_sym_PIPE_PIPE] = ACTIONS(1486), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1496), + [anon_sym_CARET] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_EQ_EQ] = ACTIONS(1486), + [anon_sym_BANG_EQ] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1496), + [anon_sym_GT_EQ] = ACTIONS(1486), + [anon_sym_LT_EQ] = ACTIONS(1486), + [anon_sym_LT] = ACTIONS(1496), + [anon_sym_LT_LT] = ACTIONS(1486), + [anon_sym_GT_GT] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_LBRACK] = ACTIONS(1486), + [anon_sym_RBRACK] = ACTIONS(1486), + [anon_sym_QMARK] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1915), + [anon_sym_PLUS_PLUS] = ACTIONS(1915), + [anon_sym_sizeof] = ACTIONS(1917), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [anon_sym_DOT] = ACTIONS(1496), + [anon_sym_DASH_GT] = ACTIONS(1486), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [618] = { + [sym_else_clause] = STATE(420), + [sym_identifier] = ACTIONS(1234), + [anon_sym_LPAREN2] = ACTIONS(1236), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(1236), + [anon_sym_SEMI] = ACTIONS(1236), + [anon_sym___extension__] = ACTIONS(1234), + [anon_sym_typedef] = ACTIONS(1234), + [anon_sym_extern] = ACTIONS(1234), + [anon_sym___attribute__] = ACTIONS(1234), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1236), + [anon_sym___declspec] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(1236), + [anon_sym_signed] = ACTIONS(1234), + [anon_sym_unsigned] = ACTIONS(1234), + [anon_sym_long] = ACTIONS(1234), + [anon_sym_short] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_auto] = ACTIONS(1234), + [anon_sym_register] = ACTIONS(1234), + [anon_sym_inline] = ACTIONS(1234), + [anon_sym___inline] = ACTIONS(1234), + [anon_sym___inline__] = ACTIONS(1234), + [anon_sym___forceinline] = ACTIONS(1234), + [anon_sym_thread_local] = ACTIONS(1234), + [anon_sym___thread] = ACTIONS(1234), + [anon_sym_const] = ACTIONS(1234), + [anon_sym_constexpr] = ACTIONS(1234), + [anon_sym_volatile] = ACTIONS(1234), + [anon_sym_restrict] = ACTIONS(1234), + [anon_sym___restrict__] = ACTIONS(1234), + [anon_sym__Atomic] = ACTIONS(1234), + [anon_sym__Noreturn] = ACTIONS(1234), + [anon_sym_noreturn] = ACTIONS(1234), + [sym_primitive_type] = ACTIONS(1234), + [anon_sym_enum] = ACTIONS(1234), + [anon_sym_struct] = ACTIONS(1234), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_if] = ACTIONS(1234), + [anon_sym_else] = ACTIONS(1919), + [anon_sym_switch] = ACTIONS(1234), + [anon_sym_while] = ACTIONS(1234), + [anon_sym_do] = ACTIONS(1234), + [anon_sym_for] = ACTIONS(1234), + [anon_sym_return] = ACTIONS(1234), + [anon_sym_break] = ACTIONS(1234), + [anon_sym_continue] = ACTIONS(1234), + [anon_sym_goto] = ACTIONS(1234), + [anon_sym_DASH_DASH] = ACTIONS(1236), + [anon_sym_PLUS_PLUS] = ACTIONS(1236), + [anon_sym_sizeof] = ACTIONS(1234), + [anon_sym___alignof__] = ACTIONS(1234), + [anon_sym___alignof] = ACTIONS(1234), + [anon_sym__alignof] = ACTIONS(1234), + [anon_sym_alignof] = ACTIONS(1234), + [anon_sym__Alignof] = ACTIONS(1234), + [anon_sym_offsetof] = ACTIONS(1234), + [anon_sym___builtin_va_arg] = ACTIONS(1234), + [anon_sym__Generic] = ACTIONS(1234), + [anon_sym_asm] = ACTIONS(1234), + [anon_sym___asm__] = ACTIONS(1234), + [sym_number_literal] = ACTIONS(1236), + [anon_sym_L_SQUOTE] = ACTIONS(1236), + [anon_sym_u_SQUOTE] = ACTIONS(1236), + [anon_sym_U_SQUOTE] = ACTIONS(1236), + [anon_sym_u8_SQUOTE] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1236), + [anon_sym_L_DQUOTE] = ACTIONS(1236), + [anon_sym_u_DQUOTE] = ACTIONS(1236), + [anon_sym_U_DQUOTE] = ACTIONS(1236), + [anon_sym_u8_DQUOTE] = ACTIONS(1236), + [anon_sym_DQUOTE] = ACTIONS(1236), + [sym_true] = ACTIONS(1234), + [sym_false] = ACTIONS(1234), + [anon_sym_NULL] = ACTIONS(1234), + [anon_sym_nullptr] = ACTIONS(1234), + [sym_comment] = ACTIONS(3), + }, + [619] = { + [sym_identifier] = ACTIONS(1921), + [anon_sym_LPAREN2] = ACTIONS(1924), + [anon_sym_BANG] = ACTIONS(1924), + [anon_sym_TILDE] = ACTIONS(1924), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_STAR] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1924), + [anon_sym_SEMI] = ACTIONS(1924), + [anon_sym___extension__] = ACTIONS(1928), + [anon_sym_extern] = ACTIONS(1928), + [anon_sym___attribute__] = ACTIONS(1928), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1930), + [anon_sym___declspec] = ACTIONS(1928), + [anon_sym_LBRACE] = ACTIONS(1924), + [anon_sym_signed] = ACTIONS(1928), + [anon_sym_unsigned] = ACTIONS(1928), + [anon_sym_long] = ACTIONS(1928), + [anon_sym_short] = ACTIONS(1928), + [anon_sym_static] = ACTIONS(1928), + [anon_sym_auto] = ACTIONS(1928), + [anon_sym_register] = ACTIONS(1928), + [anon_sym_inline] = ACTIONS(1928), + [anon_sym___inline] = ACTIONS(1928), + [anon_sym___inline__] = ACTIONS(1928), + [anon_sym___forceinline] = ACTIONS(1928), + [anon_sym_thread_local] = ACTIONS(1928), + [anon_sym___thread] = ACTIONS(1928), + [anon_sym_const] = ACTIONS(1928), + [anon_sym_constexpr] = ACTIONS(1928), + [anon_sym_volatile] = ACTIONS(1928), + [anon_sym_restrict] = ACTIONS(1928), + [anon_sym___restrict__] = ACTIONS(1928), + [anon_sym__Atomic] = ACTIONS(1928), + [anon_sym__Noreturn] = ACTIONS(1928), + [anon_sym_noreturn] = 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(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(1924), + [anon_sym_PLUS_PLUS] = ACTIONS(1924), + [anon_sym_sizeof] = ACTIONS(1926), + [anon_sym___alignof__] = ACTIONS(1926), + [anon_sym___alignof] = ACTIONS(1926), + [anon_sym__alignof] = ACTIONS(1926), + [anon_sym_alignof] = ACTIONS(1926), + [anon_sym__Alignof] = ACTIONS(1926), + [anon_sym_offsetof] = ACTIONS(1926), + [anon_sym___builtin_va_arg] = ACTIONS(1926), + [anon_sym__Generic] = ACTIONS(1926), + [anon_sym_asm] = ACTIONS(1926), + [anon_sym___asm__] = ACTIONS(1926), + [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(1926), + [sym_false] = ACTIONS(1926), + [anon_sym_NULL] = ACTIONS(1926), + [anon_sym_nullptr] = ACTIONS(1926), + [sym_comment] = ACTIONS(3), + }, + [620] = { + [sym_type_qualifier] = STATE(623), + [sym__expression] = STATE(1300), + [sym__expression_not_binary] = STATE(904), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(1056), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(1056), + [sym_call_expression] = STATE(1056), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(1056), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(1056), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_type_definition_repeat1] = STATE(623), + [sym_identifier] = ACTIONS(1905), + [anon_sym_LPAREN2] = ACTIONS(1907), + [anon_sym_BANG] = ACTIONS(1911), + [anon_sym_TILDE] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1909), + [anon_sym_PLUS] = ACTIONS(1909), + [anon_sym_STAR] = ACTIONS(1933), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym___extension__] = ACTIONS(1935), + [anon_sym_RBRACK] = ACTIONS(1937), + [anon_sym_const] = ACTIONS(1935), + [anon_sym_constexpr] = ACTIONS(1935), + [anon_sym_volatile] = ACTIONS(1935), + [anon_sym_restrict] = ACTIONS(1935), + [anon_sym___restrict__] = ACTIONS(1935), + [anon_sym__Atomic] = ACTIONS(1935), + [anon_sym__Noreturn] = ACTIONS(1935), + [anon_sym_noreturn] = ACTIONS(1935), + [anon_sym_DASH_DASH] = ACTIONS(1915), + [anon_sym_PLUS_PLUS] = ACTIONS(1915), + [anon_sym_sizeof] = ACTIONS(1917), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [621] = { + [sym_type_qualifier] = STATE(622), + [sym__expression] = STATE(1340), + [sym__expression_not_binary] = STATE(904), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(1056), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(1056), + [sym_call_expression] = STATE(1056), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(1056), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(1056), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_type_definition_repeat1] = STATE(622), + [sym_identifier] = ACTIONS(1905), + [anon_sym_LPAREN2] = ACTIONS(1907), + [anon_sym_BANG] = ACTIONS(1911), + [anon_sym_TILDE] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1909), + [anon_sym_PLUS] = ACTIONS(1909), + [anon_sym_STAR] = ACTIONS(1939), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym___extension__] = ACTIONS(1935), + [anon_sym_RBRACK] = ACTIONS(1941), + [anon_sym_const] = ACTIONS(1935), + [anon_sym_constexpr] = ACTIONS(1935), + [anon_sym_volatile] = ACTIONS(1935), + [anon_sym_restrict] = ACTIONS(1935), + [anon_sym___restrict__] = ACTIONS(1935), + [anon_sym__Atomic] = ACTIONS(1935), + [anon_sym__Noreturn] = ACTIONS(1935), + [anon_sym_noreturn] = ACTIONS(1935), + [anon_sym_DASH_DASH] = ACTIONS(1915), + [anon_sym_PLUS_PLUS] = ACTIONS(1915), + [anon_sym_sizeof] = ACTIONS(1917), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [622] = { + [sym_type_qualifier] = STATE(861), + [sym__expression] = STATE(1256), + [sym__expression_not_binary] = STATE(904), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(1056), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(1056), + [sym_call_expression] = STATE(1056), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(1056), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(1056), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_type_definition_repeat1] = STATE(861), + [sym_identifier] = ACTIONS(1905), + [anon_sym_LPAREN2] = ACTIONS(1907), + [anon_sym_BANG] = ACTIONS(1911), + [anon_sym_TILDE] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1909), + [anon_sym_PLUS] = ACTIONS(1909), + [anon_sym_STAR] = ACTIONS(1943), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym___extension__] = ACTIONS(1935), + [anon_sym_RBRACK] = ACTIONS(1945), + [anon_sym_const] = ACTIONS(1935), + [anon_sym_constexpr] = ACTIONS(1935), + [anon_sym_volatile] = ACTIONS(1935), + [anon_sym_restrict] = ACTIONS(1935), + [anon_sym___restrict__] = ACTIONS(1935), + [anon_sym__Atomic] = ACTIONS(1935), + [anon_sym__Noreturn] = ACTIONS(1935), + [anon_sym_noreturn] = ACTIONS(1935), + [anon_sym_DASH_DASH] = ACTIONS(1915), + [anon_sym_PLUS_PLUS] = ACTIONS(1915), + [anon_sym_sizeof] = ACTIONS(1917), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [623] = { + [sym_type_qualifier] = STATE(861), + [sym__expression] = STATE(1302), + [sym__expression_not_binary] = STATE(904), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(1056), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(1056), + [sym_call_expression] = STATE(1056), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(1056), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(1056), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_type_definition_repeat1] = STATE(861), + [sym_identifier] = ACTIONS(1905), + [anon_sym_LPAREN2] = ACTIONS(1907), + [anon_sym_BANG] = ACTIONS(1911), + [anon_sym_TILDE] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1909), + [anon_sym_PLUS] = ACTIONS(1909), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym___extension__] = ACTIONS(1935), + [anon_sym_RBRACK] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(1935), + [anon_sym_constexpr] = ACTIONS(1935), + [anon_sym_volatile] = ACTIONS(1935), + [anon_sym_restrict] = ACTIONS(1935), + [anon_sym___restrict__] = ACTIONS(1935), + [anon_sym__Atomic] = ACTIONS(1935), + [anon_sym__Noreturn] = ACTIONS(1935), + [anon_sym_noreturn] = ACTIONS(1935), + [anon_sym_DASH_DASH] = ACTIONS(1915), + [anon_sym_PLUS_PLUS] = ACTIONS(1915), + [anon_sym_sizeof] = ACTIONS(1917), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [624] = { + [sym_type_qualifier] = STATE(627), + [sym__expression] = STATE(1278), + [sym__expression_not_binary] = STATE(904), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(1056), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(1056), + [sym_call_expression] = STATE(1056), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(1056), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(1056), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_type_definition_repeat1] = STATE(627), + [sym_identifier] = ACTIONS(1905), + [anon_sym_LPAREN2] = ACTIONS(1907), + [anon_sym_BANG] = ACTIONS(1911), + [anon_sym_TILDE] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1909), + [anon_sym_PLUS] = ACTIONS(1909), + [anon_sym_STAR] = ACTIONS(1951), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym___extension__] = ACTIONS(1935), + [anon_sym_RBRACK] = ACTIONS(1953), + [anon_sym_const] = ACTIONS(1935), + [anon_sym_constexpr] = ACTIONS(1935), + [anon_sym_volatile] = ACTIONS(1935), + [anon_sym_restrict] = ACTIONS(1935), + [anon_sym___restrict__] = ACTIONS(1935), + [anon_sym__Atomic] = ACTIONS(1935), + [anon_sym__Noreturn] = ACTIONS(1935), + [anon_sym_noreturn] = ACTIONS(1935), + [anon_sym_DASH_DASH] = ACTIONS(1915), + [anon_sym_PLUS_PLUS] = ACTIONS(1915), + [anon_sym_sizeof] = ACTIONS(1917), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [625] = { + [sym_type_qualifier] = STATE(626), + [sym__expression] = STATE(1262), + [sym__expression_not_binary] = STATE(904), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(1056), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(1056), + [sym_call_expression] = STATE(1056), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(1056), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(1056), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_type_definition_repeat1] = STATE(626), + [sym_identifier] = ACTIONS(1905), + [anon_sym_LPAREN2] = ACTIONS(1907), + [anon_sym_BANG] = ACTIONS(1911), + [anon_sym_TILDE] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1909), + [anon_sym_PLUS] = ACTIONS(1909), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym___extension__] = ACTIONS(1935), + [anon_sym_RBRACK] = ACTIONS(1957), + [anon_sym_const] = ACTIONS(1935), + [anon_sym_constexpr] = ACTIONS(1935), + [anon_sym_volatile] = ACTIONS(1935), + [anon_sym_restrict] = ACTIONS(1935), + [anon_sym___restrict__] = ACTIONS(1935), + [anon_sym__Atomic] = ACTIONS(1935), + [anon_sym__Noreturn] = ACTIONS(1935), + [anon_sym_noreturn] = ACTIONS(1935), + [anon_sym_DASH_DASH] = ACTIONS(1915), + [anon_sym_PLUS_PLUS] = ACTIONS(1915), + [anon_sym_sizeof] = ACTIONS(1917), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [626] = { + [sym_type_qualifier] = STATE(861), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(904), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(1056), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(1056), + [sym_call_expression] = STATE(1056), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(1056), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(1056), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_type_definition_repeat1] = STATE(861), + [sym_identifier] = ACTIONS(1905), + [anon_sym_LPAREN2] = ACTIONS(1907), + [anon_sym_BANG] = ACTIONS(1911), + [anon_sym_TILDE] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1909), + [anon_sym_PLUS] = ACTIONS(1909), + [anon_sym_STAR] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym___extension__] = ACTIONS(1935), + [anon_sym_RBRACK] = ACTIONS(1961), + [anon_sym_const] = ACTIONS(1935), + [anon_sym_constexpr] = ACTIONS(1935), + [anon_sym_volatile] = ACTIONS(1935), + [anon_sym_restrict] = ACTIONS(1935), + [anon_sym___restrict__] = ACTIONS(1935), + [anon_sym__Atomic] = ACTIONS(1935), + [anon_sym__Noreturn] = ACTIONS(1935), + [anon_sym_noreturn] = ACTIONS(1935), + [anon_sym_DASH_DASH] = ACTIONS(1915), + [anon_sym_PLUS_PLUS] = ACTIONS(1915), + [anon_sym_sizeof] = ACTIONS(1917), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [627] = { + [sym_type_qualifier] = STATE(861), + [sym__expression] = STATE(1330), + [sym__expression_not_binary] = STATE(904), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(1056), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(1056), + [sym_call_expression] = STATE(1056), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(1056), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(1056), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_type_definition_repeat1] = STATE(861), + [sym_identifier] = ACTIONS(1905), + [anon_sym_LPAREN2] = ACTIONS(1907), + [anon_sym_BANG] = ACTIONS(1911), + [anon_sym_TILDE] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1909), + [anon_sym_PLUS] = ACTIONS(1909), + [anon_sym_STAR] = ACTIONS(1963), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym___extension__] = ACTIONS(1935), + [anon_sym_RBRACK] = ACTIONS(1965), + [anon_sym_const] = ACTIONS(1935), + [anon_sym_constexpr] = ACTIONS(1935), + [anon_sym_volatile] = ACTIONS(1935), + [anon_sym_restrict] = ACTIONS(1935), + [anon_sym___restrict__] = ACTIONS(1935), + [anon_sym__Atomic] = ACTIONS(1935), + [anon_sym__Noreturn] = ACTIONS(1935), + [anon_sym_noreturn] = ACTIONS(1935), + [anon_sym_DASH_DASH] = ACTIONS(1915), + [anon_sym_PLUS_PLUS] = ACTIONS(1915), + [anon_sym_sizeof] = ACTIONS(1917), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [628] = { + [sym_type_qualifier] = STATE(861), + [sym__expression] = STATE(1338), + [sym__expression_not_binary] = STATE(904), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(1056), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(1056), + [sym_call_expression] = STATE(1056), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(1056), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(1056), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_type_definition_repeat1] = STATE(861), + [sym_identifier] = ACTIONS(1905), + [anon_sym_LPAREN2] = ACTIONS(1907), + [anon_sym_BANG] = ACTIONS(1911), + [anon_sym_TILDE] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1909), + [anon_sym_PLUS] = ACTIONS(1909), + [anon_sym_STAR] = ACTIONS(1967), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym___extension__] = ACTIONS(1935), + [anon_sym_RBRACK] = ACTIONS(1969), + [anon_sym_const] = ACTIONS(1935), + [anon_sym_constexpr] = ACTIONS(1935), + [anon_sym_volatile] = ACTIONS(1935), + [anon_sym_restrict] = ACTIONS(1935), + [anon_sym___restrict__] = ACTIONS(1935), + [anon_sym__Atomic] = ACTIONS(1935), + [anon_sym__Noreturn] = ACTIONS(1935), + [anon_sym_noreturn] = ACTIONS(1935), + [anon_sym_DASH_DASH] = ACTIONS(1915), + [anon_sym_PLUS_PLUS] = ACTIONS(1915), + [anon_sym_sizeof] = ACTIONS(1917), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [629] = { + [sym_type_qualifier] = STATE(628), + [sym__expression] = STATE(1296), + [sym__expression_not_binary] = STATE(904), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(1056), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(1056), + [sym_call_expression] = STATE(1056), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(1056), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(1056), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_type_definition_repeat1] = STATE(628), + [sym_identifier] = ACTIONS(1905), + [anon_sym_LPAREN2] = ACTIONS(1907), + [anon_sym_BANG] = ACTIONS(1911), + [anon_sym_TILDE] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1909), + [anon_sym_PLUS] = ACTIONS(1909), + [anon_sym_STAR] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym___extension__] = ACTIONS(1935), + [anon_sym_RBRACK] = ACTIONS(1973), + [anon_sym_const] = ACTIONS(1935), + [anon_sym_constexpr] = ACTIONS(1935), + [anon_sym_volatile] = ACTIONS(1935), + [anon_sym_restrict] = ACTIONS(1935), + [anon_sym___restrict__] = ACTIONS(1935), + [anon_sym__Atomic] = ACTIONS(1935), + [anon_sym__Noreturn] = ACTIONS(1935), + [anon_sym_noreturn] = ACTIONS(1935), + [anon_sym_DASH_DASH] = ACTIONS(1915), + [anon_sym_PLUS_PLUS] = ACTIONS(1915), + [anon_sym_sizeof] = ACTIONS(1917), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [630] = { + [sym__expression] = STATE(1166), + [sym__expression_not_binary] = STATE(904), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_initializer_list] = STATE(1831), + [sym_initializer_pair] = STATE(1831), + [sym_subscript_designator] = STATE(1657), + [sym_field_designator] = STATE(1657), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_initializer_pair_repeat1] = STATE(1657), + [sym_identifier] = ACTIONS(1895), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_RBRACE] = ACTIONS(1977), + [anon_sym_LBRACK] = ACTIONS(1979), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [anon_sym_DOT] = ACTIONS(1981), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [631] = { + [sym_string_literal] = STATE(850), + [sym_identifier] = ACTIONS(1983), + [anon_sym_COMMA] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_PLUS] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_SLASH] = ACTIONS(1991), + [anon_sym_PERCENT] = ACTIONS(1991), + [anon_sym_PIPE_PIPE] = ACTIONS(1985), + [anon_sym_AMP_AMP] = ACTIONS(1985), + [anon_sym_PIPE] = ACTIONS(1991), + [anon_sym_CARET] = ACTIONS(1991), + [anon_sym_AMP] = ACTIONS(1991), + [anon_sym_EQ_EQ] = ACTIONS(1985), + [anon_sym_BANG_EQ] = ACTIONS(1985), + [anon_sym_GT] = ACTIONS(1991), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), + [anon_sym_LT] = ACTIONS(1991), + [anon_sym_LT_LT] = ACTIONS(1991), + [anon_sym_GT_GT] = ACTIONS(1991), + [anon_sym_SEMI] = ACTIONS(1996), + [anon_sym___extension__] = ACTIONS(1983), + [anon_sym_extern] = ACTIONS(1983), + [anon_sym___attribute__] = ACTIONS(1983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1999), + [anon_sym___declspec] = ACTIONS(1983), + [anon_sym___based] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_EQ] = ACTIONS(2001), + [anon_sym_static] = ACTIONS(1983), + [anon_sym_auto] = ACTIONS(1983), + [anon_sym_register] = ACTIONS(1983), + [anon_sym_inline] = ACTIONS(1983), + [anon_sym___inline] = ACTIONS(1983), + [anon_sym___inline__] = ACTIONS(1983), + [anon_sym___forceinline] = ACTIONS(1983), + [anon_sym_thread_local] = ACTIONS(1983), + [anon_sym___thread] = ACTIONS(1983), + [anon_sym_const] = ACTIONS(1983), + [anon_sym_constexpr] = ACTIONS(1983), + [anon_sym_volatile] = ACTIONS(1983), + [anon_sym_restrict] = ACTIONS(1983), + [anon_sym___restrict__] = ACTIONS(1983), + [anon_sym__Atomic] = ACTIONS(1983), + [anon_sym__Noreturn] = ACTIONS(1983), + [anon_sym_noreturn] = ACTIONS(1983), + [anon_sym_COLON] = ACTIONS(2003), + [anon_sym_QMARK] = ACTIONS(1985), + [anon_sym_STAR_EQ] = ACTIONS(2005), + [anon_sym_SLASH_EQ] = ACTIONS(2005), + [anon_sym_PERCENT_EQ] = ACTIONS(2005), + [anon_sym_PLUS_EQ] = ACTIONS(2005), + [anon_sym_DASH_EQ] = ACTIONS(2005), + [anon_sym_LT_LT_EQ] = ACTIONS(2005), + [anon_sym_GT_GT_EQ] = ACTIONS(2005), + [anon_sym_AMP_EQ] = ACTIONS(2005), + [anon_sym_CARET_EQ] = ACTIONS(2005), + [anon_sym_PIPE_EQ] = ACTIONS(2005), + [anon_sym_DASH_DASH] = ACTIONS(1985), + [anon_sym_PLUS_PLUS] = ACTIONS(1985), + [anon_sym_DOT] = ACTIONS(1985), + [anon_sym_DASH_GT] = ACTIONS(1985), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [632] = { + [sym_string_literal] = STATE(850), + [sym_identifier] = ACTIONS(1983), + [anon_sym_COMMA] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_PLUS] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_SLASH] = ACTIONS(1991), + [anon_sym_PERCENT] = ACTIONS(1991), + [anon_sym_PIPE_PIPE] = ACTIONS(1985), + [anon_sym_AMP_AMP] = ACTIONS(1985), + [anon_sym_PIPE] = ACTIONS(1991), + [anon_sym_CARET] = ACTIONS(1991), + [anon_sym_AMP] = ACTIONS(1991), + [anon_sym_EQ_EQ] = ACTIONS(1985), + [anon_sym_BANG_EQ] = ACTIONS(1985), + [anon_sym_GT] = ACTIONS(1991), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), + [anon_sym_LT] = ACTIONS(1991), + [anon_sym_LT_LT] = ACTIONS(1991), + [anon_sym_GT_GT] = ACTIONS(1991), + [anon_sym_SEMI] = ACTIONS(1996), + [anon_sym___extension__] = ACTIONS(1983), + [anon_sym_extern] = ACTIONS(1983), + [anon_sym___attribute__] = ACTIONS(1983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1999), + [anon_sym___declspec] = ACTIONS(1983), + [anon_sym___based] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_EQ] = ACTIONS(2001), + [anon_sym_static] = ACTIONS(1983), + [anon_sym_auto] = ACTIONS(1983), + [anon_sym_register] = ACTIONS(1983), + [anon_sym_inline] = ACTIONS(1983), + [anon_sym___inline] = ACTIONS(1983), + [anon_sym___inline__] = ACTIONS(1983), + [anon_sym___forceinline] = ACTIONS(1983), + [anon_sym_thread_local] = ACTIONS(1983), + [anon_sym___thread] = ACTIONS(1983), + [anon_sym_const] = ACTIONS(1983), + [anon_sym_constexpr] = ACTIONS(1983), + [anon_sym_volatile] = ACTIONS(1983), + [anon_sym_restrict] = ACTIONS(1983), + [anon_sym___restrict__] = ACTIONS(1983), + [anon_sym__Atomic] = ACTIONS(1983), + [anon_sym__Noreturn] = ACTIONS(1983), + [anon_sym_noreturn] = ACTIONS(1983), + [anon_sym_COLON] = ACTIONS(2007), + [anon_sym_QMARK] = ACTIONS(1985), + [anon_sym_STAR_EQ] = ACTIONS(2005), + [anon_sym_SLASH_EQ] = ACTIONS(2005), + [anon_sym_PERCENT_EQ] = ACTIONS(2005), + [anon_sym_PLUS_EQ] = ACTIONS(2005), + [anon_sym_DASH_EQ] = ACTIONS(2005), + [anon_sym_LT_LT_EQ] = ACTIONS(2005), + [anon_sym_GT_GT_EQ] = ACTIONS(2005), + [anon_sym_AMP_EQ] = ACTIONS(2005), + [anon_sym_CARET_EQ] = ACTIONS(2005), + [anon_sym_PIPE_EQ] = ACTIONS(2005), + [anon_sym_DASH_DASH] = ACTIONS(1985), + [anon_sym_PLUS_PLUS] = ACTIONS(1985), + [anon_sym_DOT] = ACTIONS(1985), + [anon_sym_DASH_GT] = ACTIONS(1985), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [633] = { + [sym_string_literal] = STATE(850), + [sym_identifier] = ACTIONS(1983), + [anon_sym_COMMA] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_PLUS] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_SLASH] = ACTIONS(1991), + [anon_sym_PERCENT] = ACTIONS(1991), + [anon_sym_PIPE_PIPE] = ACTIONS(1985), + [anon_sym_AMP_AMP] = ACTIONS(1985), + [anon_sym_PIPE] = ACTIONS(1991), + [anon_sym_CARET] = ACTIONS(1991), + [anon_sym_AMP] = ACTIONS(1991), + [anon_sym_EQ_EQ] = ACTIONS(1985), + [anon_sym_BANG_EQ] = ACTIONS(1985), + [anon_sym_GT] = ACTIONS(1991), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), + [anon_sym_LT] = ACTIONS(1991), + [anon_sym_LT_LT] = ACTIONS(1991), + [anon_sym_GT_GT] = ACTIONS(1991), + [anon_sym_SEMI] = ACTIONS(1996), + [anon_sym___extension__] = ACTIONS(1983), + [anon_sym_extern] = ACTIONS(1983), + [anon_sym___attribute__] = ACTIONS(1983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1999), + [anon_sym___declspec] = ACTIONS(1983), + [anon_sym___based] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_EQ] = ACTIONS(2001), + [anon_sym_static] = ACTIONS(1983), + [anon_sym_auto] = ACTIONS(1983), + [anon_sym_register] = ACTIONS(1983), + [anon_sym_inline] = ACTIONS(1983), + [anon_sym___inline] = ACTIONS(1983), + [anon_sym___inline__] = ACTIONS(1983), + [anon_sym___forceinline] = ACTIONS(1983), + [anon_sym_thread_local] = ACTIONS(1983), + [anon_sym___thread] = ACTIONS(1983), + [anon_sym_const] = ACTIONS(1983), + [anon_sym_constexpr] = ACTIONS(1983), + [anon_sym_volatile] = ACTIONS(1983), + [anon_sym_restrict] = ACTIONS(1983), + [anon_sym___restrict__] = ACTIONS(1983), + [anon_sym__Atomic] = ACTIONS(1983), + [anon_sym__Noreturn] = ACTIONS(1983), + [anon_sym_noreturn] = ACTIONS(1983), + [anon_sym_COLON] = ACTIONS(2009), + [anon_sym_QMARK] = ACTIONS(1985), + [anon_sym_STAR_EQ] = ACTIONS(2005), + [anon_sym_SLASH_EQ] = ACTIONS(2005), + [anon_sym_PERCENT_EQ] = ACTIONS(2005), + [anon_sym_PLUS_EQ] = ACTIONS(2005), + [anon_sym_DASH_EQ] = ACTIONS(2005), + [anon_sym_LT_LT_EQ] = ACTIONS(2005), + [anon_sym_GT_GT_EQ] = ACTIONS(2005), + [anon_sym_AMP_EQ] = ACTIONS(2005), + [anon_sym_CARET_EQ] = ACTIONS(2005), + [anon_sym_PIPE_EQ] = ACTIONS(2005), + [anon_sym_DASH_DASH] = ACTIONS(1985), + [anon_sym_PLUS_PLUS] = ACTIONS(1985), + [anon_sym_DOT] = ACTIONS(1985), + [anon_sym_DASH_GT] = ACTIONS(1985), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [634] = { + [sym_string_literal] = STATE(850), + [sym_identifier] = ACTIONS(1983), + [anon_sym_COMMA] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_PLUS] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_SLASH] = ACTIONS(1991), + [anon_sym_PERCENT] = ACTIONS(1991), + [anon_sym_PIPE_PIPE] = ACTIONS(1985), + [anon_sym_AMP_AMP] = ACTIONS(1985), + [anon_sym_PIPE] = ACTIONS(1991), + [anon_sym_CARET] = ACTIONS(1991), + [anon_sym_AMP] = ACTIONS(1991), + [anon_sym_EQ_EQ] = ACTIONS(1985), + [anon_sym_BANG_EQ] = ACTIONS(1985), + [anon_sym_GT] = ACTIONS(1991), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), + [anon_sym_LT] = ACTIONS(1991), + [anon_sym_LT_LT] = ACTIONS(1991), + [anon_sym_GT_GT] = ACTIONS(1991), + [anon_sym_SEMI] = ACTIONS(1985), + [anon_sym___extension__] = ACTIONS(1983), + [anon_sym_extern] = ACTIONS(1983), + [anon_sym___attribute__] = ACTIONS(1983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1999), + [anon_sym___declspec] = ACTIONS(1983), + [anon_sym___based] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_EQ] = ACTIONS(2001), + [anon_sym_static] = ACTIONS(1983), + [anon_sym_auto] = ACTIONS(1983), + [anon_sym_register] = ACTIONS(1983), + [anon_sym_inline] = ACTIONS(1983), + [anon_sym___inline] = ACTIONS(1983), + [anon_sym___inline__] = ACTIONS(1983), + [anon_sym___forceinline] = ACTIONS(1983), + [anon_sym_thread_local] = ACTIONS(1983), + [anon_sym___thread] = ACTIONS(1983), + [anon_sym_const] = ACTIONS(1983), + [anon_sym_constexpr] = ACTIONS(1983), + [anon_sym_volatile] = ACTIONS(1983), + [anon_sym_restrict] = ACTIONS(1983), + [anon_sym___restrict__] = ACTIONS(1983), + [anon_sym__Atomic] = ACTIONS(1983), + [anon_sym__Noreturn] = ACTIONS(1983), + [anon_sym_noreturn] = ACTIONS(1983), + [anon_sym_COLON] = ACTIONS(2003), + [anon_sym_QMARK] = ACTIONS(1985), + [anon_sym_STAR_EQ] = ACTIONS(2005), + [anon_sym_SLASH_EQ] = ACTIONS(2005), + [anon_sym_PERCENT_EQ] = ACTIONS(2005), + [anon_sym_PLUS_EQ] = ACTIONS(2005), + [anon_sym_DASH_EQ] = ACTIONS(2005), + [anon_sym_LT_LT_EQ] = ACTIONS(2005), + [anon_sym_GT_GT_EQ] = ACTIONS(2005), + [anon_sym_AMP_EQ] = ACTIONS(2005), + [anon_sym_CARET_EQ] = ACTIONS(2005), + [anon_sym_PIPE_EQ] = ACTIONS(2005), + [anon_sym_DASH_DASH] = ACTIONS(1985), + [anon_sym_PLUS_PLUS] = ACTIONS(1985), + [anon_sym_DOT] = ACTIONS(1985), + [anon_sym_DASH_GT] = ACTIONS(1985), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [635] = { + [sym_string_literal] = STATE(850), + [sym_identifier] = ACTIONS(1983), + [anon_sym_COMMA] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_PLUS] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_SLASH] = ACTIONS(1991), + [anon_sym_PERCENT] = ACTIONS(1991), + [anon_sym_PIPE_PIPE] = ACTIONS(1985), + [anon_sym_AMP_AMP] = ACTIONS(1985), + [anon_sym_PIPE] = ACTIONS(1991), + [anon_sym_CARET] = ACTIONS(1991), + [anon_sym_AMP] = ACTIONS(1991), + [anon_sym_EQ_EQ] = ACTIONS(1985), + [anon_sym_BANG_EQ] = ACTIONS(1985), + [anon_sym_GT] = ACTIONS(1991), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), + [anon_sym_LT] = ACTIONS(1991), + [anon_sym_LT_LT] = ACTIONS(1991), + [anon_sym_GT_GT] = ACTIONS(1991), + [anon_sym_SEMI] = ACTIONS(1985), + [anon_sym___extension__] = ACTIONS(1983), + [anon_sym_extern] = ACTIONS(1983), + [anon_sym___attribute__] = ACTIONS(1983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1999), + [anon_sym___declspec] = ACTIONS(1983), + [anon_sym___based] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_EQ] = ACTIONS(2001), + [anon_sym_static] = ACTIONS(1983), + [anon_sym_auto] = ACTIONS(1983), + [anon_sym_register] = ACTIONS(1983), + [anon_sym_inline] = ACTIONS(1983), + [anon_sym___inline] = ACTIONS(1983), + [anon_sym___inline__] = ACTIONS(1983), + [anon_sym___forceinline] = ACTIONS(1983), + [anon_sym_thread_local] = ACTIONS(1983), + [anon_sym___thread] = ACTIONS(1983), + [anon_sym_const] = ACTIONS(1983), + [anon_sym_constexpr] = ACTIONS(1983), + [anon_sym_volatile] = ACTIONS(1983), + [anon_sym_restrict] = ACTIONS(1983), + [anon_sym___restrict__] = ACTIONS(1983), + [anon_sym__Atomic] = ACTIONS(1983), + [anon_sym__Noreturn] = ACTIONS(1983), + [anon_sym_noreturn] = ACTIONS(1983), + [anon_sym_COLON] = ACTIONS(2011), + [anon_sym_QMARK] = ACTIONS(1985), + [anon_sym_STAR_EQ] = ACTIONS(2005), + [anon_sym_SLASH_EQ] = ACTIONS(2005), + [anon_sym_PERCENT_EQ] = ACTIONS(2005), + [anon_sym_PLUS_EQ] = ACTIONS(2005), + [anon_sym_DASH_EQ] = ACTIONS(2005), + [anon_sym_LT_LT_EQ] = ACTIONS(2005), + [anon_sym_GT_GT_EQ] = ACTIONS(2005), + [anon_sym_AMP_EQ] = ACTIONS(2005), + [anon_sym_CARET_EQ] = ACTIONS(2005), + [anon_sym_PIPE_EQ] = ACTIONS(2005), + [anon_sym_DASH_DASH] = ACTIONS(1985), + [anon_sym_PLUS_PLUS] = ACTIONS(1985), + [anon_sym_DOT] = ACTIONS(1985), + [anon_sym_DASH_GT] = ACTIONS(1985), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [636] = { + [sym_string_literal] = STATE(850), + [sym_identifier] = ACTIONS(1983), + [anon_sym_COMMA] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_PLUS] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_SLASH] = ACTIONS(1991), + [anon_sym_PERCENT] = ACTIONS(1991), + [anon_sym_PIPE_PIPE] = ACTIONS(1985), + [anon_sym_AMP_AMP] = ACTIONS(1985), + [anon_sym_PIPE] = ACTIONS(1991), + [anon_sym_CARET] = ACTIONS(1991), + [anon_sym_AMP] = ACTIONS(1991), + [anon_sym_EQ_EQ] = ACTIONS(1985), + [anon_sym_BANG_EQ] = ACTIONS(1985), + [anon_sym_GT] = ACTIONS(1991), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), + [anon_sym_LT] = ACTIONS(1991), + [anon_sym_LT_LT] = ACTIONS(1991), + [anon_sym_GT_GT] = ACTIONS(1991), + [anon_sym_SEMI] = ACTIONS(1985), + [anon_sym___extension__] = ACTIONS(1983), + [anon_sym_extern] = ACTIONS(1983), + [anon_sym___attribute__] = ACTIONS(1983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1999), + [anon_sym___declspec] = ACTIONS(1983), + [anon_sym___based] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_EQ] = ACTIONS(2001), + [anon_sym_static] = ACTIONS(1983), + [anon_sym_auto] = ACTIONS(1983), + [anon_sym_register] = ACTIONS(1983), + [anon_sym_inline] = ACTIONS(1983), + [anon_sym___inline] = ACTIONS(1983), + [anon_sym___inline__] = ACTIONS(1983), + [anon_sym___forceinline] = ACTIONS(1983), + [anon_sym_thread_local] = ACTIONS(1983), + [anon_sym___thread] = ACTIONS(1983), + [anon_sym_const] = ACTIONS(1983), + [anon_sym_constexpr] = ACTIONS(1983), + [anon_sym_volatile] = ACTIONS(1983), + [anon_sym_restrict] = ACTIONS(1983), + [anon_sym___restrict__] = ACTIONS(1983), + [anon_sym__Atomic] = ACTIONS(1983), + [anon_sym__Noreturn] = ACTIONS(1983), + [anon_sym_noreturn] = ACTIONS(1983), + [anon_sym_COLON] = ACTIONS(2013), + [anon_sym_QMARK] = ACTIONS(1985), + [anon_sym_STAR_EQ] = ACTIONS(2005), + [anon_sym_SLASH_EQ] = ACTIONS(2005), + [anon_sym_PERCENT_EQ] = ACTIONS(2005), + [anon_sym_PLUS_EQ] = ACTIONS(2005), + [anon_sym_DASH_EQ] = ACTIONS(2005), + [anon_sym_LT_LT_EQ] = ACTIONS(2005), + [anon_sym_GT_GT_EQ] = ACTIONS(2005), + [anon_sym_AMP_EQ] = ACTIONS(2005), + [anon_sym_CARET_EQ] = ACTIONS(2005), + [anon_sym_PIPE_EQ] = ACTIONS(2005), + [anon_sym_DASH_DASH] = ACTIONS(1985), + [anon_sym_PLUS_PLUS] = ACTIONS(1985), + [anon_sym_DOT] = ACTIONS(1985), + [anon_sym_DASH_GT] = ACTIONS(1985), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [637] = { + [sym_string_literal] = STATE(850), + [sym_identifier] = ACTIONS(1983), + [anon_sym_COMMA] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_PLUS] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_SLASH] = ACTIONS(1991), + [anon_sym_PERCENT] = ACTIONS(1991), + [anon_sym_PIPE_PIPE] = ACTIONS(1985), + [anon_sym_AMP_AMP] = ACTIONS(1985), + [anon_sym_PIPE] = ACTIONS(1991), + [anon_sym_CARET] = ACTIONS(1991), + [anon_sym_AMP] = ACTIONS(1991), + [anon_sym_EQ_EQ] = ACTIONS(1985), + [anon_sym_BANG_EQ] = ACTIONS(1985), + [anon_sym_GT] = ACTIONS(1991), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), + [anon_sym_LT] = ACTIONS(1991), + [anon_sym_LT_LT] = ACTIONS(1991), + [anon_sym_GT_GT] = ACTIONS(1991), + [anon_sym_SEMI] = ACTIONS(1985), + [anon_sym___extension__] = ACTIONS(1983), + [anon_sym_extern] = ACTIONS(1983), + [anon_sym___attribute__] = ACTIONS(1983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1999), + [anon_sym___declspec] = ACTIONS(1983), + [anon_sym___based] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_EQ] = ACTIONS(2001), + [anon_sym_static] = ACTIONS(1983), + [anon_sym_auto] = ACTIONS(1983), + [anon_sym_register] = ACTIONS(1983), + [anon_sym_inline] = ACTIONS(1983), + [anon_sym___inline] = ACTIONS(1983), + [anon_sym___inline__] = ACTIONS(1983), + [anon_sym___forceinline] = ACTIONS(1983), + [anon_sym_thread_local] = ACTIONS(1983), + [anon_sym___thread] = ACTIONS(1983), + [anon_sym_const] = ACTIONS(1983), + [anon_sym_constexpr] = ACTIONS(1983), + [anon_sym_volatile] = ACTIONS(1983), + [anon_sym_restrict] = ACTIONS(1983), + [anon_sym___restrict__] = ACTIONS(1983), + [anon_sym__Atomic] = ACTIONS(1983), + [anon_sym__Noreturn] = ACTIONS(1983), + [anon_sym_noreturn] = ACTIONS(1983), + [anon_sym_COLON] = ACTIONS(2007), + [anon_sym_QMARK] = ACTIONS(1985), + [anon_sym_STAR_EQ] = ACTIONS(2005), + [anon_sym_SLASH_EQ] = ACTIONS(2005), + [anon_sym_PERCENT_EQ] = ACTIONS(2005), + [anon_sym_PLUS_EQ] = ACTIONS(2005), + [anon_sym_DASH_EQ] = ACTIONS(2005), + [anon_sym_LT_LT_EQ] = ACTIONS(2005), + [anon_sym_GT_GT_EQ] = ACTIONS(2005), + [anon_sym_AMP_EQ] = ACTIONS(2005), + [anon_sym_CARET_EQ] = ACTIONS(2005), + [anon_sym_PIPE_EQ] = ACTIONS(2005), + [anon_sym_DASH_DASH] = ACTIONS(1985), + [anon_sym_PLUS_PLUS] = ACTIONS(1985), + [anon_sym_DOT] = ACTIONS(1985), + [anon_sym_DASH_GT] = ACTIONS(1985), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [638] = { + [sym_string_literal] = STATE(850), + [sym_identifier] = ACTIONS(1983), + [anon_sym_COMMA] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_PLUS] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_SLASH] = ACTIONS(1991), + [anon_sym_PERCENT] = ACTIONS(1991), + [anon_sym_PIPE_PIPE] = ACTIONS(1985), + [anon_sym_AMP_AMP] = ACTIONS(1985), + [anon_sym_PIPE] = ACTIONS(1991), + [anon_sym_CARET] = ACTIONS(1991), + [anon_sym_AMP] = ACTIONS(1991), + [anon_sym_EQ_EQ] = ACTIONS(1985), + [anon_sym_BANG_EQ] = ACTIONS(1985), + [anon_sym_GT] = ACTIONS(1991), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), + [anon_sym_LT] = ACTIONS(1991), + [anon_sym_LT_LT] = ACTIONS(1991), + [anon_sym_GT_GT] = ACTIONS(1991), + [anon_sym_SEMI] = ACTIONS(1996), + [anon_sym___extension__] = ACTIONS(1983), + [anon_sym_extern] = ACTIONS(1983), + [anon_sym___attribute__] = ACTIONS(1983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1999), + [anon_sym___declspec] = ACTIONS(1983), + [anon_sym___based] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_EQ] = ACTIONS(2001), + [anon_sym_static] = ACTIONS(1983), + [anon_sym_auto] = ACTIONS(1983), + [anon_sym_register] = ACTIONS(1983), + [anon_sym_inline] = ACTIONS(1983), + [anon_sym___inline] = ACTIONS(1983), + [anon_sym___inline__] = ACTIONS(1983), + [anon_sym___forceinline] = ACTIONS(1983), + [anon_sym_thread_local] = ACTIONS(1983), + [anon_sym___thread] = ACTIONS(1983), + [anon_sym_const] = ACTIONS(1983), + [anon_sym_constexpr] = ACTIONS(1983), + [anon_sym_volatile] = ACTIONS(1983), + [anon_sym_restrict] = ACTIONS(1983), + [anon_sym___restrict__] = ACTIONS(1983), + [anon_sym__Atomic] = ACTIONS(1983), + [anon_sym__Noreturn] = ACTIONS(1983), + [anon_sym_noreturn] = ACTIONS(1983), + [anon_sym_COLON] = ACTIONS(2015), + [anon_sym_QMARK] = ACTIONS(1985), + [anon_sym_STAR_EQ] = ACTIONS(2005), + [anon_sym_SLASH_EQ] = ACTIONS(2005), + [anon_sym_PERCENT_EQ] = ACTIONS(2005), + [anon_sym_PLUS_EQ] = ACTIONS(2005), + [anon_sym_DASH_EQ] = ACTIONS(2005), + [anon_sym_LT_LT_EQ] = ACTIONS(2005), + [anon_sym_GT_GT_EQ] = ACTIONS(2005), + [anon_sym_AMP_EQ] = ACTIONS(2005), + [anon_sym_CARET_EQ] = ACTIONS(2005), + [anon_sym_PIPE_EQ] = ACTIONS(2005), + [anon_sym_DASH_DASH] = ACTIONS(1985), + [anon_sym_PLUS_PLUS] = ACTIONS(1985), + [anon_sym_DOT] = ACTIONS(1985), + [anon_sym_DASH_GT] = ACTIONS(1985), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [639] = { + [sym_string_literal] = STATE(850), + [sym_identifier] = ACTIONS(1983), + [anon_sym_COMMA] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_PLUS] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_SLASH] = ACTIONS(1991), + [anon_sym_PERCENT] = ACTIONS(1991), + [anon_sym_PIPE_PIPE] = ACTIONS(1985), + [anon_sym_AMP_AMP] = ACTIONS(1985), + [anon_sym_PIPE] = ACTIONS(1991), + [anon_sym_CARET] = ACTIONS(1991), + [anon_sym_AMP] = ACTIONS(1991), + [anon_sym_EQ_EQ] = ACTIONS(1985), + [anon_sym_BANG_EQ] = ACTIONS(1985), + [anon_sym_GT] = ACTIONS(1991), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), + [anon_sym_LT] = ACTIONS(1991), + [anon_sym_LT_LT] = ACTIONS(1991), + [anon_sym_GT_GT] = ACTIONS(1991), + [anon_sym_SEMI] = ACTIONS(1985), + [anon_sym___extension__] = ACTIONS(1983), + [anon_sym_extern] = ACTIONS(1983), + [anon_sym___attribute__] = ACTIONS(1983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1999), + [anon_sym___declspec] = ACTIONS(1983), + [anon_sym___based] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_EQ] = ACTIONS(2001), + [anon_sym_static] = ACTIONS(1983), + [anon_sym_auto] = ACTIONS(1983), + [anon_sym_register] = ACTIONS(1983), + [anon_sym_inline] = ACTIONS(1983), + [anon_sym___inline] = ACTIONS(1983), + [anon_sym___inline__] = ACTIONS(1983), + [anon_sym___forceinline] = ACTIONS(1983), + [anon_sym_thread_local] = ACTIONS(1983), + [anon_sym___thread] = ACTIONS(1983), + [anon_sym_const] = ACTIONS(1983), + [anon_sym_constexpr] = ACTIONS(1983), + [anon_sym_volatile] = ACTIONS(1983), + [anon_sym_restrict] = ACTIONS(1983), + [anon_sym___restrict__] = ACTIONS(1983), + [anon_sym__Atomic] = ACTIONS(1983), + [anon_sym__Noreturn] = ACTIONS(1983), + [anon_sym_noreturn] = ACTIONS(1983), + [anon_sym_COLON] = ACTIONS(2009), + [anon_sym_QMARK] = ACTIONS(1985), + [anon_sym_STAR_EQ] = ACTIONS(2005), + [anon_sym_SLASH_EQ] = ACTIONS(2005), + [anon_sym_PERCENT_EQ] = ACTIONS(2005), + [anon_sym_PLUS_EQ] = ACTIONS(2005), + [anon_sym_DASH_EQ] = ACTIONS(2005), + [anon_sym_LT_LT_EQ] = ACTIONS(2005), + [anon_sym_GT_GT_EQ] = ACTIONS(2005), + [anon_sym_AMP_EQ] = ACTIONS(2005), + [anon_sym_CARET_EQ] = ACTIONS(2005), + [anon_sym_PIPE_EQ] = ACTIONS(2005), + [anon_sym_DASH_DASH] = ACTIONS(1985), + [anon_sym_PLUS_PLUS] = ACTIONS(1985), + [anon_sym_DOT] = ACTIONS(1985), + [anon_sym_DASH_GT] = ACTIONS(1985), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [640] = { + [sym_string_literal] = STATE(850), + [sym_identifier] = ACTIONS(1983), + [anon_sym_COMMA] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_PLUS] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_SLASH] = ACTIONS(1991), + [anon_sym_PERCENT] = ACTIONS(1991), + [anon_sym_PIPE_PIPE] = ACTIONS(1985), + [anon_sym_AMP_AMP] = ACTIONS(1985), + [anon_sym_PIPE] = ACTIONS(1991), + [anon_sym_CARET] = ACTIONS(1991), + [anon_sym_AMP] = ACTIONS(1991), + [anon_sym_EQ_EQ] = ACTIONS(1985), + [anon_sym_BANG_EQ] = ACTIONS(1985), + [anon_sym_GT] = ACTIONS(1991), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), + [anon_sym_LT] = ACTIONS(1991), + [anon_sym_LT_LT] = ACTIONS(1991), + [anon_sym_GT_GT] = ACTIONS(1991), + [anon_sym_SEMI] = ACTIONS(1985), + [anon_sym___extension__] = ACTIONS(1983), + [anon_sym_extern] = ACTIONS(1983), + [anon_sym___attribute__] = ACTIONS(1983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1999), + [anon_sym___declspec] = ACTIONS(1983), + [anon_sym___based] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_EQ] = ACTIONS(2001), + [anon_sym_static] = ACTIONS(1983), + [anon_sym_auto] = ACTIONS(1983), + [anon_sym_register] = ACTIONS(1983), + [anon_sym_inline] = ACTIONS(1983), + [anon_sym___inline] = ACTIONS(1983), + [anon_sym___inline__] = ACTIONS(1983), + [anon_sym___forceinline] = ACTIONS(1983), + [anon_sym_thread_local] = ACTIONS(1983), + [anon_sym___thread] = ACTIONS(1983), + [anon_sym_const] = ACTIONS(1983), + [anon_sym_constexpr] = ACTIONS(1983), + [anon_sym_volatile] = ACTIONS(1983), + [anon_sym_restrict] = ACTIONS(1983), + [anon_sym___restrict__] = ACTIONS(1983), + [anon_sym__Atomic] = ACTIONS(1983), + [anon_sym__Noreturn] = ACTIONS(1983), + [anon_sym_noreturn] = ACTIONS(1983), + [anon_sym_COLON] = ACTIONS(2015), + [anon_sym_QMARK] = ACTIONS(1985), + [anon_sym_STAR_EQ] = ACTIONS(2005), + [anon_sym_SLASH_EQ] = ACTIONS(2005), + [anon_sym_PERCENT_EQ] = ACTIONS(2005), + [anon_sym_PLUS_EQ] = ACTIONS(2005), + [anon_sym_DASH_EQ] = ACTIONS(2005), + [anon_sym_LT_LT_EQ] = ACTIONS(2005), + [anon_sym_GT_GT_EQ] = ACTIONS(2005), + [anon_sym_AMP_EQ] = ACTIONS(2005), + [anon_sym_CARET_EQ] = ACTIONS(2005), + [anon_sym_PIPE_EQ] = ACTIONS(2005), + [anon_sym_DASH_DASH] = ACTIONS(1985), + [anon_sym_PLUS_PLUS] = ACTIONS(1985), + [anon_sym_DOT] = ACTIONS(1985), + [anon_sym_DASH_GT] = ACTIONS(1985), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [641] = { + [sym__expression] = STATE(1174), + [sym__expression_not_binary] = STATE(904), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_initializer_list] = STATE(1884), + [sym_initializer_pair] = STATE(1884), + [sym_subscript_designator] = STATE(1657), + [sym_field_designator] = STATE(1657), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_initializer_pair_repeat1] = STATE(1657), + [sym_identifier] = ACTIONS(1895), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_RBRACE] = ACTIONS(2017), + [anon_sym_LBRACK] = ACTIONS(1979), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [anon_sym_DOT] = ACTIONS(1981), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [642] = { + [sym__expression] = STATE(1174), + [sym__expression_not_binary] = STATE(904), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_initializer_list] = STATE(1884), + [sym_initializer_pair] = STATE(1884), + [sym_subscript_designator] = STATE(1657), + [sym_field_designator] = STATE(1657), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_initializer_pair_repeat1] = STATE(1657), + [sym_identifier] = ACTIONS(1895), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_RBRACE] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(1979), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [anon_sym_DOT] = ACTIONS(1981), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [643] = { + [sym_string_literal] = STATE(850), + [sym_identifier] = ACTIONS(1983), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_PLUS] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_SLASH] = ACTIONS(1991), + [anon_sym_PERCENT] = ACTIONS(1991), + [anon_sym_PIPE_PIPE] = ACTIONS(1985), + [anon_sym_AMP_AMP] = ACTIONS(1985), + [anon_sym_PIPE] = ACTIONS(1991), + [anon_sym_CARET] = ACTIONS(1991), + [anon_sym_AMP] = ACTIONS(1991), + [anon_sym_EQ_EQ] = ACTIONS(1985), + [anon_sym_BANG_EQ] = ACTIONS(1985), + [anon_sym_GT] = ACTIONS(1991), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), + [anon_sym_LT] = ACTIONS(1991), + [anon_sym_LT_LT] = ACTIONS(1991), + [anon_sym_GT_GT] = ACTIONS(1991), + [anon_sym_SEMI] = ACTIONS(1996), + [anon_sym___extension__] = ACTIONS(1983), + [anon_sym_extern] = ACTIONS(1983), + [anon_sym___attribute__] = ACTIONS(1983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1999), + [anon_sym___declspec] = ACTIONS(1983), + [anon_sym___based] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_EQ] = ACTIONS(2001), + [anon_sym_static] = ACTIONS(1983), + [anon_sym_auto] = ACTIONS(1983), + [anon_sym_register] = ACTIONS(1983), + [anon_sym_inline] = ACTIONS(1983), + [anon_sym___inline] = ACTIONS(1983), + [anon_sym___inline__] = ACTIONS(1983), + [anon_sym___forceinline] = ACTIONS(1983), + [anon_sym_thread_local] = ACTIONS(1983), + [anon_sym___thread] = ACTIONS(1983), + [anon_sym_const] = ACTIONS(1983), + [anon_sym_constexpr] = ACTIONS(1983), + [anon_sym_volatile] = ACTIONS(1983), + [anon_sym_restrict] = ACTIONS(1983), + [anon_sym___restrict__] = ACTIONS(1983), + [anon_sym__Atomic] = ACTIONS(1983), + [anon_sym__Noreturn] = ACTIONS(1983), + [anon_sym_noreturn] = ACTIONS(1983), + [anon_sym_COLON] = ACTIONS(2011), + [anon_sym_QMARK] = ACTIONS(1985), + [anon_sym_STAR_EQ] = ACTIONS(2005), + [anon_sym_SLASH_EQ] = ACTIONS(2005), + [anon_sym_PERCENT_EQ] = ACTIONS(2005), + [anon_sym_PLUS_EQ] = ACTIONS(2005), + [anon_sym_DASH_EQ] = ACTIONS(2005), + [anon_sym_LT_LT_EQ] = ACTIONS(2005), + [anon_sym_GT_GT_EQ] = ACTIONS(2005), + [anon_sym_AMP_EQ] = ACTIONS(2005), + [anon_sym_CARET_EQ] = ACTIONS(2005), + [anon_sym_PIPE_EQ] = ACTIONS(2005), + [anon_sym_DASH_DASH] = ACTIONS(1985), + [anon_sym_PLUS_PLUS] = ACTIONS(1985), + [anon_sym_DOT] = ACTIONS(1985), + [anon_sym_DASH_GT] = ACTIONS(1985), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [644] = { + [sym__expression] = STATE(1174), + [sym__expression_not_binary] = STATE(904), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_initializer_list] = STATE(1884), + [sym_initializer_pair] = STATE(1884), + [sym_subscript_designator] = STATE(1657), + [sym_field_designator] = STATE(1657), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [aux_sym_initializer_pair_repeat1] = STATE(1657), + [sym_identifier] = ACTIONS(1895), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_LBRACK] = ACTIONS(1979), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [anon_sym_DOT] = ACTIONS(1981), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [645] = { + [sym_string_literal] = STATE(850), + [sym_identifier] = ACTIONS(1983), + [anon_sym_COMMA] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_PLUS] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_SLASH] = ACTIONS(1991), + [anon_sym_PERCENT] = ACTIONS(1991), + [anon_sym_PIPE_PIPE] = ACTIONS(1985), + [anon_sym_AMP_AMP] = ACTIONS(1985), + [anon_sym_PIPE] = ACTIONS(1991), + [anon_sym_CARET] = ACTIONS(1991), + [anon_sym_AMP] = ACTIONS(1991), + [anon_sym_EQ_EQ] = ACTIONS(1985), + [anon_sym_BANG_EQ] = ACTIONS(1985), + [anon_sym_GT] = ACTIONS(1991), + [anon_sym_GT_EQ] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1985), + [anon_sym_LT] = ACTIONS(1991), + [anon_sym_LT_LT] = ACTIONS(1991), + [anon_sym_GT_GT] = ACTIONS(1991), + [anon_sym_SEMI] = ACTIONS(1985), + [anon_sym___extension__] = ACTIONS(1983), + [anon_sym_extern] = ACTIONS(1983), + [anon_sym___attribute__] = ACTIONS(1983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1999), + [anon_sym___declspec] = ACTIONS(1983), + [anon_sym___based] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_EQ] = ACTIONS(2001), + [anon_sym_static] = ACTIONS(1983), + [anon_sym_auto] = ACTIONS(1983), + [anon_sym_register] = ACTIONS(1983), + [anon_sym_inline] = ACTIONS(1983), + [anon_sym___inline] = ACTIONS(1983), + [anon_sym___inline__] = ACTIONS(1983), + [anon_sym___forceinline] = ACTIONS(1983), + [anon_sym_thread_local] = ACTIONS(1983), + [anon_sym___thread] = ACTIONS(1983), + [anon_sym_const] = ACTIONS(1983), + [anon_sym_constexpr] = ACTIONS(1983), + [anon_sym_volatile] = ACTIONS(1983), + [anon_sym_restrict] = ACTIONS(1983), + [anon_sym___restrict__] = ACTIONS(1983), + [anon_sym__Atomic] = ACTIONS(1983), + [anon_sym__Noreturn] = ACTIONS(1983), + [anon_sym_noreturn] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1985), + [anon_sym_STAR_EQ] = ACTIONS(2005), + [anon_sym_SLASH_EQ] = ACTIONS(2005), + [anon_sym_PERCENT_EQ] = ACTIONS(2005), + [anon_sym_PLUS_EQ] = ACTIONS(2005), + [anon_sym_DASH_EQ] = ACTIONS(2005), + [anon_sym_LT_LT_EQ] = ACTIONS(2005), + [anon_sym_GT_GT_EQ] = ACTIONS(2005), + [anon_sym_AMP_EQ] = ACTIONS(2005), + [anon_sym_CARET_EQ] = ACTIONS(2005), + [anon_sym_PIPE_EQ] = ACTIONS(2005), + [anon_sym_DASH_DASH] = ACTIONS(1985), + [anon_sym_PLUS_PLUS] = ACTIONS(1985), + [anon_sym_DOT] = ACTIONS(1985), + [anon_sym_DASH_GT] = ACTIONS(1985), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_comment] = ACTIONS(3), + }, + [646] = { + [sym_preproc_def] = STATE(660), + [sym_preproc_function_def] = STATE(660), + [sym_preproc_call] = STATE(660), + [sym_preproc_elifdef] = STATE(2154), + [sym_preproc_if_in_field_declaration_list] = STATE(660), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(660), + [sym_preproc_else_in_field_declaration_list] = STATE(2154), + [sym_preproc_elif_in_field_declaration_list] = STATE(2154), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1482), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(885), + [sym_ms_declspec_modifier] = STATE(885), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym__field_declaration_list_item] = STATE(660), + [sym_field_declaration] = STATE(660), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(660), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(2021), + [aux_sym_preproc_def_token1] = ACTIONS(2023), + [aux_sym_preproc_if_token1] = ACTIONS(2025), + [aux_sym_preproc_if_token2] = ACTIONS(2027), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2029), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2029), + [aux_sym_preproc_else_token1] = ACTIONS(2031), + [aux_sym_preproc_elif_token1] = ACTIONS(2033), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(2035), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [sym_comment] = ACTIONS(3), + }, + [647] = { + [sym_preproc_def] = STATE(649), + [sym_preproc_function_def] = STATE(649), + [sym_preproc_call] = STATE(649), + [sym_preproc_elifdef] = STATE(2045), + [sym_preproc_if_in_field_declaration_list] = STATE(649), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(649), + [sym_preproc_else_in_field_declaration_list] = STATE(2045), + [sym_preproc_elif_in_field_declaration_list] = STATE(2045), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1482), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(885), + [sym_ms_declspec_modifier] = STATE(885), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym__field_declaration_list_item] = STATE(649), + [sym_field_declaration] = STATE(649), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(649), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(2021), + [aux_sym_preproc_def_token1] = ACTIONS(2023), + [aux_sym_preproc_if_token1] = ACTIONS(2025), + [aux_sym_preproc_if_token2] = ACTIONS(2037), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2029), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2029), + [aux_sym_preproc_else_token1] = ACTIONS(2031), + [aux_sym_preproc_elif_token1] = ACTIONS(2033), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(2035), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [sym_comment] = ACTIONS(3), + }, + [648] = { + [sym_preproc_def] = STATE(646), + [sym_preproc_function_def] = STATE(646), + [sym_preproc_call] = STATE(646), + [sym_preproc_elifdef] = STATE(2120), + [sym_preproc_if_in_field_declaration_list] = STATE(646), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(646), + [sym_preproc_else_in_field_declaration_list] = STATE(2120), + [sym_preproc_elif_in_field_declaration_list] = STATE(2120), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1482), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(885), + [sym_ms_declspec_modifier] = STATE(885), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym__field_declaration_list_item] = STATE(646), + [sym_field_declaration] = STATE(646), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(646), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(2021), + [aux_sym_preproc_def_token1] = ACTIONS(2023), + [aux_sym_preproc_if_token1] = ACTIONS(2025), + [aux_sym_preproc_if_token2] = ACTIONS(2039), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2029), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2029), + [aux_sym_preproc_else_token1] = ACTIONS(2031), + [aux_sym_preproc_elif_token1] = ACTIONS(2033), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(2035), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [sym_comment] = ACTIONS(3), + }, + [649] = { + [sym_preproc_def] = STATE(660), + [sym_preproc_function_def] = STATE(660), + [sym_preproc_call] = STATE(660), + [sym_preproc_elifdef] = STATE(2090), + [sym_preproc_if_in_field_declaration_list] = STATE(660), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(660), + [sym_preproc_else_in_field_declaration_list] = STATE(2090), + [sym_preproc_elif_in_field_declaration_list] = STATE(2090), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1482), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(885), + [sym_ms_declspec_modifier] = STATE(885), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym__field_declaration_list_item] = STATE(660), + [sym_field_declaration] = STATE(660), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(660), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(2021), + [aux_sym_preproc_def_token1] = ACTIONS(2023), + [aux_sym_preproc_if_token1] = ACTIONS(2025), + [aux_sym_preproc_if_token2] = ACTIONS(2041), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2029), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2029), + [aux_sym_preproc_else_token1] = ACTIONS(2031), + [aux_sym_preproc_elif_token1] = ACTIONS(2033), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(2035), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [sym_comment] = ACTIONS(3), + }, + [650] = { + [sym_preproc_def] = STATE(660), + [sym_preproc_function_def] = STATE(660), + [sym_preproc_call] = STATE(660), + [sym_preproc_elifdef] = STATE(2058), + [sym_preproc_if_in_field_declaration_list] = STATE(660), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(660), + [sym_preproc_else_in_field_declaration_list] = STATE(2058), + [sym_preproc_elif_in_field_declaration_list] = STATE(2058), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1482), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(885), + [sym_ms_declspec_modifier] = STATE(885), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym__field_declaration_list_item] = STATE(660), + [sym_field_declaration] = STATE(660), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(660), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(2021), + [aux_sym_preproc_def_token1] = ACTIONS(2023), + [aux_sym_preproc_if_token1] = ACTIONS(2025), + [aux_sym_preproc_if_token2] = ACTIONS(2043), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2029), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2029), + [aux_sym_preproc_else_token1] = ACTIONS(2031), + [aux_sym_preproc_elif_token1] = ACTIONS(2033), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(2035), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [sym_comment] = ACTIONS(3), + }, + [651] = { + [sym_preproc_def] = STATE(653), + [sym_preproc_function_def] = STATE(653), + [sym_preproc_call] = STATE(653), + [sym_preproc_elifdef] = STATE(2018), + [sym_preproc_if_in_field_declaration_list] = STATE(653), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(653), + [sym_preproc_else_in_field_declaration_list] = STATE(2018), + [sym_preproc_elif_in_field_declaration_list] = STATE(2018), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1482), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(885), + [sym_ms_declspec_modifier] = STATE(885), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym__field_declaration_list_item] = STATE(653), + [sym_field_declaration] = STATE(653), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(653), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(2021), + [aux_sym_preproc_def_token1] = ACTIONS(2023), + [aux_sym_preproc_if_token1] = ACTIONS(2025), + [aux_sym_preproc_if_token2] = ACTIONS(2045), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2029), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2029), + [aux_sym_preproc_else_token1] = ACTIONS(2031), + [aux_sym_preproc_elif_token1] = ACTIONS(2033), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(2035), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [sym_comment] = ACTIONS(3), + }, + [652] = { + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1424), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(885), + [sym_ms_declspec_modifier] = STATE(885), + [sym_ms_based_modifier] = STATE(2180), + [sym__declarator] = STATE(1606), + [sym__abstract_declarator] = STATE(1701), + [sym_parenthesized_declarator] = STATE(1570), + [sym_abstract_parenthesized_declarator] = STATE(1677), + [sym_attributed_declarator] = STATE(1570), + [sym_pointer_declarator] = STATE(1570), + [sym_abstract_pointer_declarator] = STATE(1677), + [sym_function_declarator] = STATE(1570), + [sym_abstract_function_declarator] = STATE(1677), + [sym_array_declarator] = STATE(1570), + [sym_abstract_array_declarator] = STATE(1677), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym_variadic_parameter] = STATE(1875), + [sym_parameter_list] = STATE(1676), + [sym_parameter_declaration] = STATE(1875), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(2047), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2049), + [anon_sym_RPAREN] = ACTIONS(2051), + [anon_sym_LPAREN2] = ACTIONS(2053), + [anon_sym_STAR] = ACTIONS(2055), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___based] = ACTIONS(2057), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(2059), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [sym_comment] = ACTIONS(3), + }, + [653] = { + [sym_preproc_def] = STATE(660), + [sym_preproc_function_def] = STATE(660), + [sym_preproc_call] = STATE(660), + [sym_preproc_elifdef] = STATE(1973), + [sym_preproc_if_in_field_declaration_list] = STATE(660), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(660), + [sym_preproc_else_in_field_declaration_list] = STATE(1973), + [sym_preproc_elif_in_field_declaration_list] = STATE(1973), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1482), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(885), + [sym_ms_declspec_modifier] = STATE(885), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym__field_declaration_list_item] = STATE(660), + [sym_field_declaration] = STATE(660), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(660), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(2021), + [aux_sym_preproc_def_token1] = ACTIONS(2023), + [aux_sym_preproc_if_token1] = ACTIONS(2025), + [aux_sym_preproc_if_token2] = ACTIONS(2061), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2029), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2029), + [aux_sym_preproc_else_token1] = ACTIONS(2031), + [aux_sym_preproc_elif_token1] = ACTIONS(2033), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(2035), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [sym_comment] = ACTIONS(3), + }, + [654] = { + [sym_preproc_def] = STATE(650), + [sym_preproc_function_def] = STATE(650), + [sym_preproc_call] = STATE(650), + [sym_preproc_elifdef] = STATE(1963), + [sym_preproc_if_in_field_declaration_list] = STATE(650), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(650), + [sym_preproc_else_in_field_declaration_list] = STATE(1963), + [sym_preproc_elif_in_field_declaration_list] = STATE(1963), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1482), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(885), + [sym_ms_declspec_modifier] = STATE(885), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym__field_declaration_list_item] = STATE(650), + [sym_field_declaration] = STATE(650), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(650), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(2021), + [aux_sym_preproc_def_token1] = ACTIONS(2023), + [aux_sym_preproc_if_token1] = ACTIONS(2025), + [aux_sym_preproc_if_token2] = ACTIONS(2063), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2029), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2029), + [aux_sym_preproc_else_token1] = ACTIONS(2031), + [aux_sym_preproc_elif_token1] = ACTIONS(2033), + [aux_sym_preproc_elifdef_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(2035), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [sym_comment] = ACTIONS(3), + }, + [655] = { + [sym_preproc_def] = STATE(658), + [sym_preproc_function_def] = STATE(658), + [sym_preproc_call] = STATE(658), + [sym_preproc_if_in_field_declaration_list] = STATE(658), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(658), + [sym_preproc_else_in_field_declaration_list] = STATE(2096), + [sym_preproc_elif_in_field_declaration_list] = STATE(2096), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1481), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(885), + [sym_ms_declspec_modifier] = STATE(885), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym__field_declaration_list_item] = STATE(658), + [sym_field_declaration] = STATE(658), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(658), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(2021), + [aux_sym_preproc_def_token1] = ACTIONS(2065), + [aux_sym_preproc_if_token1] = ACTIONS(2067), + [aux_sym_preproc_if_token2] = ACTIONS(2069), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2071), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2071), + [aux_sym_preproc_else_token1] = ACTIONS(2031), + [aux_sym_preproc_elif_token1] = ACTIONS(2033), + [sym_preproc_directive] = ACTIONS(2073), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [sym_comment] = ACTIONS(3), + }, + [656] = { + [sym_preproc_def] = STATE(682), + [sym_preproc_function_def] = STATE(682), + [sym_preproc_call] = STATE(682), + [sym_preproc_if_in_field_declaration_list] = STATE(682), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(682), + [sym_preproc_else_in_field_declaration_list] = STATE(2095), + [sym_preproc_elif_in_field_declaration_list] = STATE(2095), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1481), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(885), + [sym_ms_declspec_modifier] = STATE(885), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym__field_declaration_list_item] = STATE(682), + [sym_field_declaration] = STATE(682), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(682), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(2021), + [aux_sym_preproc_def_token1] = ACTIONS(2065), + [aux_sym_preproc_if_token1] = ACTIONS(2067), + [aux_sym_preproc_if_token2] = ACTIONS(2075), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2071), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2071), + [aux_sym_preproc_else_token1] = ACTIONS(2031), + [aux_sym_preproc_elif_token1] = ACTIONS(2033), + [sym_preproc_directive] = ACTIONS(2073), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [sym_comment] = ACTIONS(3), + }, + [657] = { + [sym_compound_statement] = STATE(1854), + [sym__expression] = STATE(1168), + [sym__expression_not_binary] = STATE(904), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_identifier] = ACTIONS(1895), + [anon_sym_RPAREN] = ACTIONS(2077), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, + [658] = { + [sym_preproc_def] = STATE(682), + [sym_preproc_function_def] = STATE(682), + [sym_preproc_call] = STATE(682), + [sym_preproc_if_in_field_declaration_list] = STATE(682), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(682), + [sym_preproc_else_in_field_declaration_list] = STATE(2061), + [sym_preproc_elif_in_field_declaration_list] = STATE(2061), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1481), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(885), + [sym_ms_declspec_modifier] = STATE(885), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym__field_declaration_list_item] = STATE(682), + [sym_field_declaration] = STATE(682), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(682), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(2021), + [aux_sym_preproc_def_token1] = ACTIONS(2065), + [aux_sym_preproc_if_token1] = ACTIONS(2067), + [aux_sym_preproc_if_token2] = ACTIONS(2081), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2071), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2071), + [aux_sym_preproc_else_token1] = ACTIONS(2031), + [aux_sym_preproc_elif_token1] = ACTIONS(2033), + [sym_preproc_directive] = ACTIONS(2073), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [sym_comment] = ACTIONS(3), + }, + [659] = { + [sym_preproc_def] = STATE(682), + [sym_preproc_function_def] = STATE(682), + [sym_preproc_call] = STATE(682), + [sym_preproc_if_in_field_declaration_list] = STATE(682), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(682), + [sym_preproc_else_in_field_declaration_list] = STATE(2193), + [sym_preproc_elif_in_field_declaration_list] = STATE(2193), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1481), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(885), + [sym_ms_declspec_modifier] = STATE(885), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym__field_declaration_list_item] = STATE(682), + [sym_field_declaration] = STATE(682), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(682), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(2021), + [aux_sym_preproc_def_token1] = ACTIONS(2065), + [aux_sym_preproc_if_token1] = ACTIONS(2067), + [aux_sym_preproc_if_token2] = ACTIONS(2083), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2071), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2071), + [aux_sym_preproc_else_token1] = ACTIONS(2031), + [aux_sym_preproc_elif_token1] = ACTIONS(2033), + [sym_preproc_directive] = ACTIONS(2073), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [sym_comment] = ACTIONS(3), + }, + [660] = { + [sym_preproc_def] = STATE(660), + [sym_preproc_function_def] = STATE(660), + [sym_preproc_call] = STATE(660), + [sym_preproc_if_in_field_declaration_list] = STATE(660), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(660), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1482), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(885), + [sym_ms_declspec_modifier] = STATE(885), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym__field_declaration_list_item] = STATE(660), + [sym_field_declaration] = STATE(660), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(660), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(2085), + [aux_sym_preproc_def_token1] = ACTIONS(2088), + [aux_sym_preproc_if_token1] = ACTIONS(2091), + [aux_sym_preproc_if_token2] = ACTIONS(2094), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2096), + [aux_sym_preproc_else_token1] = ACTIONS(2094), + [aux_sym_preproc_elif_token1] = ACTIONS(2094), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2094), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2094), + [sym_preproc_directive] = ACTIONS(2099), + [anon_sym___extension__] = ACTIONS(2102), + [anon_sym_extern] = ACTIONS(2105), + [anon_sym___attribute__] = ACTIONS(2108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2111), + [anon_sym___declspec] = ACTIONS(2114), + [anon_sym_signed] = ACTIONS(2117), + [anon_sym_unsigned] = ACTIONS(2117), + [anon_sym_long] = ACTIONS(2117), + [anon_sym_short] = ACTIONS(2117), + [anon_sym_static] = ACTIONS(2105), + [anon_sym_auto] = ACTIONS(2105), + [anon_sym_register] = ACTIONS(2105), + [anon_sym_inline] = ACTIONS(2105), + [anon_sym___inline] = ACTIONS(2105), + [anon_sym___inline__] = ACTIONS(2105), + [anon_sym___forceinline] = ACTIONS(2105), + [anon_sym_thread_local] = ACTIONS(2105), + [anon_sym___thread] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2102), + [anon_sym_constexpr] = ACTIONS(2102), + [anon_sym_volatile] = ACTIONS(2102), + [anon_sym_restrict] = ACTIONS(2102), + [anon_sym___restrict__] = ACTIONS(2102), + [anon_sym__Atomic] = ACTIONS(2102), + [anon_sym__Noreturn] = ACTIONS(2102), + [anon_sym_noreturn] = ACTIONS(2102), + [sym_primitive_type] = ACTIONS(2120), + [anon_sym_enum] = ACTIONS(2123), + [anon_sym_struct] = ACTIONS(2126), + [anon_sym_union] = ACTIONS(2129), + [sym_comment] = ACTIONS(3), + }, + [661] = { + [sym_preproc_def] = STATE(666), + [sym_preproc_function_def] = STATE(666), + [sym_preproc_call] = STATE(666), + [sym_preproc_if_in_field_declaration_list] = STATE(666), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(666), + [sym_preproc_else_in_field_declaration_list] = STATE(2114), + [sym_preproc_elif_in_field_declaration_list] = STATE(2114), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1481), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(885), + [sym_ms_declspec_modifier] = STATE(885), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym__field_declaration_list_item] = STATE(666), + [sym_field_declaration] = STATE(666), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(666), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(2021), + [aux_sym_preproc_def_token1] = ACTIONS(2065), + [aux_sym_preproc_if_token1] = ACTIONS(2067), + [aux_sym_preproc_if_token2] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2071), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2071), + [aux_sym_preproc_else_token1] = ACTIONS(2031), + [aux_sym_preproc_elif_token1] = ACTIONS(2033), + [sym_preproc_directive] = ACTIONS(2073), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [sym_comment] = ACTIONS(3), + }, + [662] = { + [sym_preproc_def] = STATE(682), + [sym_preproc_function_def] = STATE(682), + [sym_preproc_call] = STATE(682), + [sym_preproc_if_in_field_declaration_list] = STATE(682), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(682), + [sym_preproc_else_in_field_declaration_list] = STATE(2219), + [sym_preproc_elif_in_field_declaration_list] = STATE(2219), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1481), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(885), + [sym_ms_declspec_modifier] = STATE(885), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym__field_declaration_list_item] = STATE(682), + [sym_field_declaration] = STATE(682), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(682), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(2021), + [aux_sym_preproc_def_token1] = ACTIONS(2065), + [aux_sym_preproc_if_token1] = ACTIONS(2067), + [aux_sym_preproc_if_token2] = ACTIONS(2134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2071), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2071), + [aux_sym_preproc_else_token1] = ACTIONS(2031), + [aux_sym_preproc_elif_token1] = ACTIONS(2033), + [sym_preproc_directive] = ACTIONS(2073), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [sym_comment] = ACTIONS(3), + }, + [663] = { + [sym_preproc_def] = STATE(656), + [sym_preproc_function_def] = STATE(656), + [sym_preproc_call] = STATE(656), + [sym_preproc_if_in_field_declaration_list] = STATE(656), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(656), + [sym_preproc_else_in_field_declaration_list] = STATE(2056), + [sym_preproc_elif_in_field_declaration_list] = STATE(2056), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1481), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(885), + [sym_ms_declspec_modifier] = STATE(885), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym__field_declaration_list_item] = STATE(656), + [sym_field_declaration] = STATE(656), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(656), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(2021), + [aux_sym_preproc_def_token1] = ACTIONS(2065), + [aux_sym_preproc_if_token1] = ACTIONS(2067), + [aux_sym_preproc_if_token2] = ACTIONS(2136), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2071), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2071), + [aux_sym_preproc_else_token1] = ACTIONS(2031), + [aux_sym_preproc_elif_token1] = ACTIONS(2033), + [sym_preproc_directive] = ACTIONS(2073), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [sym_comment] = ACTIONS(3), + }, + [664] = { + [sym_preproc_def] = STATE(662), + [sym_preproc_function_def] = STATE(662), + [sym_preproc_call] = STATE(662), + [sym_preproc_if_in_field_declaration_list] = STATE(662), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(662), + [sym_preproc_else_in_field_declaration_list] = STATE(1974), + [sym_preproc_elif_in_field_declaration_list] = STATE(1974), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1481), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(885), + [sym_ms_declspec_modifier] = STATE(885), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym__field_declaration_list_item] = STATE(662), + [sym_field_declaration] = STATE(662), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(662), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(2021), + [aux_sym_preproc_def_token1] = ACTIONS(2065), + [aux_sym_preproc_if_token1] = ACTIONS(2067), + [aux_sym_preproc_if_token2] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2071), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2071), + [aux_sym_preproc_else_token1] = ACTIONS(2031), + [aux_sym_preproc_elif_token1] = ACTIONS(2033), + [sym_preproc_directive] = ACTIONS(2073), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [sym_comment] = ACTIONS(3), + }, + [665] = { + [sym_preproc_def] = STATE(659), + [sym_preproc_function_def] = STATE(659), + [sym_preproc_call] = STATE(659), + [sym_preproc_if_in_field_declaration_list] = STATE(659), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(659), + [sym_preproc_else_in_field_declaration_list] = STATE(2148), + [sym_preproc_elif_in_field_declaration_list] = STATE(2148), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1481), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(885), + [sym_ms_declspec_modifier] = STATE(885), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym__field_declaration_list_item] = STATE(659), + [sym_field_declaration] = STATE(659), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(659), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(2021), + [aux_sym_preproc_def_token1] = ACTIONS(2065), + [aux_sym_preproc_if_token1] = ACTIONS(2067), + [aux_sym_preproc_if_token2] = ACTIONS(2140), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2071), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2071), + [aux_sym_preproc_else_token1] = ACTIONS(2031), + [aux_sym_preproc_elif_token1] = ACTIONS(2033), + [sym_preproc_directive] = ACTIONS(2073), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [sym_comment] = ACTIONS(3), + }, + [666] = { + [sym_preproc_def] = STATE(682), + [sym_preproc_function_def] = STATE(682), + [sym_preproc_call] = STATE(682), + [sym_preproc_if_in_field_declaration_list] = STATE(682), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(682), + [sym_preproc_else_in_field_declaration_list] = STATE(2046), + [sym_preproc_elif_in_field_declaration_list] = STATE(2046), + [sym__declaration_modifiers] = STATE(885), + [sym__declaration_specifiers] = STATE(1481), + [sym_attribute_specifier] = STATE(885), + [sym_attribute_declaration] = STATE(885), + [sym_ms_declspec_modifier] = STATE(885), + [sym_storage_class_specifier] = STATE(885), + [sym_type_qualifier] = STATE(885), + [sym__type_specifier] = STATE(1042), + [sym_sized_type_specifier] = STATE(1104), + [sym_enum_specifier] = STATE(1104), + [sym_struct_specifier] = STATE(1104), + [sym_union_specifier] = STATE(1104), + [sym__field_declaration_list_item] = STATE(682), + [sym_field_declaration] = STATE(682), + [sym_macro_type_specifier] = STATE(1104), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(682), + [aux_sym__declaration_specifiers_repeat1] = STATE(885), + [aux_sym_sized_type_specifier_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(2021), + [aux_sym_preproc_def_token1] = ACTIONS(2065), + [aux_sym_preproc_if_token1] = ACTIONS(2067), + [aux_sym_preproc_if_token2] = ACTIONS(2142), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2071), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2071), + [aux_sym_preproc_else_token1] = ACTIONS(2031), + [aux_sym_preproc_elif_token1] = ACTIONS(2033), + [sym_preproc_directive] = ACTIONS(2073), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [sym_comment] = ACTIONS(3), + }, + [667] = { + [sym_compound_statement] = STATE(1832), + [sym__expression] = STATE(1163), + [sym__expression_not_binary] = STATE(904), + [sym_conditional_expression] = STATE(904), + [sym_assignment_expression] = STATE(904), + [sym_pointer_expression] = STATE(928), + [sym_unary_expression] = STATE(904), + [sym_binary_expression] = STATE(904), + [sym_update_expression] = STATE(904), + [sym_cast_expression] = STATE(904), + [sym_sizeof_expression] = STATE(904), + [sym_alignof_expression] = STATE(904), + [sym_offsetof_expression] = STATE(904), + [sym_builtin_va_arg] = STATE(904), + [sym_generic_expression] = STATE(904), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_gnu_asm_expression] = STATE(904), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(904), + [sym_parenthesized_expression] = STATE(928), + [sym_char_literal] = STATE(904), + [sym_concatenated_string] = STATE(904), + [sym_string_literal] = STATE(858), + [sym_null] = STATE(904), + [sym_identifier] = ACTIONS(1895), + [anon_sym_RPAREN] = ACTIONS(2144), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(2146), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym___builtin_va_arg] = ACTIONS(87), + [anon_sym__Generic] = ACTIONS(89), + [anon_sym_asm] = ACTIONS(91), + [anon_sym___asm__] = ACTIONS(91), + [sym_number_literal] = ACTIONS(155), + [anon_sym_L_SQUOTE] = ACTIONS(95), + [anon_sym_u_SQUOTE] = ACTIONS(95), + [anon_sym_U_SQUOTE] = ACTIONS(95), + [anon_sym_u8_SQUOTE] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(95), + [anon_sym_L_DQUOTE] = ACTIONS(97), + [anon_sym_u_DQUOTE] = ACTIONS(97), + [anon_sym_U_DQUOTE] = ACTIONS(97), + [anon_sym_u8_DQUOTE] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [anon_sym_NULL] = ACTIONS(101), + [anon_sym_nullptr] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1805), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(155), 1, + sym_number_literal, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2018), 1, - aux_sym_preproc_def_token1, - ACTIONS(2020), 1, - aux_sym_preproc_if_token1, - ACTIONS(2024), 1, - sym_preproc_directive, - ACTIONS(2050), 1, - anon_sym_RBRACE, - STATE(939), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1357), 1, - sym__declaration_specifiers, - ACTIONS(2022), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(827), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(587), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [5415] = 23, + ACTIONS(2148), 1, + anon_sym___extension__, + STATE(858), 1, + sym_string_literal, + STATE(1214), 1, + sym__expression, + STATE(1952), 1, + sym_compound_statement, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(157), 2, + sym_true, + sym_false, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(928), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(904), 17, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_builtin_va_arg, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [115] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(155), 1, + sym_number_literal, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(1943), 1, - anon_sym___attribute__, - ACTIONS(1946), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1949), 1, - anon_sym___declspec, - ACTIONS(1958), 1, - sym_primitive_type, - ACTIONS(1961), 1, - anon_sym_enum, - ACTIONS(1964), 1, - anon_sym_struct, - ACTIONS(1967), 1, - anon_sym_union, - ACTIONS(2052), 1, - aux_sym_preproc_def_token1, - ACTIONS(2055), 1, - aux_sym_preproc_if_token1, - ACTIONS(2061), 1, - sym_preproc_directive, - ACTIONS(2064), 1, - anon_sym_RBRACE, - STATE(939), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1357), 1, - sym__declaration_specifiers, - ACTIONS(2058), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(1952), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(1940), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(827), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(1955), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(591), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [5519] = 23, + ACTIONS(2150), 1, + anon_sym_SEMI, + STATE(858), 1, + sym_string_literal, + STATE(1225), 1, + sym__expression, + STATE(2215), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(157), 2, + sym_true, + sym_false, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(928), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(904), 17, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_builtin_va_arg, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [227] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1805), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(155), 1, + sym_number_literal, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2040), 1, - aux_sym_preproc_def_token1, - ACTIONS(2042), 1, - aux_sym_preproc_if_token1, - ACTIONS(2048), 1, - sym_preproc_directive, - ACTIONS(2066), 1, - aux_sym_preproc_if_token2, - STATE(939), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1356), 1, - sym__declaration_specifiers, - ACTIONS(2046), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(827), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(588), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - [5623] = 23, + ACTIONS(2152), 1, + anon_sym_RPAREN, + STATE(858), 1, + sym_string_literal, + STATE(1175), 1, + sym__expression, + STATE(2004), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(157), 2, + sym_true, + sym_false, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(928), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(904), 17, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_builtin_va_arg, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [339] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(39), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2068), 1, - anon_sym_RPAREN, - STATE(763), 1, + ACTIONS(2154), 1, + anon_sym_SEMI, + STATE(858), 1, sym_string_literal, - STATE(1062), 1, + STATE(1232), 1, sym__expression, - STATE(1631), 1, - sym_compound_statement, + STATE(2072), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -71605,37 +84699,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -71644,121 +84744,40 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [5726] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1805), 1, - sym_identifier, - ACTIONS(1871), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1873), 1, - anon_sym_RPAREN, - ACTIONS(1881), 1, - anon_sym_LBRACK, - ACTIONS(2070), 1, - anon_sym_LPAREN2, - ACTIONS(2072), 1, - anon_sym_STAR, - STATE(939), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1304), 1, - sym__declaration_specifiers, - STATE(1509), 1, - sym_parameter_list, - STATE(1532), 1, - sym__abstract_declarator, - STATE(1649), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1510), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(827), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [5835] = 23, + [451] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(39), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2074), 1, - anon_sym_RPAREN, - STATE(763), 1, + ACTIONS(2156), 1, + anon_sym_SEMI, + STATE(858), 1, sym_string_literal, - STATE(1057), 1, + STATE(1234), 1, sym__expression, - STATE(1574), 1, - sym_compound_statement, + STATE(2071), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -71768,37 +84787,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -71807,36 +84832,40 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [5938] = 22, + [563] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1498), 1, + anon_sym_LBRACE, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2076), 1, - anon_sym_RPAREN, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1136), 1, + STATE(914), 1, + sym_initializer_list, + STATE(917), 1, sym__expression, - STATE(1879), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -71846,37 +84875,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -71885,35 +84920,126 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [6038] = 22, + [675] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(155), 1, + sym_number_literal, + ACTIONS(1484), 1, + sym_identifier, + ACTIONS(1498), 1, + anon_sym_LBRACE, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, + ACTIONS(1586), 1, anon_sym_sizeof, + STATE(858), 1, + sym_string_literal, + STATE(914), 1, + sym_initializer_list, + STATE(1001), 1, + sym__expression, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(157), 2, + sym_true, + sym_false, + ACTIONS(1578), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1580), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1584), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1913), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(904), 22, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_builtin_va_arg, + sym_generic_expression, + sym_subscript_expression, + sym_call_expression, + sym_gnu_asm_expression, + sym_field_expression, + sym_compound_literal_expression, + sym_parenthesized_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [785] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2078), 1, - anon_sym_SEMI, - STATE(763), 1, + ACTIONS(2158), 1, + anon_sym_RPAREN, + STATE(858), 1, sym_string_literal, - STATE(1067), 1, + STATE(1201), 1, sym__expression, - STATE(1804), 1, + STATE(2084), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -71924,37 +85050,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -71963,35 +85095,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [6138] = 22, + [897] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2080), 1, + ACTIONS(2160), 1, anon_sym_RPAREN, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1085), 1, + STATE(1236), 1, sym__expression, - STATE(1878), 1, + STATE(2017), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72002,37 +85138,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72041,35 +85183,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [6238] = 22, + [1009] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2082), 1, - anon_sym_SEMI, - STATE(763), 1, + ACTIONS(2162), 1, + anon_sym_RPAREN, + STATE(858), 1, sym_string_literal, - STATE(1088), 1, + STATE(1231), 1, sym__expression, - STATE(1875), 1, + STATE(1968), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72080,37 +85226,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72119,35 +85271,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [6338] = 22, + [1121] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2084), 1, - anon_sym_SEMI, - STATE(763), 1, + ACTIONS(2164), 1, + anon_sym_RPAREN, + STATE(858), 1, sym_string_literal, - STATE(1139), 1, + STATE(1189), 1, sym__expression, - STATE(1815), 1, + STATE(2086), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72158,37 +85314,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72197,35 +85359,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [6438] = 22, + [1233] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2086), 1, - anon_sym_SEMI, - STATE(763), 1, + ACTIONS(2166), 1, + anon_sym_RPAREN, + STATE(858), 1, sym_string_literal, - STATE(1099), 1, + STATE(1238), 1, sym__expression, - STATE(1872), 1, + STATE(2015), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72236,37 +85402,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72275,35 +85447,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [6538] = 22, + [1345] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2088), 1, + ACTIONS(2168), 1, anon_sym_SEMI, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1066), 1, + STATE(1216), 1, sym__expression, - STATE(1946), 1, + STATE(2218), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72314,37 +85490,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72353,35 +85535,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [6638] = 22, + [1457] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2090), 1, - anon_sym_SEMI, - STATE(763), 1, + ACTIONS(2170), 1, + anon_sym_RPAREN, + STATE(858), 1, sym_string_literal, - STATE(1133), 1, + STATE(1181), 1, sym__expression, - STATE(1974), 1, + STATE(2129), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72392,37 +85578,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72431,35 +85623,126 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [6738] = 22, + [1569] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2085), 1, + sym_identifier, + ACTIONS(2108), 1, + anon_sym___attribute__, + ACTIONS(2111), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2114), 1, + anon_sym___declspec, + ACTIONS(2120), 1, + sym_primitive_type, + ACTIONS(2123), 1, + anon_sym_enum, + ACTIONS(2126), 1, + anon_sym_struct, + ACTIONS(2129), 1, + anon_sym_union, + ACTIONS(2172), 1, + aux_sym_preproc_def_token1, + ACTIONS(2175), 1, + aux_sym_preproc_if_token1, + ACTIONS(2181), 1, + sym_preproc_directive, + STATE(1042), 1, + sym__type_specifier, + STATE(1091), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1481), 1, + sym__declaration_specifiers, + ACTIONS(2178), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(2094), 3, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + ACTIONS(2117), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1104), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(885), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(682), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + ACTIONS(2102), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2105), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [1679] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2092), 1, - anon_sym_SEMI, - STATE(763), 1, + ACTIONS(2184), 1, + anon_sym_RPAREN, + STATE(858), 1, sym_string_literal, - STATE(1135), 1, + STATE(1182), 1, sym__expression, - STATE(1976), 1, + STATE(1967), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72470,37 +85753,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72509,35 +85798,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [6838] = 22, + [1791] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2094), 1, + ACTIONS(2186), 1, anon_sym_RPAREN, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1124), 1, + STATE(1196), 1, sym__expression, - STATE(1838), 1, + STATE(1965), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72548,37 +85841,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72587,35 +85886,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [6938] = 22, + [1903] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2096), 1, + ACTIONS(2188), 1, anon_sym_SEMI, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1070), 1, + STATE(1219), 1, sym__expression, - STATE(1941), 1, + STATE(2176), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72626,37 +85929,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72665,111 +85974,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [7038] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1180), 1, - anon_sym_LPAREN2, - ACTIONS(1190), 1, - anon_sym_LBRACE, - ACTIONS(1194), 1, - anon_sym_sizeof, - STATE(763), 1, - sym_string_literal, - STATE(802), 1, - sym__expression, - STATE(815), 1, - sym_initializer_list, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1182), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1184), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1192), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(795), 20, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [7134] = 22, + [2015] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2098), 1, - anon_sym_RPAREN, - STATE(763), 1, + ACTIONS(2190), 1, + anon_sym_SEMI, + STATE(858), 1, sym_string_literal, - STATE(1116), 1, + STATE(1177), 1, sym__expression, - STATE(1836), 1, + STATE(2178), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72780,37 +86017,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72819,35 +86062,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [7234] = 22, + [2127] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2100), 1, - anon_sym_SEMI, - STATE(763), 1, + ACTIONS(2192), 1, + anon_sym_RPAREN, + STATE(858), 1, sym_string_literal, - STATE(1079), 1, + STATE(1190), 1, sym__expression, - STATE(1940), 1, + STATE(2202), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72858,37 +86105,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72897,36 +86150,40 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [7334] = 22, + [2239] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1190), 1, - anon_sym_LBRACE, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - STATE(763), 1, + ACTIONS(2194), 1, + anon_sym_RPAREN, + STATE(858), 1, sym_string_literal, - STATE(1071), 1, + STATE(1230), 1, sym__expression, - STATE(1691), 1, - sym_initializer_list, + STATE(2073), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -72936,37 +86193,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72975,36 +86238,40 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [7434] = 22, + [2351] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1498), 1, + anon_sym_LBRACE, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2102), 1, - anon_sym_SEMI, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1115), 1, + STATE(1224), 1, sym__expression, - STATE(1979), 1, - sym_comma_expression, + STATE(1920), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -73014,37 +86281,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73053,35 +86326,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [7534] = 22, + [2463] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2104), 1, + ACTIONS(2196), 1, anon_sym_RPAREN, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1082), 1, + STATE(1186), 1, sym__expression, - STATE(2013), 1, + STATE(2126), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73092,37 +86369,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73131,36 +86414,40 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [7634] = 22, + [2575] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1190), 1, - anon_sym_LBRACE, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - STATE(763), 1, + ACTIONS(2198), 1, + anon_sym_RPAREN, + STATE(858), 1, sym_string_literal, - STATE(802), 1, + STATE(1211), 1, sym__expression, - STATE(815), 1, - sym_initializer_list, + STATE(2179), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -73170,37 +86457,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73209,35 +86502,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [7734] = 22, + [2687] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2106), 1, + ACTIONS(2200), 1, anon_sym_RPAREN, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1108), 1, + STATE(1171), 1, sym__expression, - STATE(1831), 1, + STATE(2239), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73248,37 +86545,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73287,35 +86590,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [7834] = 22, + [2799] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2108), 1, + ACTIONS(2202), 1, anon_sym_RPAREN, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1114), 1, + STATE(1192), 1, sym__expression, - STATE(2010), 1, + STATE(2124), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73326,37 +86633,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73365,35 +86678,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [7934] = 22, + [2911] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2110), 1, + ACTIONS(2204), 1, anon_sym_RPAREN, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1131), 1, + STATE(1215), 1, sym__expression, - STATE(2008), 1, + STATE(2010), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73404,37 +86721,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73443,35 +86766,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [8034] = 22, + [3023] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2112), 1, + ACTIONS(2206), 1, anon_sym_RPAREN, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1106), 1, + STATE(1223), 1, sym__expression, - STATE(1830), 1, + STATE(2167), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73482,37 +86809,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73521,35 +86854,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [8134] = 22, + [3135] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2114), 1, - anon_sym_SEMI, - STATE(763), 1, + ACTIONS(2208), 1, + anon_sym_RPAREN, + STATE(858), 1, sym_string_literal, - STATE(1081), 1, + STATE(1233), 1, sym__expression, - STATE(1816), 1, + STATE(2013), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73560,37 +86897,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73599,35 +86942,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [8234] = 22, + [3247] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2116), 1, + ACTIONS(2210), 1, anon_sym_RPAREN, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1141), 1, + STATE(1185), 1, sym__expression, - STATE(1978), 1, + STATE(2089), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73638,37 +86985,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73677,35 +87030,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [8334] = 22, + [3359] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2118), 1, + ACTIONS(2212), 1, anon_sym_RPAREN, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1105), 1, + STATE(1252), 1, sym__expression, - STATE(1829), 1, + STATE(2103), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73716,37 +87073,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73755,35 +87118,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [8434] = 22, + [3471] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2120), 1, + ACTIONS(2214), 1, anon_sym_RPAREN, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1091), 1, + STATE(1235), 1, sym__expression, - STATE(1825), 1, + STATE(2101), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73794,37 +87161,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73833,35 +87206,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [8534] = 22, + [3583] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2122), 1, - anon_sym_SEMI, - STATE(763), 1, + ACTIONS(2216), 1, + anon_sym_RPAREN, + STATE(858), 1, sym_string_literal, - STATE(1097), 1, + STATE(1221), 1, sym__expression, - STATE(1992), 1, + STATE(2122), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73872,37 +87249,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73911,35 +87294,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [8634] = 22, + [3695] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2124), 1, - anon_sym_SEMI, - STATE(763), 1, + ACTIONS(2218), 1, + anon_sym_RPAREN, + STATE(858), 1, sym_string_literal, - STATE(1092), 1, + STATE(1170), 1, sym__expression, - STATE(1994), 1, + STATE(2078), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73950,37 +87337,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73989,36 +87382,40 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [8734] = 22, + [3807] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1190), 1, - anon_sym_LBRACE, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - STATE(763), 1, + ACTIONS(2220), 1, + anon_sym_SEMI, + STATE(858), 1, sym_string_literal, - STATE(1078), 1, + STATE(1176), 1, sym__expression, - STATE(1682), 1, - sym_initializer_list, + STATE(2011), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -74028,37 +87425,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74067,35 +87470,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [8834] = 22, + [3919] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2126), 1, + ACTIONS(2222), 1, anon_sym_RPAREN, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1113), 1, + STATE(1253), 1, sym__expression, - STATE(1762), 1, + STATE(2133), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74106,37 +87513,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74145,35 +87558,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [8934] = 22, + [4031] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2128), 1, + ACTIONS(2224), 1, anon_sym_RPAREN, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1102), 1, + STATE(1207), 1, sym__expression, - STATE(1827), 1, + STATE(2130), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74184,37 +87601,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74223,35 +87646,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [9034] = 22, + [4143] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2130), 1, + ACTIONS(2226), 1, anon_sym_RPAREN, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1096), 1, + STATE(1206), 1, sym__expression, - STATE(1894), 1, + STATE(2068), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74262,37 +87689,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74301,35 +87734,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [9134] = 22, + [4255] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2132), 1, + ACTIONS(2228), 1, anon_sym_RPAREN, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1119), 1, + STATE(1197), 1, sym__expression, - STATE(2016), 1, + STATE(2063), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74340,37 +87777,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74379,35 +87822,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [9234] = 22, + [4367] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2134), 1, - anon_sym_SEMI, - STATE(763), 1, + ACTIONS(2230), 1, + anon_sym_RPAREN, + STATE(858), 1, sym_string_literal, - STATE(1083), 1, + STATE(1239), 1, sym__expression, - STATE(1997), 1, + STATE(2007), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74418,37 +87865,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74457,35 +87910,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [9334] = 22, + [4479] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2136), 1, - anon_sym_RPAREN, - STATE(763), 1, + ACTIONS(2232), 1, + anon_sym_SEMI, + STATE(858), 1, sym_string_literal, - STATE(1118), 1, + STATE(1180), 1, sym__expression, - STATE(1921), 1, + STATE(2181), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74496,37 +87953,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74535,35 +87998,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [9434] = 22, + [4591] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2138), 1, + ACTIONS(2234), 1, anon_sym_RPAREN, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1127), 1, + STATE(1183), 1, sym__expression, - STATE(1768), 1, + STATE(2049), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74574,37 +88041,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74613,35 +88086,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [9534] = 22, + [4703] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2140), 1, + ACTIONS(2236), 1, anon_sym_RPAREN, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1130), 1, + STATE(1202), 1, sym__expression, - STATE(1769), 1, + STATE(2082), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74652,37 +88129,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74691,36 +88174,40 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [9634] = 22, + [4815] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1498), 1, + anon_sym_LBRACE, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2142), 1, - anon_sym_SEMI, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1111), 1, + STATE(1178), 1, sym__expression, - STATE(1988), 1, - sym_comma_expression, + STATE(1892), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -74730,37 +88217,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74769,35 +88262,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [9734] = 22, + [4927] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2144), 1, + ACTIONS(2238), 1, anon_sym_RPAREN, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1143), 1, + STATE(1237), 1, sym__expression, - STATE(1770), 1, + STATE(1984), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74808,37 +88305,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74847,35 +88350,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [9834] = 22, + [5039] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2146), 1, + ACTIONS(2240), 1, anon_sym_RPAREN, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1073), 1, + STATE(1226), 1, sym__expression, - STATE(1881), 1, + STATE(2009), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74886,37 +88393,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74925,111 +88438,127 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [9934] = 20, + [5151] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1190), 1, - anon_sym_LBRACE, - ACTIONS(1448), 1, - anon_sym_LPAREN2, - ACTIONS(1458), 1, - anon_sym_sizeof, - STATE(763), 1, + ACTIONS(1895), 1, + sym_identifier, + ACTIONS(2242), 1, + anon_sym_SEMI, + STATE(858), 1, sym_string_literal, - STATE(815), 1, - sym_initializer_list, - STATE(840), 1, + STATE(1200), 1, sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1450), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1452), 2, + STATE(2066), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1456), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1779), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(149), 3, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(157), 2, sym_true, sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(928), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [10030] = 22, + [5263] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2148), 1, - anon_sym_SEMI, - STATE(763), 1, + ACTIONS(2244), 1, + anon_sym_RPAREN, + STATE(858), 1, sym_string_literal, - STATE(1128), 1, + STATE(1228), 1, sym__expression, - STATE(1885), 1, + STATE(2020), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75040,37 +88569,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75079,35 +88614,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [10130] = 22, + [5375] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2150), 1, + ACTIONS(2246), 1, anon_sym_RPAREN, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1068), 1, + STATE(1247), 1, sym__expression, - STATE(1887), 1, + STATE(2118), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75118,37 +88657,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75157,35 +88702,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [10230] = 22, + [5487] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2152), 1, + ACTIONS(2248), 1, anon_sym_RPAREN, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1138), 1, + STATE(1188), 1, sym__expression, - STATE(1932), 1, + STATE(2115), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75196,37 +88745,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75235,35 +88790,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [10330] = 22, + [5599] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2154), 1, + ACTIONS(2250), 1, anon_sym_RPAREN, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1104), 1, + STATE(1213), 1, sym__expression, - STATE(1925), 1, + STATE(2076), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75274,37 +88833,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75313,35 +88878,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [10430] = 22, + [5711] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2156), 1, - anon_sym_RPAREN, - STATE(763), 1, + ACTIONS(2252), 1, + anon_sym_SEMI, + STATE(858), 1, sym_string_literal, - STATE(1103), 1, + STATE(1248), 1, sym__expression, - STATE(1927), 1, + STATE(2069), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75352,37 +88921,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75391,35 +88966,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [10530] = 22, + [5823] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2158), 1, - anon_sym_RPAREN, - STATE(763), 1, + ACTIONS(2254), 1, + anon_sym_SEMI, + STATE(858), 1, sym_string_literal, - STATE(1125), 1, + STATE(1204), 1, sym__expression, - STATE(1778), 1, + STATE(2080), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75430,37 +89009,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75469,35 +89054,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [10630] = 22, + [5935] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2160), 1, - anon_sym_RPAREN, - STATE(763), 1, + ACTIONS(2256), 1, + anon_sym_SEMI, + STATE(858), 1, sym_string_literal, - STATE(1090), 1, + STATE(1217), 1, sym__expression, - STATE(1929), 1, + STATE(2196), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75508,37 +89097,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75547,35 +89142,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [10730] = 22, + [6047] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2162), 1, - anon_sym_RPAREN, - STATE(763), 1, + ACTIONS(2258), 1, + anon_sym_SEMI, + STATE(858), 1, sym_string_literal, - STATE(1069), 1, + STATE(1242), 1, sym__expression, - STATE(1889), 1, + STATE(2008), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75586,37 +89185,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75625,35 +89230,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [10830] = 22, + [6159] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2164), 1, + ACTIONS(2260), 1, anon_sym_SEMI, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1110), 1, + STATE(1218), 1, sym__expression, - STATE(1870), 1, + STATE(2198), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75664,37 +89273,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75703,35 +89318,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [10930] = 22, + [6271] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2166), 1, - anon_sym_RPAREN, - STATE(763), 1, + ACTIONS(2262), 1, + anon_sym_SEMI, + STATE(858), 1, sym_string_literal, - STATE(1080), 1, + STATE(1173), 1, sym__expression, - STATE(1891), 1, + STATE(2001), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75742,37 +89361,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75781,35 +89406,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11030] = 22, + [6383] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2168), 1, + ACTIONS(2264), 1, anon_sym_SEMI, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1120), 1, + STATE(1208), 1, sym__expression, - STATE(2009), 1, + STATE(2186), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75820,37 +89449,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75859,35 +89494,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11130] = 22, + [6495] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2170), 1, + ACTIONS(2266), 1, anon_sym_SEMI, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1137), 1, + STATE(1222), 1, sym__expression, - STATE(1807), 1, + STATE(2201), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75898,37 +89537,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75937,35 +89582,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11230] = 22, + [6607] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2172), 1, + ACTIONS(2268), 1, anon_sym_SEMI, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1094), 1, + STATE(1229), 1, sym__expression, - STATE(1797), 1, + STATE(1999), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75976,37 +89625,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76015,35 +89670,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11330] = 22, + [6719] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2174), 1, - anon_sym_RPAREN, - STATE(763), 1, + ACTIONS(2270), 1, + anon_sym_SEMI, + STATE(858), 1, sym_string_literal, - STATE(1089), 1, + STATE(1172), 1, sym__expression, - STATE(1824), 1, + STATE(1996), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -76054,37 +89713,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76093,76 +89758,86 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11430] = 22, + [6831] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1498), 1, + anon_sym_LBRACE, + ACTIONS(1905), 1, sym_identifier, - ACTIONS(2176), 1, - anon_sym_SEMI, - STATE(763), 1, + ACTIONS(1907), 1, + anon_sym_LPAREN2, + ACTIONS(1917), 1, + anon_sym_sizeof, + STATE(858), 1, sym_string_literal, - STATE(1107), 1, + STATE(914), 1, + sym_initializer_list, + STATE(1001), 1, sym__expression, - STATE(2012), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(1909), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1911), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1913), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1915), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(1056), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76171,36 +89846,40 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11530] = 22, + [6943] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(39), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - STATE(763), 1, + ACTIONS(2272), 1, + anon_sym_SEMI, + STATE(858), 1, sym_string_literal, - STATE(1134), 1, + STATE(1199), 1, sym__expression, - STATE(1714), 1, - sym_compound_statement, + STATE(2189), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -76210,37 +89889,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76249,35 +89934,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11630] = 22, + [7055] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2178), 1, - anon_sym_RPAREN, - STATE(763), 1, + ACTIONS(2274), 1, + anon_sym_SEMI, + STATE(858), 1, sym_string_literal, - STATE(1122), 1, + STATE(1205), 1, sym__expression, - STATE(1918), 1, + STATE(2119), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -76288,37 +89977,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76327,35 +90022,39 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11730] = 22, + [7167] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2180), 1, + ACTIONS(2276), 1, anon_sym_SEMI, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1140), 1, + STATE(1227), 1, sym__expression, - STATE(2007), 1, + STATE(2213), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -76366,37 +90065,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76405,113 +90110,126 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11830] = 22, + [7279] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1484), 1, sym_identifier, - ACTIONS(2182), 1, - anon_sym_RPAREN, - STATE(763), 1, + ACTIONS(1488), 1, + anon_sym_LPAREN2, + ACTIONS(1498), 1, + anon_sym_LBRACE, + ACTIONS(1502), 1, + anon_sym_sizeof, + STATE(858), 1, sym_string_literal, - STATE(1132), 1, + STATE(914), 1, + sym_initializer_list, + STATE(917), 1, sym__expression, - STATE(1811), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(1490), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1492), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1500), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11930] = 22, + [7389] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2184), 1, - anon_sym_RPAREN, - STATE(763), 1, + ACTIONS(2278), 1, + anon_sym_SEMI, + STATE(858), 1, sym_string_literal, - STATE(1129), 1, + STATE(1244), 1, sym__expression, - STATE(1814), 1, + STATE(2036), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -76522,37 +90240,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76561,269 +90285,292 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12030] = 22, + [7501] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1484), 1, sym_identifier, - ACTIONS(2186), 1, - anon_sym_SEMI, - STATE(763), 1, + ACTIONS(1576), 1, + anon_sym_LPAREN2, + ACTIONS(1586), 1, + anon_sym_sizeof, + ACTIONS(2280), 1, + anon_sym_RBRACK, + STATE(858), 1, sym_string_literal, - STATE(1072), 1, + STATE(990), 1, sym__expression, - STATE(1818), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(1578), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1580), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1584), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1913), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12130] = 22, + [7608] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1190), 1, - anon_sym_LBRACE, - ACTIONS(1771), 1, + ACTIONS(1484), 1, sym_identifier, - ACTIONS(1773), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1586), 1, anon_sym_sizeof, - STATE(763), 1, + ACTIONS(2282), 1, + anon_sym_RBRACK, + STATE(858), 1, sym_string_literal, - STATE(815), 1, - sym_initializer_list, - STATE(840), 1, + STATE(990), 1, sym__expression, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(1775), 2, + ACTIONS(1578), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1777), 2, + ACTIONS(1580), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1779), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1781), 2, + ACTIONS(1584), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(1913), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(865), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12230] = 22, + [7715] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1484), 1, sym_identifier, - ACTIONS(2188), 1, - anon_sym_RPAREN, - STATE(763), 1, + ACTIONS(1576), 1, + anon_sym_LPAREN2, + ACTIONS(1586), 1, + anon_sym_sizeof, + ACTIONS(2284), 1, + anon_sym_RBRACK, + STATE(858), 1, sym_string_literal, - STATE(1086), 1, + STATE(990), 1, sym__expression, - STATE(1987), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(1578), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1580), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1584), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1913), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12330] = 22, + [7822] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2190), 1, - anon_sym_RPAREN, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1076), 1, + STATE(1246), 1, sym__expression, - STATE(1820), 1, + STATE(2206), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -76834,37 +90581,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76873,35 +90626,37 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12430] = 22, + [7931] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2192), 1, - anon_sym_RPAREN, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1084), 1, + STATE(1245), 1, sym__expression, - STATE(1822), 1, + STATE(2026), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -76912,37 +90667,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76951,67 +90712,78 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12530] = 19, + [8040] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1448), 1, + ACTIONS(1484), 1, + sym_identifier, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1458), 1, + ACTIONS(1586), 1, anon_sym_sizeof, - ACTIONS(2194), 1, + ACTIONS(2286), 1, anon_sym_RBRACK, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(839), 1, + STATE(990), 1, sym__expression, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1450), 2, + ACTIONS(157), 2, + sym_true, + sym_false, + ACTIONS(1578), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1452), 2, + ACTIONS(1580), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1456), 2, + ACTIONS(1584), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1779), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77021,7 +90793,9 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_subscript_expression, sym_call_expression, @@ -77032,60 +90806,69 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12623] = 19, + [8147] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1448), 1, + ACTIONS(1484), 1, + sym_identifier, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1458), 1, + ACTIONS(1586), 1, anon_sym_sizeof, - ACTIONS(2196), 1, + ACTIONS(2288), 1, anon_sym_RBRACK, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(839), 1, + STATE(990), 1, sym__expression, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1450), 2, + ACTIONS(157), 2, + sym_true, + sym_false, + ACTIONS(1578), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1452), 2, + ACTIONS(1580), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1456), 2, + ACTIONS(1584), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1779), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77095,7 +90878,9 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_subscript_expression, sym_call_expression, @@ -77106,178 +90891,113 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12716] = 21, + [8254] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1484), 1, sym_identifier, - ACTIONS(2198), 1, - anon_sym_COLON, - STATE(763), 1, + ACTIONS(1576), 1, + anon_sym_LPAREN2, + ACTIONS(1586), 1, + anon_sym_sizeof, + ACTIONS(2290), 1, + anon_sym_RBRACK, + STATE(858), 1, sym_string_literal, - STATE(1156), 1, + STATE(990), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(1578), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1580), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1584), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1913), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12813] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1805), 1, - sym_identifier, - ACTIONS(2200), 1, - anon_sym_LBRACE, - STATE(821), 1, - sym_ms_call_modifier, - STATE(939), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1394), 1, - sym__declaration_specifiers, - STATE(418), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(37), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(827), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [12910] = 21, + [8361] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2202), 1, + ACTIONS(2292), 1, anon_sym_COLON, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1177), 1, + STATE(1290), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -77288,37 +91008,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77327,33 +91053,37 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13007] = 21, + [8470] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2204), 1, + ACTIONS(2294), 1, anon_sym_COLON, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1158), 1, + STATE(1299), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -77364,37 +91094,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77403,34 +91139,38 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13104] = 21, + [8579] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - STATE(763), 1, + ACTIONS(2296), 1, + anon_sym_COLON, + STATE(858), 1, sym_string_literal, - STATE(1064), 1, + STATE(1337), 1, sym__expression, - STATE(1697), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -77440,37 +91180,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77479,143 +91225,78 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13201] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1805), 1, - sym_identifier, - ACTIONS(2206), 1, - anon_sym_LBRACE, - STATE(822), 1, - sym_ms_call_modifier, - STATE(939), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1387), 1, - sym__declaration_specifiers, - STATE(209), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(37), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(827), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [13298] = 19, + [8688] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1448), 1, + ACTIONS(1484), 1, + sym_identifier, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1458), 1, + ACTIONS(1586), 1, anon_sym_sizeof, - ACTIONS(2208), 1, + ACTIONS(2298), 1, anon_sym_RBRACK, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(839), 1, + STATE(990), 1, sym__expression, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1450), 2, + ACTIONS(157), 2, + sym_true, + sym_false, + ACTIONS(1578), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1452), 2, + ACTIONS(1580), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1456), 2, + ACTIONS(1584), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1779), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77625,7 +91306,9 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_subscript_expression, sym_call_expression, @@ -77636,250 +91319,114 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13391] = 19, + [8795] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1448), 1, - anon_sym_LPAREN2, - ACTIONS(1458), 1, - anon_sym_sizeof, - ACTIONS(2210), 1, - anon_sym_RBRACK, - STATE(763), 1, + ACTIONS(1895), 1, + sym_identifier, + ACTIONS(2300), 1, + anon_sym_COLON, + STATE(858), 1, sym_string_literal, - STATE(839), 1, + STATE(1277), 1, sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1450), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1452), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1456), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1779), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(149), 3, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(157), 2, sym_true, sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, + STATE(928), 5, sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, sym_subscript_expression, sym_call_expression, - sym_gnu_asm_expression, sym_field_expression, - sym_compound_literal_expression, sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [13484] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1805), 1, - sym_identifier, - ACTIONS(2212), 1, - anon_sym_LBRACE, - STATE(825), 1, - sym_ms_call_modifier, - STATE(939), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1389), 1, - sym__declaration_specifiers, - STATE(518), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(37), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(827), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [13581] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1448), 1, - anon_sym_LPAREN2, - ACTIONS(1458), 1, - anon_sym_sizeof, - ACTIONS(2214), 1, - anon_sym_RBRACK, - STATE(763), 1, - sym_string_literal, - STATE(839), 1, - sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1450), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1452), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1456), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1779), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(795), 20, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13674] = 21, + [8904] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1087), 1, + STATE(1169), 1, sym__expression, - STATE(1876), 1, + STATE(1913), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -77890,37 +91437,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77929,143 +91482,78 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13771] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1805), 1, - sym_identifier, - ACTIONS(2216), 1, - anon_sym_LBRACE, - STATE(823), 1, - sym_ms_call_modifier, - STATE(939), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1386), 1, - sym__declaration_specifiers, - STATE(503), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(37), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(827), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [13868] = 19, + [9013] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1448), 1, + ACTIONS(1484), 1, + sym_identifier, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1458), 1, + ACTIONS(1586), 1, anon_sym_sizeof, - ACTIONS(2218), 1, + ACTIONS(2302), 1, anon_sym_RBRACK, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(839), 1, + STATE(990), 1, sym__expression, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1450), 2, + ACTIONS(157), 2, + sym_true, + sym_false, + ACTIONS(1578), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1452), 2, + ACTIONS(1580), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1456), 2, + ACTIONS(1584), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1779), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78075,7 +91563,9 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_subscript_expression, sym_call_expression, @@ -78086,60 +91576,69 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13961] = 19, + [9120] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1448), 1, + ACTIONS(1484), 1, + sym_identifier, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1458), 1, + ACTIONS(1586), 1, anon_sym_sizeof, - ACTIONS(2220), 1, + ACTIONS(2304), 1, anon_sym_RBRACK, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(839), 1, + STATE(990), 1, sym__expression, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1450), 2, + ACTIONS(157), 2, + sym_true, + sym_false, + ACTIONS(1578), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1452), 2, + ACTIONS(1580), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1456), 2, + ACTIONS(1584), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1779), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78149,7 +91648,9 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_subscript_expression, sym_call_expression, @@ -78160,219 +91661,158 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14054] = 21, + [9227] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1484), 1, sym_identifier, - ACTIONS(2222), 1, - anon_sym_COLON, - STATE(763), 1, + ACTIONS(1576), 1, + anon_sym_LPAREN2, + ACTIONS(1586), 1, + anon_sym_sizeof, + ACTIONS(2306), 1, + anon_sym_RBRACK, + STATE(858), 1, sym_string_literal, - STATE(1188), 1, + STATE(990), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(1578), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1580), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1584), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1913), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14151] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1805), 1, - sym_identifier, - ACTIONS(2224), 1, - anon_sym_LBRACE, - STATE(826), 1, - sym_ms_call_modifier, - STATE(939), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1391), 1, - sym__declaration_specifiers, - STATE(140), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(37), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(827), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [14248] = 21, + [9334] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1905), 1, sym_identifier, - STATE(763), 1, + ACTIONS(1907), 1, + anon_sym_LPAREN2, + ACTIONS(1917), 1, + anon_sym_sizeof, + STATE(858), 1, sym_string_literal, - STATE(1095), 1, + STATE(1301), 1, sym__expression, - STATE(1757), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(1909), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1911), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1913), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1915), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(1056), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78381,361 +91821,411 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14345] = 19, + [9440] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1448), 1, - anon_sym_LPAREN2, - ACTIONS(1458), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, - anon_sym_RBRACK, - STATE(763), 1, + ACTIONS(1895), 1, + sym_identifier, + STATE(858), 1, sym_string_literal, - STATE(839), 1, + STATE(1143), 1, sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1450), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1452), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1456), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1779), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(149), 3, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(157), 2, sym_true, sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(928), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14438] = 19, + [9546] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1448), 1, + ACTIONS(1905), 1, + sym_identifier, + ACTIONS(1907), 1, anon_sym_LPAREN2, - ACTIONS(1458), 1, + ACTIONS(1917), 1, anon_sym_sizeof, - ACTIONS(2228), 1, - anon_sym_RBRACK, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(839), 1, + STATE(1313), 1, sym__expression, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1450), 2, + ACTIONS(157), 2, + sym_true, + sym_false, + ACTIONS(1909), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1452), 2, + ACTIONS(1911), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1456), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1779), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(1915), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(1056), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14531] = 19, + [9652] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1448), 1, + ACTIONS(1905), 1, + sym_identifier, + ACTIONS(1907), 1, anon_sym_LPAREN2, - ACTIONS(1458), 1, + ACTIONS(1917), 1, anon_sym_sizeof, - ACTIONS(2230), 1, - anon_sym_RBRACK, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(839), 1, + STATE(1309), 1, sym__expression, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1450), 2, + ACTIONS(157), 2, + sym_true, + sym_false, + ACTIONS(1909), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1452), 2, + ACTIONS(1911), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1456), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1779), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(1915), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(1056), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14624] = 20, + [9758] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1771), 1, + ACTIONS(1484), 1, sym_identifier, - ACTIONS(1773), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1586), 1, anon_sym_sizeof, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1171), 1, + STATE(998), 1, sym__expression, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(1775), 2, + ACTIONS(1578), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1777), 2, + ACTIONS(1580), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1779), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1781), 2, + ACTIONS(1584), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(1913), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(865), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14718] = 18, + [9862] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1180), 1, - anon_sym_LPAREN2, - ACTIONS(1194), 1, + ACTIONS(1484), 1, + sym_identifier, + ACTIONS(1586), 1, anon_sym_sizeof, - STATE(763), 1, + ACTIONS(2308), 1, + anon_sym_LPAREN2, + STATE(858), 1, sym_string_literal, - STATE(777), 1, + STATE(989), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1182), 2, + ACTIONS(157), 2, + sym_true, + sym_false, + ACTIONS(1578), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1184), 2, + ACTIONS(1580), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1192), 2, + ACTIONS(1584), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(1913), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78745,7 +92235,9 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_subscript_expression, sym_call_expression, @@ -78756,65 +92248,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14808] = 20, + [9966] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1771), 1, + ACTIONS(1905), 1, sym_identifier, - ACTIONS(1773), 1, + ACTIONS(1907), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1917), 1, anon_sym_sizeof, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1152), 1, + STATE(1305), 1, sym__expression, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(1775), 2, + ACTIONS(1909), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1777), 2, + ACTIONS(1911), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1779), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1781), 2, + ACTIONS(1915), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(865), 5, + STATE(1056), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78823,31 +92323,35 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14902] = 20, + [10072] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1056), 1, + STATE(1273), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -78858,37 +92362,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78897,72 +92407,82 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14996] = 20, + [10178] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1905), 1, sym_identifier, - STATE(763), 1, + ACTIONS(1907), 1, + anon_sym_LPAREN2, + ACTIONS(1917), 1, + anon_sym_sizeof, + STATE(858), 1, sym_string_literal, - STATE(1063), 1, + STATE(998), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(1909), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1911), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1913), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1915), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(1056), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78971,105 +92491,118 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [15090] = 20, + [10284] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1771), 1, + ACTIONS(1484), 1, sym_identifier, - ACTIONS(1773), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1586), 1, anon_sym_sizeof, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1172), 1, + STATE(990), 1, sym__expression, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(1775), 2, + ACTIONS(1578), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1777), 2, + ACTIONS(1580), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1779), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1781), 2, + ACTIONS(1584), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(1913), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(865), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [15184] = 20, + [10388] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1150), 1, + STATE(1165), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -79080,37 +92613,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79119,144 +92658,166 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [15278] = 18, + [10494] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1180), 1, - anon_sym_LPAREN2, - ACTIONS(1194), 1, - anon_sym_sizeof, - STATE(763), 1, + ACTIONS(1895), 1, + sym_identifier, + STATE(858), 1, sym_string_literal, - STATE(818), 1, + STATE(1254), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1182), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1184), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1192), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(149), 3, + ACTIONS(157), 2, sym_true, sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(928), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [15368] = 20, + [10600] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1905), 1, sym_identifier, - STATE(763), 1, + ACTIONS(1907), 1, + anon_sym_LPAREN2, + ACTIONS(1917), 1, + anon_sym_sizeof, + STATE(858), 1, sym_string_literal, - STATE(1184), 1, + STATE(1308), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(1909), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1911), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1913), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1915), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(1056), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79265,31 +92826,35 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [15462] = 20, + [10706] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1169), 1, + STATE(891), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -79300,37 +92865,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79339,105 +92910,118 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [15556] = 20, + [10812] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1771), 1, + ACTIONS(1484), 1, sym_identifier, - ACTIONS(1783), 1, - anon_sym_sizeof, - ACTIONS(2232), 1, + ACTIONS(1488), 1, anon_sym_LPAREN2, - STATE(763), 1, + ACTIONS(1502), 1, + anon_sym_sizeof, + STATE(858), 1, sym_string_literal, - STATE(1187), 1, + STATE(919), 1, sym__expression, - ACTIONS(85), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(1775), 2, + ACTIONS(1490), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1777), 2, + ACTIONS(1492), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1779), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1781), 2, + ACTIONS(1500), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(865), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [15650] = 20, + [10916] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - STATE(763), 1, + ACTIONS(2310), 1, + anon_sym_LPAREN2, + STATE(858), 1, sym_string_literal, - STATE(1020), 1, + STATE(1138), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -79448,37 +93032,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79487,218 +93077,334 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [15744] = 20, + [11022] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1771), 1, + ACTIONS(1484), 1, sym_identifier, - ACTIONS(1773), 1, + ACTIONS(1488), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1502), 1, anon_sym_sizeof, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1174), 1, + STATE(920), 1, sym__expression, - ACTIONS(85), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(1775), 2, + ACTIONS(1490), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1777), 2, + ACTIONS(1492), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1779), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1781), 2, + ACTIONS(1500), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(865), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [15838] = 18, + [11126] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(2085), 1, + sym_identifier, + ACTIONS(2108), 1, + anon_sym___attribute__, + ACTIONS(2111), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2114), 1, + anon_sym___declspec, + ACTIONS(2120), 1, + sym_primitive_type, + ACTIONS(2123), 1, + anon_sym_enum, + ACTIONS(2126), 1, + anon_sym_struct, + ACTIONS(2129), 1, + anon_sym_union, + ACTIONS(2312), 1, + aux_sym_preproc_def_token1, + ACTIONS(2315), 1, + aux_sym_preproc_if_token1, + ACTIONS(2321), 1, + sym_preproc_directive, + ACTIONS(2324), 1, + anon_sym_RBRACE, + STATE(1042), 1, + sym__type_specifier, + STATE(1091), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1483), 1, + sym__declaration_specifiers, + ACTIONS(2318), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(2117), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1104), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(885), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(769), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + ACTIONS(2102), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2105), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [11234] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1180), 1, - anon_sym_LPAREN2, - ACTIONS(1194), 1, - anon_sym_sizeof, - STATE(763), 1, + ACTIONS(1895), 1, + sym_identifier, + STATE(858), 1, sym_string_literal, - STATE(776), 1, + STATE(1294), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1182), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1184), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1192), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(149), 3, + ACTIONS(157), 2, sym_true, sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(928), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [15928] = 20, + [11340] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1771), 1, + ACTIONS(1905), 1, sym_identifier, - ACTIONS(1773), 1, + ACTIONS(1907), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1917), 1, anon_sym_sizeof, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1166), 1, + STATE(1314), 1, sym__expression, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(1775), 2, + ACTIONS(1909), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1777), 2, + ACTIONS(1911), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1779), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1781), 2, + ACTIONS(1915), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(865), 5, + STATE(1056), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79707,72 +93413,82 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16022] = 20, + [11446] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1771), 1, + ACTIONS(1905), 1, sym_identifier, - ACTIONS(1773), 1, + ACTIONS(1907), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1917), 1, anon_sym_sizeof, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1176), 1, + STATE(1303), 1, sym__expression, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(1775), 2, + ACTIONS(1909), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1777), 2, + ACTIONS(1911), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1779), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1781), 2, + ACTIONS(1915), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(865), 5, + STATE(1056), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79781,146 +93497,165 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16116] = 20, + [11552] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1771), 1, + ACTIONS(1484), 1, sym_identifier, - ACTIONS(1773), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1586), 1, anon_sym_sizeof, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1162), 1, + STATE(993), 1, sym__expression, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(1775), 2, + ACTIONS(1578), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1777), 2, + ACTIONS(1580), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1779), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1781), 2, + ACTIONS(1584), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(1913), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(865), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16210] = 20, + [11656] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1771), 1, + ACTIONS(1905), 1, sym_identifier, - ACTIONS(1773), 1, + ACTIONS(1907), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1917), 1, anon_sym_sizeof, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(841), 1, + STATE(1295), 1, sym__expression, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(1775), 2, + ACTIONS(1909), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1777), 2, + ACTIONS(1911), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1779), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1781), 2, + ACTIONS(1915), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(865), 5, + STATE(1056), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79929,72 +93664,165 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16304] = 20, + [11762] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1484), 1, sym_identifier, - STATE(763), 1, + ACTIONS(1576), 1, + anon_sym_LPAREN2, + ACTIONS(1586), 1, + anon_sym_sizeof, + STATE(858), 1, sym_string_literal, - STATE(1109), 1, + STATE(994), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(157), 2, + sym_true, + sym_false, + ACTIONS(1578), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(1580), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1584), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(1913), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(904), 22, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_builtin_va_arg, + sym_generic_expression, + sym_subscript_expression, + sym_call_expression, + sym_gnu_asm_expression, + sym_field_expression, + sym_compound_literal_expression, + sym_parenthesized_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [11866] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(155), 1, + sym_number_literal, + ACTIONS(1905), 1, + sym_identifier, + ACTIONS(1907), 1, + anon_sym_LPAREN2, + ACTIONS(1917), 1, + anon_sym_sizeof, + STATE(858), 1, + sym_string_literal, + STATE(1292), 1, + sym__expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(1909), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1911), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1913), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1915), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(1056), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80003,65 +93831,76 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16398] = 18, + [11972] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1180), 1, + ACTIONS(1484), 1, + sym_identifier, + ACTIONS(1488), 1, anon_sym_LPAREN2, - ACTIONS(1194), 1, + ACTIONS(1502), 1, anon_sym_sizeof, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(804), 1, + STATE(908), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1182), 2, + ACTIONS(157), 2, + sym_true, + sym_false, + ACTIONS(1490), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1184), 2, + ACTIONS(1492), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1192), 2, + ACTIONS(1500), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80071,7 +93910,9 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_subscript_expression, sym_call_expression, @@ -80082,58 +93923,67 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16488] = 18, + [12076] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1194), 1, - anon_sym_sizeof, - ACTIONS(2234), 1, + ACTIONS(1484), 1, + sym_identifier, + ACTIONS(1576), 1, anon_sym_LPAREN2, - STATE(763), 1, + ACTIONS(1586), 1, + anon_sym_sizeof, + STATE(858), 1, sym_string_literal, - STATE(789), 1, + STATE(995), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1182), 2, + ACTIONS(157), 2, + sym_true, + sym_false, + ACTIONS(1578), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1184), 2, + ACTIONS(1580), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1192), 2, + ACTIONS(1584), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(1913), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80143,7 +93993,9 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_subscript_expression, sym_call_expression, @@ -80154,65 +94006,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16578] = 20, + [12180] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1771), 1, + ACTIONS(1905), 1, sym_identifier, - ACTIONS(1773), 1, + ACTIONS(1907), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1917), 1, anon_sym_sizeof, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(855), 1, + STATE(1007), 1, sym__expression, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(1775), 2, + ACTIONS(1909), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1777), 2, + ACTIONS(1911), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1779), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1781), 2, + ACTIONS(1915), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(865), 5, + STATE(1056), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80221,213 +94081,242 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16672] = 20, + [12286] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1771), 1, + ACTIONS(1484), 1, sym_identifier, - ACTIONS(1773), 1, + ACTIONS(1488), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1502), 1, anon_sym_sizeof, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1181), 1, + STATE(905), 1, sym__expression, - ACTIONS(85), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(1775), 2, + ACTIONS(1490), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1777), 2, + ACTIONS(1492), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1779), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1781), 2, + ACTIONS(1500), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(865), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16766] = 20, + [12390] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1771), 1, + ACTIONS(1484), 1, sym_identifier, - ACTIONS(1773), 1, + ACTIONS(1488), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1502), 1, anon_sym_sizeof, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1179), 1, + STATE(903), 1, sym__expression, - ACTIONS(85), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(1775), 2, + ACTIONS(1490), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1777), 2, + ACTIONS(1492), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1779), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1781), 2, + ACTIONS(1500), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(865), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16860] = 18, + [12494] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1448), 1, + ACTIONS(1484), 1, + sym_identifier, + ACTIONS(1488), 1, anon_sym_LPAREN2, - ACTIONS(1458), 1, + ACTIONS(1502), 1, anon_sym_sizeof, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(839), 1, + STATE(927), 1, sym__expression, - ACTIONS(85), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1450), 2, + ACTIONS(157), 2, + sym_true, + sym_false, + ACTIONS(1490), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1452), 2, + ACTIONS(1492), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1456), 2, + ACTIONS(1500), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1779), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80437,7 +94326,9 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_subscript_expression, sym_call_expression, @@ -80448,132 +94339,233 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16950] = 20, + [12598] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1484), 1, sym_identifier, - STATE(763), 1, + ACTIONS(1488), 1, + anon_sym_LPAREN2, + ACTIONS(1502), 1, + anon_sym_sizeof, + STATE(858), 1, sym_string_literal, - STATE(1123), 1, + STATE(926), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(1490), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1492), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1500), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(904), 22, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_builtin_va_arg, + sym_generic_expression, sym_subscript_expression, sym_call_expression, + sym_gnu_asm_expression, sym_field_expression, + sym_compound_literal_expression, sym_parenthesized_expression, - STATE(795), 15, + sym_char_literal, + sym_concatenated_string, + sym_null, + [12702] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, + anon_sym__Generic, + ACTIONS(155), 1, + sym_number_literal, + ACTIONS(1484), 1, + sym_identifier, + ACTIONS(1488), 1, + anon_sym_LPAREN2, + ACTIONS(1502), 1, + anon_sym_sizeof, + STATE(858), 1, + sym_string_literal, + STATE(921), 1, + sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(157), 2, + sym_true, + sym_false, + ACTIONS(1490), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1492), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1500), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [17044] = 18, + [12806] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1448), 1, + ACTIONS(1484), 1, + sym_identifier, + ACTIONS(1488), 1, anon_sym_LPAREN2, - ACTIONS(1458), 1, + ACTIONS(1502), 1, anon_sym_sizeof, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(841), 1, + STATE(897), 1, sym__expression, - ACTIONS(85), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1450), 2, + ACTIONS(157), 2, + sym_true, + sym_false, + ACTIONS(1490), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1452), 2, + ACTIONS(1492), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1456), 2, + ACTIONS(1500), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1779), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80583,7 +94575,9 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_subscript_expression, sym_call_expression, @@ -80594,58 +94588,67 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17134] = 18, + [12910] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1180), 1, + ACTIONS(1484), 1, + sym_identifier, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1194), 1, + ACTIONS(1586), 1, anon_sym_sizeof, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(781), 1, + STATE(996), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1182), 2, + ACTIONS(157), 2, + sym_true, + sym_false, + ACTIONS(1578), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1184), 2, + ACTIONS(1580), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1192), 2, + ACTIONS(1584), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(1913), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80655,7 +94658,9 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_subscript_expression, sym_call_expression, @@ -80666,172 +94671,192 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17224] = 20, + [13014] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1484), 1, sym_identifier, - STATE(763), 1, + ACTIONS(1488), 1, + anon_sym_LPAREN2, + ACTIONS(1502), 1, + anon_sym_sizeof, + STATE(858), 1, sym_string_literal, - STATE(999), 1, + STATE(924), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(1490), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1492), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1500), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [17318] = 20, + [13118] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1484), 1, sym_identifier, - STATE(763), 1, + ACTIONS(1488), 1, + anon_sym_LPAREN2, + ACTIONS(1502), 1, + anon_sym_sizeof, + STATE(858), 1, sym_string_literal, - STATE(1024), 1, + STATE(895), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(1490), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1492), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1500), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [17412] = 20, + [13222] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(794), 1, + STATE(1257), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -80842,37 +94867,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80881,72 +94912,82 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [17506] = 20, + [13328] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1771), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(1773), 1, - anon_sym_LPAREN2, - ACTIONS(1783), 1, - anon_sym_sizeof, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1183), 1, + STATE(1343), 1, sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1777), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1779), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1781), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(157), 2, + sym_true, + sym_false, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(865), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80955,139 +94996,159 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [17600] = 20, + [13434] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1771), 1, + ACTIONS(1484), 1, sym_identifier, - ACTIONS(1773), 1, + ACTIONS(1488), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1502), 1, anon_sym_sizeof, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1168), 1, + STATE(923), 1, sym__expression, - ACTIONS(85), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(1775), 2, + ACTIONS(1490), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1777), 2, + ACTIONS(1492), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1779), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1781), 2, + ACTIONS(1500), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(865), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [17694] = 18, + [13538] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1180), 1, + ACTIONS(1484), 1, + sym_identifier, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1194), 1, + ACTIONS(1586), 1, anon_sym_sizeof, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(780), 1, + STATE(1007), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1182), 2, + ACTIONS(157), 2, + sym_true, + sym_false, + ACTIONS(1578), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1184), 2, + ACTIONS(1580), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1192), 2, + ACTIONS(1584), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(1913), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81097,7 +95158,9 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_subscript_expression, sym_call_expression, @@ -81108,58 +95171,67 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17784] = 18, + [13642] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1180), 1, + ACTIONS(1484), 1, + sym_identifier, + ACTIONS(1488), 1, anon_sym_LPAREN2, - ACTIONS(1194), 1, + ACTIONS(1502), 1, anon_sym_sizeof, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(808), 1, + STATE(891), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1182), 2, + ACTIONS(157), 2, + sym_true, + sym_false, + ACTIONS(1490), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1184), 2, + ACTIONS(1492), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1192), 2, + ACTIONS(1500), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81169,7 +95241,9 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_subscript_expression, sym_call_expression, @@ -81180,65 +95254,158 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17874] = 20, + [13746] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, - ACTIONS(81), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1222), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2021), 1, + sym_identifier, + ACTIONS(2326), 1, + aux_sym_preproc_def_token1, + ACTIONS(2328), 1, + aux_sym_preproc_if_token1, + ACTIONS(2330), 1, + aux_sym_preproc_if_token2, + ACTIONS(2334), 1, + sym_preproc_directive, + STATE(1042), 1, + sym__type_specifier, + STATE(1091), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1484), 1, + sym__declaration_specifiers, + ACTIONS(2332), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1104), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(885), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(805), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [13854] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1905), 1, sym_identifier, - STATE(763), 1, + ACTIONS(1907), 1, + anon_sym_LPAREN2, + ACTIONS(1917), 1, + anon_sym_sizeof, + STATE(858), 1, sym_string_literal, - STATE(1037), 1, + STATE(988), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(1909), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1911), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1913), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1915), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(1056), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81247,105 +95414,118 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [17968] = 20, + [13960] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1484), 1, sym_identifier, - STATE(763), 1, + ACTIONS(1576), 1, + anon_sym_LPAREN2, + ACTIONS(1586), 1, + anon_sym_sizeof, + STATE(858), 1, sym_string_literal, - STATE(1026), 1, + STATE(1003), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(1578), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1580), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1584), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1913), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(824), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(795), 15, + anon_sym_DQUOTE, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [18062] = 20, + [14064] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1027), 1, + STATE(1328), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -81356,37 +95536,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81395,105 +95581,118 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [18156] = 20, + [14170] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1484), 1, sym_identifier, - STATE(763), 1, + ACTIONS(1502), 1, + anon_sym_sizeof, + ACTIONS(2336), 1, + anon_sym_LPAREN2, + STATE(858), 1, sym_string_literal, - STATE(1032), 1, + STATE(909), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(1490), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1492), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1500), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [18250] = 20, + [14274] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(993), 1, + STATE(903), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -81504,37 +95703,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81543,31 +95748,35 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [18344] = 20, + [14380] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1146), 1, + STATE(1164), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -81578,37 +95787,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81617,72 +95832,82 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [18438] = 20, + [14486] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1905), 1, sym_identifier, - STATE(763), 1, + ACTIONS(1907), 1, + anon_sym_LPAREN2, + ACTIONS(1917), 1, + anon_sym_sizeof, + STATE(858), 1, sym_string_literal, - STATE(1167), 1, + STATE(1267), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(1909), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1911), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1913), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1915), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(1056), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81691,31 +95916,35 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [18532] = 20, + [14592] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1170), 1, + STATE(1332), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -81726,37 +95955,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81765,65 +96000,76 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [18626] = 18, + [14698] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1180), 1, + ACTIONS(1484), 1, + sym_identifier, + ACTIONS(1488), 1, anon_sym_LPAREN2, - ACTIONS(1194), 1, + ACTIONS(1502), 1, anon_sym_sizeof, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(800), 1, + STATE(902), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1182), 2, + ACTIONS(157), 2, + sym_true, + sym_false, + ACTIONS(1490), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1184), 2, + ACTIONS(1492), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1192), 2, + ACTIONS(1500), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81833,7 +96079,9 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_subscript_expression, sym_call_expression, @@ -81844,137 +96092,412 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18716] = 18, + [14802] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1222), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2021), 1, + sym_identifier, + ACTIONS(2338), 1, + aux_sym_preproc_def_token1, + ACTIONS(2340), 1, + aux_sym_preproc_if_token1, + ACTIONS(2344), 1, + sym_preproc_directive, + ACTIONS(2346), 1, + anon_sym_RBRACE, + STATE(1042), 1, + sym__type_specifier, + STATE(1091), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1483), 1, + sym__declaration_specifiers, + ACTIONS(2342), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1104), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(885), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(809), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [14910] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1222), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2021), 1, + sym_identifier, + ACTIONS(2326), 1, + aux_sym_preproc_def_token1, + ACTIONS(2328), 1, + aux_sym_preproc_if_token1, + ACTIONS(2334), 1, + sym_preproc_directive, + ACTIONS(2348), 1, + aux_sym_preproc_if_token2, + STATE(1042), 1, + sym__type_specifier, + STATE(1091), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1484), 1, + sym__declaration_specifiers, + ACTIONS(2332), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1104), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(885), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(806), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [15018] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2085), 1, + sym_identifier, + ACTIONS(2094), 1, + aux_sym_preproc_if_token2, + ACTIONS(2108), 1, + anon_sym___attribute__, + ACTIONS(2111), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2114), 1, + anon_sym___declspec, + ACTIONS(2120), 1, + sym_primitive_type, + ACTIONS(2123), 1, + anon_sym_enum, + ACTIONS(2126), 1, + anon_sym_struct, + ACTIONS(2129), 1, + anon_sym_union, + ACTIONS(2350), 1, + aux_sym_preproc_def_token1, + ACTIONS(2353), 1, + aux_sym_preproc_if_token1, + ACTIONS(2359), 1, + sym_preproc_directive, + STATE(1042), 1, + sym__type_specifier, + STATE(1091), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1484), 1, + sym__declaration_specifiers, + ACTIONS(2356), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(2117), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1104), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(885), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(806), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + ACTIONS(2102), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2105), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [15126] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1448), 1, - anon_sym_LPAREN2, - ACTIONS(1458), 1, + ACTIONS(1905), 1, + sym_identifier, + ACTIONS(1917), 1, anon_sym_sizeof, - STATE(763), 1, + ACTIONS(2362), 1, + anon_sym_LPAREN2, + STATE(858), 1, sym_string_literal, - STATE(850), 1, + STATE(1286), 1, sym__expression, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1450), 2, + ACTIONS(157), 2, + sym_true, + sym_false, + ACTIONS(1909), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1452), 2, + ACTIONS(1911), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1456), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1779), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(1915), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(1056), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [18806] = 20, + [15232] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1905), 1, sym_identifier, - STATE(763), 1, + ACTIONS(1907), 1, + anon_sym_LPAREN2, + ACTIONS(1917), 1, + anon_sym_sizeof, + STATE(858), 1, sym_string_literal, - STATE(1034), 1, + STATE(1318), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(1909), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1911), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1913), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1915), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(1056), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81983,65 +96506,161 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [18900] = 18, + [15338] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1222), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2021), 1, + sym_identifier, + ACTIONS(2338), 1, + aux_sym_preproc_def_token1, + ACTIONS(2340), 1, + aux_sym_preproc_if_token1, + ACTIONS(2344), 1, + sym_preproc_directive, + ACTIONS(2364), 1, + anon_sym_RBRACE, + STATE(1042), 1, + sym__type_specifier, + STATE(1091), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1483), 1, + sym__declaration_specifiers, + ACTIONS(2342), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1104), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(885), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(769), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [15446] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1448), 1, + ACTIONS(1484), 1, + sym_identifier, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1458), 1, + ACTIONS(1586), 1, anon_sym_sizeof, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(851), 1, + STATE(997), 1, sym__expression, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1450), 2, + ACTIONS(157), 2, + sym_true, + sym_false, + ACTIONS(1578), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1452), 2, + ACTIONS(1580), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1456), 2, + ACTIONS(1584), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1779), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -82051,7 +96670,9 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_subscript_expression, sym_call_expression, @@ -82062,98 +96683,109 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18990] = 20, + [15550] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1484), 1, sym_identifier, - STATE(763), 1, + ACTIONS(1576), 1, + anon_sym_LPAREN2, + ACTIONS(1586), 1, + anon_sym_sizeof, + STATE(858), 1, sym_string_literal, - STATE(1036), 1, + STATE(985), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(1578), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1580), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1584), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1913), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [19084] = 20, + [15654] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1030), 1, + STATE(1212), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -82164,37 +96796,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -82203,144 +96841,166 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [19178] = 18, + [15760] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1448), 1, - anon_sym_LPAREN2, - ACTIONS(1458), 1, - anon_sym_sizeof, - STATE(763), 1, + ACTIONS(1895), 1, + sym_identifier, + STATE(858), 1, sym_string_literal, - STATE(853), 1, + STATE(1162), 1, sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1450), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1452), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1456), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1779), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(149), 3, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(157), 2, sym_true, sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(928), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [19268] = 20, + [15866] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1771), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(1773), 1, - anon_sym_LPAREN2, - ACTIONS(1783), 1, - anon_sym_sizeof, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1182), 1, + STATE(1167), 1, sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1777), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1779), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1781), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(157), 2, + sym_true, + sym_false, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(865), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -82349,103 +97009,119 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [19362] = 18, + [15972] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1448), 1, - anon_sym_LPAREN2, - ACTIONS(1458), 1, - anon_sym_sizeof, - STATE(763), 1, + ACTIONS(1895), 1, + sym_identifier, + STATE(858), 1, sym_string_literal, - STATE(852), 1, + STATE(1271), 1, sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1450), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1452), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1456), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1779), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(149), 3, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(157), 2, sym_true, sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(928), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [19452] = 20, + [16078] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1155), 1, + STATE(1140), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -82456,37 +97132,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -82495,137 +97177,160 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [19546] = 18, + [16184] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1448), 1, - anon_sym_LPAREN2, - ACTIONS(1458), 1, - anon_sym_sizeof, - STATE(763), 1, + ACTIONS(1895), 1, + sym_identifier, + STATE(858), 1, sym_string_literal, - STATE(845), 1, + STATE(1274), 1, sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1450), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1452), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1456), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1779), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(149), 3, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(157), 2, sym_true, sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(928), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [19636] = 18, + [16290] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1448), 1, + ACTIONS(1484), 1, + sym_identifier, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1458), 1, + ACTIONS(1586), 1, anon_sym_sizeof, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(844), 1, + STATE(1002), 1, sym__expression, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1450), 2, + ACTIONS(157), 2, + sym_true, + sym_false, + ACTIONS(1578), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1452), 2, + ACTIONS(1580), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1456), 2, + ACTIONS(1584), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1779), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -82635,7 +97340,9 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_subscript_expression, sym_call_expression, @@ -82646,130 +97353,151 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19726] = 18, + [16394] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1448), 1, + ACTIONS(1905), 1, + sym_identifier, + ACTIONS(1907), 1, anon_sym_LPAREN2, - ACTIONS(1458), 1, + ACTIONS(1917), 1, anon_sym_sizeof, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(838), 1, + STATE(1326), 1, sym__expression, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1450), 2, + ACTIONS(157), 2, + sym_true, + sym_false, + ACTIONS(1909), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1452), 2, + ACTIONS(1911), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1456), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1779), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(1915), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(1056), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [19816] = 18, + [16500] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1180), 1, + ACTIONS(1484), 1, + sym_identifier, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1194), 1, + ACTIONS(1586), 1, anon_sym_sizeof, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(793), 1, + STATE(1006), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1182), 2, + ACTIONS(157), 2, + sym_true, + sym_false, + ACTIONS(1578), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1184), 2, + ACTIONS(1580), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1192), 2, + ACTIONS(1584), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(1913), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -82779,7 +97507,9 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_subscript_expression, sym_call_expression, @@ -82790,65 +97520,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19906] = 20, + [16604] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1771), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(1773), 1, - anon_sym_LPAREN2, - ACTIONS(1783), 1, - anon_sym_sizeof, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1161), 1, + STATE(1145), 1, sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1777), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1779), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1781), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(157), 2, + sym_true, + sym_false, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(865), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -82857,65 +97595,76 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [20000] = 18, + [16710] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1180), 1, + ACTIONS(1484), 1, + sym_identifier, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1194), 1, + ACTIONS(1586), 1, anon_sym_sizeof, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(807), 1, + STATE(1005), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1182), 2, + ACTIONS(157), 2, + sym_true, + sym_false, + ACTIONS(1578), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1184), 2, + ACTIONS(1580), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1192), 2, + ACTIONS(1584), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(1913), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -82925,7 +97674,9 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_subscript_expression, sym_call_expression, @@ -82936,132 +97687,67 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20090] = 20, + [16814] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1484), 1, sym_identifier, - STATE(763), 1, - sym_string_literal, - STATE(1033), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(824), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(795), 15, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [20184] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1448), 1, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1458), 1, + ACTIONS(1586), 1, anon_sym_sizeof, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(842), 1, + STATE(988), 1, sym__expression, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1450), 2, + ACTIONS(157), 2, + sym_true, + sym_false, + ACTIONS(1578), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1452), 2, + ACTIONS(1580), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1456), 2, + ACTIONS(1584), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1779), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -83071,7 +97757,9 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_subscript_expression, sym_call_expression, @@ -83082,58 +97770,67 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20274] = 18, + [16918] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1448), 1, + ACTIONS(1484), 1, + sym_identifier, + ACTIONS(1488), 1, anon_sym_LPAREN2, - ACTIONS(1458), 1, + ACTIONS(1502), 1, anon_sym_sizeof, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(843), 1, + STATE(922), 1, sym__expression, - ACTIONS(85), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1450), 2, + ACTIONS(157), 2, + sym_true, + sym_false, + ACTIONS(1490), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1452), 2, + ACTIONS(1492), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1456), 2, + ACTIONS(1500), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1779), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -83143,7 +97840,9 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_subscript_expression, sym_call_expression, @@ -83154,24 +97853,26 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20364] = 20, + [17022] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(776), 1, + STATE(1130), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -83182,37 +97883,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -83221,72 +97928,82 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [20458] = 20, + [17128] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1771), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(1773), 1, - anon_sym_LPAREN2, - ACTIONS(1783), 1, - anon_sym_sizeof, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1165), 1, + STATE(895), 1, sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - ACTIONS(1775), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1777), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1779), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1781), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(157), 2, + sym_true, + sym_false, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(865), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -83295,463 +98012,539 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [20552] = 18, + [17234] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1448), 1, - anon_sym_LPAREN2, - ACTIONS(1458), 1, - anon_sym_sizeof, - STATE(763), 1, + ACTIONS(1895), 1, + sym_identifier, + STATE(858), 1, sym_string_literal, - STATE(856), 1, + STATE(1306), 1, sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1450), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1452), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1456), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1779), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(149), 3, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(157), 2, sym_true, sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(928), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [20642] = 18, + [17340] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1180), 1, - anon_sym_LPAREN2, - ACTIONS(1194), 1, - anon_sym_sizeof, - STATE(763), 1, + ACTIONS(1895), 1, + sym_identifier, + STATE(858), 1, sym_string_literal, - STATE(794), 1, + STATE(1132), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1182), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1184), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1192), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(149), 3, + ACTIONS(157), 2, sym_true, sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(928), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [20732] = 18, + [17446] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1180), 1, - anon_sym_LPAREN2, - ACTIONS(1194), 1, - anon_sym_sizeof, - STATE(763), 1, + ACTIONS(1895), 1, + sym_identifier, + STATE(858), 1, sym_string_literal, - STATE(819), 1, + STATE(1137), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1182), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1184), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1192), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(149), 3, + ACTIONS(157), 2, sym_true, sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(928), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [20822] = 18, + [17552] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1448), 1, - anon_sym_LPAREN2, - ACTIONS(1458), 1, - anon_sym_sizeof, - STATE(763), 1, + ACTIONS(1895), 1, + sym_identifier, + STATE(858), 1, sym_string_literal, - STATE(849), 1, + STATE(1203), 1, sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1450), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1452), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1456), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1779), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(149), 3, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(157), 2, sym_true, sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(928), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [20912] = 18, + [17658] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1180), 1, - anon_sym_LPAREN2, - ACTIONS(1194), 1, - anon_sym_sizeof, - STATE(763), 1, + ACTIONS(1895), 1, + sym_identifier, + STATE(858), 1, sym_string_literal, - STATE(809), 1, + STATE(1261), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1182), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1184), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1192), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(149), 3, + ACTIONS(157), 2, sym_true, sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(928), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [21002] = 18, + [17764] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1448), 1, - anon_sym_LPAREN2, - ACTIONS(1458), 1, - anon_sym_sizeof, - STATE(763), 1, + ACTIONS(1895), 1, + sym_identifier, + STATE(858), 1, sym_string_literal, - STATE(855), 1, + STATE(1136), 1, sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1450), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1452), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1456), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1779), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(149), 3, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(101), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(157), 2, sym_true, sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(928), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [21092] = 20, + [17870] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1186), 1, + STATE(1133), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -83762,37 +98555,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -83801,65 +98600,76 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [21186] = 18, + [17976] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1448), 1, + ACTIONS(1484), 1, + sym_identifier, + ACTIONS(1576), 1, anon_sym_LPAREN2, - ACTIONS(1458), 1, + ACTIONS(1586), 1, anon_sym_sizeof, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(854), 1, + STATE(1004), 1, sym__expression, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1450), 2, + ACTIONS(157), 2, + sym_true, + sym_false, + ACTIONS(1578), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1452), 2, + ACTIONS(1580), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1456), 2, + ACTIONS(1584), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1779), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(904), 22, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -83869,7 +98679,9 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_subscript_expression, sym_call_expression, @@ -83880,24 +98692,26 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [21276] = 20, + [18080] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - anon_sym_sizeof, + ACTIONS(19), 1, + anon_sym_LPAREN2, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(1000), 1, + STATE(1135), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -83908,37 +98722,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -83947,31 +98767,35 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [21370] = 20, + [18186] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1895), 1, sym_identifier, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(818), 1, + STATE(1131), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -83982,37 +98806,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(928), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -84021,288 +98851,250 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [21464] = 18, + [18292] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1458), 1, - anon_sym_sizeof, - ACTIONS(2238), 1, - anon_sym_LPAREN2, - STATE(763), 1, + ACTIONS(1895), 1, + sym_identifier, + STATE(858), 1, sym_string_literal, - STATE(846), 1, + STATE(1144), 1, sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1450), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1452), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1456), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1779), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - ACTIONS(89), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(795), 20, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [21554] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1180), 1, - anon_sym_LPAREN2, - ACTIONS(1194), 1, - anon_sym_sizeof, - STATE(763), 1, - sym_string_literal, - STATE(790), 1, - sym__expression, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1182), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1184), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1192), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(149), 3, + ACTIONS(157), 2, sym_true, sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(928), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [21644] = 18, + [18398] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1180), 1, - anon_sym_LPAREN2, - ACTIONS(1194), 1, - anon_sym_sizeof, - STATE(763), 1, + ACTIONS(1895), 1, + sym_identifier, + STATE(858), 1, sym_string_literal, - STATE(799), 1, + STATE(1134), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(85), 2, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1182), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1184), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1192), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(149), 3, + ACTIONS(157), 2, sym_true, sym_false, - sym_identifier, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(795), 20, + STATE(928), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [21734] = 20, + [18504] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1905), 1, sym_identifier, - STATE(763), 1, - sym_string_literal, - STATE(1173), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 2, + ACTIONS(1907), 1, + anon_sym_LPAREN2, + ACTIONS(1917), 1, + anon_sym_sizeof, + STATE(858), 1, + sym_string_literal, + STATE(1260), 1, + sym__expression, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(89), 5, + ACTIONS(1909), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1911), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1913), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1915), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(824), 5, + STATE(1056), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -84311,72 +99103,82 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [21828] = 20, + [18610] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(83), 1, + ACTIONS(87), 1, + anon_sym___builtin_va_arg, + ACTIONS(89), 1, anon_sym__Generic, - ACTIONS(147), 1, + ACTIONS(155), 1, sym_number_literal, - ACTIONS(1771), 1, + ACTIONS(1905), 1, sym_identifier, - ACTIONS(1773), 1, + ACTIONS(1907), 1, anon_sym_LPAREN2, - ACTIONS(1783), 1, + ACTIONS(1917), 1, anon_sym_sizeof, - STATE(763), 1, + STATE(858), 1, sym_string_literal, - STATE(854), 1, + STATE(1325), 1, sym__expression, - ACTIONS(85), 2, + ACTIONS(91), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + ACTIONS(101), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(157), 2, sym_true, sym_false, - ACTIONS(1775), 2, + ACTIONS(1909), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1777), 2, + ACTIONS(1911), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1779), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1781), 2, + ACTIONS(1915), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 5, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(865), 5, + STATE(1056), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(795), 15, + STATE(904), 17, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -84385,58 +99187,534 @@ static const uint16_t ts_small_parse_table[] = { sym_update_expression, sym_cast_expression, sym_sizeof_expression, + sym_alignof_expression, sym_offsetof_expression, + sym_builtin_va_arg, sym_generic_expression, sym_gnu_asm_expression, sym_compound_literal_expression, sym_char_literal, sym_concatenated_string, sym_null, - [21922] = 6, + [18716] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2240), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1222), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2021), 1, + sym_identifier, + ACTIONS(2049), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2051), 1, + anon_sym_RPAREN, + ACTIONS(2059), 1, + anon_sym_LBRACK, + ACTIONS(2366), 1, + anon_sym_LPAREN2, + ACTIONS(2368), 1, + anon_sym_STAR, + STATE(1042), 1, + sym__type_specifier, + STATE(1091), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1424), 1, + sym__declaration_specifiers, + STATE(1676), 1, + sym_parameter_list, + STATE(1701), 1, + sym__abstract_declarator, + STATE(1875), 2, + sym_variadic_parameter, + sym_parameter_declaration, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1677), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1104), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(885), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [18829] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1222), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2021), 1, + sym_identifier, + ACTIONS(2370), 1, + anon_sym_LBRACE, + STATE(876), 1, + sym_ms_call_modifier, + STATE(1042), 1, + sym__type_specifier, + STATE(1091), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1526), 1, + sym__declaration_specifiers, + STATE(433), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1104), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(885), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [18930] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1222), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2021), 1, + sym_identifier, + ACTIONS(2372), 1, + anon_sym_LBRACE, + STATE(872), 1, + sym_ms_call_modifier, + STATE(1042), 1, + sym__type_specifier, + STATE(1091), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1531), 1, + sym__declaration_specifiers, + STATE(249), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1104), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(885), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [19031] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1222), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2021), 1, + sym_identifier, + ACTIONS(2374), 1, + anon_sym_LBRACE, + STATE(874), 1, + sym_ms_call_modifier, + STATE(1042), 1, + sym__type_specifier, + STATE(1091), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1549), 1, + sym__declaration_specifiers, + STATE(164), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1104), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(885), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [19132] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1222), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2021), 1, + sym_identifier, + ACTIONS(2376), 1, + anon_sym_LBRACE, + STATE(877), 1, + sym_ms_call_modifier, + STATE(1042), 1, + sym__type_specifier, + STATE(1091), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1514), 1, + sym__declaration_specifiers, + STATE(454), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1104), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(885), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [19233] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1222), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2021), 1, sym_identifier, - STATE(764), 2, + ACTIONS(2378), 1, + anon_sym_LBRACE, + STATE(875), 1, + sym_ms_call_modifier, + STATE(1042), 1, + sym__type_specifier, + STATE(1091), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1522), 1, + sym__declaration_specifiers, + STATE(470), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1104), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(885), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [19334] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1983), 1, + anon_sym_const, + ACTIONS(1987), 1, + anon_sym_LPAREN2, + ACTIONS(1993), 1, + anon_sym_STAR, + ACTIONS(2001), 1, + anon_sym_EQ, + STATE(850), 1, sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(91), 5, + ACTIONS(1996), 2, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1980), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - ACTIONS(1974), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(1999), 8, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2005), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -84447,28 +99725,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [21987] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2242), 1, - sym_identifier, - STATE(765), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2246), 14, + ACTIONS(1991), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, @@ -84478,53 +99737,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - ACTIONS(2244), 29, + ACTIONS(1985), 12, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [22052] = 6, + [19413] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(2380), 1, sym_identifier, - STATE(765), 2, + STATE(849), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(2255), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2253), 14, + ACTIONS(2384), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84539,7 +99779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, - ACTIONS(2251), 29, + ACTIONS(2382), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84569,64 +99809,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [22117] = 3, + [19478] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2258), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, + ACTIONS(2386), 1, sym_identifier, - ACTIONS(2260), 34, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, + STATE(849), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(2393), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [22174] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2262), 15, + ACTIONS(2391), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84641,8 +99838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, - sym_identifier, - ACTIONS(2264), 34, + ACTIONS(2389), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84672,47 +99868,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, + [19543] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2396), 1, + sym_identifier, + STATE(848), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [22231] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1972), 1, - anon_sym_const, - ACTIONS(1976), 1, - anon_sym_LPAREN2, - ACTIONS(1982), 1, - anon_sym_STAR, - ACTIONS(1987), 1, - anon_sym_EQ, - ACTIONS(2001), 2, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(1985), 7, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(1991), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1980), 11, + ACTIONS(2400), 14, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, @@ -84722,71 +99895,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1974), 12, + anon_sym___attribute__, + anon_sym_EQ, + ACTIONS(2398), 29, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [22299] = 20, + [19608] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, + ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(35), 1, + ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, ACTIONS(49), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(51), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, anon_sym_union, - ACTIONS(1160), 1, + ACTIONS(1222), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1805), 1, + ACTIONS(2021), 1, sym_identifier, - ACTIONS(1871), 1, + ACTIONS(2049), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1873), 1, + ACTIONS(2051), 1, anon_sym_RPAREN, - STATE(939), 1, + STATE(1042), 1, sym__type_specifier, - STATE(1023), 1, + STATE(1091), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1304), 1, + STATE(1424), 1, sym__declaration_specifiers, - STATE(1649), 2, + STATE(1875), 2, sym_variadic_parameter, sym_parameter_declaration, - ACTIONS(41), 4, + ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1028), 5, + STATE(1104), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(827), 7, + STATE(885), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -84794,7 +99978,8 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -84803,76 +99988,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [22387] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1805), 1, - sym_identifier, - ACTIONS(1871), 1, - anon_sym_DOT_DOT_DOT, - STATE(939), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1304), 1, - sym__declaration_specifiers, - STATE(1677), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 7, + ACTIONS(45), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - STATE(827), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [22472] = 3, + [19700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1769), 21, + ACTIONS(1903), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -84894,7 +100024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1767), 23, + ACTIONS(1901), 29, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -84909,7 +100039,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_goto, anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, anon_sym_offsetof, + anon_sym___builtin_va_arg, anon_sym__Generic, anon_sym_asm, anon_sym___asm__, @@ -84918,59 +100054,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [22524] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2268), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2266), 31, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [22576] = 3, + [19758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1765), 21, + ACTIONS(1899), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -84992,7 +100079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1763), 23, + ACTIONS(1897), 29, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -85007,7 +100094,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_goto, anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, anon_sym_offsetof, + anon_sym___builtin_va_arg, anon_sym__Generic, anon_sym_asm, anon_sym___asm__, @@ -85016,10 +100109,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [22628] = 3, + [19816] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 21, + ACTIONS(2404), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -85040,409 +100133,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2268), 23, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_sizeof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - [22680] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2272), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2270), 30, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [22731] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2276), 1, - anon_sym_LPAREN2, - ACTIONS(2280), 1, - anon_sym_LBRACK, - STATE(787), 1, - sym_argument_list, - ACTIONS(2282), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2278), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2274), 23, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [22792] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2276), 1, - anon_sym_LPAREN2, - ACTIONS(2280), 1, - anon_sym_LBRACK, - STATE(787), 1, - sym_argument_list, - ACTIONS(2282), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2288), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2294), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2296), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2298), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2290), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2292), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2286), 21, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [22863] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2302), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2300), 30, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [22914] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2306), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2304), 30, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [22965] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2276), 1, - anon_sym_LPAREN2, - ACTIONS(2280), 1, - anon_sym_LBRACK, - STATE(787), 1, - sym_argument_list, - ACTIONS(2282), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2288), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2294), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2296), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2298), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2308), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2290), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2292), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2286), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [23038] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2276), 1, - anon_sym_LPAREN2, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2310), 1, - anon_sym_AMP, - STATE(787), 1, - sym_argument_list, - ACTIONS(2282), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2288), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2294), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2296), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2298), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2308), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2290), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2292), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(2286), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [23113] = 3, + anon_sym_DQUOTE, + ACTIONS(2402), 29, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_if, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym___builtin_va_arg, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [19874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2314), 13, + ACTIONS(2406), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -85455,8 +100180,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, - ACTIONS(2312), 30, + sym_identifier, + ACTIONS(2408), 34, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85467,7 +100194,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -85487,58 +100213,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23164] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [19931] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2316), 30, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, + ACTIONS(33), 1, anon_sym___attribute__, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [23215] = 3, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1222), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2021), 1, + sym_identifier, + ACTIONS(2049), 1, + anon_sym_DOT_DOT_DOT, + STATE(1042), 1, + sym__type_specifier, + STATE(1091), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1424), 1, + sym__declaration_specifiers, + STATE(1945), 2, + sym_variadic_parameter, + sym_parameter_declaration, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1104), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(885), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [20020] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2322), 13, + STATE(850), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1991), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -85552,7 +100313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2320), 30, + ACTIONS(1985), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85583,10 +100344,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23266] = 3, + [20081] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2326), 13, + STATE(850), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1991), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -85600,7 +100369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2324), 30, + ACTIONS(1985), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85631,10 +100400,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23317] = 3, + [20142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2330), 13, + ACTIONS(2410), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -85647,8 +100416,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, - ACTIONS(2328), 30, + sym_identifier, + ACTIONS(2412), 34, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85659,7 +100430,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -85679,40 +100449,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23368] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [20199] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2334), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2001), 1, anon_sym_EQ, - ACTIONS(2332), 30, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, + STATE(850), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2005), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -85723,14 +100478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [23419] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2338), 13, + ACTIONS(1991), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -85743,8 +100491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2336), 30, + ACTIONS(1985), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85758,146 +100505,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23470] = 11, + [20263] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, - anon_sym_LPAREN2, - ACTIONS(2280), 1, - anon_sym_LBRACK, - STATE(787), 1, - sym_argument_list, - ACTIONS(2282), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2288), 2, + STATE(861), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2418), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2414), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2298), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2290), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2342), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(2340), 23, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [23537] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2276), 1, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym___builtin_va_arg, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(2416), 19, anon_sym_LPAREN2, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2292), 1, - anon_sym_EQ, - ACTIONS(2310), 1, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP, - ACTIONS(2344), 1, - anon_sym_AMP_AMP, - ACTIONS(2346), 1, - anon_sym_PIPE, - ACTIONS(2348), 1, - anon_sym_CARET, - STATE(787), 1, - sym_argument_list, - ACTIONS(2282), 2, + anon_sym_RBRACK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2288), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2294), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2296), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2298), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2308), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2290), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2286), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [23618] = 3, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [20323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2352), 13, + ACTIONS(2423), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -85910,8 +100582,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(2350), 30, + ACTIONS(2421), 33, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85923,8 +100596,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -85940,12 +100614,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT, anon_sym_DASH_GT, - [23669] = 3, + [20378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2356), 13, + ACTIONS(2427), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -85958,8 +100634,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(2354), 30, + ACTIONS(2425), 33, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85971,8 +100648,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -85988,121 +100666,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT, anon_sym_DASH_GT, - [23720] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2276), 1, - anon_sym_LPAREN2, - ACTIONS(2280), 1, - anon_sym_LBRACK, - STATE(787), 1, - sym_argument_list, - ACTIONS(2282), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2288), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2298), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2290), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2292), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(2286), 23, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [23787] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2276), 1, - anon_sym_LPAREN2, - ACTIONS(2280), 1, - anon_sym_LBRACK, - STATE(787), 1, - sym_argument_list, - ACTIONS(2282), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2292), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2286), 23, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [23848] = 3, + [20433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 13, + ACTIONS(2431), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -86115,8 +100686,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(2358), 30, + ACTIONS(2429), 33, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86128,8 +100700,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -86145,12 +100718,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT, anon_sym_DASH_GT, - [23899] = 3, + [20488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2364), 13, + ACTIONS(2435), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -86163,8 +100738,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(2362), 30, + ACTIONS(2433), 33, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86176,8 +100752,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -86193,12 +100770,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT, anon_sym_DASH_GT, - [23950] = 3, + [20543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2368), 13, + ACTIONS(2439), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -86211,8 +100790,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(2366), 30, + ACTIONS(2437), 33, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86224,8 +100804,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -86241,12 +100822,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT, anon_sym_DASH_GT, - [24001] = 3, + [20598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2372), 13, + ACTIONS(2443), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -86259,8 +100842,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(2370), 30, + ACTIONS(2441), 33, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86272,80 +100856,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [24052] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2276), 1, - anon_sym_LPAREN2, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2310), 1, - anon_sym_AMP, - ACTIONS(2344), 1, - anon_sym_AMP_AMP, - ACTIONS(2346), 1, - anon_sym_PIPE, - ACTIONS(2348), 1, - anon_sym_CARET, - ACTIONS(2376), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2378), 1, - anon_sym_EQ, - ACTIONS(2380), 1, - anon_sym_QMARK, - STATE(787), 1, - sym_argument_list, - ACTIONS(2282), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2288), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2294), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2296), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2298), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2308), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2290), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2374), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -86356,55 +100872,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [24137] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2276), 1, - anon_sym_LPAREN2, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2310), 1, - anon_sym_AMP, - ACTIONS(2348), 1, - anon_sym_CARET, - STATE(787), 1, - sym_argument_list, - ACTIONS(2282), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2288), 2, + [20653] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2447), 14, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2292), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2294), 2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2296), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2298), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2308), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2290), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2286), 19, + anon_sym_LBRACK, + anon_sym_EQ, + ACTIONS(2445), 33, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -86417,10 +100924,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [24214] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT, + anon_sym_DASH_GT, + [20708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2384), 13, + ACTIONS(2451), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -86433,8 +100946,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(2382), 30, + ACTIONS(2449), 33, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86446,8 +100960,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -86463,24 +100978,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT, anon_sym_DASH_GT, - [24265] = 8, + [20763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, - anon_sym_LPAREN2, - ACTIONS(2280), 1, - anon_sym_LBRACK, - STATE(787), 1, - sym_argument_list, - ACTIONS(2282), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2388), 13, + ACTIONS(2455), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -86493,10 +100998,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(2386), 23, + ACTIONS(2453), 33, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -86505,7 +101012,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -86518,10 +101028,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [24326] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT, + anon_sym_DASH_GT, + [20818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2392), 13, + ACTIONS(2459), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -86534,8 +101050,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(2390), 30, + ACTIONS(2457), 33, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86547,9 +101064,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_RBRACK_RBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -86564,63 +101082,568 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT, anon_sym_DASH_GT, - [24377] = 20, + [20873] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1222), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2021), 1, + sym_identifier, + STATE(1042), 1, + sym__type_specifier, + STATE(1091), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1551), 1, + sym__declaration_specifiers, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1104), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(885), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [20955] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2463), 19, anon_sym_LPAREN2, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2310), 1, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP, - ACTIONS(2344), 1, - anon_sym_AMP_AMP, - ACTIONS(2346), 1, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2461), 27, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym___builtin_va_arg, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [21009] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1222), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2021), 1, + sym_identifier, + STATE(1042), 1, + sym__type_specifier, + STATE(1091), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1552), 1, + sym__declaration_specifiers, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1104), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(885), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [21091] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1222), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2021), 1, + sym_identifier, + STATE(1042), 1, + sym__type_specifier, + STATE(1091), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1560), 1, + sym__declaration_specifiers, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1104), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(885), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [21173] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1222), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2021), 1, + sym_identifier, + STATE(1042), 1, + sym__type_specifier, + STATE(1091), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1557), 1, + sym__declaration_specifiers, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1104), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(885), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [21255] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1222), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2021), 1, + sym_identifier, + STATE(1042), 1, + sym__type_specifier, + STATE(1091), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1553), 1, + sym__declaration_specifiers, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1104), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(885), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [21337] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2001), 1, + anon_sym_EQ, + ACTIONS(2013), 1, + anon_sym_COLON, + STATE(850), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2005), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1991), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(2348), 1, anon_sym_CARET, - ACTIONS(2376), 1, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1985), 15, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - ACTIONS(2380), 1, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(2396), 1, - anon_sym_EQ, - STATE(787), 1, - sym_argument_list, - ACTIONS(2282), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2288), 2, + [21400] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2001), 1, + anon_sym_EQ, + ACTIONS(2003), 1, + anon_sym_COLON, + STATE(850), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2005), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1991), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2294), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2296), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2298), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2308), 2, + ACTIONS(1985), 15, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2290), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2394), 16, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [21463] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2475), 1, + anon_sym___attribute__, + ACTIONS(2478), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2481), 1, + anon_sym___declspec, + ACTIONS(2467), 5, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, + STATE(880), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2469), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2472), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(2465), 11, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [21528] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2001), 1, + anon_sym_EQ, + ACTIONS(2007), 1, anon_sym_COLON, + STATE(850), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2005), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -86631,10 +101654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [24462] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2400), 13, + ACTIONS(1991), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -86647,10 +101667,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2398), 30, + ACTIONS(1985), 15, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86659,12 +101677,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [21591] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2001), 1, + anon_sym_EQ, + ACTIONS(2009), 1, + anon_sym_COLON, + STATE(850), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2005), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -86675,14 +101709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [24513] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2404), 13, + ACTIONS(1991), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -86695,10 +101722,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2402), 30, + ACTIONS(1985), 15, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86707,12 +101732,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [21654] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2001), 1, + anon_sym_EQ, + ACTIONS(2011), 1, + anon_sym_COLON, + STATE(850), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2005), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -86723,33 +101764,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [24564] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2276), 1, - anon_sym_LPAREN2, - ACTIONS(2280), 1, - anon_sym_LBRACK, - STATE(787), 1, - sym_argument_list, - ACTIONS(2282), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2288), 2, + ACTIONS(1991), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2290), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2292), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -86757,10 +101777,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2286), 23, + ACTIONS(1985), 15, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -86768,10 +101787,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [21717] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2001), 1, + anon_sym_EQ, + ACTIONS(2015), 1, + anon_sym_COLON, + STATE(850), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2005), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -86782,28 +101819,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [24629] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2276), 1, - anon_sym_LPAREN2, - ACTIONS(2280), 1, - anon_sym_LBRACK, - STATE(787), 1, - sym_argument_list, - ACTIONS(2282), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2290), 3, + ACTIONS(1991), 12, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2292), 10, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -86811,10 +101832,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2286), 23, + ACTIONS(1985), 15, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -86822,70 +101842,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [24692] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2276), 1, - anon_sym_LPAREN2, - ACTIONS(2280), 1, anon_sym_LBRACK, - ACTIONS(2292), 1, - anon_sym_EQ, - ACTIONS(2310), 1, - anon_sym_AMP, - ACTIONS(2346), 1, - anon_sym_PIPE, - ACTIONS(2348), 1, - anon_sym_CARET, - STATE(787), 1, - sym_argument_list, - ACTIONS(2282), 2, + anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2288), 2, + [21780] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1222), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2021), 1, + sym_identifier, + STATE(1030), 1, + sym__type_specifier, + STATE(1091), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1104), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(880), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [21859] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2402), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2294), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2296), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2298), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2308), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2290), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2286), 19, + anon_sym_EQ, + ACTIONS(2404), 31, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -86898,10 +101956,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [24771] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [21911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2408), 13, + ACTIONS(2486), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -86915,7 +101977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2406), 30, + ACTIONS(2484), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86946,10 +102008,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [24822] = 3, + [21962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2412), 13, + ACTIONS(2490), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -86963,7 +102025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2410), 30, + ACTIONS(2488), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -86994,10 +102056,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [24873] = 3, + [22013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2416), 13, + ACTIONS(2494), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -87011,7 +102073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2414), 30, + ACTIONS(2492), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87042,10 +102104,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [24924] = 3, + [22064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2420), 13, + ACTIONS(2498), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -87059,7 +102121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2418), 30, + ACTIONS(2496), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87090,61 +102152,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [24975] = 20, + [22115] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2310), 1, - anon_sym_AMP, - ACTIONS(2344), 1, - anon_sym_AMP_AMP, - ACTIONS(2346), 1, - anon_sym_PIPE, - ACTIONS(2348), 1, - anon_sym_CARET, - ACTIONS(2376), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2380), 1, - anon_sym_QMARK, - ACTIONS(2424), 1, - anon_sym_EQ, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2288), 2, + ACTIONS(2504), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2294), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2296), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2298), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2308), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2290), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2422), 16, + anon_sym_EQ, + ACTIONS(2500), 23, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -87155,10 +102205,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [25060] = 3, + [22176] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2428), 13, + ACTIONS(2514), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -87172,7 +102222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2426), 30, + ACTIONS(2512), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87203,10 +102253,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [25111] = 3, + [22227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2432), 13, + ACTIONS(2518), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -87220,7 +102270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2430), 30, + ACTIONS(2516), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87232,9 +102282,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -87251,10 +102301,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [25162] = 3, + [22278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2436), 13, + ACTIONS(2522), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -87268,7 +102318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2434), 30, + ACTIONS(2520), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87299,19 +102349,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [25213] = 7, + [22329] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2440), 13, + ACTIONS(2526), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -87325,7 +102378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2438), 25, + ACTIONS(2524), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -87349,24 +102402,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [25272] = 8, + [22390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, - anon_sym_LPAREN2, - ACTIONS(2280), 1, - anon_sym_LBRACK, - STATE(787), 1, - sym_argument_list, - ACTIONS(2282), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2444), 13, + ACTIONS(2530), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -87380,9 +102419,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2442), 23, + ACTIONS(2528), 30, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -87392,6 +102432,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -87404,10 +102446,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [25333] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [22441] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2502), 1, + anon_sym_LPAREN2, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(2538), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2540), 1, + anon_sym_AMP_AMP, + ACTIONS(2542), 1, + anon_sym_PIPE, + ACTIONS(2544), 1, + anon_sym_CARET, + ACTIONS(2546), 1, + anon_sym_AMP, + ACTIONS(2556), 1, + anon_sym_EQ, + ACTIONS(2558), 1, + anon_sym_QMARK, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2548), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2550), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2552), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2554), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2536), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2532), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [22526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2448), 13, + ACTIONS(2562), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -87421,7 +102532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2446), 30, + ACTIONS(2560), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87452,195 +102563,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [25384] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1805), 1, - sym_identifier, - STATE(939), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1409), 1, - sym__declaration_specifiers, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(827), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [25462] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1805), 1, - sym_identifier, - STATE(939), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1408), 1, - sym__declaration_specifiers, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(827), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [25540] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1805), 1, - sym_identifier, - STATE(939), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1404), 1, - sym__declaration_specifiers, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(827), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [25618] = 5, + [22577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1987), 1, + ACTIONS(2566), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1991), 10, + ACTIONS(2564), 30, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -87651,7 +102607,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1980), 12, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [22628] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2570), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -87664,7 +102627,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1974), 19, + anon_sym_EQ, + ACTIONS(2568), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -87678,301 +102642,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [25672] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1805), 1, - sym_identifier, - STATE(939), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1401), 1, - sym__declaration_specifiers, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(827), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [25750] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1805), 1, - sym_identifier, - STATE(939), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1407), 1, - sym__declaration_specifiers, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(827), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [25828] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1805), 1, - sym_identifier, - STATE(965), 1, - sym__type_specifier, - STATE(1023), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(829), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [25903] = 5, + [22679] = 3, ACTIONS(3), 1, sym_comment, - STATE(828), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2454), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(2450), 12, + ACTIONS(2574), 13, anon_sym_DASH, anon_sym_PLUS, - anon_sym_sizeof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - ACTIONS(2452), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2572), 30, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [25956] = 9, + anon_sym_DOT, + anon_sym_DASH_GT, + [22730] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2464), 1, - anon_sym___attribute__, - ACTIONS(2467), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2470), 1, - anon_sym___declspec, - ACTIONS(2459), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2502), 1, anon_sym_LPAREN2, + ACTIONS(2506), 1, + anon_sym_LBRACK, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2578), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2576), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, - ACTIONS(2461), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(829), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(2473), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(2457), 11, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [26017] = 6, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [22791] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1987), 1, + ACTIONS(2502), 1, + anon_sym_LPAREN2, + ACTIONS(2506), 1, + anon_sym_LBRACK, + STATE(916), 1, + sym_argument_list, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2582), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1995), 1, + ACTIONS(2580), 25, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_COLON, - ACTIONS(1991), 10, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -87983,7 +102810,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1980), 12, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [22850] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2586), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -87996,8 +102828,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1974), 15, + anon_sym_EQ, + ACTIONS(2584), 30, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -88006,64 +102840,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [26070] = 3, + [22901] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2478), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2502), 1, anon_sym_LPAREN2, + ACTIONS(2506), 1, + anon_sym_LBRACK, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2548), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2550), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2552), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2554), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2536), 3, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2526), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, - anon_sym_COLON, - ACTIONS(2476), 30, - anon_sym_extern, + ACTIONS(2524), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - [26117] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1987), 1, - anon_sym_EQ, - ACTIONS(1989), 1, + anon_sym_RBRACE, anon_sym_COLON, - ACTIONS(1991), 10, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -88074,7 +102919,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1980), 12, + [22974] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2590), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -88087,8 +102935,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1974), 15, + anon_sym_EQ, + ACTIONS(2588), 30, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -88097,20 +102947,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [26170] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1987), 1, - anon_sym_EQ, - ACTIONS(1993), 1, + anon_sym_RBRACK, anon_sym_COLON, - ACTIONS(1991), 10, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -88121,7 +102963,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1980), 12, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [23025] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2594), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -88134,8 +102983,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1974), 15, + anon_sym_EQ, + ACTIONS(2592), 30, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -88144,20 +102995,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [26223] = 6, + [23076] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1987), 1, + ACTIONS(2502), 1, + anon_sym_LPAREN2, + ACTIONS(2506), 1, + anon_sym_LBRACK, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2550), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2552), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2554), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2536), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2526), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, - ACTIONS(1997), 1, + ACTIONS(2524), 21, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_COLON, - ACTIONS(1991), 10, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -88168,22 +103073,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1980), 12, + [23147] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2502), 1, + anon_sym_LPAREN2, + ACTIONS(2506), 1, + anon_sym_LBRACK, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2534), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2554), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2598), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1974), 15, + anon_sym_EQ, + ACTIONS(2596), 23, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -88191,20 +103115,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [26276] = 6, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [23214] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1987), 1, + ACTIONS(2600), 1, anon_sym_EQ, - ACTIONS(2004), 1, - anon_sym_COLON, - ACTIONS(1991), 10, + STATE(850), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2602), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -88215,7 +103153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1980), 12, + ACTIONS(1991), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -88228,8 +103166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1974), 15, - anon_sym_COMMA, + ACTIONS(1985), 14, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -88237,39 +103174,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [26329] = 3, + [23273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2482), 19, + ACTIONS(2606), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2480), 20, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(2604), 34, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -88278,35 +103222,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_sizeof, - anon_sym_offsetof, - anon_sym__Generic, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, anon_sym_asm, anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, sym_identifier, - [26376] = 6, + [23324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1987), 1, - anon_sym_EQ, - ACTIONS(1999), 1, - anon_sym_COLON, - ACTIONS(1991), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1980), 12, + ACTIONS(2610), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -88319,8 +103245,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1974), 15, + anon_sym_EQ, + ACTIONS(2608), 30, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -88329,54 +103257,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [26429] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2484), 1, - anon_sym_LPAREN2, - STATE(787), 1, - sym_argument_list, - ACTIONS(2282), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2486), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2490), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2492), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2494), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2488), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2292), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2286), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -88388,22 +103273,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26495] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2484), 1, - anon_sym_LPAREN2, - STATE(787), 1, - sym_argument_list, - ACTIONS(2282), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2444), 13, + [23375] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2614), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -88417,14 +103294,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2442), 18, + ACTIONS(2612), 30, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -88436,22 +103321,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26551] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2484), 1, - anon_sym_LPAREN2, - STATE(787), 1, - sym_argument_list, - ACTIONS(2282), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2388), 13, + [23426] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2618), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -88465,14 +103342,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2386), 18, + ACTIONS(2616), 30, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -88484,22 +103369,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26607] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2484), 1, - anon_sym_LPAREN2, - STATE(787), 1, - sym_argument_list, - ACTIONS(2282), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2292), 13, + [23477] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2622), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -88513,14 +103390,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2286), 18, + ACTIONS(2620), 30, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -88532,46 +103417,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26663] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2484), 1, - anon_sym_LPAREN2, - STATE(787), 1, - sym_argument_list, - ACTIONS(2282), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2486), 2, + [23528] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2626), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2494), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2488), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2292), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2286), 18, + ACTIONS(2624), 30, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -88583,29 +103465,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26725] = 10, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [23579] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2484), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - STATE(787), 1, + ACTIONS(2506), 1, + anon_sym_LBRACK, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2486), 2, + ACTIONS(2630), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2488), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2292), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -88614,14 +103498,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2286), 18, + ACTIONS(2628), 23, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -88633,49 +103522,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26785] = 14, + [23640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2484), 1, - anon_sym_LPAREN2, - STATE(787), 1, - sym_argument_list, - ACTIONS(2282), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2486), 2, + ACTIONS(2634), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2490), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2492), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2494), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2496), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2488), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2292), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2286), 14, + ACTIONS(2632), 30, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -88687,50 +103566,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26853] = 15, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [23691] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2484), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2498), 1, - anon_sym_AMP, - STATE(787), 1, + ACTIONS(2506), 1, + anon_sym_LBRACK, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2486), 2, + ACTIONS(2534), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2490), 2, + ACTIONS(2536), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2526), 8, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2492), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2494), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2496), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2292), 3, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_EQ, - ACTIONS(2488), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2286), 14, + ACTIONS(2524), 23, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -88742,46 +103625,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26923] = 11, + [23756] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2484), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - STATE(787), 1, + ACTIONS(2506), 1, + anon_sym_LBRACK, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2486), 2, + ACTIONS(2534), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2494), 2, + ACTIONS(2554), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2488), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2342), 6, + ACTIONS(2526), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_EQ, - ACTIONS(2340), 18, + ACTIONS(2524), 23, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -88793,56 +103681,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26985] = 20, + [23823] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, + ACTIONS(2502), 1, + anon_sym_LPAREN2, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2424), 1, + ACTIONS(2526), 1, anon_sym_EQ, - ACTIONS(2484), 1, - anon_sym_LPAREN2, - ACTIONS(2498), 1, - anon_sym_AMP, - ACTIONS(2500), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2502), 1, - anon_sym_AMP_AMP, - ACTIONS(2504), 1, + ACTIONS(2542), 1, anon_sym_PIPE, - ACTIONS(2506), 1, + ACTIONS(2544), 1, anon_sym_CARET, - ACTIONS(2508), 1, - anon_sym_QMARK, - STATE(787), 1, + ACTIONS(2546), 1, + anon_sym_AMP, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2486), 2, + ACTIONS(2534), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2490), 2, + ACTIONS(2548), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2550), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2492), 2, + ACTIONS(2552), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2494), 2, + ACTIONS(2554), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2496), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2488), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2422), 11, - anon_sym_RBRACK, + ACTIONS(2524), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -88853,115 +103743,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27065] = 19, + [23902] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1875), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(1877), 1, - anon_sym_STAR, - ACTIONS(1879), 1, - anon_sym___based, - ACTIONS(2510), 1, - sym_identifier, - ACTIONS(2518), 1, - anon_sym_LBRACK, - STATE(1243), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1366), 1, - sym__declarator, - STATE(1495), 1, - sym__abstract_declarator, - STATE(1509), 1, - sym_parameter_list, - STATE(1823), 1, - sym_ms_based_modifier, - ACTIONS(2512), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2516), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1046), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1058), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2514), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1510), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1415), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [27143] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2396), 1, - anon_sym_EQ, - ACTIONS(2484), 1, - anon_sym_LPAREN2, - ACTIONS(2498), 1, - anon_sym_AMP, - ACTIONS(2500), 1, + ACTIONS(2538), 1, anon_sym_PIPE_PIPE, - ACTIONS(2502), 1, + ACTIONS(2540), 1, anon_sym_AMP_AMP, - ACTIONS(2504), 1, + ACTIONS(2542), 1, anon_sym_PIPE, - ACTIONS(2506), 1, + ACTIONS(2544), 1, anon_sym_CARET, - ACTIONS(2508), 1, + ACTIONS(2546), 1, + anon_sym_AMP, + ACTIONS(2558), 1, anon_sym_QMARK, - STATE(787), 1, + ACTIONS(2638), 1, + anon_sym_EQ, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2486), 2, + ACTIONS(2534), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2490), 2, + ACTIONS(2548), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2550), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2492), 2, + ACTIONS(2552), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2494), 2, + ACTIONS(2554), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2496), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2488), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2394), 11, - anon_sym_RBRACK, + ACTIONS(2636), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -88972,26 +103808,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27223] = 9, + [23987] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2484), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - STATE(787), 1, + ACTIONS(2506), 1, + anon_sym_LBRACK, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2488), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2292), 10, + ACTIONS(2526), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_PIPE, @@ -89002,14 +103838,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2286), 18, + ACTIONS(2524), 23, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -89021,54 +103862,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27281] = 18, + [24050] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, + ACTIONS(2502), 1, + anon_sym_LPAREN2, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2292), 1, + ACTIONS(2526), 1, anon_sym_EQ, - ACTIONS(2484), 1, - anon_sym_LPAREN2, - ACTIONS(2498), 1, + ACTIONS(2540), 1, + anon_sym_AMP_AMP, + ACTIONS(2542), 1, + anon_sym_PIPE, + ACTIONS(2544), 1, + anon_sym_CARET, + ACTIONS(2546), 1, anon_sym_AMP, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2548), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2550), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2552), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2554), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2536), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2524), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [24131] = 20, + ACTIONS(3), 1, + sym_comment, ACTIONS(2502), 1, + anon_sym_LPAREN2, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(2538), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2540), 1, anon_sym_AMP_AMP, - ACTIONS(2504), 1, + ACTIONS(2542), 1, anon_sym_PIPE, - ACTIONS(2506), 1, + ACTIONS(2544), 1, anon_sym_CARET, - STATE(787), 1, + ACTIONS(2546), 1, + anon_sym_AMP, + ACTIONS(2558), 1, + anon_sym_QMARK, + ACTIONS(2642), 1, + anon_sym_EQ, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2486), 2, + ACTIONS(2534), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2490), 2, + ACTIONS(2548), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2550), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2492), 2, + ACTIONS(2552), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2494), 2, + ACTIONS(2554), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2496), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2488), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2286), 13, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_QMARK, + ACTIONS(2640), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -89079,51 +103990,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27357] = 16, + [24216] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2484), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2498), 1, - anon_sym_AMP, ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(2544), 1, anon_sym_CARET, - STATE(787), 1, + ACTIONS(2546), 1, + anon_sym_AMP, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2292), 2, + ACTIONS(2526), 2, anon_sym_PIPE, anon_sym_EQ, - ACTIONS(2486), 2, + ACTIONS(2534), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2490), 2, + ACTIONS(2548), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2550), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2492), 2, + ACTIONS(2552), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2494), 2, + ACTIONS(2554), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2496), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2488), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2286), 14, + ACTIONS(2524), 19, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -89135,52 +104051,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27429] = 17, + [24293] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2292), 1, - anon_sym_EQ, - ACTIONS(2484), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2498), 1, - anon_sym_AMP, - ACTIONS(2504), 1, - anon_sym_PIPE, ACTIONS(2506), 1, - anon_sym_CARET, - STATE(787), 1, + anon_sym_LBRACK, + ACTIONS(2546), 1, + anon_sym_AMP, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2486), 2, + ACTIONS(2534), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2490), 2, + ACTIONS(2548), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2550), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2492), 2, + ACTIONS(2552), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2494), 2, + ACTIONS(2554), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2496), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2488), 3, + ACTIONS(2526), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2286), 14, + ACTIONS(2524), 19, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -89192,22 +104111,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27503] = 8, + [24368] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2484), 1, - anon_sym_LPAREN2, - STATE(787), 1, - sym_argument_list, - ACTIONS(2282), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2278), 13, + ACTIONS(2001), 1, + anon_sym_EQ, + ACTIONS(2005), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1991), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -89220,139 +104140,630 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2274), 18, + ACTIONS(1985), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [27559] = 7, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [24422] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2646), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2644), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [24471] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1548), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1546), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [24520] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1520), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1518), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [24569] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1522), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [24618] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1544), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1542), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [24667] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1560), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1558), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [24716] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1474), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1472), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [24765] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2650), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2648), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [24814] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2654), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2652), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [24863] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2658), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2656), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [24912] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2662), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2660), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [24961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2484), 1, - anon_sym_LPAREN2, - STATE(787), 1, - sym_argument_list, - ACTIONS(2284), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2440), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2438), 20, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [27613] = 20, + ACTIONS(2666), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2664), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [25010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2378), 1, - anon_sym_EQ, - ACTIONS(2484), 1, - anon_sym_LPAREN2, - ACTIONS(2498), 1, - anon_sym_AMP, - ACTIONS(2500), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2502), 1, - anon_sym_AMP_AMP, - ACTIONS(2504), 1, - anon_sym_PIPE, - ACTIONS(2506), 1, - anon_sym_CARET, - ACTIONS(2508), 1, - anon_sym_QMARK, - STATE(787), 1, - sym_argument_list, - ACTIONS(2282), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2486), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2490), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2492), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2494), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2496), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2488), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2374), 11, - anon_sym_RBRACK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [27693] = 3, + ACTIONS(2670), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2668), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [25059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 1, + ACTIONS(2674), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1360), 36, + ACTIONS(2672), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89363,6 +104774,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -89374,6 +104786,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -89389,12 +104804,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27738] = 3, + [25108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2522), 1, + ACTIONS(2678), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2520), 36, + ACTIONS(2676), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89405,6 +104820,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -89416,6 +104832,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -89431,54 +104850,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27783] = 3, + [25157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2316), 24, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [27828] = 3, + ACTIONS(2678), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2676), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [25206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 1, + ACTIONS(2682), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1418), 36, + ACTIONS(2680), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89489,6 +104912,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -89500,6 +104924,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -89515,12 +104942,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27873] = 3, + [25255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2526), 1, + ACTIONS(2686), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2524), 36, + ACTIONS(2684), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89531,6 +104958,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -89542,6 +104970,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -89557,54 +104988,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27918] = 3, + [25304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2436), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2434), 24, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [27963] = 3, + ACTIONS(2690), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2688), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [25353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 1, + ACTIONS(2694), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1372), 36, + ACTIONS(2692), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89615,6 +105050,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -89626,6 +105062,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -89641,12 +105080,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28008] = 3, + [25402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1408), 1, + ACTIONS(2698), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1406), 36, + ACTIONS(2696), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89657,6 +105096,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -89668,6 +105108,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -89683,98 +105126,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28053] = 5, + [25451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2528), 1, - anon_sym_EQ, - ACTIONS(2530), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1980), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1974), 14, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [28102] = 3, + ACTIONS(2702), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2700), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [25500] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2392), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2390), 24, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [28147] = 3, + ACTIONS(2706), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2704), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [25549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1404), 1, + ACTIONS(2710), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1402), 36, + ACTIONS(2708), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89785,6 +105234,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [25598] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2678), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2676), 38, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -89796,6 +105290,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -89811,33 +105308,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28192] = 3, + [25645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2534), 1, + ACTIONS(2714), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2532), 36, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_LBRACE, + ACTIONS(2712), 32, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -89853,12 +105352,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28237] = 3, + [25692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2538), 1, + ACTIONS(2706), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2536), 36, + ACTIONS(2704), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89866,9 +105365,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -89880,6 +105378,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -89895,33 +105396,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28282] = 3, + [25739] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2720), 1, + anon_sym_LBRACE, + STATE(1068), 1, + sym_field_declaration_list, + STATE(1099), 1, + sym_attribute_specifier, + ACTIONS(2718), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2540), 36, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2716), 28, + anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -89933,37 +105443,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [28327] = 3, + [25794] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2720), 1, + anon_sym_LBRACE, + STATE(1052), 1, + sym_field_declaration_list, + STATE(1098), 1, + sym_attribute_specifier, + ACTIONS(2724), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2544), 36, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2722), 28, + anon_sym___extension__, anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [25849] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, anon_sym___attribute__, + ACTIONS(2720), 1, + anon_sym_LBRACE, + STATE(1069), 1, + sym_field_declaration_list, + STATE(1105), 1, + sym_attribute_specifier, + ACTIONS(2728), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2726), 28, + anon_sym___extension__, + anon_sym_extern, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -89975,37 +105539,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [28372] = 3, + [25904] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2720), 1, + anon_sym_LBRACE, + STATE(1058), 1, + sym_field_declaration_list, + STATE(1112), 1, + sym_attribute_specifier, + ACTIONS(2732), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2548), 36, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2730), 28, + anon_sym___extension__, anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [25959] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, anon_sym___attribute__, + ACTIONS(2720), 1, + anon_sym_LBRACE, + STATE(1065), 1, + sym_field_declaration_list, + STATE(1089), 1, + sym_attribute_specifier, + ACTIONS(2736), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2734), 28, + anon_sym___extension__, + anon_sym_extern, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -90017,16 +105635,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [28417] = 3, + [26014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, + ACTIONS(2666), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2548), 36, + ACTIONS(2664), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90034,9 +105649,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -90048,6 +105662,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -90063,12 +105680,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28462] = 3, + [26061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1436), 1, + ACTIONS(2662), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1434), 36, + ACTIONS(2660), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90076,9 +105693,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -90090,6 +105706,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -90105,12 +105724,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28507] = 3, + [26108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2554), 1, + ACTIONS(2654), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2552), 36, + ACTIONS(2652), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90118,9 +105737,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -90132,6 +105750,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -90147,12 +105768,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28552] = 3, + [26155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(1544), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2556), 36, + ACTIONS(1542), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90160,9 +105781,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -90174,6 +105794,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -90189,12 +105812,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28597] = 3, + [26202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2562), 1, + ACTIONS(1560), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2560), 36, + ACTIONS(1558), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90202,9 +105825,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -90216,6 +105838,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -90231,12 +105856,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28642] = 3, + [26249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(1548), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2564), 36, + ACTIONS(1546), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90244,9 +105869,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -90258,6 +105882,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -90273,12 +105900,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28687] = 3, + [26296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2570), 1, + ACTIONS(1524), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2568), 36, + ACTIONS(1522), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90286,9 +105913,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -90300,6 +105926,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -90315,12 +105944,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28732] = 3, + [26343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2574), 1, + ACTIONS(1520), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2572), 36, + ACTIONS(1518), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90328,9 +105957,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -90342,6 +105970,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -90357,12 +105988,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28777] = 3, + [26390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2578), 1, + ACTIONS(1474), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2576), 36, + ACTIONS(1472), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90370,9 +106001,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -90384,6 +106014,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -90399,33 +106032,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28822] = 3, + [26437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2582), 1, + ACTIONS(2463), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2580), 36, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2461), 32, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -90436,17 +106071,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [28867] = 3, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [26484] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2053), 1, + anon_sym_LPAREN2, + ACTIONS(2055), 1, + anon_sym_STAR, + ACTIONS(2057), 1, + anon_sym___based, + ACTIONS(2738), 1, + sym_identifier, + ACTIONS(2746), 1, + anon_sym_LBRACK, + STATE(1360), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1490), 1, + sym__declarator, + STATE(1651), 1, + sym__abstract_declarator, + STATE(1676), 1, + sym_parameter_list, + STATE(2180), 1, + sym_ms_based_modifier, + ACTIONS(2740), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2744), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1151), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1154), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2742), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1677), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1570), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [26563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2586), 1, + ACTIONS(2646), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2584), 36, + ACTIONS(2644), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90454,9 +106149,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -90468,6 +106162,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -90483,12 +106180,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28912] = 3, + [26610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, + ACTIONS(2650), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2588), 36, + ACTIONS(2648), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90496,9 +106193,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -90510,6 +106206,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -90525,12 +106224,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28957] = 3, + [26657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2562), 1, + ACTIONS(2658), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2560), 34, + ACTIONS(2656), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90539,6 +106238,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -90550,6 +106250,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -90565,12 +106268,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29000] = 3, + [26704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2578), 1, + ACTIONS(2670), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2576), 34, + ACTIONS(2668), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90579,6 +106282,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -90590,6 +106294,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -90605,12 +106312,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29043] = 3, + [26751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1404), 1, + ACTIONS(2674), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1402), 34, + ACTIONS(2672), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90619,6 +106326,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -90630,6 +106338,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -90645,12 +106356,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29086] = 3, + [26798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1436), 1, + ACTIONS(2678), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1434), 34, + ACTIONS(2676), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90659,6 +106370,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -90670,6 +106382,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -90685,12 +106400,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29129] = 3, + [26845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, + ACTIONS(2682), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2548), 34, + ACTIONS(2680), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90699,6 +106414,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -90710,6 +106426,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -90725,12 +106444,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29172] = 3, + [26892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1408), 1, + ACTIONS(2710), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1406), 34, + ACTIONS(2708), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90739,6 +106458,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -90750,6 +106470,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -90765,12 +106488,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29215] = 3, + [26939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2570), 1, + ACTIONS(2702), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2568), 34, + ACTIONS(2700), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90779,6 +106502,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -90790,6 +106514,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -90805,12 +106532,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29258] = 3, + [26986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2574), 1, + ACTIONS(2686), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2572), 34, + ACTIONS(2684), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90819,6 +106546,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -90830,6 +106558,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -90845,12 +106576,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29301] = 3, + [27033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 1, + ACTIONS(2690), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1372), 34, + ACTIONS(2688), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90859,6 +106590,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -90870,6 +106602,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -90885,12 +106620,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29344] = 3, + [27080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2526), 1, + ACTIONS(2698), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2524), 34, + ACTIONS(2696), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90899,6 +106634,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -90910,6 +106646,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -90925,12 +106664,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29387] = 3, + [27127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, + ACTIONS(2694), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2588), 34, + ACTIONS(2692), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90939,6 +106678,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -90950,6 +106690,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -90965,71 +106708,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29430] = 3, + [27174] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2586), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2584), 34, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [29473] = 3, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(2526), 1, + anon_sym_EQ, + ACTIONS(2748), 1, + anon_sym_LPAREN2, + ACTIONS(2754), 1, + anon_sym_PIPE, + ACTIONS(2756), 1, + anon_sym_CARET, + ACTIONS(2758), 1, + anon_sym_AMP, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2760), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2762), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2764), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2766), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2752), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2524), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [27248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2582), 1, + ACTIONS(1903), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2580), 34, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + ACTIONS(1901), 32, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -91045,23 +106808,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29516] = 3, + [27294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, + ACTIONS(2412), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2548), 34, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_LBRACE, + ACTIONS(2410), 36, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -91070,6 +106833,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -91085,31 +106851,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29559] = 3, + [27340] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(2748), 1, + anon_sym_LPAREN2, + STATE(916), 1, + sym_argument_list, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2582), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2580), 20, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [27394] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(2748), 1, + anon_sym_LPAREN2, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2766), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2752), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2598), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(2596), 18, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [27456] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(2748), 1, + anon_sym_LPAREN2, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2578), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2576), 18, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [27512] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2522), 1, + ACTIONS(1899), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2520), 34, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + ACTIONS(1897), 32, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -91125,23 +107040,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29602] = 3, + [27558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2538), 1, + ACTIONS(2408), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2536), 34, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_LBRACE, + ACTIONS(2406), 36, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -91150,6 +107065,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -91165,18 +107083,400 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29645] = 3, + [27604] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(2638), 1, + anon_sym_EQ, + ACTIONS(2748), 1, + anon_sym_LPAREN2, + ACTIONS(2754), 1, + anon_sym_PIPE, + ACTIONS(2756), 1, + anon_sym_CARET, + ACTIONS(2758), 1, + anon_sym_AMP, + ACTIONS(2768), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2770), 1, + anon_sym_AMP_AMP, + ACTIONS(2772), 1, + anon_sym_QMARK, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2760), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2762), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2764), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2766), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2752), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2636), 11, + anon_sym_RBRACK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [27684] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(2556), 1, + anon_sym_EQ, + ACTIONS(2748), 1, + anon_sym_LPAREN2, + ACTIONS(2754), 1, + anon_sym_PIPE, + ACTIONS(2756), 1, + anon_sym_CARET, + ACTIONS(2758), 1, + anon_sym_AMP, + ACTIONS(2768), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2770), 1, + anon_sym_AMP_AMP, + ACTIONS(2772), 1, + anon_sym_QMARK, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2760), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2762), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2764), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2766), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2752), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2532), 11, + anon_sym_RBRACK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [27764] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(2748), 1, + anon_sym_LPAREN2, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2752), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2526), 8, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2524), 18, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [27824] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(2748), 1, + anon_sym_LPAREN2, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2766), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2752), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2526), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(2524), 18, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [27886] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(2748), 1, + anon_sym_LPAREN2, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2762), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2764), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2766), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2752), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2526), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2524), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [27952] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(2748), 1, + anon_sym_LPAREN2, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2504), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2500), 18, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [28008] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(2642), 1, + anon_sym_EQ, + ACTIONS(2748), 1, + anon_sym_LPAREN2, + ACTIONS(2754), 1, + anon_sym_PIPE, + ACTIONS(2756), 1, + anon_sym_CARET, + ACTIONS(2758), 1, + anon_sym_AMP, + ACTIONS(2768), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2770), 1, + anon_sym_AMP_AMP, + ACTIONS(2772), 1, + anon_sym_QMARK, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2760), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2762), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2764), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2766), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2752), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2640), 11, + anon_sym_RBRACK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [28088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2482), 7, + ACTIONS(2776), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2480), 28, + ACTIONS(2774), 32, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -91190,6 +107490,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -91205,60 +107508,387 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29688] = 3, + [28134] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1360), 34, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [29731] = 3, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(2748), 1, + anon_sym_LPAREN2, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2630), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2628), 18, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [28190] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(2748), 1, + anon_sym_LPAREN2, + ACTIONS(2756), 1, + anon_sym_CARET, + ACTIONS(2758), 1, + anon_sym_AMP, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2526), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2760), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2762), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2764), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2766), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2752), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2524), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [28262] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(2748), 1, + anon_sym_LPAREN2, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2752), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2526), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2524), 18, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [28320] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(2526), 1, + anon_sym_EQ, + ACTIONS(2748), 1, + anon_sym_LPAREN2, + ACTIONS(2754), 1, + anon_sym_PIPE, + ACTIONS(2756), 1, + anon_sym_CARET, + ACTIONS(2758), 1, + anon_sym_AMP, + ACTIONS(2770), 1, + anon_sym_AMP_AMP, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2760), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2762), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2764), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2766), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2752), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2524), 13, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [28396] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(2748), 1, + anon_sym_LPAREN2, + ACTIONS(2758), 1, + anon_sym_AMP, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2760), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2762), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2764), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2766), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2526), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(2752), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2524), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [28466] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(2748), 1, + anon_sym_LPAREN2, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2750), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2760), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2762), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2764), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2766), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2752), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2526), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2524), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [28534] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(2748), 1, + anon_sym_LPAREN2, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2526), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2524), 18, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [28590] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2534), 1, + ACTIONS(1560), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2532), 34, + ACTIONS(1558), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -91270,6 +107900,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -91285,18 +107918,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29774] = 7, + [28635] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, + ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2596), 1, - anon_sym_LBRACE, - STATE(987), 1, - sym_field_declaration_list, - STATE(1013), 1, + STATE(1096), 1, sym_attribute_specifier, - ACTIONS(2594), 7, + ACTIONS(2780), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -91304,7 +107933,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2592), 24, + ACTIONS(2778), 28, + anon_sym___extension__, anon_sym_extern, anon_sym___declspec, anon_sym___based, @@ -91317,6 +107947,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -91329,20 +107962,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [29825] = 3, + [28684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2554), 1, + ACTIONS(2678), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2552), 34, + anon_sym_RBRACE, + ACTIONS(2676), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -91354,6 +107986,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -91369,20 +108004,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29868] = 3, + [28729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, + ACTIONS(2678), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2540), 34, + anon_sym_RBRACE, + ACTIONS(2676), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -91394,6 +108028,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -91409,111 +108046,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29911] = 3, + [28774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2556), 34, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, + ACTIONS(1364), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym___builtin_va_arg, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, - [29954] = 3, + ACTIONS(1366), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [28819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2544), 34, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, + ACTIONS(1308), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym___builtin_va_arg, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, - [29997] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2600), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1310), 19, anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, + anon_sym_AMP, anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [28864] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2662), 2, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2598), 28, + anon_sym_RBRACE, + ACTIONS(2660), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -91529,20 +108172,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30040] = 3, + [28909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(1548), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2564), 34, + anon_sym_RBRACE, + ACTIONS(1546), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -91554,6 +108196,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -91569,38 +108214,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30083] = 7, + [28954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(2596), 1, - anon_sym_LBRACE, - STATE(991), 1, - sym_field_declaration_list, - STATE(1010), 1, - sym_attribute_specifier, - ACTIONS(2604), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2682), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2602), 24, + anon_sym_RBRACE, + ACTIONS(2680), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -91612,21 +108252,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [30134] = 3, + [28999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 1, + ACTIONS(1520), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1418), 34, + anon_sym_RBRACE, + ACTIONS(1518), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -91638,6 +108280,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -91653,38 +108298,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30177] = 7, + [29044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(2596), 1, - anon_sym_LBRACE, - STATE(970), 1, - sym_field_declaration_list, - STATE(995), 1, - sym_attribute_specifier, - ACTIONS(2608), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1560), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2606), 24, + anon_sym_RBRACE, + ACTIONS(1558), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -91696,39 +108336,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [30228] = 7, + [29089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(2596), 1, - anon_sym_LBRACE, - STATE(990), 1, - sym_field_declaration_list, - STATE(1005), 1, - sym_attribute_specifier, - ACTIONS(2612), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2654), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2610), 24, + anon_sym_RBRACE, + ACTIONS(2652), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -91740,19 +108378,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [30279] = 7, + [29134] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, + ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2596), 1, - anon_sym_LBRACE, - STATE(932), 1, - sym_field_declaration_list, - STATE(1014), 1, + STATE(1101), 1, sym_attribute_specifier, - ACTIONS(2616), 7, + ACTIONS(2784), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -91760,7 +108397,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2614), 24, + ACTIONS(2782), 28, + anon_sym___extension__, anon_sym_extern, anon_sym___declspec, anon_sym___based, @@ -91773,6 +108411,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -91785,22 +108426,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [30330] = 3, + [29183] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2610), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2608), 24, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [29228] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2260), 2, + ACTIONS(2776), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2258), 32, + STATE(844), 1, + sym_string_literal, + ACTIONS(2786), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2774), 30, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -91809,6 +108494,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -91824,30 +108512,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30372] = 3, + [29277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1765), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1368), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym___builtin_va_arg, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(1370), 19, anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, + anon_sym_AMP, anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [29322] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2776), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1763), 28, + STATE(845), 1, + sym_string_literal, + ACTIONS(2786), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2774), 30, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -91863,50 +108598,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30414] = 16, + [29371] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1222), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2788), 3, anon_sym___based, - ACTIONS(2618), 1, + anon_sym_LBRACK, sym_identifier, - ACTIONS(2620), 1, + ACTIONS(2790), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2622), 1, anon_sym_STAR, - ACTIONS(2626), 1, - sym_primitive_type, - STATE(1243), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1435), 1, - sym__type_declarator, - STATE(1895), 1, - sym_ms_based_modifier, - ACTIONS(2516), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(923), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1219), 2, + anon_sym_SEMI, + STATE(880), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2514), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2624), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1478), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 8, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -91915,22 +108635,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [30482] = 3, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [29428] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1368), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym___builtin_va_arg, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(1370), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [29473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2264), 2, + ACTIONS(1474), 2, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2262), 32, + anon_sym_RBRACE, + ACTIONS(1472), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -91939,6 +108712,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -91954,30 +108730,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30524] = 3, + [29518] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1769), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2646), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1767), 28, + anon_sym_RBRACE, + ACTIONS(2644), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -91993,30 +108772,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30566] = 3, + [29563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2630), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2666), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2628), 28, + ACTIONS(2664), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -92032,192 +108814,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30608] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1879), 1, - anon_sym___based, - ACTIONS(2618), 1, - sym_identifier, - ACTIONS(2620), 1, - anon_sym_LPAREN2, - ACTIONS(2622), 1, - anon_sym_STAR, - ACTIONS(2626), 1, - sym_primitive_type, - STATE(1243), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1428), 1, - sym__type_declarator, - STATE(1895), 1, - sym_ms_based_modifier, - ACTIONS(2516), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1227), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1231), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2514), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2624), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1478), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [30676] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1879), 1, - anon_sym___based, - ACTIONS(2618), 1, - sym_identifier, - ACTIONS(2620), 1, - anon_sym_LPAREN2, - ACTIONS(2622), 1, - anon_sym_STAR, - ACTIONS(2626), 1, - sym_primitive_type, - STATE(1243), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1431), 1, - sym__type_declarator, - STATE(1895), 1, - sym_ms_based_modifier, - ACTIONS(2516), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1194), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1231), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2514), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2624), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1478), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [30744] = 16, + [29608] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1222), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2792), 3, anon_sym___based, - ACTIONS(2618), 1, + anon_sym_LBRACK, sym_identifier, - ACTIONS(2620), 1, - anon_sym_LPAREN2, - ACTIONS(2622), 1, - anon_sym_STAR, - ACTIONS(2626), 1, - sym_primitive_type, - STATE(1243), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1431), 1, - sym__type_declarator, - STATE(1895), 1, - sym_ms_based_modifier, - ACTIONS(2516), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(922), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1194), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2514), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2624), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1478), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [30812] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(925), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2636), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2634), 7, + ACTIONS(2794), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2632), 21, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, + STATE(1025), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -92226,58 +108851,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [30857] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1374), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1372), 31, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(45), 10, anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [30898] = 3, + [29665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 2, + ACTIONS(1474), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1360), 31, + ACTIONS(1472), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -92289,6 +108886,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -92304,58 +108904,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30939] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2630), 1, - anon_sym_LBRACK_LBRACK, - STATE(669), 1, - sym_string_literal, - ACTIONS(2639), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2628), 26, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [30984] = 3, + [29710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1408), 2, + ACTIONS(1520), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1406), 31, + ACTIONS(1518), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -92367,6 +108928,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -92382,18 +108946,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31025] = 3, + [29755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 2, + ACTIONS(1524), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1418), 31, + ACTIONS(1522), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -92405,6 +108970,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -92420,18 +108988,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31066] = 3, + [29800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1404), 2, + ACTIONS(1548), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1402), 31, + ACTIONS(1546), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -92443,6 +109012,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -92458,34 +109030,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31107] = 5, + [29845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - STATE(1022), 1, - sym_attribute_specifier, - ACTIONS(2643), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2666), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2641), 24, + anon_sym_RBRACE, + ACTIONS(2664), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -92497,19 +109068,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [31152] = 3, + [29890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(1544), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2564), 32, + ACTIONS(1542), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -92521,6 +109096,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -92536,62 +109114,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31193] = 9, + [29935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2645), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(2647), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(2518), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SEMI, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(829), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [31246] = 3, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2516), 24, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [29980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2570), 2, + ACTIONS(2670), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2568), 31, + ACTIONS(2668), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -92603,6 +109180,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -92618,18 +109198,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31287] = 3, + [30025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1436), 2, + ACTIONS(1544), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1434), 31, + ACTIONS(1542), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -92641,6 +109222,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -92656,18 +109240,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31328] = 3, + [30070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2574), 2, + ACTIONS(1524), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2572), 31, + ACTIONS(1522), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -92679,6 +109264,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -92694,18 +109282,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31369] = 3, + [30115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2526), 2, + ACTIONS(2662), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2524), 31, + ACTIONS(2660), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -92717,6 +109306,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -92732,34 +109324,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31410] = 9, + [30160] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, + ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(35), 1, + ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(1160), 1, + ACTIONS(1222), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2649), 3, + ACTIONS(2796), 3, anon_sym___based, anon_sym_LBRACK, sym_identifier, - ACTIONS(2651), 5, + ACTIONS(2798), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(940), 7, + STATE(1044), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -92767,7 +109351,58 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [30217] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2776), 1, + anon_sym_LBRACK_LBRACK, + STATE(842), 1, + sym_string_literal, + ACTIONS(2786), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2774), 30, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -92776,34 +109411,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [31463] = 9, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [30266] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, + ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(35), 1, + ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(1160), 1, + ACTIONS(1222), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2653), 3, + ACTIONS(2800), 3, anon_sym___based, anon_sym_LBRACK, sym_identifier, - ACTIONS(2655), 5, + ACTIONS(2802), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(829), 7, + STATE(880), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -92811,7 +109443,8 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -92820,18 +109453,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [31516] = 3, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [30323] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 2, + ACTIONS(2776), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2588), 31, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(846), 1, + sym_string_literal, + ACTIONS(2786), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2774), 30, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -92843,6 +109490,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -92858,18 +109508,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31557] = 3, + [30372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2650), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2556), 32, + anon_sym_RBRACE, + ACTIONS(2648), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -92881,6 +109532,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -92896,18 +109550,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31598] = 3, + [30417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, + ACTIONS(1308), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym___builtin_va_arg, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(1310), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [30462] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2776), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2540), 32, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(843), 1, + sym_string_literal, + ACTIONS(2786), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2774), 30, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -92919,6 +109618,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -92934,18 +109636,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31639] = 3, + [30511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2578), 1, + ACTIONS(2654), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2576), 32, + ACTIONS(2652), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -92957,6 +109660,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -92972,29 +109678,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31680] = 3, + [30556] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2586), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2584), 31, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + STATE(1050), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(2806), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2804), 25, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -93006,22 +109721,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [31721] = 3, + [30605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2582), 2, + ACTIONS(2686), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2580), 31, + ACTIONS(2684), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -93033,6 +109746,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -93048,31 +109764,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31762] = 5, + [30650] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2630), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(1097), 1, + sym_attribute_specifier, + ACTIONS(2813), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - STATE(675), 1, - sym_string_literal, - ACTIONS(2639), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2628), 26, + anon_sym_COLON, + ACTIONS(2811), 28, + anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -93084,22 +109807,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [31807] = 3, + [30699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2534), 1, + ACTIONS(2690), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2532), 32, + anon_sym_RBRACE, + ACTIONS(2688), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -93111,6 +109832,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -93126,18 +109850,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31848] = 3, + [30744] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2538), 1, + ACTIONS(2670), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2536), 32, + ACTIONS(2668), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -93149,6 +109874,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -93164,34 +109892,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31889] = 5, + [30789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - STATE(996), 1, - sym_attribute_specifier, - ACTIONS(2659), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1280), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym___builtin_va_arg, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(1282), 19, anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, + anon_sym_AMP, anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [30834] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2600), 1, + anon_sym_EQ, + ACTIONS(2602), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1991), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1985), 14, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [30883] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2658), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2657), 24, + ACTIONS(2656), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -93203,15 +110016,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [31934] = 5, + [30928] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, + ACTIONS(33), 1, anon_sym___attribute__, - STATE(1018), 1, + STATE(1087), 1, sym_attribute_specifier, - ACTIONS(2663), 7, + ACTIONS(2817), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -93219,7 +110035,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2661), 24, + ACTIONS(2815), 28, + anon_sym___extension__, anon_sym_extern, anon_sym___declspec, anon_sym___based, @@ -93232,6 +110049,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -93244,18 +110064,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [31979] = 3, + [30977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2522), 1, + ACTIONS(2694), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2520), 32, + anon_sym_RBRACE, + ACTIONS(2692), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -93267,6 +110088,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -93282,18 +110106,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32020] = 3, + [31022] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2522), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2520), 24, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [31067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, + ACTIONS(2706), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2548), 32, + anon_sym_RBRACE, + ACTIONS(2704), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -93305,6 +110172,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -93320,18 +110190,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32061] = 3, + [31112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, + ACTIONS(2698), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2548), 32, + anon_sym_RBRACE, + ACTIONS(2696), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -93343,6 +110214,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -93358,18 +110232,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32102] = 3, + [31157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2562), 1, + ACTIONS(2566), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2564), 24, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [31202] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2702), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2560), 32, + anon_sym_RBRACE, + ACTIONS(2700), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -93381,6 +110298,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -93396,29 +110316,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32143] = 3, + [31247] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2570), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(1118), 1, + sym_attribute_specifier, + ACTIONS(2821), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2568), 32, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2819), 28, + anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -93430,33 +110359,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [32184] = 3, + [31296] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2574), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(1090), 1, + sym_attribute_specifier, + ACTIONS(2825), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2572), 32, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2823), 28, + anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -93468,33 +110403,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [32225] = 3, + [31345] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2526), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(1100), 1, + sym_attribute_specifier, + ACTIONS(2829), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2524), 32, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2827), 28, + anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -93506,33 +110447,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [32266] = 3, + [31394] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2562), 2, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(1102), 1, + sym_attribute_specifier, + ACTIONS(2833), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2560), 31, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2831), 28, + anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -93544,33 +110491,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [32307] = 3, + [31443] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(1088), 1, + sym_attribute_specifier, + ACTIONS(2837), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2588), 32, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2835), 28, + anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -93582,22 +110535,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [32348] = 3, + [31492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2586), 1, + ACTIONS(2658), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2584), 32, + anon_sym_RBRACE, + ACTIONS(2656), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -93609,6 +110560,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -93624,18 +110578,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32389] = 3, + [31537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 2, + ACTIONS(2710), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2548), 31, + ACTIONS(2708), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -93647,6 +110602,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -93662,18 +110620,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32430] = 3, + [31582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2582), 1, + ACTIONS(2650), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2580), 32, + ACTIONS(2648), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -93685,6 +110644,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -93700,18 +110662,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32471] = 3, + [31627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 2, + ACTIONS(2646), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2544), 31, + ACTIONS(2644), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -93723,6 +110686,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -93738,73 +110704,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32512] = 9, + [31672] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, + ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2665), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(2667), 5, + STATE(1092), 1, + sym_attribute_specifier, + ACTIONS(2841), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(934), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [32565] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2554), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2552), 32, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2839), 28, + anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -93816,22 +110747,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [32606] = 3, + [31721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 1, + ACTIONS(2710), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2544), 32, + ACTIONS(2708), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -93843,6 +110772,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -93858,18 +110790,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32647] = 3, + [31766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 2, + ACTIONS(2702), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2540), 31, + ACTIONS(2700), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -93881,6 +110814,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -93896,20 +110832,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32688] = 5, + [31811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2630), 1, + ACTIONS(2674), 2, anon_sym_LBRACK_LBRACK, - STATE(679), 1, - sym_string_literal, - ACTIONS(2639), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2628), 26, + anon_sym_RBRACE, + ACTIONS(2672), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -93921,6 +110856,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -93936,58 +110874,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32733] = 5, + [31856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - STATE(1031), 1, - sym_attribute_specifier, - ACTIONS(2671), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2706), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2669), 24, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [32778] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2548), 31, + ACTIONS(2704), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -93999,6 +110898,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -94014,18 +110916,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32819] = 3, + [31901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1436), 1, + ACTIONS(2698), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1434), 32, + ACTIONS(2696), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -94037,6 +110940,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -94052,58 +110958,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32860] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - STATE(1012), 1, - sym_attribute_specifier, - ACTIONS(2675), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2673), 24, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [32905] = 3, + [31946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1404), 1, + ACTIONS(2694), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1402), 32, + ACTIONS(2692), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -94115,6 +110982,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -94130,18 +111000,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32946] = 3, + [31991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1408), 1, + ACTIONS(2690), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1406), 32, + ACTIONS(2688), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -94153,6 +111024,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -94168,18 +111042,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32987] = 3, + [32036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2522), 2, + ACTIONS(2686), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2520), 31, + ACTIONS(2684), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -94191,6 +111066,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -94206,18 +111084,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33028] = 3, + [32081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 1, + ACTIONS(2682), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1372), 32, + ACTIONS(2680), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -94229,6 +111108,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -94244,18 +111126,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33069] = 3, + [32126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2538), 2, + ACTIONS(2678), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2536), 31, + ACTIONS(2676), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -94267,6 +111150,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -94282,18 +111168,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33110] = 3, + [32171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 2, + ACTIONS(2678), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2564), 31, + ACTIONS(2676), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -94305,6 +111192,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -94320,18 +111210,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33151] = 3, + [32216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2578), 2, + ACTIONS(2674), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2576), 31, + ACTIONS(2672), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -94343,6 +111234,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -94358,29 +111252,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33192] = 3, + [32261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 1, + ACTIONS(2845), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1360), 32, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2843), 29, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -94392,33 +111292,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [33233] = 3, + [32305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 1, + ACTIONS(2849), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1418), 32, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2847), 29, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -94430,35 +111333,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [33274] = 5, + [32349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2630), 1, + ACTIONS(2853), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - STATE(672), 1, - sym_string_literal, - ACTIONS(2639), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2628), 26, + anon_sym_COLON, + ACTIONS(2851), 29, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -94470,33 +111374,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [33319] = 3, + [32393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2534), 2, + ACTIONS(2857), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2532), 31, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2855), 29, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -94508,33 +111415,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [33360] = 3, + [32437] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2554), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2552), 31, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2868), 1, + sym_primitive_type, + STATE(1050), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2866), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(2862), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2864), 23, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -94545,19 +111461,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [33401] = 5, + [32489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - STATE(1003), 1, - sym_attribute_specifier, - ACTIONS(2679), 7, + ACTIONS(2872), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -94565,8 +111472,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2677), 24, + ACTIONS(2870), 29, + anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_signed, @@ -94578,6 +111487,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -94590,14 +111502,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [33446] = 5, + [32533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - STATE(1008), 1, - sym_attribute_specifier, - ACTIONS(2683), 7, + ACTIONS(2876), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -94605,8 +111513,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2681), 24, + ACTIONS(2874), 29, + anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_signed, @@ -94618,6 +111528,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -94630,14 +111543,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [33491] = 5, + [32577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - STATE(1009), 1, - sym_attribute_specifier, - ACTIONS(2687), 7, + ACTIONS(2880), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -94645,8 +111554,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2685), 24, + ACTIONS(2878), 29, + anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_signed, @@ -94658,6 +111569,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -94670,31 +111584,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [33536] = 5, + [32621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2630), 1, + ACTIONS(2884), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - STATE(665), 1, - sym_string_literal, - ACTIONS(2639), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2628), 26, + anon_sym_COLON, + ACTIONS(2882), 29, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -94706,18 +111624,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [33581] = 5, + [32665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - STATE(997), 1, - sym_attribute_specifier, - ACTIONS(2691), 7, + ACTIONS(2888), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -94725,8 +111636,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2689), 24, + ACTIONS(2886), 29, + anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_signed, @@ -94738,6 +111651,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -94750,14 +111666,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [33626] = 5, + [32709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - STATE(1015), 1, - sym_attribute_specifier, - ACTIONS(2695), 7, + ACTIONS(2892), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -94765,8 +111677,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2693), 24, + ACTIONS(2890), 29, + anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_signed, @@ -94778,6 +111692,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -94790,29 +111707,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [33671] = 3, + [32753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 2, + ACTIONS(2896), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2556), 31, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2894), 29, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -94824,63 +111747,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [33712] = 15, + [32797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, - anon_sym_LPAREN2, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2701), 1, - anon_sym_SLASH, - STATE(787), 1, - sym_argument_list, - ACTIONS(2282), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2292), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2703), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2705), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2707), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2709), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2286), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [33776] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2713), 7, + ACTIONS(2900), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -94888,7 +111759,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2711), 25, + ACTIONS(2898), 29, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -94902,6 +111774,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -94914,10 +111789,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [33816] = 3, + [32841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2717), 7, + ACTIONS(2904), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -94925,7 +111800,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2715), 25, + ACTIONS(2902), 29, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -94939,6 +111815,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -94951,10 +111830,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [33856] = 3, + [32885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2721), 7, + ACTIONS(2908), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -94962,7 +111841,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2719), 25, + ACTIONS(2906), 29, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -94976,6 +111856,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -94988,10 +111871,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [33896] = 3, + [32929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2725), 7, + ACTIONS(2912), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -94999,7 +111882,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2723), 25, + ACTIONS(2910), 29, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -95013,6 +111897,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -95025,10 +111912,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [33936] = 3, + [32973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 7, + ACTIONS(2916), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -95036,7 +111923,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2727), 25, + ACTIONS(2914), 29, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -95050,6 +111938,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -95062,110 +111953,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [33976] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2276), 1, - anon_sym_LPAREN2, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2701), 1, - anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, - anon_sym_AMP, - ACTIONS(2741), 1, - anon_sym_QMARK, - STATE(787), 1, - sym_argument_list, - ACTIONS(2282), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2703), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2705), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2707), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2709), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2374), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - [34050] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2276), 1, - anon_sym_LPAREN2, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2701), 1, - anon_sym_SLASH, - STATE(787), 1, - sym_argument_list, - ACTIONS(2282), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2709), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2342), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2340), 14, - 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_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [34108] = 3, + [33017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2745), 7, + ACTIONS(2920), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -95173,7 +111964,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2743), 25, + ACTIONS(2918), 29, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -95187,6 +111979,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -95199,10 +111994,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34148] = 3, + [33061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2749), 7, + ACTIONS(2924), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -95210,7 +112005,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2747), 25, + ACTIONS(2922), 29, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -95224,6 +112020,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -95236,10 +112035,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34188] = 3, + [33105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2753), 7, + ACTIONS(2928), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -95247,7 +112046,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2751), 25, + ACTIONS(2926), 29, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -95261,6 +112061,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -95273,10 +112076,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34228] = 3, + [33149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2757), 7, + ACTIONS(2932), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -95284,7 +112087,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2755), 25, + ACTIONS(2930), 29, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -95298,6 +112102,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -95310,10 +112117,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34268] = 3, + [33193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2761), 7, + ACTIONS(2936), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -95321,7 +112128,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2759), 25, + ACTIONS(2934), 29, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -95335,6 +112143,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -95347,10 +112158,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34308] = 3, + [33237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2765), 7, + ACTIONS(2940), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -95358,7 +112169,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2763), 25, + ACTIONS(2938), 29, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -95372,6 +112184,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -95384,18 +112199,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34348] = 3, + [33281] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2769), 7, + ACTIONS(2942), 1, + anon_sym_LPAREN2, + ACTIONS(1999), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2767), 25, + ACTIONS(1983), 29, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -95409,6 +112226,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -95421,10 +112241,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34388] = 3, + [33327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2773), 7, + ACTIONS(2947), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -95432,7 +112252,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2771), 25, + ACTIONS(2945), 29, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -95446,6 +112267,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -95458,10 +112282,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34428] = 3, + [33371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2777), 7, + ACTIONS(2951), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -95469,7 +112293,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2775), 25, + ACTIONS(2949), 29, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -95483,6 +112308,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -95495,10 +112323,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34468] = 3, + [33415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2781), 7, + ACTIONS(2955), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -95506,7 +112334,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2779), 25, + ACTIONS(2953), 29, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -95520,6 +112349,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -95532,10 +112364,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34508] = 3, + [33459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2785), 7, + ACTIONS(2959), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -95543,7 +112375,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2783), 25, + ACTIONS(2957), 29, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -95557,6 +112390,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -95569,10 +112405,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34548] = 3, + [33503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2789), 7, + ACTIONS(2963), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -95580,7 +112416,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2787), 25, + ACTIONS(2961), 29, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -95594,6 +112431,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -95606,10 +112446,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34588] = 3, + [33547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2793), 7, + ACTIONS(2967), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -95617,7 +112457,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2791), 25, + ACTIONS(2965), 29, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -95631,6 +112472,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -95643,10 +112487,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34628] = 3, + [33591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2797), 7, + ACTIONS(2971), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -95654,7 +112498,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2795), 25, + ACTIONS(2969), 29, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -95668,6 +112513,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -95680,10 +112528,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34668] = 3, + [33635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 7, + ACTIONS(2975), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -95691,7 +112539,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2799), 25, + ACTIONS(2973), 29, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -95705,6 +112554,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -95717,33 +112569,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34708] = 3, + [33679] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2057), 1, + anon_sym___based, + ACTIONS(2977), 1, + sym_identifier, + ACTIONS(2979), 1, anon_sym_LPAREN2, + ACTIONS(2981), 1, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2803), 25, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(2985), 1, + sym_primitive_type, + STATE(1360), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1572), 1, + sym__type_declarator, + STATE(2159), 1, + sym_ms_based_modifier, + ACTIONS(2744), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1270), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1353), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2742), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2983), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, + STATE(1612), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -95752,35 +112622,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [34748] = 3, + [33748] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2809), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2057), 1, + anon_sym___based, + ACTIONS(2977), 1, + sym_identifier, + ACTIONS(2979), 1, anon_sym_LPAREN2, + ACTIONS(2981), 1, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2807), 25, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(2985), 1, + sym_primitive_type, + STATE(1360), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1566), 1, + sym__type_declarator, + STATE(2159), 1, + sym_ms_based_modifier, + ACTIONS(2744), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1346), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1353), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2742), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2983), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, + STATE(1612), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -95789,35 +112675,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [34788] = 3, + [33817] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2813), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2057), 1, + anon_sym___based, + ACTIONS(2977), 1, + sym_identifier, + ACTIONS(2979), 1, anon_sym_LPAREN2, + ACTIONS(2981), 1, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2811), 25, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(2985), 1, + sym_primitive_type, + STATE(1360), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1566), 1, + sym__type_declarator, + STATE(2159), 1, + sym_ms_based_modifier, + ACTIONS(2744), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1119), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1346), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2742), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2983), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, + STATE(1612), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -95826,34 +112728,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [34828] = 4, + [33886] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2815), 1, + ACTIONS(2057), 1, + anon_sym___based, + ACTIONS(2977), 1, + sym_identifier, + ACTIONS(2979), 1, anon_sym_LPAREN2, - ACTIONS(1985), 6, + ACTIONS(2981), 1, + anon_sym_STAR, + ACTIONS(2985), 1, + sym_primitive_type, + STATE(1360), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1563), 1, + sym__type_declarator, + STATE(2159), 1, + sym_ms_based_modifier, + ACTIONS(2744), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1120), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1344), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2742), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2983), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1612), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [33955] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2991), 1, + anon_sym___attribute__, + ACTIONS(2994), 1, + anon_sym_LBRACE, + ACTIONS(2996), 1, + anon_sym_COLON, + STATE(1116), 1, + sym_attribute_specifier, + STATE(1148), 1, + sym_enumerator_list, + ACTIONS(2989), 6, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(1972), 25, + ACTIONS(2987), 23, + anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -95864,89 +112824,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [34870] = 20, + [34007] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, - anon_sym_LPAREN2, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2701), 1, - anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, - anon_sym_AMP, - ACTIONS(2741), 1, - anon_sym_QMARK, - STATE(787), 1, - sym_argument_list, - ACTIONS(2282), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2703), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2705), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2707), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2709), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2422), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(33), 1, anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - [34944] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2820), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1222), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2998), 1, + anon_sym_SEMI, + ACTIONS(2796), 2, + anon_sym___based, + sym_identifier, + ACTIONS(2798), 2, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2818), 25, + STATE(1044), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [34063] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, anon_sym___attribute__, + ACTIONS(37), 1, anon_sym___declspec, + ACTIONS(1222), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3000), 1, + anon_sym_SEMI, + ACTIONS(2796), 2, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, + sym_identifier, + ACTIONS(2798), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(1044), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + [34119] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1222), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3002), 1, + anon_sym_SEMI, + ACTIONS(2796), 2, + anon_sym___based, + sym_identifier, + ACTIONS(2798), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(1044), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -95955,35 +112952,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [34984] = 3, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [34175] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2824), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2822), 25, - anon_sym_extern, + ACTIONS(33), 1, anon_sym___attribute__, + ACTIONS(37), 1, anon_sym___declspec, + ACTIONS(1222), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3004), 1, + anon_sym_SEMI, + ACTIONS(2796), 2, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, + sym_identifier, + ACTIONS(2798), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(1044), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + [34231] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1222), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3006), 1, + anon_sym_SEMI, + ACTIONS(2796), 2, + anon_sym___based, + sym_identifier, + ACTIONS(2798), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(1044), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -95992,32 +113044,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [35024] = 7, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [34287] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2826), 1, - sym_identifier, - ACTIONS(2835), 1, - sym_primitive_type, - STATE(925), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2833), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2829), 6, + ACTIONS(2994), 1, + anon_sym_LBRACE, + ACTIONS(3012), 1, + anon_sym___attribute__, + STATE(1108), 1, + sym_attribute_specifier, + STATE(1152), 1, + sym_enumerator_list, + ACTIONS(3010), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2831), 19, + ACTIONS(3008), 23, + anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -96025,6 +113083,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -96035,34 +113096,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [35072] = 10, + sym_identifier, + [34336] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2292), 6, + ACTIONS(2526), 6, anon_sym_DASH, anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2286), 16, + ACTIONS(2524), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -96079,478 +113141,514 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [35126] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2839), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2837), 25, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [35166] = 17, + [34390] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, - anon_sym_SLASH, - ACTIONS(2735), 1, + ACTIONS(2526), 1, anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3017), 1, + anon_sym_SLASH, + ACTIONS(3021), 1, anon_sym_AMP, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2286), 9, + ACTIONS(2524), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [35234] = 17, + [34456] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2292), 1, - anon_sym_PIPE, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, - anon_sym_AMP, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2705), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2707), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2286), 9, + ACTIONS(2526), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2524), 14, 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_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [35302] = 3, + [34514] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2843), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2502), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2841), 25, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + ACTIONS(2506), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [35342] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2847), 7, + ACTIONS(3017), 1, + anon_sym_SLASH, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2526), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3015), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3025), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3027), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3029), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2524), 12, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2845), 25, - anon_sym_extern, anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [35382] = 11, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [34576] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2292), 4, + ACTIONS(2526), 2, anon_sym_PIPE, anon_sym_AMP, + ACTIONS(3015), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2286), 16, + ACTIONS(3027), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3029), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2524), 10, 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, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [35438] = 3, + [34640] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2851), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2502), 1, anon_sym_LPAREN2, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(2526), 1, + anon_sym_PIPE, + ACTIONS(3017), 1, + anon_sym_SLASH, + ACTIONS(3021), 1, + anon_sym_AMP, + ACTIONS(3031), 1, + anon_sym_CARET, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3015), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3025), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3027), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3029), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2524), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2849), 25, - anon_sym_extern, anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [35478] = 16, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [34708] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2292), 1, - anon_sym_PIPE, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - STATE(787), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2286), 10, + ACTIONS(2524), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [35544] = 20, + [34776] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, - anon_sym_QMARK, - STATE(787), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2394), 6, + ACTIONS(2524), 8, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - [35618] = 14, + anon_sym_QMARK, + [34846] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2292), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2697), 2, + ACTIONS(3015), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3019), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3029), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2598), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2596), 14, + 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_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [34904] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2463), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3037), 1, + anon_sym_typedef, + ACTIONS(2461), 30, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [34946] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2502), 1, + anon_sym_LPAREN2, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, + anon_sym_SLASH, + ACTIONS(3021), 1, + anon_sym_AMP, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, + anon_sym_QMARK, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2705), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2286), 12, + ACTIONS(2636), 6, 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_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_QMARK, - [35680] = 3, + [35020] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2855), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2463), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2853), 25, + ACTIONS(3043), 1, + anon_sym_typedef, + ACTIONS(2461), 30, + anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -96562,39 +113660,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [35720] = 12, + [35062] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2463), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3045), 1, + anon_sym_typedef, + ACTIONS(2461), 30, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [35104] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2709), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2292), 4, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2526), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2286), 14, + ACTIONS(2524), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -96604,313 +113740,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [35778] = 18, + [35160] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - STATE(787), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, + anon_sym_QMARK, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2286), 8, + ACTIONS(2532), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_QMARK, - [35848] = 3, + [35234] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1248), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - ACTIONS(1250), 19, + ACTIONS(2502), 1, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, + anon_sym_SLASH, + ACTIONS(3021), 1, anon_sym_AMP, - anon_sym_SEMI, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, + anon_sym_QMARK, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [35887] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1204), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - ACTIONS(1206), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3015), 2, anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [35926] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1208), 12, + anon_sym_PERCENT, + ACTIONS(3019), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_sizeof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - ACTIONS(1210), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, + ACTIONS(3023), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3025), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3027), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3029), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2640), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [35965] = 3, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + [35308] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, + ACTIONS(2463), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3047), 1, + anon_sym_typedef, + ACTIONS(2461), 30, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - ACTIONS(1342), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [36004] = 3, + [35350] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1204), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, + ACTIONS(2463), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3049), 1, + anon_sym_typedef, + ACTIONS(2461), 30, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - ACTIONS(1206), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [36043] = 3, + [35392] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1208), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - ACTIONS(1210), 19, + ACTIONS(3055), 1, + anon_sym___attribute__, + STATE(1106), 1, + sym_attribute_specifier, + ACTIONS(3053), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [36082] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2857), 1, - anon_sym_SEMI, - ACTIONS(2649), 2, - anon_sym___based, - sym_identifier, - ACTIONS(2651), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(43), 7, + ACTIONS(3051), 23, + anon_sym___extension__, anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - STATE(940), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -96919,40 +113968,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [36134] = 10, + sym_identifier, + [35435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, + ACTIONS(3060), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3058), 30, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(35), 1, anon_sym___declspec, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2859), 1, - anon_sym_SEMI, - ACTIONS(2649), 2, - anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - ACTIONS(2651), 2, + [35474] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3066), 1, + anon_sym___attribute__, + STATE(1095), 1, + sym_attribute_specifier, + ACTIONS(3064), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(43), 7, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3062), 23, + anon_sym___extension__, anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - STATE(940), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -96961,45 +114042,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [36186] = 15, + sym_identifier, + [35517] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1875), 1, + ACTIONS(2053), 1, anon_sym_LPAREN2, - ACTIONS(1877), 1, + ACTIONS(2055), 1, anon_sym_STAR, - ACTIONS(1879), 1, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2510), 1, + ACTIONS(2738), 1, sym_identifier, - ACTIONS(2518), 1, + ACTIONS(2746), 1, anon_sym_LBRACK, - STATE(1371), 1, + STATE(1498), 1, sym__declarator, - STATE(1490), 1, + STATE(1640), 1, sym__abstract_declarator, - STATE(1509), 1, + STATE(1676), 1, sym_parameter_list, - STATE(1823), 1, + STATE(2180), 1, sym_ms_based_modifier, - ACTIONS(2861), 2, + ACTIONS(3069), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1226), 2, + STATE(1320), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1510), 4, + STATE(1677), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(1415), 5, + STATE(1570), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(45), 8, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -97008,82 +114091,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [36248] = 10, + [35580] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, + ACTIONS(3075), 1, anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2863), 1, - anon_sym_SEMI, - ACTIONS(2649), 2, - anon_sym___based, - sym_identifier, - ACTIONS(2651), 2, + STATE(1109), 1, + sym_attribute_specifier, + ACTIONS(3073), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(43), 7, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3071), 23, + anon_sym___extension__, anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(940), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [36300] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, anon_sym___declspec, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2865), 1, - anon_sym_SEMI, - ACTIONS(2649), 2, anon_sym___based, - sym_identifier, - ACTIONS(2651), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(43), 7, - anon_sym_extern, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - STATE(940), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -97092,40 +114128,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [36352] = 10, + sym_identifier, + [35623] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2867), 1, - anon_sym_SEMI, - ACTIONS(2649), 2, + ACTIONS(2057), 1, anon_sym___based, + ACTIONS(2738), 1, sym_identifier, - ACTIONS(2651), 2, + ACTIONS(3078), 1, anon_sym_LPAREN2, + ACTIONS(3080), 1, anon_sym_STAR, - ACTIONS(43), 7, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - STATE(940), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, + STATE(1360), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1498), 1, + sym__declarator, + STATE(2180), 1, + sym_ms_based_modifier, + ACTIONS(2744), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1156), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1369), 2, sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, + aux_sym_type_definition_repeat1, + ACTIONS(2742), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1570), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -97134,37 +114175,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [36404] = 8, + [35683] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2873), 1, - anon_sym___attribute__, - ACTIONS(2876), 1, - anon_sym_LBRACE, - ACTIONS(2878), 1, - anon_sym_COLON, - STATE(1004), 1, - sym_attribute_specifier, - STATE(1144), 1, - sym_enumerator_list, - ACTIONS(2871), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2057), 1, + anon_sym___based, + ACTIONS(2738), 1, + sym_identifier, + ACTIONS(3078), 1, anon_sym_LPAREN2, + ACTIONS(3080), 1, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2869), 19, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, + STATE(1360), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1498), 1, + sym__declarator, + STATE(2180), 1, + sym_ms_based_modifier, + ACTIONS(2744), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1353), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1369), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2742), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1570), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -97173,97 +114221,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_identifier, - [36452] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2276), 1, - anon_sym_LPAREN2, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2701), 1, - anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, - anon_sym_AMP, - ACTIONS(2741), 1, - anon_sym_QMARK, - ACTIONS(2880), 1, - anon_sym_COMMA, - ACTIONS(2882), 1, - anon_sym_RBRACE, - STATE(787), 1, - sym_argument_list, - STATE(1581), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(2282), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2703), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2705), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2707), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2709), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [36527] = 14, + [35743] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2884), 1, + ACTIONS(3082), 1, sym_identifier, - ACTIONS(2886), 1, + ACTIONS(3084), 1, anon_sym_LPAREN2, - ACTIONS(2888), 1, + ACTIONS(3086), 1, anon_sym_STAR, - STATE(1243), 1, + STATE(1360), 1, sym_ms_unaligned_ptr_modifier, - STATE(1395), 1, + STATE(1555), 1, sym__field_declarator, - STATE(1936), 1, + STATE(2075), 1, sym_ms_based_modifier, - ACTIONS(2516), 2, + ACTIONS(2744), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1231), 2, + STATE(1353), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1248), 2, + STATE(1371), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2514), 3, + ACTIONS(2742), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1450), 5, + STATE(1587), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - ACTIONS(45), 8, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -97272,43 +114267,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [36586] = 14, + [35803] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2510), 1, + ACTIONS(2738), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(3078), 1, anon_sym_LPAREN2, - ACTIONS(2892), 1, + ACTIONS(3080), 1, anon_sym_STAR, - STATE(1243), 1, + STATE(1360), 1, sym_ms_unaligned_ptr_modifier, - STATE(1361), 1, + STATE(1489), 1, sym__declarator, - STATE(1823), 1, + STATE(2180), 1, sym_ms_based_modifier, - ACTIONS(2516), 2, + ACTIONS(2744), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1231), 2, + STATE(1353), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1257), 2, + STATE(1370), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2514), 3, + ACTIONS(2742), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1415), 5, + STATE(1570), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(45), 8, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -97317,43 +114313,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [36645] = 14, + [35863] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2884), 1, + ACTIONS(3082), 1, sym_identifier, - ACTIONS(2886), 1, + ACTIONS(3084), 1, anon_sym_LPAREN2, - ACTIONS(2888), 1, + ACTIONS(3086), 1, anon_sym_STAR, - STATE(1243), 1, + STATE(1360), 1, sym_ms_unaligned_ptr_modifier, - STATE(1402), 1, + STATE(1550), 1, sym__field_declarator, - STATE(1936), 1, + STATE(2075), 1, sym_ms_based_modifier, - ACTIONS(2516), 2, + ACTIONS(2744), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1052), 2, + STATE(1353), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1246), 2, + STATE(1368), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2514), 3, + ACTIONS(2742), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1450), 5, + STATE(1587), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - ACTIONS(45), 8, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -97362,43 +114359,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [36704] = 14, + [35923] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2884), 1, + ACTIONS(3082), 1, sym_identifier, - ACTIONS(2886), 1, + ACTIONS(3084), 1, anon_sym_LPAREN2, - ACTIONS(2888), 1, + ACTIONS(3086), 1, anon_sym_STAR, - STATE(1243), 1, + STATE(1360), 1, sym_ms_unaligned_ptr_modifier, - STATE(1402), 1, + STATE(1550), 1, sym__field_declarator, - STATE(1936), 1, + STATE(2075), 1, sym_ms_based_modifier, - ACTIONS(2516), 2, + ACTIONS(2744), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1231), 2, + STATE(1155), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1246), 2, + STATE(1368), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2514), 3, + ACTIONS(2742), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1450), 5, + STATE(1587), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - ACTIONS(45), 8, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -97407,147 +114405,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [36763] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2276), 1, - anon_sym_LPAREN2, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2701), 1, - anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, - anon_sym_AMP, - ACTIONS(2741), 1, - anon_sym_QMARK, - STATE(787), 1, - sym_argument_list, - ACTIONS(2282), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2703), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2705), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2707), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2709), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2894), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [36834] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2276), 1, - anon_sym_LPAREN2, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2701), 1, - anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, - anon_sym_AMP, - ACTIONS(2741), 1, - anon_sym_QMARK, - ACTIONS(2896), 1, - anon_sym_COMMA, - ACTIONS(2898), 1, - anon_sym_RPAREN, - STATE(787), 1, - sym_argument_list, - STATE(1568), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2282), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2703), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2705), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2707), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2709), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [36909] = 14, + [35983] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2510), 1, + ACTIONS(3082), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(3084), 1, anon_sym_LPAREN2, - ACTIONS(2892), 1, + ACTIONS(3086), 1, anon_sym_STAR, - STATE(1243), 1, + STATE(1360), 1, sym_ms_unaligned_ptr_modifier, - STATE(1371), 1, - sym__declarator, - STATE(1823), 1, + STATE(1559), 1, + sym__field_declarator, + STATE(2075), 1, sym_ms_based_modifier, - ACTIONS(2516), 2, + ACTIONS(2744), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1231), 2, + STATE(1157), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1256), 2, + STATE(1373), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2514), 3, + ACTIONS(2742), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1415), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(45), 8, + STATE(1587), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -97556,43 +114451,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [36968] = 14, + [36043] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2510), 1, + ACTIONS(2738), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(3078), 1, anon_sym_LPAREN2, - ACTIONS(2892), 1, + ACTIONS(3080), 1, anon_sym_STAR, - STATE(1243), 1, + STATE(1360), 1, sym_ms_unaligned_ptr_modifier, - STATE(1371), 1, + STATE(1490), 1, sym__declarator, - STATE(1823), 1, + STATE(2180), 1, sym_ms_based_modifier, - ACTIONS(2516), 2, + ACTIONS(2744), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1053), 2, + STATE(1154), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1256), 2, + STATE(1372), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2514), 3, + ACTIONS(2742), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1415), 5, + STATE(1570), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(45), 8, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -97601,33 +114497,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [37027] = 7, + [36103] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2876), 1, - anon_sym_LBRACE, - ACTIONS(2904), 1, - anon_sym___attribute__, - STATE(1011), 1, - sym_attribute_specifier, - STATE(1160), 1, - sym_enumerator_list, - ACTIONS(2902), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3091), 1, anon_sym_LPAREN2, + ACTIONS(3095), 1, + anon_sym_LBRACK, + ACTIONS(1999), 2, + anon_sym_COMMA, anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(3088), 2, + anon_sym_RPAREN, anon_sym_LBRACK_LBRACK, - ACTIONS(2900), 19, + ACTIONS(1983), 23, + anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, anon_sym_const, @@ -97639,4294 +114534,4496 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [37072] = 14, + [36146] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, - anon_sym___based, - ACTIONS(2884), 1, - sym_identifier, - ACTIONS(2886), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2888), 1, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, + anon_sym_SLASH, + ACTIONS(3021), 1, + anon_sym_AMP, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, + anon_sym_QMARK, + ACTIONS(3098), 1, + anon_sym_COMMA, + ACTIONS(3100), 1, + anon_sym_RPAREN, + STATE(916), 1, + sym_argument_list, + STATE(1811), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3015), 2, anon_sym_STAR, - STATE(1243), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1403), 1, - sym__field_declarator, - STATE(1936), 1, - sym_ms_based_modifier, - ACTIONS(2516), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1055), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1251), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2514), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1450), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [37131] = 22, + anon_sym_PERCENT, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3025), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3027), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3029), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [36221] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2896), 1, + ACTIONS(3098), 1, anon_sym_COMMA, - ACTIONS(2907), 1, + ACTIONS(3102), 1, anon_sym_RPAREN, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - STATE(1659), 1, + STATE(1844), 1, aux_sym_argument_list_repeat1, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [37206] = 22, + [36296] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2909), 1, + ACTIONS(3098), 1, anon_sym_COMMA, - ACTIONS(2911), 1, + ACTIONS(3104), 1, anon_sym_RPAREN, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - STATE(1558), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(2282), 2, + STATE(1782), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [37281] = 21, + [36371] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, - anon_sym_COMMA, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2915), 2, - anon_sym_RPAREN, + ACTIONS(3106), 3, + anon_sym_COMMA, anon_sym_SEMI, - [37354] = 14, + anon_sym___attribute__, + [36442] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, - anon_sym___based, - ACTIONS(2510), 1, - sym_identifier, - ACTIONS(2890), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2892), 1, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, + anon_sym_SLASH, + ACTIONS(3021), 1, + anon_sym_AMP, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, + anon_sym_QMARK, + ACTIONS(3108), 1, + anon_sym_COMMA, + ACTIONS(3110), 1, + anon_sym_RBRACE, + STATE(916), 1, + sym_argument_list, + STATE(1797), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3015), 2, anon_sym_STAR, - STATE(1243), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1366), 1, - sym__declarator, - STATE(1823), 1, - sym_ms_based_modifier, - ACTIONS(2516), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1058), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1250), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2514), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1415), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [37413] = 21, + anon_sym_PERCENT, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3025), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3027), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3029), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [36517] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3112), 1, anon_sym_COMMA, - ACTIONS(2917), 1, - anon_sym_SEMI, - STATE(787), 1, + ACTIONS(3114), 1, + anon_sym_RPAREN, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + STATE(1837), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [37485] = 21, + [36592] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3098), 1, anon_sym_COMMA, - ACTIONS(2919), 1, - anon_sym_SEMI, - STATE(787), 1, + ACTIONS(3116), 1, + anon_sym_RPAREN, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + STATE(1868), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [37557] = 21, + [36667] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(2921), 1, - anon_sym_RPAREN, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [37629] = 21, + ACTIONS(3120), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [36740] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(2923), 1, + ACTIONS(3122), 1, anon_sym_RPAREN, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [37701] = 21, + [36812] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(2925), 1, - anon_sym_SEMI, - STATE(787), 1, + ACTIONS(3124), 1, + anon_sym_RPAREN, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + anon_sym_DASH_GT, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [37773] = 20, + [36884] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - STATE(787), 1, + ACTIONS(3118), 1, + anon_sym_COMMA, + ACTIONS(3126), 1, + anon_sym_SEMI, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2927), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [37843] = 21, + [36956] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(2929), 1, + ACTIONS(3128), 1, anon_sym_SEMI, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [37915] = 21, + [37028] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, - anon_sym_COMMA, - ACTIONS(2931), 1, - anon_sym_RPAREN, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [37987] = 21, + ACTIONS(3130), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [37098] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(2933), 1, - anon_sym_SEMI, - STATE(787), 1, + ACTIONS(3132), 1, + anon_sym_RPAREN, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [38059] = 20, + [37170] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - STATE(787), 1, + ACTIONS(3118), 1, + anon_sym_COMMA, + ACTIONS(3134), 1, + anon_sym_SEMI, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2935), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [38129] = 21, + [37242] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(2937), 1, - anon_sym_RPAREN, - STATE(787), 1, + ACTIONS(3136), 1, + anon_sym_SEMI, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [38201] = 21, + [37314] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, - anon_sym_COMMA, - ACTIONS(2939), 1, - anon_sym_SEMI, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [38273] = 20, + ACTIONS(3138), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [37384] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - STATE(787), 1, + ACTIONS(3118), 1, + anon_sym_COMMA, + ACTIONS(3140), 1, + anon_sym_SEMI, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2941), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [38343] = 21, + [37456] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(2943), 1, + ACTIONS(3142), 1, anon_sym_SEMI, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [38415] = 21, + [37528] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(2945), 1, + ACTIONS(3144), 1, anon_sym_RPAREN, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [38487] = 21, + [37600] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(2947), 1, - anon_sym_SEMI, - STATE(787), 1, + ACTIONS(3146), 1, + anon_sym_RPAREN, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [38559] = 21, + [37672] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(2949), 1, + ACTIONS(3148), 1, anon_sym_RPAREN, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [38631] = 21, + [37744] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1893), 1, + anon_sym_enum, + ACTIONS(2021), 1, + sym_identifier, + STATE(1359), 1, + sym__type_specifier, + STATE(1366), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2127), 1, + sym_type_descriptor, + STATE(1272), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1891), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1104), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [37800] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(2951), 1, - anon_sym_SEMI, - STATE(787), 1, + ACTIONS(3150), 1, + anon_sym_RPAREN, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [38703] = 21, + [37872] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(2953), 1, + ACTIONS(3152), 1, anon_sym_RPAREN, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [38775] = 21, + [37944] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(2955), 1, - anon_sym_RPAREN, - STATE(787), 1, + ACTIONS(3154), 1, + anon_sym_SEMI, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [38847] = 21, + [38016] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(2957), 1, + ACTIONS(3156), 1, anon_sym_RPAREN, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [38919] = 21, + [38088] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(2959), 1, + ACTIONS(3158), 1, anon_sym_RPAREN, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [38991] = 21, + [38160] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(2961), 1, - anon_sym_SEMI, - STATE(787), 1, + ACTIONS(3160), 1, + anon_sym_RPAREN, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [39063] = 21, + [38232] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(2963), 1, - anon_sym_RPAREN, - STATE(787), 1, + ACTIONS(3162), 1, + anon_sym_SEMI, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [39135] = 21, + [38304] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, + ACTIONS(3021), 1, + anon_sym_AMP, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, - anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(2965), 1, + ACTIONS(3164), 1, anon_sym_RPAREN, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [39207] = 21, + [38376] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1893), 1, + anon_sym_enum, + ACTIONS(2021), 1, + sym_identifier, + STATE(1359), 1, + sym__type_specifier, + STATE(1366), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2137), 1, + sym_type_descriptor, + STATE(1272), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1891), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1104), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [38432] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1893), 1, + anon_sym_enum, + ACTIONS(2021), 1, + sym_identifier, + STATE(1359), 1, + sym__type_specifier, + STATE(1366), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2138), 1, + sym_type_descriptor, + STATE(1272), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1891), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1104), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [38488] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(2021), 1, + sym_identifier, + ACTIONS(3166), 1, + anon_sym_enum, + STATE(1359), 1, + sym__type_specifier, + STATE(1366), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2037), 1, + sym_type_descriptor, + STATE(1265), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1891), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1104), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [38544] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(2967), 1, + ACTIONS(3168), 1, anon_sym_RPAREN, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [39279] = 21, + [38616] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(2969), 1, - anon_sym_SEMI, - STATE(787), 1, + ACTIONS(3170), 1, + anon_sym_RPAREN, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [39351] = 21, + [38688] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(2971), 1, + ACTIONS(3172), 1, anon_sym_SEMI, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [39423] = 21, + [38760] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(2973), 1, + ACTIONS(3174), 1, anon_sym_SEMI, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [39495] = 21, + [38832] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(2975), 1, - anon_sym_RPAREN, - STATE(787), 1, + ACTIONS(3176), 1, + anon_sym_SEMI, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [39567] = 21, + [38904] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(2977), 1, + ACTIONS(3178), 1, anon_sym_RPAREN, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [39639] = 21, + [38976] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(2979), 1, - anon_sym_SEMI, - STATE(787), 1, + ACTIONS(3180), 1, + anon_sym_RPAREN, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [39711] = 21, + [39048] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, - anon_sym_COMMA, - ACTIONS(2981), 1, - anon_sym_SEMI, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [39783] = 21, + ACTIONS(3182), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [39118] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(2983), 1, + ACTIONS(3184), 1, anon_sym_SEMI, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [39855] = 21, + [39190] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(2985), 1, + ACTIONS(3186), 1, anon_sym_SEMI, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [39927] = 21, + [39262] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(2987), 1, - anon_sym_SEMI, - STATE(787), 1, + ACTIONS(3188), 1, + anon_sym_RPAREN, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [39999] = 21, + [39334] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(2989), 1, + ACTIONS(3190), 1, anon_sym_RPAREN, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [40071] = 21, + [39406] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(2991), 1, - anon_sym_RPAREN, - STATE(787), 1, + ACTIONS(3192), 1, + anon_sym_SEMI, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [40143] = 21, + [39478] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(2993), 1, - anon_sym_RPAREN, - STATE(787), 1, + ACTIONS(3194), 1, + anon_sym_SEMI, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [40215] = 21, + [39550] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(2995), 1, - anon_sym_RPAREN, - STATE(787), 1, + ACTIONS(3196), 1, + anon_sym_SEMI, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [40287] = 21, + [39622] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(2997), 1, + ACTIONS(3198), 1, anon_sym_RPAREN, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [40359] = 21, + [39694] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, - anon_sym_COMMA, - ACTIONS(2999), 1, - anon_sym_SEMI, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [40431] = 21, + ACTIONS(3200), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [39764] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(3001), 1, + ACTIONS(3202), 1, anon_sym_RPAREN, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [40503] = 20, + [39836] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3003), 2, + ACTIONS(3204), 2, anon_sym_COMMA, anon_sym_RPAREN, - [40573] = 21, + [39906] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(3005), 1, - anon_sym_SEMI, - STATE(787), 1, + ACTIONS(3206), 1, + anon_sym_RPAREN, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [40645] = 21, + [39978] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(3007), 1, + ACTIONS(3208), 1, anon_sym_SEMI, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [40717] = 21, + [40050] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(3009), 1, + ACTIONS(3210), 1, anon_sym_SEMI, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [40789] = 21, + [40122] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(3011), 1, - anon_sym_RPAREN, - STATE(787), 1, + ACTIONS(3212), 1, + anon_sym_SEMI, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [40861] = 21, + [40194] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(3013), 1, - anon_sym_RPAREN, - STATE(787), 1, + ACTIONS(3214), 1, + anon_sym_SEMI, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [40933] = 21, + [40266] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(2021), 1, + sym_identifier, + ACTIONS(3166), 1, + anon_sym_enum, + STATE(1359), 1, + sym__type_specifier, + STATE(1366), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2003), 1, + sym_type_descriptor, + STATE(1265), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1891), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1104), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [40322] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(3015), 1, - anon_sym_SEMI, - STATE(787), 1, + ACTIONS(3216), 1, + anon_sym_RPAREN, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41005] = 21, + [40394] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(3017), 1, - anon_sym_RPAREN, - STATE(787), 1, + ACTIONS(3218), 1, + anon_sym_SEMI, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41077] = 21, + [40466] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(3019), 1, - anon_sym_SEMI, - STATE(787), 1, + ACTIONS(3220), 1, + anon_sym_RPAREN, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41149] = 21, + [40538] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, - anon_sym_COMMA, - ACTIONS(3021), 1, - anon_sym_RPAREN, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41221] = 21, + ACTIONS(3222), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [40608] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(3023), 1, - anon_sym_RPAREN, - STATE(787), 1, + ACTIONS(3224), 1, + anon_sym_SEMI, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41293] = 21, + [40680] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(3025), 1, - anon_sym_SEMI, - STATE(787), 1, + ACTIONS(3226), 1, + anon_sym_RPAREN, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41365] = 21, + [40752] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(3027), 1, + ACTIONS(3228), 1, anon_sym_SEMI, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41437] = 21, + [40824] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(3029), 1, + ACTIONS(3230), 1, anon_sym_RPAREN, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41509] = 20, + [40896] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - STATE(787), 1, + ACTIONS(3118), 1, + anon_sym_COMMA, + ACTIONS(3232), 1, + anon_sym_SEMI, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3031), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [41579] = 21, + [40968] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(3033), 1, + ACTIONS(3234), 1, anon_sym_RPAREN, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41651] = 21, + [41040] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(3035), 1, + ACTIONS(3236), 1, anon_sym_RPAREN, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41723] = 21, + [41112] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(3037), 1, + ACTIONS(3238), 1, anon_sym_SEMI, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41795] = 21, + [41184] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(3039), 1, + ACTIONS(3240), 1, anon_sym_RPAREN, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41867] = 21, + [41256] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(3041), 1, + ACTIONS(3242), 1, anon_sym_SEMI, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41939] = 21, + [41328] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(3043), 1, + ACTIONS(3244), 1, anon_sym_RPAREN, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42011] = 21, + [41400] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(3045), 1, + ACTIONS(3246), 1, anon_sym_RPAREN, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42083] = 21, + [41472] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(3047), 1, + ACTIONS(3248), 1, anon_sym_RPAREN, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42155] = 21, + [41544] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(3049), 1, + ACTIONS(3250), 1, anon_sym_RPAREN, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42227] = 21, + [41616] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(3051), 1, - anon_sym_SEMI, - STATE(787), 1, + ACTIONS(3252), 1, + anon_sym_RPAREN, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42299] = 20, + [41688] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - STATE(787), 1, + ACTIONS(3118), 1, + anon_sym_COMMA, + ACTIONS(3254), 1, + anon_sym_SEMI, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3053), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [42369] = 21, + [41760] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(3055), 1, + ACTIONS(3256), 1, anon_sym_SEMI, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42441] = 21, + [41832] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(3057), 1, - anon_sym_RPAREN, - STATE(787), 1, + ACTIONS(3258), 1, + anon_sym_SEMI, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42513] = 21, + [41904] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(3059), 1, + ACTIONS(3260), 1, anon_sym_SEMI, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42585] = 21, + [41976] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(3061), 1, - anon_sym_RPAREN, - STATE(787), 1, + ACTIONS(3262), 1, + anon_sym_SEMI, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42657] = 21, + [42048] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(3063), 1, - anon_sym_SEMI, - STATE(787), 1, + ACTIONS(3264), 1, + anon_sym_RPAREN, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42729] = 21, + [42120] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(3065), 1, - anon_sym_SEMI, - STATE(787), 1, + ACTIONS(3266), 1, + anon_sym_RPAREN, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42801] = 21, + [42192] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(3067), 1, + ACTIONS(3268), 1, anon_sym_RPAREN, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42873] = 21, + [42264] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(3069), 1, + ACTIONS(3270), 1, anon_sym_SEMI, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42945] = 21, + [42336] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(2913), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(3071), 1, - anon_sym_RPAREN, - STATE(787), 1, + ACTIONS(3272), 1, + anon_sym_SEMI, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43017] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3077), 1, - anon_sym___attribute__, - STATE(1029), 1, - sym_attribute_specifier, - ACTIONS(3075), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3073), 19, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [43056] = 13, + [42408] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(49), 1, sym_primitive_type, - ACTIONS(51), 1, - anon_sym_struct, ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, anon_sym_union, - ACTIONS(1805), 1, - sym_identifier, - ACTIONS(3080), 1, + ACTIONS(1893), 1, anon_sym_enum, - STATE(1239), 1, + ACTIONS(2021), 1, + sym_identifier, + STATE(1359), 1, sym__type_specifier, - STATE(1254), 1, + STATE(1366), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1972), 1, + STATE(2005), 1, sym_type_descriptor, - STATE(1205), 2, + STATE(1272), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1757), 4, + ACTIONS(1891), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1028), 5, + STATE(1104), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(45), 8, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -101935,285 +119032,242 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [43111] = 20, + [42464] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(3082), 1, - anon_sym_COLON, - STATE(787), 1, + ACTIONS(3118), 1, + anon_sym_COMMA, + ACTIONS(3274), 1, + anon_sym_SEMI, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2705), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2707), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2709), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [43180] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2230), 1, - anon_sym_RBRACK, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2484), 1, - anon_sym_LPAREN2, - ACTIONS(3088), 1, - anon_sym_SLASH, - ACTIONS(3090), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3092), 1, - anon_sym_AMP_AMP, - ACTIONS(3094), 1, - anon_sym_PIPE, - ACTIONS(3096), 1, - anon_sym_CARET, - ACTIONS(3098), 1, - anon_sym_AMP, - ACTIONS(3108), 1, - anon_sym_QMARK, - STATE(787), 1, - sym_argument_list, - ACTIONS(2282), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3084), 2, + ACTIONS(3019), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3086), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3100), 2, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3102), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3104), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3106), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43249] = 20, + [42536] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2194), 1, - anon_sym_RBRACK, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2484), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(3088), 1, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(3090), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3092), 1, - anon_sym_AMP_AMP, - ACTIONS(3094), 1, - anon_sym_PIPE, - ACTIONS(3096), 1, - anon_sym_CARET, - ACTIONS(3098), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(3108), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - STATE(787), 1, + ACTIONS(3118), 1, + anon_sym_COMMA, + ACTIONS(3276), 1, + anon_sym_RPAREN, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3084), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3086), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3100), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3102), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3104), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3106), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43318] = 20, + [42608] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2214), 1, - anon_sym_RBRACK, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2484), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(3088), 1, - anon_sym_SLASH, - ACTIONS(3090), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3092), 1, - anon_sym_AMP_AMP, - ACTIONS(3094), 1, - anon_sym_PIPE, - ACTIONS(3096), 1, - anon_sym_CARET, - ACTIONS(3098), 1, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, + anon_sym_SLASH, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(3108), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - STATE(787), 1, + ACTIONS(3118), 1, + anon_sym_COMMA, + ACTIONS(3278), 1, + anon_sym_RPAREN, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3084), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3086), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3100), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3102), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3104), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3106), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43387] = 20, + [42680] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(3110), 1, - anon_sym_COLON, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43456] = 13, + ACTIONS(3280), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [42750] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1759), 1, - anon_sym_enum, - ACTIONS(1805), 1, + ACTIONS(2057), 1, + anon_sym___based, + ACTIONS(2977), 1, sym_identifier, - STATE(1239), 1, - sym__type_specifier, - STATE(1254), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1915), 1, - sym_type_descriptor, - STATE(1190), 2, + ACTIONS(2979), 1, + anon_sym_LPAREN2, + ACTIONS(2981), 1, + anon_sym_STAR, + ACTIONS(2985), 1, + sym_primitive_type, + STATE(1539), 1, + sym__type_declarator, + STATE(2159), 1, + sym_ms_based_modifier, + STATE(1320), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1757), 4, + ACTIONS(2983), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 8, + STATE(1612), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -102222,129 +119276,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [43511] = 20, + [42803] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2374), 1, + ACTIONS(2284), 1, anon_sym_RBRACK, - ACTIONS(2484), 1, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(2748), 1, anon_sym_LPAREN2, - ACTIONS(3088), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3090), 1, + ACTIONS(3288), 1, anon_sym_PIPE_PIPE, - ACTIONS(3092), 1, + ACTIONS(3290), 1, anon_sym_AMP_AMP, - ACTIONS(3094), 1, + ACTIONS(3292), 1, anon_sym_PIPE, - ACTIONS(3096), 1, + ACTIONS(3294), 1, anon_sym_CARET, - ACTIONS(3098), 1, + ACTIONS(3296), 1, anon_sym_AMP, - ACTIONS(3108), 1, + ACTIONS(3306), 1, anon_sym_QMARK, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3084), 2, + ACTIONS(3282), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3086), 2, + ACTIONS(3284), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3100), 2, + ACTIONS(3298), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3102), 2, + ACTIONS(3300), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3104), 2, + ACTIONS(3302), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3106), 2, + ACTIONS(3304), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43580] = 20, + [42872] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2226), 1, - anon_sym_RBRACK, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2484), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(3088), 1, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(3090), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3092), 1, - anon_sym_AMP_AMP, - ACTIONS(3094), 1, - anon_sym_PIPE, - ACTIONS(3096), 1, - anon_sym_CARET, - ACTIONS(3098), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(3108), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - STATE(787), 1, + ACTIONS(3308), 1, + anon_sym_COLON, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3084), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3086), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3100), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3102), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3104), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3106), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43649] = 5, + [42941] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3116), 1, - anon_sym___attribute__, - STATE(1006), 1, - sym_attribute_specifier, - ACTIONS(3114), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2057), 1, + anon_sym___based, + ACTIONS(2977), 1, + sym_identifier, + ACTIONS(2979), 1, anon_sym_LPAREN2, + ACTIONS(2981), 1, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3112), 19, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, + ACTIONS(2985), 1, + sym_primitive_type, + STATE(1520), 1, + sym__type_declarator, + STATE(2159), 1, + sym_ms_based_modifier, + STATE(1345), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2983), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1612), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -102353,277 +119415,481 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + [42994] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1893), 1, + anon_sym_enum, + ACTIONS(2021), 1, sym_identifier, - [43688] = 20, + STATE(1319), 1, + sym__type_specifier, + STATE(1449), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1320), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(3310), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1104), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [43047] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, - anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(2636), 1, + anon_sym_RBRACK, + ACTIONS(2748), 1, + anon_sym_LPAREN2, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(2731), 1, + ACTIONS(3288), 1, anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, + ACTIONS(3290), 1, anon_sym_AMP_AMP, - ACTIONS(2735), 1, + ACTIONS(3292), 1, anon_sym_PIPE, - ACTIONS(2737), 1, + ACTIONS(3294), 1, anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3296), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3306), 1, anon_sym_QMARK, - ACTIONS(3119), 1, - anon_sym_RPAREN, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, + ACTIONS(3282), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3284), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3298), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3300), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3302), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3304), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43757] = 20, + [43116] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(3121), 1, + ACTIONS(3312), 1, anon_sym_COLON, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43826] = 20, + [43185] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2218), 1, + ACTIONS(2298), 1, anon_sym_RBRACK, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2484), 1, + ACTIONS(2748), 1, anon_sym_LPAREN2, - ACTIONS(3088), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3090), 1, + ACTIONS(3288), 1, anon_sym_PIPE_PIPE, - ACTIONS(3092), 1, + ACTIONS(3290), 1, anon_sym_AMP_AMP, - ACTIONS(3094), 1, + ACTIONS(3292), 1, anon_sym_PIPE, - ACTIONS(3096), 1, + ACTIONS(3294), 1, anon_sym_CARET, - ACTIONS(3098), 1, + ACTIONS(3296), 1, anon_sym_AMP, - ACTIONS(3108), 1, + ACTIONS(3306), 1, anon_sym_QMARK, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3084), 2, + ACTIONS(3282), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3086), 2, + ACTIONS(3284), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3100), 2, + ACTIONS(3298), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3102), 2, + ACTIONS(3300), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3104), 2, + ACTIONS(3302), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3106), 2, + ACTIONS(3304), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43895] = 20, + [43254] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2057), 1, + anon_sym___based, + ACTIONS(2977), 1, + sym_identifier, + ACTIONS(2979), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2701), 1, - anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, - anon_sym_AMP, - ACTIONS(2741), 1, - anon_sym_QMARK, - ACTIONS(3123), 1, - anon_sym_COLON, - STATE(787), 1, - sym_argument_list, - ACTIONS(2282), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(2981), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2703), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2705), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2707), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2709), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [43964] = 20, + ACTIONS(2985), 1, + sym_primitive_type, + STATE(1527), 1, + sym__type_declarator, + STATE(2159), 1, + sym_ms_based_modifier, + STATE(1320), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2983), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1612), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [43307] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2208), 1, - anon_sym_RBRACK, - ACTIONS(2280), 1, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1893), 1, + anon_sym_enum, + ACTIONS(2021), 1, + sym_identifier, + STATE(1258), 1, + sym__type_specifier, + STATE(1449), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1320), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(3310), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1104), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [43360] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(2021), 1, + sym_identifier, + ACTIONS(3166), 1, + anon_sym_enum, + STATE(1363), 1, + sym__type_specifier, + STATE(1366), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1320), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1891), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1104), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [43413] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1893), 1, + anon_sym_enum, + ACTIONS(2021), 1, + sym_identifier, + STATE(1341), 1, + sym__type_specifier, + STATE(1449), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1304), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(3310), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1104), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [43466] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2484), 1, + ACTIONS(2532), 1, + anon_sym_RBRACK, + ACTIONS(2748), 1, anon_sym_LPAREN2, - ACTIONS(3088), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3090), 1, + ACTIONS(3288), 1, anon_sym_PIPE_PIPE, - ACTIONS(3092), 1, + ACTIONS(3290), 1, anon_sym_AMP_AMP, - ACTIONS(3094), 1, + ACTIONS(3292), 1, anon_sym_PIPE, - ACTIONS(3096), 1, + ACTIONS(3294), 1, anon_sym_CARET, - ACTIONS(3098), 1, + ACTIONS(3296), 1, anon_sym_AMP, - ACTIONS(3108), 1, + ACTIONS(3306), 1, anon_sym_QMARK, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3084), 2, + ACTIONS(3282), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3086), 2, + ACTIONS(3284), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3100), 2, + ACTIONS(3298), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3102), 2, + ACTIONS(3300), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3104), 2, + ACTIONS(3302), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3106), 2, + ACTIONS(3304), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44033] = 5, + [43535] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3129), 1, - anon_sym___attribute__, - STATE(1001), 1, - sym_attribute_specifier, - ACTIONS(3127), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1893), 1, + anon_sym_enum, + ACTIONS(2021), 1, + sym_identifier, + STATE(1284), 1, + sym__type_specifier, + STATE(1449), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1335), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(3310), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1104), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [43588] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2057), 1, + anon_sym___based, + ACTIONS(2977), 1, + sym_identifier, + ACTIONS(2979), 1, anon_sym_LPAREN2, + ACTIONS(2981), 1, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3125), 19, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, + ACTIONS(2985), 1, + sym_primitive_type, + STATE(1534), 1, + sym__type_declarator, + STATE(2159), 1, + sym_ms_based_modifier, + STATE(1279), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2983), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1612), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -102632,113 +119898,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_identifier, - [44072] = 11, + [43641] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2484), 1, + ACTIONS(2057), 1, + anon_sym___based, + ACTIONS(2977), 1, + sym_identifier, + ACTIONS(2979), 1, anon_sym_LPAREN2, - ACTIONS(3088), 1, - anon_sym_SLASH, - STATE(787), 1, - sym_argument_list, - ACTIONS(2282), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3084), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3086), 2, + ACTIONS(2981), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2292), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2286), 11, - 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_RBRACK, - anon_sym_QMARK, - [44123] = 18, + ACTIONS(2985), 1, + sym_primitive_type, + STATE(1573), 1, + sym__type_declarator, + STATE(2159), 1, + sym_ms_based_modifier, + STATE(1320), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2983), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1612), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [43694] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2484), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(3088), 1, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(3092), 1, - anon_sym_AMP_AMP, - ACTIONS(3094), 1, - anon_sym_PIPE, - ACTIONS(3096), 1, - anon_sym_CARET, - ACTIONS(3098), 1, + ACTIONS(3021), 1, anon_sym_AMP, - STATE(787), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, + anon_sym_QMARK, + ACTIONS(3314), 1, + anon_sym_COMMA, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3084), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3086), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3100), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3102), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3104), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3106), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2286), 3, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_QMARK, - [44188] = 3, + [43763] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3134), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3132), 26, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1893), 1, + anon_sym_enum, + ACTIONS(2021), 1, + sym_identifier, + STATE(1363), 1, + sym__type_specifier, + STATE(1366), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1320), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1891), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, + STATE(1104), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -102747,558 +120029,898 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [44223] = 20, + [43816] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2210), 1, - anon_sym_RBRACK, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2484), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(3088), 1, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(3090), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3092), 1, - anon_sym_AMP_AMP, - ACTIONS(3094), 1, - anon_sym_PIPE, - ACTIONS(3096), 1, - anon_sym_CARET, - ACTIONS(3098), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(3108), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - STATE(787), 1, + ACTIONS(3316), 1, + anon_sym_COLON, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3084), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3086), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3100), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3102), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3104), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3106), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44292] = 12, + [43885] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2484), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(3088), 1, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, anon_sym_SLASH, - STATE(787), 1, - sym_argument_list, - ACTIONS(2282), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3084), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3086), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3106), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2292), 4, - anon_sym_PIPE, + ACTIONS(3021), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2286), 9, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3031), 1, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - [44345] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2484), 1, - anon_sym_LPAREN2, - ACTIONS(3088), 1, - anon_sym_SLASH, - STATE(787), 1, - sym_argument_list, - ACTIONS(2282), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2292), 2, + ACTIONS(3033), 1, anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3084), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3086), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3102), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3104), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3106), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2286), 7, - anon_sym_PIPE_PIPE, + ACTIONS(3035), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - [44402] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2276), 1, - anon_sym_LPAREN2, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2701), 1, - anon_sym_SLASH, - ACTIONS(2731), 1, + ACTIONS(3039), 1, anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, - anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(3136), 1, - anon_sym_COLON, - STATE(787), 1, + ACTIONS(3318), 1, + anon_sym_COMMA, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44471] = 15, + [43954] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2484), 1, + ACTIONS(2057), 1, + anon_sym___based, + ACTIONS(2977), 1, + sym_identifier, + ACTIONS(2979), 1, anon_sym_LPAREN2, - ACTIONS(3088), 1, - anon_sym_SLASH, - STATE(787), 1, - sym_argument_list, - ACTIONS(2282), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2292), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3084), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3086), 2, + ACTIONS(2981), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3100), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3102), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3104), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3106), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2286), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [44530] = 20, + ACTIONS(2985), 1, + sym_primitive_type, + STATE(1544), 1, + sym__type_declarator, + STATE(2159), 1, + sym_ms_based_modifier, + STATE(1320), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2983), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1612), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [44007] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2057), 1, + anon_sym___based, + ACTIONS(2977), 1, + sym_identifier, + ACTIONS(2979), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2981), 1, + anon_sym_STAR, + ACTIONS(2985), 1, + sym_primitive_type, + STATE(1504), 1, + sym__type_declarator, + STATE(2159), 1, + sym_ms_based_modifier, + STATE(1255), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2983), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1612), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [44060] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2502), 1, + anon_sym_LPAREN2, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(3138), 1, - anon_sym_RPAREN, - STATE(787), 1, + ACTIONS(3320), 1, + anon_sym_COLON, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44599] = 20, + [44129] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, - anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2282), 1, + anon_sym_RBRACK, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(2748), 1, + anon_sym_LPAREN2, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(2731), 1, + ACTIONS(3288), 1, anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, + ACTIONS(3290), 1, anon_sym_AMP_AMP, - ACTIONS(2735), 1, + ACTIONS(3292), 1, anon_sym_PIPE, - ACTIONS(2737), 1, + ACTIONS(3294), 1, anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3296), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3306), 1, anon_sym_QMARK, - ACTIONS(3140), 1, - anon_sym_COLON, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, + ACTIONS(3282), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3284), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3298), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3300), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3302), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3304), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44668] = 16, + [44198] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2292), 1, - anon_sym_PIPE, - ACTIONS(2484), 1, + ACTIONS(2057), 1, + anon_sym___based, + ACTIONS(2977), 1, + sym_identifier, + ACTIONS(2979), 1, anon_sym_LPAREN2, - ACTIONS(3088), 1, - anon_sym_SLASH, - ACTIONS(3098), 1, - anon_sym_AMP, - STATE(787), 1, - sym_argument_list, - ACTIONS(2282), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3084), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3086), 2, + ACTIONS(2981), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3100), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3102), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3104), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3106), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2286), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [44729] = 20, + ACTIONS(2985), 1, + sym_primitive_type, + STATE(1523), 1, + sym__type_declarator, + STATE(2159), 1, + sym_ms_based_modifier, + STATE(1320), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2983), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1612), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [44251] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2057), 1, + anon_sym___based, + ACTIONS(2977), 1, + sym_identifier, + ACTIONS(2979), 1, + anon_sym_LPAREN2, + ACTIONS(2981), 1, + anon_sym_STAR, + ACTIONS(2985), 1, + sym_primitive_type, + STATE(1525), 1, + sym__type_declarator, + STATE(2159), 1, + sym_ms_based_modifier, + STATE(1321), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2983), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1612), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [44304] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2057), 1, + anon_sym___based, + ACTIONS(2977), 1, + sym_identifier, + ACTIONS(2979), 1, + anon_sym_LPAREN2, + ACTIONS(2981), 1, + anon_sym_STAR, + ACTIONS(2985), 1, + sym_primitive_type, + STATE(1521), 1, + sym__type_declarator, + STATE(2159), 1, + sym_ms_based_modifier, + STATE(1320), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2983), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1612), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [44357] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2057), 1, + anon_sym___based, + ACTIONS(2977), 1, + sym_identifier, + ACTIONS(2979), 1, + anon_sym_LPAREN2, + ACTIONS(2981), 1, + anon_sym_STAR, + ACTIONS(2985), 1, + sym_primitive_type, + STATE(1530), 1, + sym__type_declarator, + STATE(2159), 1, + sym_ms_based_modifier, + STATE(1320), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2983), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1612), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [44410] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1893), 1, + anon_sym_enum, + ACTIONS(2021), 1, + sym_identifier, + STATE(1323), 1, + sym__type_specifier, + STATE(1449), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1324), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(3310), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1104), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [44463] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2057), 1, + anon_sym___based, + ACTIONS(2977), 1, + sym_identifier, + ACTIONS(2979), 1, + anon_sym_LPAREN2, + ACTIONS(2981), 1, + anon_sym_STAR, + ACTIONS(2985), 1, + sym_primitive_type, + STATE(1528), 1, + sym__type_declarator, + STATE(2159), 1, + sym_ms_based_modifier, + STATE(1298), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2983), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1612), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [44516] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2057), 1, + anon_sym___based, + ACTIONS(2977), 1, + sym_identifier, + ACTIONS(2979), 1, + anon_sym_LPAREN2, + ACTIONS(2981), 1, + anon_sym_STAR, + ACTIONS(2985), 1, + sym_primitive_type, + STATE(1545), 1, + sym__type_declarator, + STATE(2159), 1, + sym_ms_based_modifier, + STATE(1275), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2983), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1612), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [44569] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2394), 1, - anon_sym_RBRACK, - ACTIONS(2484), 1, + ACTIONS(2748), 1, anon_sym_LPAREN2, - ACTIONS(3088), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3090), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3092), 1, - anon_sym_AMP_AMP, - ACTIONS(3094), 1, - anon_sym_PIPE, - ACTIONS(3096), 1, - anon_sym_CARET, - ACTIONS(3098), 1, - anon_sym_AMP, - ACTIONS(3108), 1, - anon_sym_QMARK, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3084), 2, + ACTIONS(3282), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3086), 2, + ACTIONS(3284), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3100), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3102), 2, + ACTIONS(3304), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2598), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3104), 2, + ACTIONS(2596), 9, + 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, - ACTIONS(3106), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [44798] = 20, + anon_sym_RBRACK, + anon_sym_QMARK, + [44622] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1893), 1, + anon_sym_enum, + ACTIONS(2021), 1, + sym_identifier, + STATE(1323), 1, + sym__type_specifier, + STATE(1449), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1320), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(3310), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1104), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [44675] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2057), 1, + anon_sym___based, + ACTIONS(2977), 1, + sym_identifier, + ACTIONS(2979), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2981), 1, + anon_sym_STAR, + ACTIONS(2985), 1, + sym_primitive_type, + STATE(1517), 1, + sym__type_declarator, + STATE(2159), 1, + sym_ms_based_modifier, + STATE(1289), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2983), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1612), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [44728] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2057), 1, + anon_sym___based, + ACTIONS(2977), 1, + sym_identifier, + ACTIONS(2979), 1, + anon_sym_LPAREN2, + ACTIONS(2981), 1, + anon_sym_STAR, + ACTIONS(2985), 1, + sym_primitive_type, + STATE(1508), 1, + sym__type_declarator, + STATE(2159), 1, + sym_ms_based_modifier, + STATE(1320), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2983), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1612), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [44781] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2502), 1, + anon_sym_LPAREN2, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(3142), 1, + ACTIONS(3322), 1, anon_sym_COLON, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44867] = 17, + [44850] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1893), 1, + anon_sym_enum, + ACTIONS(2021), 1, + sym_identifier, + STATE(1285), 1, + sym__type_specifier, + STATE(1449), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1287), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(3310), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1104), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [44903] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2292), 1, - anon_sym_PIPE, - ACTIONS(2484), 1, + ACTIONS(2748), 1, anon_sym_LPAREN2, - ACTIONS(3088), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3096), 1, - anon_sym_CARET, - ACTIONS(3098), 1, - anon_sym_AMP, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3084), 2, + ACTIONS(3282), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3086), 2, + ACTIONS(3284), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3100), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3102), 2, + ACTIONS(2526), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3104), 2, + ACTIONS(2524), 11, + 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, - ACTIONS(3106), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2286), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_RBRACK, anon_sym_QMARK, - [44930] = 13, + [44954] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(49), 1, sym_primitive_type, - ACTIONS(51), 1, - anon_sym_struct, ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, anon_sym_union, - ACTIONS(1759), 1, + ACTIONS(1893), 1, anon_sym_enum, - ACTIONS(1805), 1, + ACTIONS(2021), 1, sym_identifier, - STATE(1239), 1, + STATE(1333), 1, sym__type_specifier, - STATE(1254), 1, + STATE(1449), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1914), 1, - sym_type_descriptor, - STATE(1190), 2, + STATE(1320), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1757), 4, + ACTIONS(3310), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1028), 5, + STATE(1104), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(45), 8, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -103307,135 +120929,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [44985] = 17, + [45007] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2484), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(3088), 1, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(3094), 1, - anon_sym_PIPE, - ACTIONS(3096), 1, - anon_sym_CARET, - ACTIONS(3098), 1, + ACTIONS(3021), 1, anon_sym_AMP, - STATE(787), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, + anon_sym_QMARK, + ACTIONS(3324), 1, + anon_sym_COLON, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3084), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3086), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3100), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3102), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3104), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3106), 2, + ACTIONS(3029), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [45076] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(2748), 1, + anon_sym_LPAREN2, + ACTIONS(3286), 1, + anon_sym_SLASH, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3282), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3284), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3304), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2286), 4, + ACTIONS(2526), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2524), 9, 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_RBRACK, anon_sym_QMARK, - [45048] = 20, + [45129] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, - anon_sym_LPAREN2, ACTIONS(2280), 1, + anon_sym_RBRACK, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(2748), 1, + anon_sym_LPAREN2, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(2731), 1, + ACTIONS(3288), 1, anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, + ACTIONS(3290), 1, anon_sym_AMP_AMP, - ACTIONS(2735), 1, + ACTIONS(3292), 1, anon_sym_PIPE, - ACTIONS(2737), 1, + ACTIONS(3294), 1, anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3296), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3306), 1, anon_sym_QMARK, - ACTIONS(3144), 1, - anon_sym_COLON, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, + ACTIONS(3282), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3284), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3298), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3300), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3302), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3304), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45117] = 13, + [45198] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(49), 1, sym_primitive_type, - ACTIONS(51), 1, - anon_sym_struct, ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, anon_sym_union, - ACTIONS(1805), 1, - sym_identifier, - ACTIONS(3080), 1, + ACTIONS(1893), 1, anon_sym_enum, - STATE(1239), 1, + ACTIONS(2021), 1, + sym_identifier, + STATE(1331), 1, sym__type_specifier, - STATE(1254), 1, + STATE(1449), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1991), 1, - sym_type_descriptor, - STATE(1205), 2, + STATE(1259), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1757), 4, + ACTIONS(3310), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1028), 5, + STATE(1104), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(45), 8, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -103444,559 +121109,675 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45172] = 10, + [45251] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2484), 1, + ACTIONS(2057), 1, + anon_sym___based, + ACTIONS(2977), 1, + sym_identifier, + ACTIONS(2979), 1, anon_sym_LPAREN2, - ACTIONS(3088), 1, - anon_sym_SLASH, - STATE(787), 1, - sym_argument_list, - ACTIONS(2282), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3086), 2, + ACTIONS(2981), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2292), 6, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2286), 11, - 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_RBRACK, - anon_sym_QMARK, - [45221] = 20, + ACTIONS(2985), 1, + sym_primitive_type, + STATE(1513), 1, + sym__type_declarator, + STATE(2159), 1, + sym_ms_based_modifier, + STATE(1320), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2983), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1612), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [45304] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2220), 1, - anon_sym_RBRACK, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2484), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(3088), 1, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(3090), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3092), 1, - anon_sym_AMP_AMP, - ACTIONS(3094), 1, - anon_sym_PIPE, - ACTIONS(3096), 1, - anon_sym_CARET, - ACTIONS(3098), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(3108), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - STATE(787), 1, + ACTIONS(3326), 1, + anon_sym_COLON, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3084), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3086), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3100), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3102), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3104), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3106), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45290] = 20, + [45373] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, + ACTIONS(2286), 1, + anon_sym_RBRACK, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2484), 1, + ACTIONS(2748), 1, anon_sym_LPAREN2, - ACTIONS(3088), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3090), 1, + ACTIONS(3288), 1, anon_sym_PIPE_PIPE, - ACTIONS(3092), 1, + ACTIONS(3290), 1, anon_sym_AMP_AMP, - ACTIONS(3094), 1, + ACTIONS(3292), 1, anon_sym_PIPE, - ACTIONS(3096), 1, + ACTIONS(3294), 1, anon_sym_CARET, - ACTIONS(3098), 1, + ACTIONS(3296), 1, anon_sym_AMP, - ACTIONS(3108), 1, + ACTIONS(3306), 1, anon_sym_QMARK, - ACTIONS(3146), 1, - anon_sym_RBRACK, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3084), 2, + ACTIONS(3282), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3086), 2, + ACTIONS(3284), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3100), 2, + ACTIONS(3298), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3102), 2, + ACTIONS(3300), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3104), 2, + ACTIONS(3302), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3106), 2, + ACTIONS(3304), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45359] = 20, + [45442] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2484), 1, + ACTIONS(2748), 1, anon_sym_LPAREN2, - ACTIONS(3088), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3090), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3092), 1, - anon_sym_AMP_AMP, - ACTIONS(3094), 1, - anon_sym_PIPE, - ACTIONS(3096), 1, - anon_sym_CARET, - ACTIONS(3098), 1, - anon_sym_AMP, - ACTIONS(3108), 1, - anon_sym_QMARK, - ACTIONS(3148), 1, - anon_sym_RBRACK, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3084), 2, + ACTIONS(2526), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3282), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3086), 2, + ACTIONS(3284), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3100), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3102), 2, + ACTIONS(3300), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3104), 2, + ACTIONS(3302), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3106), 2, + ACTIONS(3304), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45428] = 20, + ACTIONS(2524), 7, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + [45499] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2306), 1, anon_sym_RBRACK, - ACTIONS(2484), 1, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(2748), 1, anon_sym_LPAREN2, - ACTIONS(3088), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3090), 1, + ACTIONS(3288), 1, anon_sym_PIPE_PIPE, - ACTIONS(3092), 1, + ACTIONS(3290), 1, anon_sym_AMP_AMP, - ACTIONS(3094), 1, + ACTIONS(3292), 1, anon_sym_PIPE, - ACTIONS(3096), 1, + ACTIONS(3294), 1, anon_sym_CARET, - ACTIONS(3098), 1, + ACTIONS(3296), 1, anon_sym_AMP, - ACTIONS(3108), 1, + ACTIONS(3306), 1, anon_sym_QMARK, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3084), 2, + ACTIONS(3282), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3086), 2, + ACTIONS(3284), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3100), 2, + ACTIONS(3298), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3102), 2, + ACTIONS(3300), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3104), 2, + ACTIONS(3302), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3106), 2, + ACTIONS(3304), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45497] = 20, + [45568] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, - anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(2748), 1, + anon_sym_LPAREN2, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, - anon_sym_AMP, - ACTIONS(2741), 1, - anon_sym_QMARK, - ACTIONS(3150), 1, - anon_sym_COMMA, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, + ACTIONS(2526), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3282), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3284), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3298), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3300), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3302), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3304), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45566] = 20, + ACTIONS(2524), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + [45627] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2196), 1, - anon_sym_RBRACK, - ACTIONS(2280), 1, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1893), 1, + anon_sym_enum, + ACTIONS(2021), 1, + sym_identifier, + STATE(1280), 1, + sym__type_specifier, + STATE(1449), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1320), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(3310), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1104), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [45680] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2484), 1, + ACTIONS(2748), 1, anon_sym_LPAREN2, - ACTIONS(3088), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3090), 1, + ACTIONS(3288), 1, anon_sym_PIPE_PIPE, - ACTIONS(3092), 1, + ACTIONS(3290), 1, anon_sym_AMP_AMP, - ACTIONS(3094), 1, + ACTIONS(3292), 1, anon_sym_PIPE, - ACTIONS(3096), 1, + ACTIONS(3294), 1, anon_sym_CARET, - ACTIONS(3098), 1, + ACTIONS(3296), 1, anon_sym_AMP, - ACTIONS(3108), 1, + ACTIONS(3306), 1, anon_sym_QMARK, - STATE(787), 1, + ACTIONS(3328), 1, + anon_sym_RBRACK, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3084), 2, + ACTIONS(3282), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3086), 2, + ACTIONS(3284), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3100), 2, + ACTIONS(3298), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3102), 2, + ACTIONS(3300), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3104), 2, + ACTIONS(3302), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3106), 2, + ACTIONS(3304), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45635] = 20, + [45749] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(3017), 1, anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3021), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, anon_sym_QMARK, - ACTIONS(3152), 1, - anon_sym_COLON, - STATE(787), 1, + ACTIONS(3330), 1, + anon_sym_RPAREN, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3015), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3025), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3027), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45704] = 12, + [45818] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2057), 1, + anon_sym___based, + ACTIONS(2977), 1, + sym_identifier, + ACTIONS(2979), 1, + anon_sym_LPAREN2, + ACTIONS(2981), 1, + anon_sym_STAR, + ACTIONS(2985), 1, + sym_primitive_type, + STATE(1515), 1, + sym__type_declarator, + STATE(2159), 1, + sym_ms_based_modifier, + STATE(1336), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2983), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1612), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [45871] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2484), 1, + ACTIONS(2526), 1, + anon_sym_PIPE, + ACTIONS(2748), 1, anon_sym_LPAREN2, - ACTIONS(3088), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - STATE(787), 1, + ACTIONS(3296), 1, + anon_sym_AMP, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3084), 2, + ACTIONS(3282), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3086), 2, + ACTIONS(3284), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3106), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2342), 4, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3298), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3300), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2340), 9, + ACTIONS(3302), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3304), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2524), 5, 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_RBRACK, anon_sym_QMARK, - [45757] = 20, + [45932] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, - anon_sym_LPAREN2, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, - anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, + ACTIONS(2526), 1, anon_sym_PIPE, - ACTIONS(2737), 1, + ACTIONS(2748), 1, + anon_sym_LPAREN2, + ACTIONS(3286), 1, + anon_sym_SLASH, + ACTIONS(3294), 1, anon_sym_CARET, - ACTIONS(2739), 1, + ACTIONS(3296), 1, anon_sym_AMP, - ACTIONS(2741), 1, - anon_sym_QMARK, - ACTIONS(3154), 1, - anon_sym_COLON, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2697), 2, + ACTIONS(3282), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2699), 2, + ACTIONS(3284), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2703), 2, + ACTIONS(3298), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2705), 2, + ACTIONS(3300), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2707), 2, + ACTIONS(3302), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2709), 2, + ACTIONS(3304), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45826] = 20, + ACTIONS(2524), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [45995] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2228), 1, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1893), 1, + anon_sym_enum, + ACTIONS(2021), 1, + sym_identifier, + STATE(1269), 1, + sym__type_specifier, + STATE(1449), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1316), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(3310), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1104), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [46048] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2302), 1, anon_sym_RBRACK, - ACTIONS(2280), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - ACTIONS(2484), 1, + ACTIONS(2748), 1, anon_sym_LPAREN2, - ACTIONS(3088), 1, + ACTIONS(3286), 1, anon_sym_SLASH, - ACTIONS(3090), 1, + ACTIONS(3288), 1, anon_sym_PIPE_PIPE, - ACTIONS(3092), 1, + ACTIONS(3290), 1, anon_sym_AMP_AMP, - ACTIONS(3094), 1, + ACTIONS(3292), 1, anon_sym_PIPE, - ACTIONS(3096), 1, + ACTIONS(3294), 1, anon_sym_CARET, - ACTIONS(3098), 1, + ACTIONS(3296), 1, anon_sym_AMP, - ACTIONS(3108), 1, + ACTIONS(3306), 1, anon_sym_QMARK, - STATE(787), 1, + STATE(916), 1, sym_argument_list, - ACTIONS(2282), 2, + ACTIONS(2508), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, + ACTIONS(2510), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3084), 2, + ACTIONS(3282), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3086), 2, + ACTIONS(3284), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3100), 2, + ACTIONS(3298), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3102), 2, + ACTIONS(3300), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3104), 2, + ACTIONS(3302), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3106), 2, + ACTIONS(3304), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45895] = 12, + [46117] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(49), 1, sym_primitive_type, - ACTIONS(51), 1, - anon_sym_struct, ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, anon_sym_union, - ACTIONS(1759), 1, + ACTIONS(1893), 1, anon_sym_enum, - ACTIONS(1805), 1, + ACTIONS(2021), 1, sym_identifier, - STATE(1242), 1, + STATE(1307), 1, sym__type_specifier, - STATE(1254), 1, + STATE(1449), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1226), 2, + STATE(1327), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1757), 4, + ACTIONS(3310), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1028), 5, + STATE(1104), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(45), 8, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -104005,78 +121786,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45947] = 12, + [46170] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, - anon_sym___based, - ACTIONS(2618), 1, - sym_identifier, - ACTIONS(2620), 1, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(2748), 1, anon_sym_LPAREN2, - ACTIONS(2622), 1, + ACTIONS(3286), 1, + anon_sym_SLASH, + ACTIONS(3292), 1, + anon_sym_PIPE, + ACTIONS(3294), 1, + anon_sym_CARET, + ACTIONS(3296), 1, + anon_sym_AMP, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3282), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3284), 2, anon_sym_STAR, - ACTIONS(2626), 1, - sym_primitive_type, - STATE(1430), 1, - sym__type_declarator, - STATE(1895), 1, - sym_ms_based_modifier, - STATE(1226), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2624), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1478), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [45999] = 12, + anon_sym_PERCENT, + ACTIONS(3298), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3300), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3302), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3304), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2524), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [46233] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(2748), 1, + anon_sym_LPAREN2, + ACTIONS(3286), 1, + anon_sym_SLASH, + ACTIONS(3290), 1, + anon_sym_AMP_AMP, + ACTIONS(3292), 1, + anon_sym_PIPE, + ACTIONS(3294), 1, + anon_sym_CARET, + ACTIONS(3296), 1, + anon_sym_AMP, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3282), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3284), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3298), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3300), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3302), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3304), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2524), 3, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + [46298] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2618), 1, + ACTIONS(2977), 1, sym_identifier, - ACTIONS(2620), 1, + ACTIONS(2979), 1, anon_sym_LPAREN2, - ACTIONS(2622), 1, + ACTIONS(2981), 1, anon_sym_STAR, - ACTIONS(2626), 1, + ACTIONS(2985), 1, sym_primitive_type, - STATE(1421), 1, + STATE(1519), 1, sym__type_declarator, - STATE(1895), 1, + STATE(2159), 1, sym_ms_based_modifier, - STATE(1195), 2, + STATE(1320), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2624), 4, + ACTIONS(2983), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1478), 5, + STATE(1612), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(45), 8, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -104085,38 +121920,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46051] = 12, + [46351] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(49), 1, sym_primitive_type, - ACTIONS(51), 1, - anon_sym_struct, ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, anon_sym_union, - ACTIONS(1759), 1, + ACTIONS(1893), 1, anon_sym_enum, - ACTIONS(1805), 1, + ACTIONS(2021), 1, sym_identifier, - STATE(1199), 1, + STATE(1307), 1, sym__type_specifier, - STATE(1347), 1, + STATE(1449), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1200), 2, + STATE(1320), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3156), 4, + ACTIONS(3310), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1028), 5, + STATE(1104), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(45), 8, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -104125,38 +121961,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46103] = 12, + [46404] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2618), 1, + ACTIONS(2977), 1, sym_identifier, - ACTIONS(2620), 1, + ACTIONS(2979), 1, anon_sym_LPAREN2, - ACTIONS(2622), 1, + ACTIONS(2981), 1, anon_sym_STAR, - ACTIONS(2626), 1, + ACTIONS(2985), 1, sym_primitive_type, - STATE(1428), 1, + STATE(1507), 1, sym__type_declarator, - STATE(1895), 1, + STATE(2159), 1, sym_ms_based_modifier, - STATE(1226), 2, + STATE(1320), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2624), 4, + ACTIONS(2983), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1478), 5, + STATE(1612), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(45), 8, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -104165,118 +122002,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46155] = 12, + [46457] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, - anon_sym___based, - ACTIONS(2618), 1, - sym_identifier, - ACTIONS(2620), 1, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(2748), 1, anon_sym_LPAREN2, - ACTIONS(2622), 1, + ACTIONS(3286), 1, + anon_sym_SLASH, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3284), 2, anon_sym_STAR, - ACTIONS(2626), 1, - sym_primitive_type, - STATE(1444), 1, - sym__type_declarator, - STATE(1895), 1, - sym_ms_based_modifier, - STATE(1226), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2624), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1478), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [46207] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1759), 1, - anon_sym_enum, - ACTIONS(1805), 1, - sym_identifier, - STATE(1222), 1, - sym__type_specifier, - STATE(1347), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1226), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3156), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [46259] = 12, + anon_sym_PERCENT, + ACTIONS(2526), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2524), 11, + 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_RBRACK, + anon_sym_QMARK, + [46506] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2618), 1, + ACTIONS(2977), 1, sym_identifier, - ACTIONS(2620), 1, + ACTIONS(2979), 1, anon_sym_LPAREN2, - ACTIONS(2622), 1, + ACTIONS(2981), 1, anon_sym_STAR, - ACTIONS(2626), 1, + ACTIONS(2985), 1, sym_primitive_type, - STATE(1440), 1, + STATE(1529), 1, sym__type_declarator, - STATE(1895), 1, + STATE(2159), 1, sym_ms_based_modifier, - STATE(1207), 2, + STATE(1315), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2624), 4, + ACTIONS(2983), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1478), 5, + STATE(1612), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(45), 8, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -104285,38 +122082,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46311] = 12, + [46559] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, - anon_sym___based, - ACTIONS(2618), 1, - sym_identifier, - ACTIONS(2620), 1, - anon_sym_LPAREN2, - ACTIONS(2622), 1, - anon_sym_STAR, - ACTIONS(2626), 1, - sym_primitive_type, - STATE(1425), 1, - sym__type_declarator, - STATE(1895), 1, - sym_ms_based_modifier, - STATE(1226), 2, + STATE(1320), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2624), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1478), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 8, + ACTIONS(2416), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3332), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -104325,158 +122105,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46363] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1879), 1, + ACTIONS(2414), 10, anon_sym___based, - ACTIONS(2618), 1, - sym_identifier, - ACTIONS(2620), 1, - anon_sym_LPAREN2, - ACTIONS(2622), 1, - anon_sym_STAR, - ACTIONS(2626), 1, - sym_primitive_type, - STATE(1441), 1, - sym__type_declarator, - STATE(1895), 1, - sym_ms_based_modifier, - STATE(1210), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2624), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1478), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [46415] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, sym_primitive_type, - ACTIONS(51), 1, + anon_sym_enum, anon_sym_struct, - ACTIONS(53), 1, anon_sym_union, - ACTIONS(1759), 1, - anon_sym_enum, - ACTIONS(1805), 1, sym_identifier, - STATE(1212), 1, - sym__type_specifier, - STATE(1347), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1226), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3156), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [46467] = 12, + [46598] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2618), 1, + ACTIONS(2977), 1, sym_identifier, - ACTIONS(2620), 1, + ACTIONS(2979), 1, anon_sym_LPAREN2, - ACTIONS(2622), 1, + ACTIONS(2981), 1, anon_sym_STAR, - ACTIONS(2626), 1, + ACTIONS(2985), 1, sym_primitive_type, - STATE(1434), 1, + STATE(1538), 1, sym__type_declarator, - STATE(1895), 1, + STATE(2159), 1, sym_ms_based_modifier, - STATE(1215), 2, + STATE(1320), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2624), 4, + ACTIONS(2983), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1478), 5, + STATE(1612), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [46519] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1759), 1, - anon_sym_enum, - ACTIONS(1805), 1, - sym_identifier, - STATE(1208), 1, - sym__type_specifier, - STATE(1347), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1196), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3156), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 8, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -104485,38 +122157,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46571] = 12, + [46651] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2618), 1, + ACTIONS(2977), 1, sym_identifier, - ACTIONS(2620), 1, + ACTIONS(2979), 1, anon_sym_LPAREN2, - ACTIONS(2622), 1, + ACTIONS(2981), 1, anon_sym_STAR, - ACTIONS(2626), 1, + ACTIONS(2985), 1, sym_primitive_type, - STATE(1442), 1, + STATE(1518), 1, sym__type_declarator, - STATE(1895), 1, + STATE(2159), 1, sym_ms_based_modifier, - STATE(1206), 2, + STATE(1320), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2624), 4, + ACTIONS(2983), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1478), 5, + STATE(1612), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(45), 8, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -104525,38 +122198,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46623] = 12, + [46704] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2618), 1, + ACTIONS(2977), 1, sym_identifier, - ACTIONS(2620), 1, + ACTIONS(2979), 1, anon_sym_LPAREN2, - ACTIONS(2622), 1, + ACTIONS(2981), 1, anon_sym_STAR, - ACTIONS(2626), 1, + ACTIONS(2985), 1, sym_primitive_type, - STATE(1419), 1, + STATE(1510), 1, sym__type_declarator, - STATE(1895), 1, + STATE(2159), 1, sym_ms_based_modifier, - STATE(1226), 2, + STATE(1348), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2624), 4, + ACTIONS(2983), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1478), 5, + STATE(1612), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(45), 8, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -104565,38 +122239,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46675] = 12, + [46757] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(49), 1, sym_primitive_type, - ACTIONS(51), 1, - anon_sym_struct, ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, anon_sym_union, - ACTIONS(1805), 1, - sym_identifier, - ACTIONS(3080), 1, + ACTIONS(1893), 1, anon_sym_enum, - STATE(1242), 1, + ACTIONS(2021), 1, + sym_identifier, + STATE(1342), 1, sym__type_specifier, - STATE(1254), 1, + STATE(1449), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1226), 2, + STATE(1320), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1757), 4, + ACTIONS(3310), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1028), 5, + STATE(1104), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(45), 8, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -104605,118 +122280,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46727] = 12, + [46810] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, - anon_sym___based, - ACTIONS(2618), 1, - sym_identifier, - ACTIONS(2620), 1, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(2640), 1, + anon_sym_RBRACK, + ACTIONS(2748), 1, anon_sym_LPAREN2, - ACTIONS(2622), 1, + ACTIONS(3286), 1, + anon_sym_SLASH, + ACTIONS(3288), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3290), 1, + anon_sym_AMP_AMP, + ACTIONS(3292), 1, + anon_sym_PIPE, + ACTIONS(3294), 1, + anon_sym_CARET, + ACTIONS(3296), 1, + anon_sym_AMP, + ACTIONS(3306), 1, + anon_sym_QMARK, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3282), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3284), 2, anon_sym_STAR, - ACTIONS(2626), 1, - sym_primitive_type, - STATE(1432), 1, - sym__type_declarator, - STATE(1895), 1, - sym_ms_based_modifier, - STATE(1226), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2624), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1478), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [46779] = 12, + anon_sym_PERCENT, + ACTIONS(3298), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3300), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3302), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3304), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [46879] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, - anon_sym___based, - ACTIONS(2618), 1, - sym_identifier, - ACTIONS(2620), 1, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(2748), 1, anon_sym_LPAREN2, - ACTIONS(2622), 1, + ACTIONS(3286), 1, + anon_sym_SLASH, + ACTIONS(3288), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3290), 1, + anon_sym_AMP_AMP, + ACTIONS(3292), 1, + anon_sym_PIPE, + ACTIONS(3294), 1, + anon_sym_CARET, + ACTIONS(3296), 1, + anon_sym_AMP, + ACTIONS(3306), 1, + anon_sym_QMARK, + ACTIONS(3335), 1, + anon_sym_RBRACK, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3282), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3284), 2, anon_sym_STAR, - ACTIONS(2626), 1, - sym_primitive_type, - STATE(1447), 1, - sym__type_declarator, - STATE(1895), 1, - sym_ms_based_modifier, - STATE(1226), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2624), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1478), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [46831] = 12, + anon_sym_PERCENT, + ACTIONS(3298), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3300), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3302), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3304), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [46948] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, - anon_sym___based, - ACTIONS(2618), 1, - sym_identifier, - ACTIONS(2620), 1, - anon_sym_LPAREN2, - ACTIONS(2622), 1, - anon_sym_STAR, - ACTIONS(2626), 1, + ACTIONS(49), 1, sym_primitive_type, - STATE(1422), 1, - sym__type_declarator, - STATE(1895), 1, - sym_ms_based_modifier, - STATE(1191), 2, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1893), 1, + anon_sym_enum, + ACTIONS(2021), 1, + sym_identifier, + STATE(1276), 1, + sym__type_specifier, + STATE(1449), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1320), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2624), 4, + ACTIONS(3310), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1478), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 8, + STATE(1104), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -104725,38 +122419,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46883] = 12, + [47001] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(2502), 1, + anon_sym_LPAREN2, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, + anon_sym_SLASH, + ACTIONS(3021), 1, + anon_sym_AMP, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, + anon_sym_QMARK, + ACTIONS(3337), 1, + anon_sym_COLON, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3015), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3025), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3027), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3029), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47070] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, sym_primitive_type, - ACTIONS(51), 1, - anon_sym_struct, ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, anon_sym_union, - ACTIONS(1759), 1, + ACTIONS(1893), 1, anon_sym_enum, - ACTIONS(1805), 1, + ACTIONS(2021), 1, sym_identifier, - STATE(1211), 1, + STATE(1280), 1, sym__type_specifier, - STATE(1347), 1, + STATE(1449), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1217), 2, + STATE(1293), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3156), 4, + ACTIONS(3310), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1028), 5, + STATE(1104), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(45), 8, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -104765,78 +122509,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46935] = 12, + [47123] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, - anon_sym___based, - ACTIONS(2618), 1, - sym_identifier, - ACTIONS(2620), 1, + ACTIONS(2288), 1, + anon_sym_RBRACK, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(2748), 1, anon_sym_LPAREN2, - ACTIONS(2622), 1, + ACTIONS(3286), 1, + anon_sym_SLASH, + ACTIONS(3288), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3290), 1, + anon_sym_AMP_AMP, + ACTIONS(3292), 1, + anon_sym_PIPE, + ACTIONS(3294), 1, + anon_sym_CARET, + ACTIONS(3296), 1, + anon_sym_AMP, + ACTIONS(3306), 1, + anon_sym_QMARK, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3282), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3284), 2, anon_sym_STAR, - ACTIONS(2626), 1, - sym_primitive_type, - STATE(1420), 1, - sym__type_declarator, - STATE(1895), 1, - sym_ms_based_modifier, - STATE(1226), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2624), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1478), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [46987] = 12, + anon_sym_PERCENT, + ACTIONS(3298), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3300), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3302), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3304), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47192] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2618), 1, + ACTIONS(2977), 1, sym_identifier, - ACTIONS(2620), 1, + ACTIONS(2979), 1, anon_sym_LPAREN2, - ACTIONS(2622), 1, + ACTIONS(2981), 1, anon_sym_STAR, - ACTIONS(2626), 1, + ACTIONS(2985), 1, sym_primitive_type, - STATE(1423), 1, + STATE(1505), 1, sym__type_declarator, - STATE(1895), 1, + STATE(2159), 1, sym_ms_based_modifier, - STATE(1223), 2, + STATE(1317), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2624), 4, + ACTIONS(2983), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1478), 5, + STATE(1612), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(45), 8, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -104845,38 +122599,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47039] = 12, + [47245] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2502), 1, + anon_sym_LPAREN2, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, + anon_sym_SLASH, + ACTIONS(3021), 1, + anon_sym_AMP, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, + anon_sym_QMARK, + ACTIONS(3339), 1, + anon_sym_COLON, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3015), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3025), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3027), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3029), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47314] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2618), 1, + ACTIONS(2977), 1, sym_identifier, - ACTIONS(2620), 1, + ACTIONS(2979), 1, anon_sym_LPAREN2, - ACTIONS(2622), 1, + ACTIONS(2981), 1, anon_sym_STAR, - ACTIONS(2626), 1, + ACTIONS(2985), 1, sym_primitive_type, - STATE(1436), 1, + STATE(1506), 1, sym__type_declarator, - STATE(1895), 1, + STATE(2159), 1, sym_ms_based_modifier, - STATE(1198), 2, + STATE(1263), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2624), 4, + ACTIONS(2983), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1478), 5, + STATE(1612), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(45), 8, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -104885,38 +122689,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47091] = 12, + [47367] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(49), 1, sym_primitive_type, - ACTIONS(51), 1, - anon_sym_struct, ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, anon_sym_union, - ACTIONS(1759), 1, + ACTIONS(1893), 1, anon_sym_enum, - ACTIONS(1805), 1, + ACTIONS(2021), 1, sym_identifier, - STATE(1192), 1, - sym__type_specifier, STATE(1347), 1, + sym__type_specifier, + STATE(1449), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1221), 2, + STATE(1320), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3156), 4, + ACTIONS(3310), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1028), 5, + STATE(1104), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(45), 8, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -104925,38 +122730,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47143] = 12, + [47420] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(49), 1, sym_primitive_type, - ACTIONS(51), 1, - anon_sym_struct, ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, anon_sym_union, - ACTIONS(1759), 1, + ACTIONS(1893), 1, anon_sym_enum, - ACTIONS(1805), 1, + ACTIONS(2021), 1, sym_identifier, - STATE(1216), 1, + STATE(1288), 1, sym__type_specifier, - STATE(1347), 1, + STATE(1449), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1226), 2, + STATE(1320), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3156), 4, + ACTIONS(3310), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1028), 5, + STATE(1104), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(45), 8, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -104965,38 +122771,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47195] = 12, + [47473] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2618), 1, + ACTIONS(2977), 1, sym_identifier, - ACTIONS(2620), 1, + ACTIONS(2979), 1, anon_sym_LPAREN2, - ACTIONS(2622), 1, + ACTIONS(2981), 1, anon_sym_STAR, - ACTIONS(2626), 1, + ACTIONS(2985), 1, sym_primitive_type, - STATE(1445), 1, + STATE(1535), 1, sym__type_declarator, - STATE(1895), 1, + STATE(2159), 1, sym_ms_based_modifier, - STATE(1226), 2, + STATE(1320), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2624), 4, + ACTIONS(2983), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1478), 5, + STATE(1612), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(45), 8, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -105005,78 +122812,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47247] = 12, + [47526] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, - anon_sym___based, - ACTIONS(2618), 1, - sym_identifier, - ACTIONS(2620), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - ACTIONS(2622), 1, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, + anon_sym_SLASH, + ACTIONS(3021), 1, + anon_sym_AMP, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, + anon_sym_QMARK, + ACTIONS(3341), 1, + anon_sym_COLON, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3015), 2, anon_sym_STAR, - ACTIONS(2626), 1, - sym_primitive_type, - STATE(1438), 1, - sym__type_declarator, - STATE(1895), 1, - sym_ms_based_modifier, - STATE(1218), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2624), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1478), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [47299] = 12, + anon_sym_PERCENT, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3025), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3027), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3029), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47595] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(2290), 1, + anon_sym_RBRACK, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(2748), 1, + anon_sym_LPAREN2, + ACTIONS(3286), 1, + anon_sym_SLASH, + ACTIONS(3288), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3290), 1, + anon_sym_AMP_AMP, + ACTIONS(3292), 1, + anon_sym_PIPE, + ACTIONS(3294), 1, + anon_sym_CARET, + ACTIONS(3296), 1, + anon_sym_AMP, + ACTIONS(3306), 1, + anon_sym_QMARK, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3282), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3284), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3298), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3300), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3302), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3304), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47664] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, sym_primitive_type, - ACTIONS(51), 1, - anon_sym_struct, ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, anon_sym_union, - ACTIONS(1759), 1, + ACTIONS(1893), 1, anon_sym_enum, - ACTIONS(1805), 1, + ACTIONS(2021), 1, sym_identifier, - STATE(1203), 1, + STATE(1288), 1, sym__type_specifier, - STATE(1347), 1, + STATE(1449), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1226), 2, + STATE(1334), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3156), 4, + ACTIONS(3310), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1028), 5, + STATE(1104), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(45), 8, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -105085,38 +122951,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47351] = 12, + [47717] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2304), 1, + anon_sym_RBRACK, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(2748), 1, + anon_sym_LPAREN2, + ACTIONS(3286), 1, + anon_sym_SLASH, + ACTIONS(3288), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3290), 1, + anon_sym_AMP_AMP, + ACTIONS(3292), 1, + anon_sym_PIPE, + ACTIONS(3294), 1, + anon_sym_CARET, + ACTIONS(3296), 1, + anon_sym_AMP, + ACTIONS(3306), 1, + anon_sym_QMARK, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3282), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3284), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3298), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3300), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3302), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3304), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47786] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2618), 1, + ACTIONS(2977), 1, sym_identifier, - ACTIONS(2620), 1, + ACTIONS(2979), 1, anon_sym_LPAREN2, - ACTIONS(2622), 1, + ACTIONS(2981), 1, anon_sym_STAR, - ACTIONS(2626), 1, + ACTIONS(2985), 1, sym_primitive_type, - STATE(1446), 1, + STATE(1543), 1, sym__type_declarator, - STATE(1895), 1, + STATE(2159), 1, sym_ms_based_modifier, - STATE(1226), 2, + STATE(1281), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2624), 4, + ACTIONS(2983), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1478), 5, + STATE(1612), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(45), 8, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -105125,78 +123041,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47403] = 12, + [47839] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2618), 1, + ACTIONS(2977), 1, sym_identifier, - ACTIONS(2620), 1, + ACTIONS(2979), 1, anon_sym_LPAREN2, - ACTIONS(2622), 1, + ACTIONS(2981), 1, anon_sym_STAR, - ACTIONS(2626), 1, + ACTIONS(2985), 1, sym_primitive_type, - STATE(1431), 1, + STATE(1503), 1, sym__type_declarator, - STATE(1895), 1, + STATE(2159), 1, sym_ms_based_modifier, - STATE(1226), 2, + STATE(1322), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2624), 4, + ACTIONS(2983), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1478), 5, + STATE(1612), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [47455] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1759), 1, - anon_sym_enum, - ACTIONS(1805), 1, - sym_identifier, - STATE(1201), 1, - sym__type_specifier, - STATE(1347), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1214), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3156), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 8, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -105205,78 +123082,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47507] = 12, + [47892] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1759), 1, - anon_sym_enum, - ACTIONS(1805), 1, - sym_identifier, - STATE(1197), 1, - sym__type_specifier, - STATE(1347), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1226), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3156), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1028), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [47559] = 12, + ACTIONS(2502), 1, + anon_sym_LPAREN2, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, + anon_sym_SLASH, + ACTIONS(3021), 1, + anon_sym_AMP, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, + anon_sym_QMARK, + ACTIONS(3343), 1, + anon_sym_RPAREN, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3015), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3025), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3027), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3029), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47961] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2618), 1, + ACTIONS(2977), 1, sym_identifier, - ACTIONS(2620), 1, + ACTIONS(2979), 1, anon_sym_LPAREN2, - ACTIONS(2622), 1, + ACTIONS(2981), 1, anon_sym_STAR, - ACTIONS(2626), 1, + ACTIONS(2985), 1, sym_primitive_type, - STATE(1427), 1, + STATE(1566), 1, sym__type_declarator, - STATE(1895), 1, + STATE(2159), 1, sym_ms_based_modifier, - STATE(1204), 2, + STATE(1320), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2624), 4, + ACTIONS(2983), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1478), 5, + STATE(1612), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(45), 8, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -105285,38 +123172,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47611] = 12, + [48014] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2618), 1, + ACTIONS(2977), 1, sym_identifier, - ACTIONS(2620), 1, + ACTIONS(2979), 1, anon_sym_LPAREN2, - ACTIONS(2622), 1, + ACTIONS(2981), 1, anon_sym_STAR, - ACTIONS(2626), 1, + ACTIONS(2985), 1, sym_primitive_type, - STATE(1433), 1, + STATE(1533), 1, sym__type_declarator, - STATE(1895), 1, + STATE(2159), 1, sym_ms_based_modifier, - STATE(1226), 2, + STATE(1320), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2624), 4, + ACTIONS(2983), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1478), 5, + STATE(1612), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(45), 8, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -105325,99 +123213,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47663] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3158), 1, - anon_sym_SEMI, - ACTIONS(2360), 7, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2358), 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, - [47699] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2276), 1, - anon_sym_LPAREN2, - ACTIONS(2280), 1, - anon_sym_LBRACK, - ACTIONS(2701), 1, - anon_sym_SLASH, - ACTIONS(2731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2733), 1, - anon_sym_AMP_AMP, - ACTIONS(2735), 1, - anon_sym_PIPE, - ACTIONS(2737), 1, - anon_sym_CARET, - ACTIONS(2739), 1, - anon_sym_AMP, - ACTIONS(2741), 1, - anon_sym_QMARK, - STATE(787), 1, - sym_argument_list, - ACTIONS(2282), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2284), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2703), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2705), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2707), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2709), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [47765] = 5, + [48067] = 12, ACTIONS(3), 1, sym_comment, - STATE(1226), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2452), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2057), 1, + anon_sym___based, + ACTIONS(2977), 1, + sym_identifier, + ACTIONS(2979), 1, anon_sym_LPAREN2, + ACTIONS(2981), 1, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3160), 8, + ACTIONS(2985), 1, + sym_primitive_type, + STATE(1572), 1, + sym__type_declarator, + STATE(2159), 1, + sym_ms_based_modifier, + STATE(1320), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2983), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1612), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -105426,49 +123254,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2450), 10, + [48120] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2057), 1, anon_sym___based, + ACTIONS(2977), 1, + sym_identifier, + ACTIONS(2979), 1, + anon_sym_LPAREN2, + ACTIONS(2981), 1, + anon_sym_STAR, + ACTIONS(2985), 1, + sym_primitive_type, + STATE(1509), 1, + sym__type_declarator, + STATE(2159), 1, + sym_ms_based_modifier, + STATE(1282), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2983), 4, 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, - [47803] = 12, + STATE(1612), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [48173] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2618), 1, + ACTIONS(2977), 1, sym_identifier, - ACTIONS(2620), 1, + ACTIONS(2979), 1, anon_sym_LPAREN2, - ACTIONS(2622), 1, + ACTIONS(2981), 1, anon_sym_STAR, - ACTIONS(2626), 1, + ACTIONS(2985), 1, sym_primitive_type, - STATE(1437), 1, + STATE(1542), 1, sym__type_declarator, - STATE(1895), 1, + STATE(2159), 1, sym_ms_based_modifier, - STATE(1226), 2, + STATE(1320), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2624), 4, + ACTIONS(2983), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1478), 5, + STATE(1612), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(45), 8, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -105477,30 +123336,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47855] = 7, + [48226] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(2876), 1, - anon_sym_LBRACE, - STATE(1011), 1, - sym_attribute_specifier, - STATE(1234), 1, - sym_enumerator_list, - ACTIONS(2902), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2900), 15, - anon_sym___based, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1893), 1, + anon_sym_enum, + ACTIONS(2021), 1, + sym_identifier, + STATE(1319), 1, + sym__type_specifier, + STATE(1449), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1264), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(3310), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + STATE(1104), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -105509,32 +123377,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [47896] = 6, + [48279] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3166), 1, - anon_sym_LPAREN2, - ACTIONS(3170), 1, - anon_sym_LBRACK, - ACTIONS(1985), 2, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2994), 1, + anon_sym_LBRACE, + STATE(1108), 1, + sym_attribute_specifier, + STATE(1356), 1, + sym_enumerator_list, + ACTIONS(3010), 6, anon_sym_COMMA, - anon_sym_STAR, - ACTIONS(3163), 2, anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - ACTIONS(1972), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3008), 16, + anon_sym___extension__, anon_sym___based, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym___thread, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -105543,27 +123410,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, sym_identifier, - [47935] = 8, + [48321] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, + ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2876), 1, + ACTIONS(2994), 1, anon_sym_LBRACE, - ACTIONS(3173), 1, + ACTIONS(3345), 1, anon_sym_COLON, - STATE(1004), 1, + STATE(1116), 1, sym_attribute_specifier, - STATE(1232), 1, + STATE(1355), 1, sym_enumerator_list, - ACTIONS(2871), 5, + ACTIONS(2989), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2869), 15, + ACTIONS(2987), 16, + anon_sym___extension__, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -105579,25 +123448,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [47978] = 7, + [48365] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3347), 1, + anon_sym_SEMI, + ACTIONS(2586), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2584), 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, + [48401] = 7, ACTIONS(3), 1, sym_comment, - STATE(1243), 1, + STATE(1360), 1, sym_ms_unaligned_ptr_modifier, - ACTIONS(3177), 2, + ACTIONS(3351), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3182), 2, + ACTIONS(3356), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1231), 2, + STATE(1353), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(3179), 3, + ACTIONS(3353), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3175), 15, + ACTIONS(3349), 16, + anon_sym___extension__, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -105613,21 +123515,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [48019] = 5, + [48443] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2502), 1, + anon_sym_LPAREN2, + ACTIONS(2506), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, + anon_sym_SLASH, + ACTIONS(3021), 1, + anon_sym_AMP, + ACTIONS(3031), 1, + anon_sym_CARET, + ACTIONS(3033), 1, + anon_sym_PIPE, + ACTIONS(3035), 1, + anon_sym_AMP_AMP, + ACTIONS(3039), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3041), 1, + anon_sym_QMARK, + STATE(916), 1, + sym_argument_list, + ACTIONS(2508), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2510), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3015), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3019), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3023), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3025), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3027), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3029), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48509] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, + ACTIONS(33), 1, anon_sym___attribute__, - STATE(1029), 1, + STATE(1106), 1, sym_attribute_specifier, - ACTIONS(3075), 6, + ACTIONS(3053), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3073), 15, + ACTIONS(3051), 16, + anon_sym___extension__, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -105643,21 +123593,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [48054] = 5, + [48545] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, + ACTIONS(33), 1, anon_sym___attribute__, - STATE(1006), 1, + STATE(1109), 1, sym_attribute_specifier, - ACTIONS(3114), 6, + ACTIONS(3073), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3112), 15, + ACTIONS(3071), 16, + anon_sym___extension__, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -105673,21 +123624,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [48089] = 5, + [48581] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, + ACTIONS(33), 1, anon_sym___attribute__, - STATE(1001), 1, + STATE(1095), 1, sym_attribute_specifier, - ACTIONS(3127), 6, + ACTIONS(3064), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3125), 15, + ACTIONS(3062), 16, + anon_sym___extension__, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -105703,34 +123655,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [48124] = 11, + [48617] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, + ACTIONS(47), 1, anon_sym_const, - ACTIONS(2070), 1, + ACTIONS(2366), 1, anon_sym_LPAREN2, - ACTIONS(2072), 1, + ACTIONS(2368), 1, anon_sym_STAR, - ACTIONS(2518), 1, + ACTIONS(2746), 1, anon_sym_LBRACK, - STATE(1482), 1, + STATE(1651), 1, sym__abstract_declarator, - STATE(1509), 1, + STATE(1676), 1, + sym_parameter_list, + STATE(1361), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2740), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1677), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(3359), 8, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [48664] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_const, + ACTIONS(2366), 1, + anon_sym_LPAREN2, + ACTIONS(2368), 1, + anon_sym_STAR, + ACTIONS(2746), 1, + anon_sym_LBRACK, + STATE(1617), 1, + sym__abstract_declarator, + STATE(1676), 1, sym_parameter_list, - STATE(1226), 2, + STATE(1364), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3185), 3, + ACTIONS(3361), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1510), 4, + STATE(1677), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3187), 7, + ACTIONS(3359), 8, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -105738,13 +123727,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48170] = 3, + [48711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3191), 2, + ACTIONS(3365), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3189), 20, + ACTIONS(3363), 21, + anon_sym___extension__, anon_sym___based, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, @@ -105765,34 +123755,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [48200] = 11, + [48742] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, + ACTIONS(47), 1, anon_sym_const, - ACTIONS(2070), 1, + ACTIONS(2366), 1, anon_sym_LPAREN2, - ACTIONS(2072), 1, + ACTIONS(2368), 1, anon_sym_STAR, - ACTIONS(2518), 1, + ACTIONS(2746), 1, anon_sym_LBRACK, - STATE(1494), 1, + STATE(1640), 1, sym__abstract_declarator, - STATE(1509), 1, + STATE(1676), 1, sym_parameter_list, - STATE(1226), 2, + STATE(1320), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3193), 3, + ACTIONS(3069), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1510), 4, + STATE(1677), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3187), 7, + ACTIONS(3359), 8, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -105800,34 +123791,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48246] = 11, + [48789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_const, - ACTIONS(2070), 1, + ACTIONS(3369), 2, anon_sym_LPAREN2, - ACTIONS(2072), 1, anon_sym_STAR, - ACTIONS(2518), 1, - anon_sym_LBRACK, - STATE(1490), 1, - sym__abstract_declarator, - STATE(1509), 1, - sym_parameter_list, - STATE(1226), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2861), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1510), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(3187), 7, + ACTIONS(3367), 21, + anon_sym___extension__, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -105835,34 +123817,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48292] = 11, + sym_primitive_type, + sym_identifier, + [48820] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, + ACTIONS(47), 1, anon_sym_const, - ACTIONS(2070), 1, + ACTIONS(2366), 1, anon_sym_LPAREN2, - ACTIONS(2072), 1, + ACTIONS(2368), 1, anon_sym_STAR, - ACTIONS(2518), 1, + ACTIONS(2746), 1, anon_sym_LBRACK, - STATE(1474), 1, + STATE(1639), 1, sym__abstract_declarator, - STATE(1509), 1, + STATE(1676), 1, sym_parameter_list, - STATE(1237), 2, + STATE(1365), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3195), 3, + ACTIONS(3371), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1510), 4, + STATE(1677), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3187), 7, + ACTIONS(3359), 8, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -105870,34 +123855,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48338] = 11, + [48867] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, + ACTIONS(47), 1, anon_sym_const, - ACTIONS(2070), 1, + ACTIONS(2366), 1, anon_sym_LPAREN2, - ACTIONS(2072), 1, + ACTIONS(2368), 1, anon_sym_STAR, - ACTIONS(2518), 1, + ACTIONS(2746), 1, anon_sym_LBRACK, - STATE(1495), 1, + STATE(1648), 1, sym__abstract_declarator, - STATE(1509), 1, + STATE(1676), 1, sym_parameter_list, - STATE(1238), 2, + STATE(1320), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2512), 3, + ACTIONS(3373), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1510), 4, + STATE(1677), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3187), 7, + ACTIONS(3359), 8, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -105905,63 +123891,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48384] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3199), 1, - anon_sym_LPAREN2, - STATE(1267), 1, - sym_preproc_argument_list, - ACTIONS(3201), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3197), 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, - [48418] = 11, + [48914] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, + ACTIONS(47), 1, anon_sym_const, - ACTIONS(2070), 1, + ACTIONS(2366), 1, anon_sym_LPAREN2, - ACTIONS(2072), 1, + ACTIONS(2368), 1, anon_sym_STAR, - ACTIONS(2518), 1, + ACTIONS(2746), 1, anon_sym_LBRACK, - STATE(1492), 1, + STATE(1656), 1, sym__abstract_declarator, - STATE(1509), 1, + STATE(1676), 1, sym_parameter_list, - STATE(1235), 2, + STATE(1320), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3203), 3, + ACTIONS(3375), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1510), 4, + STATE(1677), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3187), 7, + ACTIONS(3359), 8, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -105969,23 +123927,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48464] = 3, + [48961] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3207), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3205), 20, - anon_sym___based, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, + ACTIONS(2868), 1, + sym_primitive_type, + ACTIONS(3377), 1, + sym_identifier, + STATE(1050), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2866), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(2862), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2864), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -105994,94 +123958,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [48494] = 10, + [48999] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3209), 1, - sym_identifier, - ACTIONS(3211), 1, - anon_sym_RPAREN, - ACTIONS(3213), 1, - anon_sym_LPAREN2, - ACTIONS(3215), 1, - anon_sym_defined, - ACTIONS(3221), 1, - sym_number_literal, - ACTIONS(3217), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3219), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3223), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1255), 7, - 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, - [48537] = 5, - ACTIONS(3197), 1, - anon_sym_LF, - ACTIONS(3225), 1, + ACTIONS(3381), 1, anon_sym_LPAREN2, - ACTIONS(3227), 1, - sym_comment, - STATE(1320), 1, + STATE(1413), 1, sym_preproc_argument_list, - ACTIONS(3201), 18, + ACTIONS(3383), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3379), 15, + anon_sym_COMMA, + anon_sym_RPAREN, 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, - [48570] = 10, + [49033] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2884), 1, + ACTIONS(3082), 1, sym_identifier, - ACTIONS(2886), 1, + ACTIONS(3084), 1, anon_sym_LPAREN2, - ACTIONS(2888), 1, + ACTIONS(3086), 1, anon_sym_STAR, - STATE(1395), 1, + STATE(1555), 1, sym__field_declarator, - STATE(1936), 1, + STATE(2075), 1, sym_ms_based_modifier, - STATE(1226), 2, + STATE(1320), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1450), 5, + STATE(1587), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - ACTIONS(45), 8, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -106090,64 +124021,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48613] = 10, + [49077] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3209), 1, + ACTIONS(2057), 1, + anon_sym___based, + ACTIONS(2738), 1, sym_identifier, - ACTIONS(3213), 1, + ACTIONS(3078), 1, anon_sym_LPAREN2, - ACTIONS(3215), 1, - anon_sym_defined, - ACTIONS(3229), 1, - anon_sym_RPAREN, - ACTIONS(3231), 1, - sym_number_literal, - ACTIONS(3217), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3219), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3223), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1252), 7, - 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, - [48656] = 10, + ACTIONS(3080), 1, + anon_sym_STAR, + STATE(1489), 1, + sym__declarator, + STATE(2180), 1, + sym_ms_based_modifier, + STATE(1320), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1570), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [49121] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2057), 1, + anon_sym___based, + ACTIONS(2738), 1, + sym_identifier, + ACTIONS(3078), 1, + anon_sym_LPAREN2, + ACTIONS(3080), 1, + anon_sym_STAR, + STATE(1491), 1, + sym__declarator, + STATE(2180), 1, + sym_ms_based_modifier, + STATE(1320), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1570), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [49165] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2884), 1, + ACTIONS(3082), 1, sym_identifier, - ACTIONS(2886), 1, + ACTIONS(3084), 1, anon_sym_LPAREN2, - ACTIONS(2888), 1, + ACTIONS(3086), 1, anon_sym_STAR, - STATE(1399), 1, + STATE(1556), 1, sym__field_declarator, - STATE(1936), 1, + STATE(2075), 1, sym_ms_based_modifier, - STATE(1226), 2, + STATE(1320), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1450), 5, + STATE(1587), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - ACTIONS(45), 8, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -106156,70 +124123,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48699] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3233), 1, - anon_sym_COMMA, - ACTIONS(3235), 1, - anon_sym_RPAREN, - ACTIONS(3241), 1, - anon_sym_SLASH, - ACTIONS(3243), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3245), 1, - anon_sym_AMP_AMP, - ACTIONS(3247), 1, - anon_sym_PIPE, - ACTIONS(3249), 1, - anon_sym_CARET, - ACTIONS(3251), 1, - anon_sym_AMP, - STATE(1567), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(3237), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3239), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3253), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3255), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3257), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3259), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [48754] = 10, + [49209] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2510), 1, + ACTIONS(2738), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(3078), 1, anon_sym_LPAREN2, - ACTIONS(2892), 1, + ACTIONS(3080), 1, anon_sym_STAR, - STATE(1371), 1, + STATE(1498), 1, sym__declarator, - STATE(1823), 1, + STATE(2180), 1, sym_ms_based_modifier, - STATE(1226), 2, + STATE(1320), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1415), 5, + STATE(1570), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(45), 8, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -106228,31 +124157,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48797] = 10, + [49253] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2884), 1, + ACTIONS(3082), 1, sym_identifier, - ACTIONS(2886), 1, + ACTIONS(3084), 1, anon_sym_LPAREN2, - ACTIONS(2888), 1, + ACTIONS(3086), 1, anon_sym_STAR, - STATE(1402), 1, + STATE(1550), 1, sym__field_declarator, - STATE(1936), 1, + STATE(2075), 1, sym_ms_based_modifier, - STATE(1226), 2, + STATE(1320), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1450), 5, + STATE(1587), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - ACTIONS(45), 8, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -106261,71 +124191,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48840] = 16, + [49297] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3385), 1, anon_sym_COMMA, - ACTIONS(3241), 1, + ACTIONS(3387), 1, + anon_sym_RPAREN, + ACTIONS(3393), 1, anon_sym_SLASH, - ACTIONS(3243), 1, + ACTIONS(3395), 1, anon_sym_PIPE_PIPE, - ACTIONS(3245), 1, + ACTIONS(3397), 1, anon_sym_AMP_AMP, - ACTIONS(3247), 1, + ACTIONS(3399), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3401), 1, anon_sym_CARET, - ACTIONS(3251), 1, + ACTIONS(3403), 1, anon_sym_AMP, - ACTIONS(3261), 1, + STATE(1869), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(3389), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3391), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3405), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3407), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3409), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3411), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [49352] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3413), 1, + sym_identifier, + ACTIONS(3415), 1, anon_sym_RPAREN, - STATE(1623), 1, + ACTIONS(3417), 1, + anon_sym_LPAREN2, + ACTIONS(3419), 1, + anon_sym_defined, + ACTIONS(3425), 1, + sym_number_literal, + ACTIONS(3421), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3423), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3427), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1376), 7, + 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, + [49395] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3385), 1, + anon_sym_COMMA, + ACTIONS(3393), 1, + anon_sym_SLASH, + ACTIONS(3395), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3397), 1, + anon_sym_AMP_AMP, + ACTIONS(3399), 1, + anon_sym_PIPE, + ACTIONS(3401), 1, + anon_sym_CARET, + ACTIONS(3403), 1, + anon_sym_AMP, + ACTIONS(3429), 1, + anon_sym_RPAREN, + STATE(1843), 1, aux_sym_preproc_argument_list_repeat1, - ACTIONS(3237), 2, + ACTIONS(3389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3239), 2, + ACTIONS(3391), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3253), 2, + ACTIONS(3405), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3255), 2, + ACTIONS(3407), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3257), 2, + ACTIONS(3409), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3259), 2, + ACTIONS(3411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48895] = 10, + [49450] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3209), 1, + ACTIONS(3413), 1, sym_identifier, - ACTIONS(3213), 1, + ACTIONS(3417), 1, anon_sym_LPAREN2, - ACTIONS(3215), 1, + ACTIONS(3419), 1, anon_sym_defined, - ACTIONS(3263), 1, + ACTIONS(3431), 1, anon_sym_RPAREN, - ACTIONS(3265), 1, + ACTIONS(3433), 1, sym_number_literal, - ACTIONS(3217), 2, + ACTIONS(3421), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3219), 2, + ACTIONS(3423), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3223), 5, + ACTIONS(3427), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1249), 7, + STATE(1379), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106333,165 +124335,99 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48938] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2835), 1, - sym_primitive_type, - ACTIONS(3267), 1, - sym_identifier, - STATE(925), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2833), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2829), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + [49493] = 5, + ACTIONS(3379), 1, + anon_sym_LF, + ACTIONS(3435), 1, anon_sym_LPAREN2, + ACTIONS(3437), 1, + sym_comment, + STATE(1461), 1, + sym_preproc_argument_list, + ACTIONS(3383), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2831), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [48975] = 16, + 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, + [49526] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3385), 1, anon_sym_COMMA, - ACTIONS(3241), 1, + ACTIONS(3393), 1, anon_sym_SLASH, - ACTIONS(3243), 1, + ACTIONS(3395), 1, anon_sym_PIPE_PIPE, - ACTIONS(3245), 1, + ACTIONS(3397), 1, anon_sym_AMP_AMP, - ACTIONS(3247), 1, + ACTIONS(3399), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3401), 1, anon_sym_CARET, - ACTIONS(3251), 1, + ACTIONS(3403), 1, anon_sym_AMP, - ACTIONS(3269), 1, + ACTIONS(3439), 1, anon_sym_RPAREN, - STATE(1658), 1, + STATE(1879), 1, aux_sym_preproc_argument_list_repeat1, - ACTIONS(3237), 2, + ACTIONS(3389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3239), 2, + ACTIONS(3391), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3253), 2, + ACTIONS(3405), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3255), 2, + ACTIONS(3407), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3257), 2, + ACTIONS(3409), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3259), 2, + ACTIONS(3411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49030] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1879), 1, - anon_sym___based, - ACTIONS(2510), 1, - sym_identifier, - ACTIONS(2890), 1, - anon_sym_LPAREN2, - ACTIONS(2892), 1, - anon_sym_STAR, - STATE(1361), 1, - sym__declarator, - STATE(1823), 1, - sym_ms_based_modifier, - STATE(1226), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1415), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [49073] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1879), 1, - anon_sym___based, - ACTIONS(2510), 1, - sym_identifier, - ACTIONS(2890), 1, - anon_sym_LPAREN2, - ACTIONS(2892), 1, - anon_sym_STAR, - STATE(1362), 1, - sym__declarator, - STATE(1823), 1, - sym_ms_based_modifier, - STATE(1226), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1415), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [49116] = 9, + [49581] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3271), 1, + ACTIONS(3413), 1, sym_identifier, - ACTIONS(3273), 1, + ACTIONS(3417), 1, anon_sym_LPAREN2, - ACTIONS(3275), 1, + ACTIONS(3419), 1, anon_sym_defined, - ACTIONS(3281), 1, + ACTIONS(3441), 1, + anon_sym_RPAREN, + ACTIONS(3443), 1, sym_number_literal, - ACTIONS(3277), 2, + ACTIONS(3421), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3279), 2, + ACTIONS(3423), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3283), 5, + ACTIONS(3427), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1333), 7, + STATE(1374), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106499,30 +124435,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49156] = 9, + [49624] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3271), 1, + ACTIONS(3413), 1, sym_identifier, - ACTIONS(3273), 1, + ACTIONS(3417), 1, anon_sym_LPAREN2, - ACTIONS(3275), 1, + ACTIONS(3419), 1, anon_sym_defined, - ACTIONS(3285), 1, + ACTIONS(3445), 1, sym_number_literal, - ACTIONS(3277), 2, + ACTIONS(3421), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3279), 2, + ACTIONS(3423), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3283), 5, + ACTIONS(3427), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1343), 7, + STATE(1412), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106530,30 +124466,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49196] = 9, + [49664] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3209), 1, + ACTIONS(3413), 1, sym_identifier, - ACTIONS(3213), 1, + ACTIONS(3417), 1, anon_sym_LPAREN2, - ACTIONS(3215), 1, + ACTIONS(3419), 1, anon_sym_defined, - ACTIONS(3287), 1, + ACTIONS(3447), 1, sym_number_literal, - ACTIONS(3217), 2, + ACTIONS(3421), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3219), 2, + ACTIONS(3423), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3223), 5, + ACTIONS(3427), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1293), 7, + STATE(1388), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106561,30 +124497,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49236] = 9, + [49704] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3209), 1, + ACTIONS(3413), 1, sym_identifier, - ACTIONS(3213), 1, + ACTIONS(3417), 1, anon_sym_LPAREN2, - ACTIONS(3215), 1, + ACTIONS(3419), 1, anon_sym_defined, - ACTIONS(3289), 1, + ACTIONS(3449), 1, sym_number_literal, - ACTIONS(3217), 2, + ACTIONS(3421), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3219), 2, + ACTIONS(3423), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3223), 5, + ACTIONS(3427), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1262), 7, + STATE(1430), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106592,65 +124528,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49276] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3241), 1, - anon_sym_SLASH, - ACTIONS(3245), 1, - anon_sym_AMP_AMP, - ACTIONS(3247), 1, - anon_sym_PIPE, - ACTIONS(3249), 1, - anon_sym_CARET, - ACTIONS(3251), 1, - anon_sym_AMP, - ACTIONS(3237), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3239), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3253), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3255), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3257), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3259), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3291), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - [49324] = 9, + [49744] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3209), 1, + ACTIONS(3413), 1, sym_identifier, - ACTIONS(3213), 1, + ACTIONS(3417), 1, anon_sym_LPAREN2, - ACTIONS(3215), 1, + ACTIONS(3419), 1, anon_sym_defined, - ACTIONS(3293), 1, + ACTIONS(3451), 1, sym_number_literal, - ACTIONS(3217), 2, + ACTIONS(3421), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3219), 2, + ACTIONS(3423), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3223), 5, + ACTIONS(3427), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1265), 7, + STATE(1466), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106658,30 +124559,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49364] = 9, + [49784] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3209), 1, + ACTIONS(3453), 1, sym_identifier, - ACTIONS(3213), 1, + ACTIONS(3455), 1, anon_sym_LPAREN2, - ACTIONS(3215), 1, + ACTIONS(3457), 1, anon_sym_defined, - ACTIONS(3295), 1, + ACTIONS(3463), 1, sym_number_literal, - ACTIONS(3217), 2, + ACTIONS(3459), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3219), 2, + ACTIONS(3461), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3223), 5, + ACTIONS(3465), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1268), 7, + STATE(1446), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106689,149 +124590,87 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49404] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3297), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3291), 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, - [49432] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3301), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3299), 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, - [49460] = 3, + [49824] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3305), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3303), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3453), 1, + sym_identifier, + ACTIONS(3455), 1, + anon_sym_LPAREN2, + ACTIONS(3457), 1, + anon_sym_defined, + ACTIONS(3467), 1, + sym_number_literal, + ACTIONS(3459), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3461), 2, 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, - [49488] = 5, + ACTIONS(3465), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1464), 7, + 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, + [49864] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, - anon_sym_SLASH, - ACTIONS(3239), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3297), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3291), 13, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3453), 1, + sym_identifier, + ACTIONS(3455), 1, + anon_sym_LPAREN2, + ACTIONS(3457), 1, + anon_sym_defined, + ACTIONS(3469), 1, + sym_number_literal, + ACTIONS(3459), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3461), 2, 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, - [49520] = 3, + ACTIONS(3465), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1467), 7, + 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, + [49904] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2420), 5, + ACTIONS(3393), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2418), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3389), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3391), 2, 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, - [49548] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3309), 5, - anon_sym_SLASH, + ACTIONS(3473), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3307), 15, + ACTIONS(3471), 11, 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, @@ -106841,30 +124680,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [49576] = 9, + [49938] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3209), 1, + ACTIONS(3453), 1, sym_identifier, - ACTIONS(3213), 1, + ACTIONS(3455), 1, anon_sym_LPAREN2, - ACTIONS(3215), 1, + ACTIONS(3457), 1, anon_sym_defined, - ACTIONS(3311), 1, + ACTIONS(3475), 1, sym_number_literal, - ACTIONS(3217), 2, + ACTIONS(3459), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3219), 2, + ACTIONS(3461), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3223), 5, + ACTIONS(3465), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1292), 7, + STATE(1468), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106872,63 +124711,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49616] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3241), 1, - anon_sym_SLASH, - ACTIONS(3251), 1, - anon_sym_AMP, - ACTIONS(3297), 1, - anon_sym_PIPE, - ACTIONS(3237), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3239), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3253), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3255), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3257), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3259), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3291), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [49660] = 9, + [49978] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3209), 1, + ACTIONS(3453), 1, sym_identifier, - ACTIONS(3213), 1, + ACTIONS(3455), 1, anon_sym_LPAREN2, - ACTIONS(3215), 1, + ACTIONS(3457), 1, anon_sym_defined, - ACTIONS(3313), 1, + ACTIONS(3477), 1, sym_number_literal, - ACTIONS(3217), 2, + ACTIONS(3459), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3219), 2, + ACTIONS(3461), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3223), 5, + ACTIONS(3465), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1272), 7, + STATE(1455), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106936,30 +124742,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49700] = 9, + [50018] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3209), 1, + ACTIONS(3453), 1, sym_identifier, - ACTIONS(3213), 1, + ACTIONS(3455), 1, anon_sym_LPAREN2, - ACTIONS(3215), 1, + ACTIONS(3457), 1, anon_sym_defined, - ACTIONS(3315), 1, + ACTIONS(3479), 1, sym_number_literal, - ACTIONS(3217), 2, + ACTIONS(3459), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3219), 2, + ACTIONS(3461), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3223), 5, + ACTIONS(3465), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1280), 7, + STATE(1459), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106967,30 +124773,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49740] = 9, + [50058] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3209), 1, + ACTIONS(3453), 1, sym_identifier, - ACTIONS(3213), 1, + ACTIONS(3455), 1, anon_sym_LPAREN2, - ACTIONS(3215), 1, + ACTIONS(3457), 1, anon_sym_defined, - ACTIONS(3317), 1, + ACTIONS(3481), 1, sym_number_literal, - ACTIONS(3217), 2, + ACTIONS(3459), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3219), 2, + ACTIONS(3461), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3223), 5, + ACTIONS(3465), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1290), 7, + STATE(1457), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106998,30 +124804,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49780] = 9, + [50098] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3271), 1, + ACTIONS(3413), 1, sym_identifier, - ACTIONS(3273), 1, + ACTIONS(3417), 1, anon_sym_LPAREN2, - ACTIONS(3275), 1, + ACTIONS(3419), 1, anon_sym_defined, - ACTIONS(3319), 1, + ACTIONS(3483), 1, sym_number_literal, - ACTIONS(3277), 2, + ACTIONS(3421), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3279), 2, + ACTIONS(3423), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3283), 5, + ACTIONS(3427), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1337), 7, + STATE(1437), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -107029,30 +124835,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49820] = 9, + [50138] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3271), 1, + ACTIONS(3413), 1, sym_identifier, - ACTIONS(3273), 1, + ACTIONS(3417), 1, anon_sym_LPAREN2, - ACTIONS(3275), 1, + ACTIONS(3419), 1, anon_sym_defined, - ACTIONS(3321), 1, + ACTIONS(3485), 1, sym_number_literal, - ACTIONS(3277), 2, + ACTIONS(3421), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3279), 2, + ACTIONS(3423), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3283), 5, + ACTIONS(3427), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1336), 7, + STATE(1442), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -107060,30 +124866,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49860] = 9, + [50178] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3271), 1, + ACTIONS(3453), 1, sym_identifier, - ACTIONS(3273), 1, + ACTIONS(3455), 1, anon_sym_LPAREN2, - ACTIONS(3275), 1, + ACTIONS(3457), 1, anon_sym_defined, - ACTIONS(3323), 1, + ACTIONS(3487), 1, sym_number_literal, - ACTIONS(3277), 2, + ACTIONS(3459), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3279), 2, + ACTIONS(3461), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3283), 5, + ACTIONS(3465), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1334), 7, + STATE(1453), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -107091,30 +124897,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49900] = 9, + [50218] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3491), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3489), 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, + [50246] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3271), 1, + ACTIONS(3453), 1, sym_identifier, - ACTIONS(3273), 1, + ACTIONS(3455), 1, anon_sym_LPAREN2, - ACTIONS(3275), 1, + ACTIONS(3457), 1, anon_sym_defined, - ACTIONS(3325), 1, + ACTIONS(3493), 1, sym_number_literal, - ACTIONS(3277), 2, + ACTIONS(3459), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3279), 2, + ACTIONS(3461), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3283), 5, + ACTIONS(3465), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1340), 7, + STATE(1460), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -107122,62 +124953,61 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49940] = 10, + [50286] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, - anon_sym_SLASH, - ACTIONS(3237), 2, + ACTIONS(3453), 1, + sym_identifier, + ACTIONS(3455), 1, + anon_sym_LPAREN2, + ACTIONS(3457), 1, + anon_sym_defined, + ACTIONS(3495), 1, + sym_number_literal, + ACTIONS(3459), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3461), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3239), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3253), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3255), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3257), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3259), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3297), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3291), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [49982] = 9, + ACTIONS(3465), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1438), 7, + 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, + [50326] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3271), 1, + ACTIONS(3453), 1, sym_identifier, - ACTIONS(3273), 1, + ACTIONS(3455), 1, anon_sym_LPAREN2, - ACTIONS(3275), 1, + ACTIONS(3457), 1, anon_sym_defined, - ACTIONS(3327), 1, + ACTIONS(3497), 1, sym_number_literal, - ACTIONS(3277), 2, + ACTIONS(3459), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3279), 2, + ACTIONS(3461), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3283), 5, + ACTIONS(3465), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1342), 7, + STATE(1454), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -107185,30 +125015,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50022] = 9, + [50366] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3271), 1, + ACTIONS(3453), 1, sym_identifier, - ACTIONS(3273), 1, + ACTIONS(3455), 1, anon_sym_LPAREN2, - ACTIONS(3275), 1, + ACTIONS(3457), 1, anon_sym_defined, - ACTIONS(3329), 1, + ACTIONS(3499), 1, sym_number_literal, - ACTIONS(3277), 2, + ACTIONS(3459), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3279), 2, + ACTIONS(3461), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3283), 5, + ACTIONS(3465), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1331), 7, + STATE(1470), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -107216,30 +125046,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50062] = 9, + [50406] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3209), 1, + ACTIONS(3453), 1, sym_identifier, - ACTIONS(3213), 1, + ACTIONS(3455), 1, anon_sym_LPAREN2, - ACTIONS(3215), 1, + ACTIONS(3457), 1, anon_sym_defined, - ACTIONS(3331), 1, + ACTIONS(3501), 1, sym_number_literal, - ACTIONS(3217), 2, + ACTIONS(3459), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3219), 2, + ACTIONS(3461), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3223), 5, + ACTIONS(3465), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1309), 7, + STATE(1463), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -107247,16 +125077,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50102] = 3, + [50446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3335), 5, + ACTIONS(3505), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3333), 15, + ACTIONS(3503), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -107272,30 +125102,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [50130] = 9, + [50474] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3209), 1, + ACTIONS(3453), 1, sym_identifier, - ACTIONS(3213), 1, + ACTIONS(3455), 1, anon_sym_LPAREN2, - ACTIONS(3215), 1, + ACTIONS(3457), 1, anon_sym_defined, - ACTIONS(3337), 1, + ACTIONS(3507), 1, sym_number_literal, - ACTIONS(3217), 2, + ACTIONS(3459), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3219), 2, + ACTIONS(3461), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3223), 5, + ACTIONS(3465), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1289), 7, + STATE(1458), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -107303,30 +125133,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50170] = 9, + [50514] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3209), 1, + ACTIONS(3413), 1, sym_identifier, - ACTIONS(3213), 1, + ACTIONS(3417), 1, anon_sym_LPAREN2, - ACTIONS(3215), 1, + ACTIONS(3419), 1, anon_sym_defined, - ACTIONS(3339), 1, + ACTIONS(3509), 1, sym_number_literal, - ACTIONS(3217), 2, + ACTIONS(3421), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3219), 2, + ACTIONS(3423), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3223), 5, + ACTIONS(3427), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1266), 7, + STATE(1436), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -107334,30 +125164,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50210] = 9, + [50554] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2570), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2568), 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, + [50582] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3271), 1, + ACTIONS(3453), 1, sym_identifier, - ACTIONS(3273), 1, + ACTIONS(3455), 1, anon_sym_LPAREN2, - ACTIONS(3275), 1, + ACTIONS(3457), 1, anon_sym_defined, - ACTIONS(3341), 1, + ACTIONS(3511), 1, sym_number_literal, - ACTIONS(3277), 2, + ACTIONS(3459), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3279), 2, + ACTIONS(3461), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3283), 5, + ACTIONS(3465), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1319), 7, + STATE(1448), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -107365,30 +125220,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50250] = 9, + [50622] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3271), 1, + ACTIONS(3453), 1, sym_identifier, - ACTIONS(3273), 1, + ACTIONS(3455), 1, anon_sym_LPAREN2, - ACTIONS(3275), 1, + ACTIONS(3457), 1, anon_sym_defined, - ACTIONS(3343), 1, + ACTIONS(3513), 1, sym_number_literal, - ACTIONS(3277), 2, + ACTIONS(3459), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3279), 2, + ACTIONS(3461), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3283), 5, + ACTIONS(3465), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1322), 7, + STATE(1456), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -107396,89 +125251,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50290] = 6, + [50662] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, - anon_sym_SLASH, - ACTIONS(3237), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3239), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3297), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3291), 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, - [50324] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3241), 1, - anon_sym_SLASH, - ACTIONS(3237), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3239), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3255), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3257), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3259), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3297), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3291), 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, - [50364] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3271), 1, + ACTIONS(3453), 1, sym_identifier, - ACTIONS(3273), 1, + ACTIONS(3455), 1, anon_sym_LPAREN2, - ACTIONS(3275), 1, + ACTIONS(3457), 1, anon_sym_defined, - ACTIONS(3345), 1, + ACTIONS(3515), 1, sym_number_literal, - ACTIONS(3277), 2, + ACTIONS(3459), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3279), 2, + ACTIONS(3461), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3283), 5, + ACTIONS(3465), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1330), 7, + STATE(1439), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -107486,84 +125282,78 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50404] = 12, + [50702] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, - anon_sym_SLASH, - ACTIONS(3249), 1, - anon_sym_CARET, - ACTIONS(3251), 1, - anon_sym_AMP, - ACTIONS(3297), 1, - anon_sym_PIPE, - ACTIONS(3237), 2, + ACTIONS(3453), 1, + sym_identifier, + ACTIONS(3455), 1, + anon_sym_LPAREN2, + ACTIONS(3457), 1, + anon_sym_defined, + ACTIONS(3517), 1, + sym_number_literal, + ACTIONS(3459), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3461), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3239), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3253), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3255), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3257), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3259), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3291), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [50450] = 12, + ACTIONS(3465), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1440), 7, + 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, + [50742] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, - anon_sym_SLASH, - ACTIONS(3247), 1, - anon_sym_PIPE, - ACTIONS(3249), 1, - anon_sym_CARET, - ACTIONS(3251), 1, - anon_sym_AMP, - ACTIONS(3237), 2, + ACTIONS(3413), 1, + sym_identifier, + ACTIONS(3417), 1, + anon_sym_LPAREN2, + ACTIONS(3419), 1, + anon_sym_defined, + ACTIONS(3519), 1, + sym_number_literal, + ACTIONS(3421), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3423), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3239), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3253), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3255), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3257), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3259), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3291), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [50496] = 3, + ACTIONS(3427), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1426), 7, + 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, + [50782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 5, + ACTIONS(3523), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3347), 15, + ACTIONS(3521), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -107579,72 +125369,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [50524] = 3, + [50810] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3353), 5, + ACTIONS(3393), 1, anon_sym_SLASH, + ACTIONS(3395), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3397), 1, + anon_sym_AMP_AMP, + ACTIONS(3399), 1, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3351), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3401), 1, + anon_sym_CARET, + ACTIONS(3403), 1, + anon_sym_AMP, + ACTIONS(3389), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3391), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3405), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3407), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3409), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50552] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3271), 1, - sym_identifier, - ACTIONS(3273), 1, - anon_sym_LPAREN2, - ACTIONS(3275), 1, - anon_sym_defined, - ACTIONS(3355), 1, - sym_number_literal, - ACTIONS(3277), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3279), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3283), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1344), 7, - 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, - [50592] = 3, + ACTIONS(3525), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [50860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3359), 5, + ACTIONS(3529), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3357), 15, + ACTIONS(3527), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -107660,30 +125430,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [50620] = 9, + [50888] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3271), 1, + ACTIONS(3453), 1, sym_identifier, - ACTIONS(3273), 1, + ACTIONS(3455), 1, anon_sym_LPAREN2, - ACTIONS(3275), 1, + ACTIONS(3457), 1, anon_sym_defined, - ACTIONS(3361), 1, + ACTIONS(3531), 1, sym_number_literal, - ACTIONS(3277), 2, + ACTIONS(3459), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3279), 2, + ACTIONS(3461), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3283), 5, + ACTIONS(3465), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1338), 7, + STATE(1447), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -107691,30 +125461,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50660] = 9, + [50928] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3271), 1, + ACTIONS(3413), 1, sym_identifier, - ACTIONS(3273), 1, + ACTIONS(3417), 1, anon_sym_LPAREN2, - ACTIONS(3275), 1, + ACTIONS(3419), 1, anon_sym_defined, - ACTIONS(3363), 1, + ACTIONS(3533), 1, sym_number_literal, - ACTIONS(3277), 2, + ACTIONS(3421), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3279), 2, + ACTIONS(3423), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3283), 5, + ACTIONS(3427), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1325), 7, + STATE(1416), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -107722,61 +125492,59 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50700] = 9, + [50968] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3271), 1, - sym_identifier, - ACTIONS(3273), 1, - anon_sym_LPAREN2, - ACTIONS(3275), 1, - anon_sym_defined, - ACTIONS(3365), 1, - sym_number_literal, - ACTIONS(3277), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3279), 2, + ACTIONS(3393), 1, + anon_sym_SLASH, + ACTIONS(3389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3283), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1341), 7, - 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, - [50740] = 9, + ACTIONS(3391), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3411), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3473), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3471), 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, + [51004] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3209), 1, + ACTIONS(3413), 1, sym_identifier, - ACTIONS(3213), 1, + ACTIONS(3417), 1, anon_sym_LPAREN2, - ACTIONS(3215), 1, + ACTIONS(3419), 1, anon_sym_defined, - ACTIONS(3367), 1, + ACTIONS(3535), 1, sym_number_literal, - ACTIONS(3217), 2, + ACTIONS(3421), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3219), 2, + ACTIONS(3423), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3223), 5, + ACTIONS(3427), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1318), 7, + STATE(1433), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -107784,30 +125552,61 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50780] = 9, + [51044] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3393), 1, + anon_sym_SLASH, + ACTIONS(3389), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3391), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3407), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3409), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3411), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3473), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3471), 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, + [51084] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3271), 1, + ACTIONS(3453), 1, sym_identifier, - ACTIONS(3273), 1, + ACTIONS(3455), 1, anon_sym_LPAREN2, - ACTIONS(3275), 1, + ACTIONS(3457), 1, anon_sym_defined, - ACTIONS(3369), 1, + ACTIONS(3537), 1, sym_number_literal, - ACTIONS(3277), 2, + ACTIONS(3459), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3279), 2, + ACTIONS(3461), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3283), 5, + ACTIONS(3465), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1332), 7, + STATE(1469), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -107815,30 +125614,120 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50820] = 9, + [51124] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3541), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3539), 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, + [51152] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3393), 1, + anon_sym_SLASH, + ACTIONS(3389), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3391), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3405), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3407), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3409), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3411), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3473), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3471), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [51194] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3393), 1, + anon_sym_SLASH, + ACTIONS(3403), 1, + anon_sym_AMP, + ACTIONS(3473), 1, + anon_sym_PIPE, + ACTIONS(3389), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3391), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3405), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3407), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3409), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3411), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3471), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [51238] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3271), 1, + ACTIONS(3413), 1, sym_identifier, - ACTIONS(3273), 1, + ACTIONS(3417), 1, anon_sym_LPAREN2, - ACTIONS(3275), 1, + ACTIONS(3419), 1, anon_sym_defined, - ACTIONS(3371), 1, + ACTIONS(3543), 1, sym_number_literal, - ACTIONS(3277), 2, + ACTIONS(3421), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3279), 2, + ACTIONS(3423), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3283), 5, + ACTIONS(3427), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1345), 7, + STATE(1422), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -107846,82 +125735,51 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50860] = 13, + [51278] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1875), 1, + ACTIONS(2053), 1, anon_sym_LPAREN2, - ACTIONS(1877), 1, + ACTIONS(2055), 1, anon_sym_STAR, - ACTIONS(1879), 1, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2510), 1, + ACTIONS(2738), 1, sym_identifier, - ACTIONS(2518), 1, + ACTIONS(2746), 1, anon_sym_LBRACK, - STATE(1465), 1, + STATE(1595), 1, sym__declarator, - STATE(1500), 1, - sym__abstract_declarator, - STATE(1509), 1, + STATE(1676), 1, sym_parameter_list, - STATE(1823), 1, + STATE(1689), 1, + sym__abstract_declarator, + STATE(2180), 1, sym_ms_based_modifier, - ACTIONS(3373), 2, + ACTIONS(3545), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1510), 4, + STATE(1677), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(1415), 5, + STATE(1570), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [50908] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3271), 1, - sym_identifier, - ACTIONS(3273), 1, - anon_sym_LPAREN2, - ACTIONS(3275), 1, - anon_sym_defined, - ACTIONS(3375), 1, - sym_number_literal, - ACTIONS(3277), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3279), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3283), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1324), 7, - 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, - [50948] = 3, + [51326] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3379), 5, + ACTIONS(3549), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3377), 15, + ACTIONS(3547), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -107937,66 +125795,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [50976] = 14, + [51354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3553), 5, anon_sym_SLASH, - ACTIONS(3243), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3245), 1, - anon_sym_AMP_AMP, - ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3249), 1, - anon_sym_CARET, - ACTIONS(3251), 1, anon_sym_AMP, - ACTIONS(3237), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3551), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3239), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3253), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3255), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3257), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3259), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3381), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [51026] = 9, + [51382] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3271), 1, + ACTIONS(3413), 1, sym_identifier, - ACTIONS(3273), 1, + ACTIONS(3417), 1, anon_sym_LPAREN2, - ACTIONS(3275), 1, + ACTIONS(3419), 1, anon_sym_defined, - ACTIONS(3383), 1, + ACTIONS(3555), 1, sym_number_literal, - ACTIONS(3277), 2, + ACTIONS(3421), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3279), 2, + ACTIONS(3423), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3283), 5, + ACTIONS(3427), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1326), 7, + STATE(1428), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -108004,28 +125851,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51066] = 7, + [51422] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3393), 1, anon_sym_SLASH, - ACTIONS(3237), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3239), 2, + ACTIONS(3391), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3259), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3297), 4, + ACTIONS(3473), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3291), 9, + ACTIONS(3471), 13, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -108033,30 +125876,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [51102] = 9, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51454] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3271), 1, + ACTIONS(3453), 1, sym_identifier, - ACTIONS(3273), 1, + ACTIONS(3455), 1, anon_sym_LPAREN2, - ACTIONS(3275), 1, + ACTIONS(3457), 1, anon_sym_defined, - ACTIONS(3385), 1, + ACTIONS(3557), 1, sym_number_literal, - ACTIONS(3277), 2, + ACTIONS(3459), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3279), 2, + ACTIONS(3461), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3283), 5, + ACTIONS(3465), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1335), 7, + STATE(1452), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -108064,61 +125909,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51142] = 9, + [51494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3271), 1, - sym_identifier, - ACTIONS(3273), 1, - anon_sym_LPAREN2, - ACTIONS(3275), 1, - anon_sym_defined, - ACTIONS(3387), 1, - sym_number_literal, - ACTIONS(3277), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3279), 2, + ACTIONS(3473), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3471), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3283), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1323), 7, - 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, - [51182] = 9, + 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, + [51522] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3209), 1, + ACTIONS(3413), 1, sym_identifier, - ACTIONS(3213), 1, + ACTIONS(3417), 1, anon_sym_LPAREN2, - ACTIONS(3215), 1, + ACTIONS(3419), 1, anon_sym_defined, - ACTIONS(3389), 1, + ACTIONS(3559), 1, sym_number_literal, - ACTIONS(3217), 2, + ACTIONS(3421), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3219), 2, + ACTIONS(3423), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3223), 5, + ACTIONS(3427), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1321), 7, + STATE(1418), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -108126,30 +125965,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51222] = 9, + [51562] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3209), 1, + ACTIONS(3453), 1, sym_identifier, - ACTIONS(3213), 1, + ACTIONS(3455), 1, anon_sym_LPAREN2, - ACTIONS(3215), 1, + ACTIONS(3457), 1, anon_sym_defined, - ACTIONS(3391), 1, + ACTIONS(3561), 1, sym_number_literal, - ACTIONS(3217), 2, + ACTIONS(3459), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3219), 2, + ACTIONS(3461), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3223), 5, + ACTIONS(3465), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1307), 7, + STATE(1451), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -108157,30 +125996,64 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51262] = 9, + [51602] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3393), 1, + anon_sym_SLASH, + ACTIONS(3401), 1, + anon_sym_CARET, + ACTIONS(3403), 1, + anon_sym_AMP, + ACTIONS(3473), 1, + anon_sym_PIPE, + ACTIONS(3389), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3391), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3405), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3407), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3409), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3411), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3471), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [51648] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3271), 1, + ACTIONS(3413), 1, sym_identifier, - ACTIONS(3273), 1, + ACTIONS(3417), 1, anon_sym_LPAREN2, - ACTIONS(3275), 1, + ACTIONS(3419), 1, anon_sym_defined, - ACTIONS(3393), 1, + ACTIONS(3563), 1, sym_number_literal, - ACTIONS(3277), 2, + ACTIONS(3421), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3279), 2, + ACTIONS(3423), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3283), 5, + ACTIONS(3427), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1339), 7, + STATE(1421), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -108188,65 +126061,116 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51302] = 3, - ACTIONS(3227), 1, + [51688] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3307), 1, - anon_sym_LF, - ACTIONS(3309), 18, + ACTIONS(3567), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3565), 15, + anon_sym_COMMA, + anon_sym_RPAREN, 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, - [51329] = 3, - ACTIONS(3227), 1, + [51716] = 12, + ACTIONS(3), 1, sym_comment, - ACTIONS(3357), 1, - anon_sym_LF, - ACTIONS(3359), 18, + ACTIONS(3393), 1, + anon_sym_SLASH, + ACTIONS(3399), 1, + anon_sym_PIPE, + ACTIONS(3401), 1, + anon_sym_CARET, + ACTIONS(3403), 1, + anon_sym_AMP, + ACTIONS(3389), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3391), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3405), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3407), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3409), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3411), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3471), 4, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + [51762] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3393), 1, + anon_sym_SLASH, + ACTIONS(3397), 1, + anon_sym_AMP_AMP, + ACTIONS(3399), 1, anon_sym_PIPE, + ACTIONS(3401), 1, anon_sym_CARET, + ACTIONS(3403), 1, anon_sym_AMP, + ACTIONS(3389), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3391), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3405), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3407), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(3409), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(3411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51356] = 3, - ACTIONS(2418), 1, - anon_sym_LF, - ACTIONS(3227), 1, + ACTIONS(3471), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + [51810] = 6, + ACTIONS(3437), 1, sym_comment, - ACTIONS(2420), 18, + ACTIONS(3471), 1, + anon_sym_LF, + ACTIONS(3569), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3573), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3571), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3473), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -108258,82 +126182,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [51383] = 14, - ACTIONS(3), 1, + [51843] = 12, + ACTIONS(3437), 1, sym_comment, - ACTIONS(3241), 1, - anon_sym_SLASH, - ACTIONS(3243), 1, + ACTIONS(3575), 1, + anon_sym_LF, + ACTIONS(3577), 1, anon_sym_PIPE_PIPE, - ACTIONS(3245), 1, + ACTIONS(3579), 1, anon_sym_AMP_AMP, - ACTIONS(3247), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3583), 1, anon_sym_CARET, - ACTIONS(3251), 1, + ACTIONS(3585), 1, anon_sym_AMP, - ACTIONS(3395), 1, - anon_sym_RPAREN, - ACTIONS(3237), 2, + ACTIONS(3569), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3239), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3253), 2, + ACTIONS(3573), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3587), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3255), 2, + ACTIONS(3571), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3589), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(3257), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3259), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [51432] = 12, - ACTIONS(3227), 1, + anon_sym_LT, + [51888] = 12, + ACTIONS(3437), 1, sym_comment, - ACTIONS(3397), 1, - anon_sym_LF, - ACTIONS(3403), 1, + ACTIONS(3577), 1, anon_sym_PIPE_PIPE, - ACTIONS(3405), 1, + ACTIONS(3579), 1, anon_sym_AMP_AMP, - ACTIONS(3407), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3409), 1, + ACTIONS(3583), 1, anon_sym_CARET, - ACTIONS(3411), 1, + ACTIONS(3585), 1, anon_sym_AMP, - ACTIONS(3399), 2, + ACTIONS(3591), 1, + anon_sym_LF, + ACTIONS(3569), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3413), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3417), 2, + ACTIONS(3573), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3401), 3, + ACTIONS(3587), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3571), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3415), 4, + ACTIONS(3589), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [51477] = 3, - ACTIONS(3227), 1, - sym_comment, - ACTIONS(3303), 1, + [51933] = 3, + ACTIONS(2568), 1, anon_sym_LF, - ACTIONS(3305), 18, + ACTIONS(3437), 1, + sym_comment, + ACTIONS(2570), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -108352,212 +126272,246 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [51504] = 14, + [51960] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3393), 1, anon_sym_SLASH, - ACTIONS(3243), 1, + ACTIONS(3395), 1, anon_sym_PIPE_PIPE, - ACTIONS(3245), 1, + ACTIONS(3397), 1, anon_sym_AMP_AMP, - ACTIONS(3247), 1, + ACTIONS(3399), 1, anon_sym_PIPE, - ACTIONS(3249), 1, + ACTIONS(3401), 1, anon_sym_CARET, - ACTIONS(3251), 1, + ACTIONS(3403), 1, anon_sym_AMP, - ACTIONS(3419), 1, + ACTIONS(3593), 1, anon_sym_RPAREN, - ACTIONS(3237), 2, + ACTIONS(3389), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3239), 2, + ACTIONS(3391), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3253), 2, + ACTIONS(3405), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3255), 2, + ACTIONS(3407), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3257), 2, + ACTIONS(3409), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3259), 2, + ACTIONS(3411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51553] = 12, - ACTIONS(3227), 1, + [52009] = 3, + ACTIONS(3437), 1, sym_comment, - ACTIONS(3403), 1, + ACTIONS(3539), 1, + anon_sym_LF, + ACTIONS(3541), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(3405), 1, anon_sym_AMP_AMP, - ACTIONS(3407), 1, anon_sym_PIPE, - ACTIONS(3409), 1, anon_sym_CARET, - ACTIONS(3411), 1, anon_sym_AMP, - ACTIONS(3421), 1, - anon_sym_LF, - ACTIONS(3399), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3413), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3417), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3401), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3415), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [51598] = 12, - ACTIONS(3227), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [52036] = 3, + ACTIONS(3437), 1, sym_comment, - ACTIONS(3403), 1, + ACTIONS(3489), 1, + anon_sym_LF, + ACTIONS(3491), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(3405), 1, anon_sym_AMP_AMP, - ACTIONS(3407), 1, anon_sym_PIPE, - ACTIONS(3409), 1, anon_sym_CARET, - ACTIONS(3411), 1, anon_sym_AMP, - ACTIONS(3423), 1, - anon_sym_LF, - ACTIONS(3399), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3413), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3417), 2, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3401), 3, + [52063] = 3, + ACTIONS(3437), 1, + sym_comment, + ACTIONS(3503), 1, + anon_sym_LF, + ACTIONS(3505), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3415), 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, - [51643] = 12, - ACTIONS(3227), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [52090] = 12, + ACTIONS(3437), 1, sym_comment, - ACTIONS(3403), 1, + ACTIONS(3577), 1, anon_sym_PIPE_PIPE, - ACTIONS(3405), 1, + ACTIONS(3579), 1, anon_sym_AMP_AMP, - ACTIONS(3407), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3409), 1, + ACTIONS(3583), 1, anon_sym_CARET, - ACTIONS(3411), 1, + ACTIONS(3585), 1, anon_sym_AMP, - ACTIONS(3425), 1, + ACTIONS(3595), 1, anon_sym_LF, - ACTIONS(3399), 2, + ACTIONS(3569), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3413), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3417), 2, + ACTIONS(3573), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3401), 3, + ACTIONS(3587), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3571), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3415), 4, + ACTIONS(3589), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [51688] = 12, - ACTIONS(3227), 1, + [52135] = 12, + ACTIONS(3437), 1, sym_comment, - ACTIONS(3403), 1, + ACTIONS(3577), 1, anon_sym_PIPE_PIPE, - ACTIONS(3405), 1, + ACTIONS(3579), 1, anon_sym_AMP_AMP, - ACTIONS(3407), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3409), 1, + ACTIONS(3583), 1, anon_sym_CARET, - ACTIONS(3411), 1, + ACTIONS(3585), 1, anon_sym_AMP, - ACTIONS(3427), 1, + ACTIONS(3597), 1, anon_sym_LF, - ACTIONS(3399), 2, + ACTIONS(3569), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3413), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3417), 2, + ACTIONS(3573), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3401), 3, + ACTIONS(3587), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3571), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3415), 4, + ACTIONS(3589), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [51733] = 12, - ACTIONS(3227), 1, + [52180] = 12, + ACTIONS(3437), 1, sym_comment, - ACTIONS(3403), 1, + ACTIONS(3577), 1, anon_sym_PIPE_PIPE, - ACTIONS(3405), 1, + ACTIONS(3579), 1, anon_sym_AMP_AMP, - ACTIONS(3407), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3409), 1, + ACTIONS(3583), 1, anon_sym_CARET, - ACTIONS(3411), 1, + ACTIONS(3585), 1, anon_sym_AMP, - ACTIONS(3429), 1, + ACTIONS(3599), 1, anon_sym_LF, - ACTIONS(3399), 2, + ACTIONS(3569), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3413), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3417), 2, + ACTIONS(3573), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3401), 3, + ACTIONS(3587), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3571), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3415), 4, + ACTIONS(3589), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [51778] = 3, - ACTIONS(3227), 1, + [52225] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(3347), 1, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(3604), 1, + sym_primitive_type, + STATE(1050), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2862), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3601), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2864), 10, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [52260] = 3, + ACTIONS(3437), 1, + sym_comment, + ACTIONS(3565), 1, anon_sym_LF, - ACTIONS(3349), 18, + ACTIONS(3567), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -108576,166 +126530,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [51805] = 3, - ACTIONS(3227), 1, + [52287] = 12, + ACTIONS(3437), 1, sym_comment, - ACTIONS(3351), 1, + ACTIONS(3577), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3579), 1, + anon_sym_AMP_AMP, + ACTIONS(3581), 1, + anon_sym_PIPE, + ACTIONS(3583), 1, + anon_sym_CARET, + ACTIONS(3585), 1, + anon_sym_AMP, + ACTIONS(3607), 1, anon_sym_LF, - ACTIONS(3353), 18, + ACTIONS(3569), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3573), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3587), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3571), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3589), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [52332] = 12, + ACTIONS(3437), 1, + sym_comment, + ACTIONS(3577), 1, anon_sym_PIPE_PIPE, + ACTIONS(3579), 1, anon_sym_AMP_AMP, + ACTIONS(3581), 1, anon_sym_PIPE, + ACTIONS(3583), 1, anon_sym_CARET, + ACTIONS(3585), 1, anon_sym_AMP, + ACTIONS(3609), 1, + anon_sym_LF, + ACTIONS(3569), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3573), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3587), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3571), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3589), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [51832] = 3, - ACTIONS(3227), 1, + [52377] = 8, + ACTIONS(3437), 1, sym_comment, - ACTIONS(3377), 1, + ACTIONS(3471), 1, anon_sym_LF, - ACTIONS(3379), 18, + ACTIONS(3569), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3573), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3587), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3571), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3589), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(3473), 5, 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, - [51859] = 12, - ACTIONS(3227), 1, + [52414] = 12, + ACTIONS(3437), 1, sym_comment, - ACTIONS(3403), 1, + ACTIONS(3577), 1, anon_sym_PIPE_PIPE, - ACTIONS(3405), 1, + ACTIONS(3579), 1, anon_sym_AMP_AMP, - ACTIONS(3407), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3409), 1, + ACTIONS(3583), 1, anon_sym_CARET, - ACTIONS(3411), 1, + ACTIONS(3585), 1, anon_sym_AMP, - ACTIONS(3431), 1, + ACTIONS(3611), 1, anon_sym_LF, - ACTIONS(3399), 2, + ACTIONS(3569), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3413), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3417), 2, + ACTIONS(3573), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3401), 3, + ACTIONS(3587), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3571), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3415), 4, + ACTIONS(3589), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [51904] = 12, - ACTIONS(3227), 1, + [52459] = 9, + ACTIONS(3437), 1, sym_comment, - ACTIONS(3403), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3405), 1, - anon_sym_AMP_AMP, - ACTIONS(3407), 1, - anon_sym_PIPE, - ACTIONS(3409), 1, - anon_sym_CARET, - ACTIONS(3411), 1, - anon_sym_AMP, - ACTIONS(3433), 1, + ACTIONS(3471), 1, anon_sym_LF, - ACTIONS(3399), 2, + ACTIONS(3585), 1, + anon_sym_AMP, + ACTIONS(3569), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3413), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3417), 2, + ACTIONS(3573), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3401), 3, + ACTIONS(3587), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3571), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3415), 4, + ACTIONS(3473), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3589), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [51949] = 12, - ACTIONS(3227), 1, + [52498] = 12, + ACTIONS(3437), 1, sym_comment, - ACTIONS(3403), 1, + ACTIONS(3577), 1, anon_sym_PIPE_PIPE, - ACTIONS(3405), 1, + ACTIONS(3579), 1, anon_sym_AMP_AMP, - ACTIONS(3407), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3409), 1, + ACTIONS(3583), 1, anon_sym_CARET, - ACTIONS(3411), 1, + ACTIONS(3585), 1, anon_sym_AMP, - ACTIONS(3435), 1, + ACTIONS(3613), 1, anon_sym_LF, - ACTIONS(3399), 2, + ACTIONS(3569), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3413), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3417), 2, + ACTIONS(3573), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3401), 3, + ACTIONS(3587), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3571), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3415), 4, + ACTIONS(3589), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [51994] = 5, - ACTIONS(3227), 1, + [52543] = 4, + ACTIONS(3437), 1, sym_comment, - ACTIONS(3291), 1, + ACTIONS(3471), 1, anon_sym_LF, - ACTIONS(3399), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3401), 3, + ACTIONS(3571), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3297), 13, + ACTIONS(3473), 15, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -108749,22 +126746,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [52025] = 6, - ACTIONS(3227), 1, + [52572] = 3, + ACTIONS(3437), 1, sym_comment, - ACTIONS(3291), 1, + ACTIONS(3551), 1, anon_sym_LF, - ACTIONS(3399), 2, + ACTIONS(3553), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3417), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3401), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3297), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -108776,60 +126768,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [52058] = 12, - ACTIONS(3227), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [52599] = 12, + ACTIONS(3437), 1, sym_comment, - ACTIONS(3403), 1, + ACTIONS(3577), 1, anon_sym_PIPE_PIPE, - ACTIONS(3405), 1, + ACTIONS(3579), 1, anon_sym_AMP_AMP, - ACTIONS(3407), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3409), 1, + ACTIONS(3583), 1, anon_sym_CARET, - ACTIONS(3411), 1, + ACTIONS(3585), 1, anon_sym_AMP, - ACTIONS(3437), 1, + ACTIONS(3615), 1, anon_sym_LF, - ACTIONS(3399), 2, + ACTIONS(3569), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3413), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3417), 2, + ACTIONS(3573), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3401), 3, + ACTIONS(3587), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3571), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3415), 4, + ACTIONS(3589), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [52103] = 7, - ACTIONS(3227), 1, + [52644] = 7, + ACTIONS(3437), 1, sym_comment, - ACTIONS(3291), 1, + ACTIONS(3471), 1, anon_sym_LF, - ACTIONS(3399), 2, + ACTIONS(3569), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3417), 2, + ACTIONS(3573), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3401), 3, + ACTIONS(3571), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3415), 4, + ACTIONS(3589), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(3297), 7, + ACTIONS(3473), 7, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -108837,47 +126831,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [52138] = 8, - ACTIONS(3227), 1, + [52679] = 3, + ACTIONS(3437), 1, sym_comment, - ACTIONS(3291), 1, + ACTIONS(3527), 1, anon_sym_LF, - ACTIONS(3399), 2, + ACTIONS(3529), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3413), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3417), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3401), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3415), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(3297), 5, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - [52175] = 4, - ACTIONS(3227), 1, + 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, + [52706] = 3, + ACTIONS(3437), 1, sym_comment, - ACTIONS(3291), 1, + ACTIONS(3547), 1, anon_sym_LF, - ACTIONS(3401), 3, + ACTIONS(3549), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3297), 15, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -108891,257 +126879,264 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [52204] = 9, - ACTIONS(3227), 1, + [52733] = 5, + ACTIONS(3437), 1, sym_comment, - ACTIONS(3291), 1, + ACTIONS(3471), 1, anon_sym_LF, - ACTIONS(3411), 1, - anon_sym_AMP, - ACTIONS(3399), 2, + ACTIONS(3569), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3413), 2, + ACTIONS(3571), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3473), 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, - ACTIONS(3417), 2, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3401), 3, + [52764] = 3, + ACTIONS(3437), 1, + sym_comment, + ACTIONS(3471), 1, + anon_sym_LF, + ACTIONS(3473), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3297), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3415), 4, + 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, - [52243] = 10, - ACTIONS(3227), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [52791] = 3, + ACTIONS(3437), 1, sym_comment, - ACTIONS(3291), 1, + ACTIONS(3521), 1, anon_sym_LF, - ACTIONS(3409), 1, - anon_sym_CARET, - ACTIONS(3411), 1, - anon_sym_AMP, - ACTIONS(3399), 2, + ACTIONS(3523), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3413), 2, + 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, - ACTIONS(3417), 2, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3297), 3, + [52818] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3393), 1, + anon_sym_SLASH, + ACTIONS(3395), 1, anon_sym_PIPE_PIPE, + ACTIONS(3397), 1, anon_sym_AMP_AMP, + ACTIONS(3399), 1, anon_sym_PIPE, - ACTIONS(3401), 3, + ACTIONS(3401), 1, + anon_sym_CARET, + ACTIONS(3403), 1, + anon_sym_AMP, + ACTIONS(3617), 1, + anon_sym_RPAREN, + ACTIONS(3389), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3391), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3415), 4, + ACTIONS(3405), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3407), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(3409), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - [52284] = 12, - ACTIONS(3227), 1, + ACTIONS(3411), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [52867] = 12, + ACTIONS(3437), 1, sym_comment, - ACTIONS(3403), 1, + ACTIONS(3471), 1, + anon_sym_LF, + ACTIONS(3473), 1, anon_sym_PIPE_PIPE, - ACTIONS(3405), 1, + ACTIONS(3579), 1, anon_sym_AMP_AMP, - ACTIONS(3407), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3409), 1, + ACTIONS(3583), 1, anon_sym_CARET, - ACTIONS(3411), 1, + ACTIONS(3585), 1, anon_sym_AMP, - ACTIONS(3439), 1, - anon_sym_LF, - ACTIONS(3399), 2, + ACTIONS(3569), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3413), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3417), 2, + ACTIONS(3573), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3401), 3, + ACTIONS(3587), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3571), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3415), 4, + ACTIONS(3589), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [52329] = 11, - ACTIONS(3227), 1, + [52912] = 11, + ACTIONS(3437), 1, sym_comment, - ACTIONS(3291), 1, + ACTIONS(3471), 1, anon_sym_LF, - ACTIONS(3407), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3409), 1, + ACTIONS(3583), 1, anon_sym_CARET, - ACTIONS(3411), 1, + ACTIONS(3585), 1, anon_sym_AMP, - ACTIONS(3297), 2, + ACTIONS(3473), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3399), 2, + ACTIONS(3569), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3413), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3417), 2, + ACTIONS(3573), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3401), 3, + ACTIONS(3587), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3571), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3415), 4, + ACTIONS(3589), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [52372] = 12, - ACTIONS(3227), 1, + [52955] = 12, + ACTIONS(3437), 1, sym_comment, - ACTIONS(3291), 1, - anon_sym_LF, - ACTIONS(3297), 1, + ACTIONS(3577), 1, anon_sym_PIPE_PIPE, - ACTIONS(3405), 1, + ACTIONS(3579), 1, anon_sym_AMP_AMP, - ACTIONS(3407), 1, + ACTIONS(3581), 1, anon_sym_PIPE, - ACTIONS(3409), 1, + ACTIONS(3583), 1, anon_sym_CARET, - ACTIONS(3411), 1, + ACTIONS(3585), 1, anon_sym_AMP, - ACTIONS(3399), 2, + ACTIONS(3619), 1, + anon_sym_LF, + ACTIONS(3569), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3413), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3417), 2, + ACTIONS(3573), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3401), 3, + ACTIONS(3587), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3571), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3415), 4, + ACTIONS(3589), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [52417] = 3, - ACTIONS(3227), 1, + [53000] = 10, + ACTIONS(3437), 1, sym_comment, - ACTIONS(3291), 1, + ACTIONS(3471), 1, anon_sym_LF, - ACTIONS(3297), 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, + ACTIONS(3583), 1, anon_sym_CARET, + ACTIONS(3585), 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, - [52444] = 3, - ACTIONS(3227), 1, - sym_comment, - ACTIONS(3299), 1, - anon_sym_LF, - ACTIONS(3301), 18, + ACTIONS(3569), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3573), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3587), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3473), 3, 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, - [52471] = 3, - ACTIONS(3227), 1, - sym_comment, - ACTIONS(3333), 1, - anon_sym_LF, - ACTIONS(3335), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3571), 3, 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, + ACTIONS(3589), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [52498] = 7, + [53041] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2826), 1, - sym_identifier, - ACTIONS(3444), 1, - sym_primitive_type, - STATE(925), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2829), 2, + ACTIONS(2987), 1, + anon_sym_const, + ACTIONS(2994), 1, + anon_sym_LBRACE, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3623), 1, + anon_sym_COLON, + STATE(1116), 1, + sym_attribute_specifier, + STATE(1355), 1, + sym_enumerator_list, + ACTIONS(2989), 11, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3441), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2831), 9, - anon_sym___based, - anon_sym_const, + anon_sym___extension__, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -109149,952 +127144,1857 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [52532] = 10, + [53076] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2057), 1, + anon_sym___based, + ACTIONS(2977), 1, + sym_identifier, + ACTIONS(2979), 1, + anon_sym_LPAREN2, + ACTIONS(2981), 1, + anon_sym_STAR, + ACTIONS(2985), 1, + sym_primitive_type, + STATE(1605), 1, + sym__type_declarator, + STATE(2159), 1, + sym_ms_based_modifier, + ACTIONS(2983), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1612), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [53114] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2057), 1, + anon_sym___based, + ACTIONS(2977), 1, + sym_identifier, + ACTIONS(2979), 1, + anon_sym_LPAREN2, + ACTIONS(2981), 1, + anon_sym_STAR, + ACTIONS(2985), 1, + sym_primitive_type, + STATE(1576), 1, + sym__type_declarator, + STATE(2159), 1, + sym_ms_based_modifier, + ACTIONS(2983), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1612), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [53152] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(3626), 1, + anon_sym_COMMA, + ACTIONS(3628), 1, + anon_sym_LPAREN2, + ACTIONS(3630), 1, + anon_sym_SEMI, + ACTIONS(3632), 1, + anon_sym_LBRACK, + ACTIONS(3634), 1, + anon_sym_EQ, + STATE(481), 1, + sym_compound_statement, + STATE(1480), 1, + sym_parameter_list, + STATE(1781), 1, + sym_gnu_asm_expression, + STATE(1833), 1, + aux_sym_declaration_repeat1, + ACTIONS(3636), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(1511), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [53197] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(550), 1, + anon_sym_LBRACE, + ACTIONS(3626), 1, + anon_sym_COMMA, + ACTIONS(3628), 1, + anon_sym_LPAREN2, + ACTIONS(3632), 1, + anon_sym_LBRACK, + ACTIONS(3634), 1, + anon_sym_EQ, + ACTIONS(3638), 1, + anon_sym_SEMI, + STATE(457), 1, + sym_compound_statement, + STATE(1480), 1, + sym_parameter_list, + STATE(1848), 1, + sym_gnu_asm_expression, + STATE(1850), 1, + aux_sym_declaration_repeat1, + ACTIONS(3636), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(1511), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [53242] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(131), 1, + anon_sym_LBRACE, + ACTIONS(3626), 1, + anon_sym_COMMA, + ACTIONS(3628), 1, + anon_sym_LPAREN2, + ACTIONS(3632), 1, + anon_sym_LBRACK, + ACTIONS(3634), 1, + anon_sym_EQ, + ACTIONS(3640), 1, + anon_sym_SEMI, + STATE(161), 1, + sym_compound_statement, + STATE(1480), 1, + sym_parameter_list, + STATE(1803), 1, + sym_gnu_asm_expression, + STATE(1814), 1, + aux_sym_declaration_repeat1, + ACTIONS(3636), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(1511), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [53287] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(612), 1, + anon_sym_LBRACE, + ACTIONS(3626), 1, + anon_sym_COMMA, + ACTIONS(3628), 1, + anon_sym_LPAREN2, + ACTIONS(3632), 1, + anon_sym_LBRACK, + ACTIONS(3634), 1, + anon_sym_EQ, + ACTIONS(3642), 1, + anon_sym_SEMI, + STATE(460), 1, + sym_compound_statement, + STATE(1480), 1, + sym_parameter_list, + STATE(1818), 1, + aux_sym_declaration_repeat1, + STATE(1820), 1, + sym_gnu_asm_expression, + ACTIONS(3636), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(1511), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [53332] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(199), 1, + anon_sym_LBRACE, + ACTIONS(3626), 1, + anon_sym_COMMA, + ACTIONS(3628), 1, + anon_sym_LPAREN2, + ACTIONS(3632), 1, + anon_sym_LBRACK, + ACTIONS(3634), 1, + anon_sym_EQ, + ACTIONS(3644), 1, + anon_sym_SEMI, + STATE(248), 1, + sym_compound_statement, + STATE(1480), 1, + sym_parameter_list, + STATE(1870), 1, + sym_gnu_asm_expression, + STATE(1871), 1, + aux_sym_declaration_repeat1, + ACTIONS(3636), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(1511), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [53377] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3648), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3651), 1, + anon_sym_LBRACK, + STATE(1479), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3646), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [53403] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3655), 1, + anon_sym_LBRACK, + STATE(1500), 1, + sym_gnu_asm_expression, + ACTIONS(3636), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(1485), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + ACTIONS(3653), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [53433] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2057), 1, + anon_sym___based, + ACTIONS(3082), 1, + sym_identifier, + ACTIONS(3084), 1, + anon_sym_LPAREN2, + ACTIONS(3086), 1, + anon_sym_STAR, + ACTIONS(3657), 1, + anon_sym_SEMI, + STATE(1502), 1, + sym__field_declarator, + STATE(2075), 1, + sym_ms_based_modifier, + STATE(2128), 1, + sym_attribute_specifier, + STATE(1587), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [53471] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2057), 1, + anon_sym___based, + ACTIONS(3082), 1, + sym_identifier, + ACTIONS(3084), 1, + anon_sym_LPAREN2, + ACTIONS(3086), 1, + anon_sym_STAR, + ACTIONS(3659), 1, + anon_sym_SEMI, + STATE(1488), 1, + sym__field_declarator, + STATE(2075), 1, + sym_ms_based_modifier, + STATE(2100), 1, + sym_attribute_specifier, + STATE(1587), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [53509] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2057), 1, + anon_sym___based, + ACTIONS(3082), 1, + sym_identifier, + ACTIONS(3084), 1, + anon_sym_LPAREN2, + ACTIONS(3086), 1, + anon_sym_STAR, + ACTIONS(3661), 1, + anon_sym_SEMI, + STATE(1486), 1, + sym__field_declarator, + STATE(2075), 1, + sym_ms_based_modifier, + STATE(2077), 1, + sym_attribute_specifier, + STATE(1587), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [53547] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2618), 1, + ACTIONS(3082), 1, sym_identifier, - ACTIONS(2620), 1, + ACTIONS(3084), 1, + anon_sym_LPAREN2, + ACTIONS(3086), 1, + anon_sym_STAR, + ACTIONS(3663), 1, + anon_sym_SEMI, + STATE(1497), 1, + sym__field_declarator, + STATE(1977), 1, + sym_attribute_specifier, + STATE(2075), 1, + sym_ms_based_modifier, + STATE(1587), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [53585] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3667), 1, + anon_sym_LBRACK, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + ACTIONS(3665), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [53610] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3628), 1, + anon_sym_LPAREN2, + ACTIONS(3669), 1, + anon_sym_COMMA, + ACTIONS(3671), 1, + anon_sym_SEMI, + ACTIONS(3673), 1, + anon_sym_LBRACK, + ACTIONS(3675), 1, + anon_sym_COLON, + STATE(1594), 1, + sym_parameter_list, + STATE(1663), 1, + aux_sym_field_declaration_repeat1, + STATE(1666), 1, + sym_bitfield_clause, + STATE(2016), 1, + sym_attribute_specifier, + STATE(1575), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [53651] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3626), 1, + anon_sym_COMMA, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(2622), 1, - anon_sym_STAR, - ACTIONS(2626), 1, - sym_primitive_type, - STATE(1469), 1, - sym__type_declarator, - STATE(1895), 1, - sym_ms_based_modifier, - ACTIONS(2624), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1478), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [52570] = 8, + ACTIONS(3632), 1, + anon_sym_LBRACK, + ACTIONS(3634), 1, + anon_sym_EQ, + ACTIONS(3640), 1, + anon_sym_SEMI, + STATE(1480), 1, + sym_parameter_list, + STATE(1803), 1, + sym_gnu_asm_expression, + STATE(1814), 1, + aux_sym_declaration_repeat1, + ACTIONS(3636), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(1511), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [53690] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 1, - anon_sym_const, - ACTIONS(2876), 1, - anon_sym_LBRACE, - ACTIONS(3447), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3621), 1, anon_sym___attribute__, - ACTIONS(3449), 1, + ACTIONS(3628), 1, + anon_sym_LPAREN2, + ACTIONS(3669), 1, + anon_sym_COMMA, + ACTIONS(3673), 1, + anon_sym_LBRACK, + ACTIONS(3675), 1, anon_sym_COLON, - STATE(1004), 1, + ACTIONS(3677), 1, + anon_sym_SEMI, + STATE(1594), 1, + sym_parameter_list, + STATE(1665), 1, + aux_sym_field_declaration_repeat1, + STATE(1667), 1, + sym_bitfield_clause, + STATE(2125), 1, sym_attribute_specifier, - STATE(1232), 1, - sym_enumerator_list, - ACTIONS(2871), 10, + STATE(1575), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [53731] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3628), 1, anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(3632), 1, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [52604] = 10, + STATE(1480), 1, + sym_parameter_list, + STATE(1511), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3679), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [53760] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, - anon_sym___based, - ACTIONS(2618), 1, - sym_identifier, - ACTIONS(2620), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(2622), 1, - anon_sym_STAR, - ACTIONS(2626), 1, - sym_primitive_type, - STATE(1454), 1, - sym__type_declarator, - STATE(1895), 1, - sym_ms_based_modifier, - ACTIONS(2624), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1478), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [52642] = 14, + ACTIONS(3632), 1, + anon_sym_LBRACK, + STATE(1480), 1, + sym_parameter_list, + STATE(1511), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3681), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [53789] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(189), 1, + ACTIONS(3628), 1, + anon_sym_LPAREN2, + ACTIONS(3632), 1, + anon_sym_LBRACK, + STATE(1480), 1, + sym_parameter_list, + STATE(1511), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3683), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3452), 1, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [53818] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3626), 1, anon_sym_COMMA, - ACTIONS(3454), 1, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(3456), 1, - anon_sym_SEMI, - ACTIONS(3458), 1, + ACTIONS(3632), 1, anon_sym_LBRACK, - ACTIONS(3460), 1, + ACTIONS(3634), 1, anon_sym_EQ, - STATE(219), 1, - sym_compound_statement, - STATE(1363), 1, + ACTIONS(3638), 1, + anon_sym_SEMI, + STATE(1480), 1, sym_parameter_list, - STATE(1641), 1, - aux_sym_declaration_repeat1, - STATE(1643), 1, + STATE(1848), 1, sym_gnu_asm_expression, - ACTIONS(3462), 2, + STATE(1850), 1, + aux_sym_declaration_repeat1, + ACTIONS(3636), 2, anon_sym_asm, anon_sym___asm__, - STATE(1379), 2, + STATE(1511), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [52687] = 14, + [53857] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(504), 1, - anon_sym_LBRACE, - ACTIONS(3452), 1, + ACTIONS(3626), 1, anon_sym_COMMA, - ACTIONS(3454), 1, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(3458), 1, + ACTIONS(3632), 1, anon_sym_LBRACK, - ACTIONS(3460), 1, + ACTIONS(3634), 1, anon_sym_EQ, - ACTIONS(3464), 1, + ACTIONS(3685), 1, anon_sym_SEMI, - STATE(495), 1, - sym_compound_statement, - STATE(1363), 1, + STATE(1480), 1, sym_parameter_list, - STATE(1576), 1, + STATE(1791), 1, aux_sym_declaration_repeat1, - STATE(1577), 1, + STATE(1793), 1, sym_gnu_asm_expression, - ACTIONS(3462), 2, + ACTIONS(3636), 2, anon_sym_asm, anon_sym___asm__, - STATE(1379), 2, + STATE(1511), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [52732] = 14, + [53896] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(3689), 1, + anon_sym___attribute__, + ACTIONS(3692), 1, + anon_sym_LBRACK, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + ACTIONS(3687), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(39), 1, anon_sym_LBRACE, - ACTIONS(3452), 1, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [53921] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3626), 1, anon_sym_COMMA, - ACTIONS(3454), 1, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(3458), 1, + ACTIONS(3632), 1, anon_sym_LBRACK, - ACTIONS(3460), 1, + ACTIONS(3634), 1, anon_sym_EQ, - ACTIONS(3466), 1, + ACTIONS(3642), 1, anon_sym_SEMI, - STATE(517), 1, - sym_compound_statement, - STATE(1363), 1, + STATE(1480), 1, sym_parameter_list, - STATE(1624), 1, - sym_gnu_asm_expression, - STATE(1628), 1, + STATE(1818), 1, aux_sym_declaration_repeat1, - ACTIONS(3462), 2, + STATE(1820), 1, + sym_gnu_asm_expression, + ACTIONS(3636), 2, anon_sym_asm, anon_sym___asm__, - STATE(1379), 2, + STATE(1511), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [52777] = 14, + [53960] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(123), 1, - anon_sym_LBRACE, - ACTIONS(3452), 1, + ACTIONS(3626), 1, anon_sym_COMMA, - ACTIONS(3454), 1, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(3458), 1, + ACTIONS(3632), 1, anon_sym_LBRACK, - ACTIONS(3460), 1, + ACTIONS(3634), 1, anon_sym_EQ, - ACTIONS(3468), 1, + ACTIONS(3644), 1, anon_sym_SEMI, - STATE(145), 1, - sym_compound_statement, - STATE(1363), 1, + STATE(1480), 1, sym_parameter_list, - STATE(1603), 1, - aux_sym_declaration_repeat1, - STATE(1633), 1, + STATE(1870), 1, sym_gnu_asm_expression, - ACTIONS(3462), 2, + STATE(1871), 1, + aux_sym_declaration_repeat1, + ACTIONS(3636), 2, anon_sym_asm, anon_sym___asm__, - STATE(1379), 2, + STATE(1511), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [52822] = 14, + [53999] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3628), 1, + anon_sym_LPAREN2, + ACTIONS(3669), 1, + anon_sym_COMMA, + ACTIONS(3673), 1, + anon_sym_LBRACK, + ACTIONS(3675), 1, + anon_sym_COLON, + ACTIONS(3694), 1, + anon_sym_SEMI, + STATE(1594), 1, + sym_parameter_list, + STATE(1679), 1, + sym_bitfield_clause, + STATE(1680), 1, + aux_sym_field_declaration_repeat1, + STATE(2022), 1, + sym_attribute_specifier, + STATE(1575), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [54040] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(462), 1, + ACTIONS(3628), 1, + anon_sym_LPAREN2, + ACTIONS(3632), 1, + anon_sym_LBRACK, + STATE(1480), 1, + sym_parameter_list, + STATE(1511), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3696), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3452), 1, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [54069] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3700), 1, + anon_sym_LBRACK, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + ACTIONS(3698), 9, anon_sym_COMMA, - ACTIONS(3454), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3458), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [54094] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3460), 1, + STATE(1499), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + ACTIONS(3665), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(3470), 1, + anon_sym_asm, + anon_sym___asm__, + [54119] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3626), 1, + anon_sym_COMMA, + ACTIONS(3628), 1, + anon_sym_LPAREN2, + ACTIONS(3630), 1, anon_sym_SEMI, - STATE(410), 1, - sym_compound_statement, - STATE(1363), 1, + ACTIONS(3632), 1, + anon_sym_LBRACK, + ACTIONS(3634), 1, + anon_sym_EQ, + STATE(1480), 1, sym_parameter_list, - STATE(1592), 1, - aux_sym_declaration_repeat1, - STATE(1595), 1, + STATE(1781), 1, sym_gnu_asm_expression, - ACTIONS(3462), 2, + STATE(1833), 1, + aux_sym_declaration_repeat1, + ACTIONS(3636), 2, anon_sym_asm, anon_sym___asm__, - STATE(1379), 2, + STATE(1511), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [54158] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3628), 1, + anon_sym_LPAREN2, + ACTIONS(3669), 1, + anon_sym_COMMA, + ACTIONS(3673), 1, + anon_sym_LBRACK, + ACTIONS(3675), 1, + anon_sym_COLON, + ACTIONS(3702), 1, + anon_sym_SEMI, + STATE(1594), 1, + sym_parameter_list, + STATE(1686), 1, + sym_bitfield_clause, + STATE(1687), 1, + aux_sym_field_declaration_repeat1, + STATE(2105), 1, + sym_attribute_specifier, + STATE(1575), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [52867] = 11, + [54199] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3621), 1, anon_sym___attribute__, - ACTIONS(1879), 1, - anon_sym___based, - ACTIONS(2884), 1, - sym_identifier, - ACTIONS(2886), 1, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(2888), 1, - anon_sym_STAR, - ACTIONS(3472), 1, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3706), 1, anon_sym_SEMI, - STATE(1374), 1, - sym__field_declarator, - STATE(1912), 1, + ACTIONS(3708), 1, + anon_sym_LBRACK, + STATE(1607), 1, + sym_parameter_list, + STATE(1644), 1, + aux_sym_type_definition_repeat2, + STATE(1580), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(1777), 2, sym_attribute_specifier, - STATE(1936), 1, - sym_ms_based_modifier, - STATE(1450), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [52905] = 11, + aux_sym_type_definition_repeat3, + [54235] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3621), 1, anon_sym___attribute__, - ACTIONS(1879), 1, - anon_sym___based, - ACTIONS(2884), 1, - sym_identifier, - ACTIONS(2886), 1, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(2888), 1, - anon_sym_STAR, - ACTIONS(3474), 1, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3708), 1, + anon_sym_LBRACK, + ACTIONS(3710), 1, anon_sym_SEMI, - STATE(1369), 1, - sym__field_declarator, - STATE(1933), 1, + STATE(1607), 1, + sym_parameter_list, + STATE(1619), 1, + aux_sym_type_definition_repeat2, + STATE(1580), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(1722), 2, sym_attribute_specifier, - STATE(1936), 1, - sym_ms_based_modifier, - STATE(1450), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [52943] = 11, + aux_sym_type_definition_repeat3, + [54271] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3628), 1, + anon_sym_LPAREN2, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3708), 1, + anon_sym_LBRACK, + ACTIONS(3712), 1, + anon_sym_SEMI, + STATE(1607), 1, + sym_parameter_list, + STATE(1643), 1, + aux_sym_type_definition_repeat2, + STATE(1580), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(1778), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [54307] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3628), 1, + anon_sym_LPAREN2, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3708), 1, + anon_sym_LBRACK, + ACTIONS(3714), 1, + anon_sym_SEMI, + STATE(1607), 1, + sym_parameter_list, + STATE(1649), 1, + aux_sym_type_definition_repeat2, + STATE(1580), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(1770), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [54343] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3628), 1, + anon_sym_LPAREN2, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3708), 1, + anon_sym_LBRACK, + ACTIONS(3716), 1, + anon_sym_SEMI, + STATE(1607), 1, + sym_parameter_list, + STATE(1632), 1, + aux_sym_type_definition_repeat2, + STATE(1580), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(1768), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [54379] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3628), 1, + anon_sym_LPAREN2, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3708), 1, + anon_sym_LBRACK, + ACTIONS(3718), 1, + anon_sym_SEMI, + STATE(1607), 1, + sym_parameter_list, + STATE(1629), 1, + aux_sym_type_definition_repeat2, + STATE(1580), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(1708), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [54415] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3628), 1, + anon_sym_LPAREN2, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3708), 1, + anon_sym_LBRACK, + ACTIONS(3720), 1, + anon_sym_SEMI, + STATE(1607), 1, + sym_parameter_list, + STATE(1623), 1, + aux_sym_type_definition_repeat2, + STATE(1580), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(1709), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [54451] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3621), 1, anon_sym___attribute__, - ACTIONS(1879), 1, + ACTIONS(3628), 1, + anon_sym_LPAREN2, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3708), 1, + anon_sym_LBRACK, + ACTIONS(3722), 1, + anon_sym_SEMI, + STATE(1607), 1, + sym_parameter_list, + STATE(1655), 1, + aux_sym_type_definition_repeat2, + STATE(1580), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(1743), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [54487] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3726), 1, + anon_sym_LBRACK, + STATE(1479), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3724), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [54511] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2884), 1, + ACTIONS(2738), 1, sym_identifier, - ACTIONS(2886), 1, + ACTIONS(3078), 1, anon_sym_LPAREN2, - ACTIONS(2888), 1, + ACTIONS(3080), 1, anon_sym_STAR, - ACTIONS(3476), 1, - anon_sym_SEMI, - STATE(1368), 1, - sym__field_declarator, - STATE(1843), 1, - sym_attribute_specifier, - STATE(1936), 1, + STATE(1501), 1, + sym__declarator, + STATE(1807), 1, + sym_init_declarator, + STATE(2180), 1, sym_ms_based_modifier, - STATE(1450), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [52981] = 11, + STATE(1570), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [54543] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3621), 1, anon_sym___attribute__, - ACTIONS(1879), 1, + ACTIONS(3628), 1, + anon_sym_LPAREN2, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3708), 1, + anon_sym_LBRACK, + ACTIONS(3728), 1, + anon_sym_SEMI, + STATE(1607), 1, + sym_parameter_list, + STATE(1625), 1, + aux_sym_type_definition_repeat2, + STATE(1580), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(1699), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [54579] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2884), 1, + ACTIONS(2738), 1, sym_identifier, - ACTIONS(2886), 1, + ACTIONS(3078), 1, anon_sym_LPAREN2, - ACTIONS(2888), 1, + ACTIONS(3080), 1, anon_sym_STAR, - ACTIONS(3478), 1, + STATE(1475), 1, + sym__declarator, + STATE(1836), 1, + sym_init_declarator, + STATE(2180), 1, + sym_ms_based_modifier, + STATE(1570), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [54611] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3628), 1, + anon_sym_LPAREN2, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3708), 1, + anon_sym_LBRACK, + ACTIONS(3730), 1, anon_sym_SEMI, - STATE(1364), 1, - sym__field_declarator, - STATE(1784), 1, + STATE(1607), 1, + sym_parameter_list, + STATE(1635), 1, + aux_sym_type_definition_repeat2, + STATE(1580), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(1763), 2, sym_attribute_specifier, - STATE(1936), 1, - sym_ms_based_modifier, - STATE(1450), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [53019] = 5, + aux_sym_type_definition_repeat3, + [54647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3482), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3485), 1, + ACTIONS(3734), 1, anon_sym_LBRACK, - STATE(1360), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3480), 10, + ACTIONS(3732), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [53045] = 7, + [54667] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 1, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(3458), 1, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3708), 1, anon_sym_LBRACK, - STATE(1363), 1, + ACTIONS(3736), 1, + anon_sym_SEMI, + STATE(1607), 1, sym_parameter_list, - STATE(1379), 2, + STATE(1638), 1, + aux_sym_type_definition_repeat2, + STATE(1580), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3487), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [53074] = 7, + STATE(1696), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [54703] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 1, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(3458), 1, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3708), 1, anon_sym_LBRACK, - STATE(1363), 1, + ACTIONS(3738), 1, + anon_sym_SEMI, + STATE(1607), 1, sym_parameter_list, - STATE(1379), 2, + STATE(1653), 1, + aux_sym_type_definition_repeat2, + STATE(1580), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3489), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [53103] = 5, + STATE(1704), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [54739] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3447), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3621), 1, anon_sym___attribute__, - ACTIONS(3493), 1, - anon_sym_LBRACK, - STATE(1377), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3491), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3628), 1, anon_sym_LPAREN2, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3708), 1, + anon_sym_LBRACK, + ACTIONS(3740), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [53128] = 13, + STATE(1607), 1, + sym_parameter_list, + STATE(1627), 1, + aux_sym_type_definition_repeat2, + STATE(1580), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(1758), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [54775] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3447), 1, + ACTIONS(3621), 1, anon_sym___attribute__, - ACTIONS(3454), 1, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(3495), 1, + ACTIONS(3704), 1, anon_sym_COMMA, - ACTIONS(3497), 1, - anon_sym_SEMI, - ACTIONS(3499), 1, + ACTIONS(3708), 1, anon_sym_LBRACK, - ACTIONS(3501), 1, - anon_sym_COLON, - STATE(1466), 1, + ACTIONS(3742), 1, + anon_sym_SEMI, + STATE(1607), 1, sym_parameter_list, - STATE(1516), 1, - sym_bitfield_clause, - STATE(1517), 1, - aux_sym_field_declaration_repeat1, - STATE(1779), 1, - sym_attribute_specifier, - STATE(1417), 2, + STATE(1626), 1, + aux_sym_type_definition_repeat2, + STATE(1580), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53169] = 12, + STATE(1756), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [54811] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3452), 1, - anon_sym_COMMA, - ACTIONS(3454), 1, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(3458), 1, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3708), 1, anon_sym_LBRACK, - ACTIONS(3460), 1, - anon_sym_EQ, - ACTIONS(3466), 1, + ACTIONS(3744), 1, anon_sym_SEMI, - STATE(1363), 1, + STATE(1607), 1, sym_parameter_list, - STATE(1624), 1, - sym_gnu_asm_expression, - STATE(1628), 1, - aux_sym_declaration_repeat1, - ACTIONS(3462), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1379), 2, + STATE(1634), 1, + aux_sym_type_definition_repeat2, + STATE(1580), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53208] = 7, + STATE(1692), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [54847] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2057), 1, + anon_sym___based, + ACTIONS(2738), 1, + sym_identifier, + ACTIONS(3078), 1, + anon_sym_LPAREN2, + ACTIONS(3080), 1, + anon_sym_STAR, + STATE(1474), 1, + sym__declarator, + STATE(1807), 1, + sym_init_declarator, + STATE(2180), 1, + sym_ms_based_modifier, + STATE(1570), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [54879] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 1, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(3458), 1, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3708), 1, anon_sym_LBRACK, - STATE(1363), 1, + ACTIONS(3746), 1, + anon_sym_SEMI, + STATE(1607), 1, sym_parameter_list, - STATE(1379), 2, + STATE(1618), 1, + aux_sym_type_definition_repeat2, + STATE(1580), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3503), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [53237] = 5, + STATE(1716), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [54915] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3507), 1, - anon_sym___attribute__, - ACTIONS(3510), 1, - anon_sym_LBRACK, - STATE(1367), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3505), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2057), 1, + anon_sym___based, + ACTIONS(2738), 1, + sym_identifier, + ACTIONS(3078), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [53262] = 13, + ACTIONS(3080), 1, + anon_sym_STAR, + STATE(1492), 1, + sym__declarator, + STATE(1836), 1, + sym_init_declarator, + STATE(2180), 1, + sym_ms_based_modifier, + STATE(1570), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [54947] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3447), 1, + ACTIONS(3621), 1, anon_sym___attribute__, - ACTIONS(3454), 1, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(3495), 1, + ACTIONS(3704), 1, anon_sym_COMMA, - ACTIONS(3499), 1, + ACTIONS(3708), 1, anon_sym_LBRACK, - ACTIONS(3501), 1, - anon_sym_COLON, - ACTIONS(3512), 1, + ACTIONS(3748), 1, anon_sym_SEMI, - STATE(1466), 1, + STATE(1607), 1, sym_parameter_list, - STATE(1497), 1, - sym_bitfield_clause, - STATE(1507), 1, - aux_sym_field_declaration_repeat1, - STATE(1839), 1, - sym_attribute_specifier, - STATE(1417), 2, + STATE(1642), 1, + aux_sym_type_definition_repeat2, + STATE(1580), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53303] = 13, + STATE(1700), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [54983] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2057), 1, + anon_sym___based, + ACTIONS(2738), 1, + sym_identifier, + ACTIONS(3078), 1, + anon_sym_LPAREN2, + ACTIONS(3080), 1, + anon_sym_STAR, + STATE(1477), 1, + sym__declarator, + STATE(1821), 1, + sym_init_declarator, + STATE(2180), 1, + sym_ms_based_modifier, + STATE(1570), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [55015] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3447), 1, + ACTIONS(3621), 1, anon_sym___attribute__, - ACTIONS(3454), 1, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(3495), 1, + ACTIONS(3704), 1, anon_sym_COMMA, - ACTIONS(3499), 1, + ACTIONS(3708), 1, anon_sym_LBRACK, - ACTIONS(3501), 1, - anon_sym_COLON, - ACTIONS(3514), 1, + ACTIONS(3750), 1, anon_sym_SEMI, - STATE(1466), 1, + STATE(1607), 1, sym_parameter_list, - STATE(1512), 1, - aux_sym_field_declaration_repeat1, - STATE(1520), 1, - sym_bitfield_clause, - STATE(1964), 1, - sym_attribute_specifier, - STATE(1417), 2, + STATE(1628), 1, + aux_sym_type_definition_repeat2, + STATE(1580), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53344] = 12, + STATE(1757), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [55051] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3452), 1, - anon_sym_COMMA, - ACTIONS(3454), 1, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(3458), 1, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3708), 1, anon_sym_LBRACK, - ACTIONS(3460), 1, - anon_sym_EQ, - ACTIONS(3516), 1, + ACTIONS(3752), 1, anon_sym_SEMI, - STATE(1363), 1, + STATE(1607), 1, sym_parameter_list, - STATE(1618), 1, - sym_gnu_asm_expression, - STATE(1619), 1, - aux_sym_declaration_repeat1, - ACTIONS(3462), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1379), 2, + STATE(1658), 1, + aux_sym_type_definition_repeat2, + STATE(1580), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53383] = 7, + STATE(1740), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [55087] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 1, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(3458), 1, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3708), 1, anon_sym_LBRACK, - STATE(1363), 1, + ACTIONS(3754), 1, + anon_sym_SEMI, + STATE(1607), 1, sym_parameter_list, - STATE(1379), 2, + STATE(1633), 1, + aux_sym_type_definition_repeat2, + STATE(1580), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3518), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [53412] = 12, + STATE(1772), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [55123] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3452), 1, - anon_sym_COMMA, - ACTIONS(3454), 1, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(3458), 1, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3708), 1, anon_sym_LBRACK, - ACTIONS(3460), 1, - anon_sym_EQ, - ACTIONS(3464), 1, + ACTIONS(3756), 1, anon_sym_SEMI, - STATE(1363), 1, + STATE(1607), 1, sym_parameter_list, - STATE(1576), 1, - aux_sym_declaration_repeat1, - STATE(1577), 1, - sym_gnu_asm_expression, - ACTIONS(3462), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1379), 2, + STATE(1630), 1, + aux_sym_type_definition_repeat2, + STATE(1580), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53451] = 12, + STATE(1728), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [55159] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2057), 1, + anon_sym___based, + ACTIONS(2738), 1, + sym_identifier, + ACTIONS(3078), 1, + anon_sym_LPAREN2, + ACTIONS(3080), 1, + anon_sym_STAR, + STATE(1478), 1, + sym__declarator, + STATE(1864), 1, + sym_init_declarator, + STATE(2180), 1, + sym_ms_based_modifier, + STATE(1570), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [55191] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3452), 1, - anon_sym_COMMA, - ACTIONS(3454), 1, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(3456), 1, - anon_sym_SEMI, - ACTIONS(3458), 1, + ACTIONS(3632), 1, anon_sym_LBRACK, - ACTIONS(3460), 1, + ACTIONS(3634), 1, anon_sym_EQ, - STATE(1363), 1, + STATE(1480), 1, sym_parameter_list, - STATE(1641), 1, - aux_sym_declaration_repeat1, - STATE(1643), 1, + STATE(1946), 1, sym_gnu_asm_expression, - ACTIONS(3462), 2, + ACTIONS(3636), 2, anon_sym_asm, anon_sym___asm__, - STATE(1379), 2, + ACTIONS(3758), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(1511), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53490] = 13, + [55225] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3447), 1, + ACTIONS(3621), 1, anon_sym___attribute__, - ACTIONS(3454), 1, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(3495), 1, + ACTIONS(3704), 1, anon_sym_COMMA, - ACTIONS(3499), 1, + ACTIONS(3708), 1, anon_sym_LBRACK, - ACTIONS(3501), 1, - anon_sym_COLON, - ACTIONS(3520), 1, + ACTIONS(3760), 1, anon_sym_SEMI, - STATE(1466), 1, + STATE(1607), 1, sym_parameter_list, - STATE(1503), 1, - aux_sym_field_declaration_repeat1, - STATE(1504), 1, - sym_bitfield_clause, - STATE(1905), 1, - sym_attribute_specifier, - STATE(1417), 2, + STATE(1621), 1, + aux_sym_type_definition_repeat2, + STATE(1580), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53531] = 12, + STATE(1736), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [55261] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3452), 1, - anon_sym_COMMA, - ACTIONS(3454), 1, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(3458), 1, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3708), 1, anon_sym_LBRACK, - ACTIONS(3460), 1, - anon_sym_EQ, - ACTIONS(3470), 1, + ACTIONS(3762), 1, anon_sym_SEMI, - STATE(1363), 1, + STATE(1607), 1, sym_parameter_list, - STATE(1592), 1, - aux_sym_declaration_repeat1, - STATE(1595), 1, - sym_gnu_asm_expression, - ACTIONS(3462), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1379), 2, + STATE(1659), 1, + aux_sym_type_definition_repeat2, + STATE(1580), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53570] = 12, + STATE(1695), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [55297] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3452), 1, - anon_sym_COMMA, - ACTIONS(3454), 1, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(3458), 1, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3708), 1, anon_sym_LBRACK, - ACTIONS(3460), 1, - anon_sym_EQ, - ACTIONS(3468), 1, + ACTIONS(3764), 1, anon_sym_SEMI, - STATE(1363), 1, + STATE(1607), 1, sym_parameter_list, - STATE(1603), 1, - aux_sym_declaration_repeat1, - STATE(1633), 1, - sym_gnu_asm_expression, - ACTIONS(3462), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1379), 2, + STATE(1637), 1, + aux_sym_type_definition_repeat2, + STATE(1580), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53609] = 5, + STATE(1719), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [55333] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3447), 1, - anon_sym___attribute__, - ACTIONS(3524), 1, - anon_sym_LBRACK, - STATE(1367), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3522), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2057), 1, + anon_sym___based, + ACTIONS(2738), 1, + sym_identifier, + ACTIONS(3078), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [53634] = 9, + ACTIONS(3080), 1, + anon_sym_STAR, + STATE(1532), 1, + sym__declarator, + STATE(1918), 1, + sym_init_declarator, + STATE(2180), 1, + sym_ms_based_modifier, + STATE(1570), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [55365] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2510), 1, + ACTIONS(2738), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(3078), 1, anon_sym_LPAREN2, - ACTIONS(2892), 1, + ACTIONS(3080), 1, anon_sym_STAR, - STATE(1373), 1, + STATE(1496), 1, sym__declarator, - STATE(1670), 1, + STATE(1864), 1, sym_init_declarator, - STATE(1823), 1, + STATE(2180), 1, sym_ms_based_modifier, - STATE(1415), 5, + STATE(1570), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [53666] = 5, + [55397] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3528), 1, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3628), 1, + anon_sym_LPAREN2, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3708), 1, anon_sym_LBRACK, - STATE(1360), 2, + ACTIONS(3766), 1, + anon_sym_SEMI, + STATE(1607), 1, + sym_parameter_list, + STATE(1652), 1, + aux_sym_type_definition_repeat2, + STATE(1580), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3526), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [53690] = 3, + STATE(1751), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [55433] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3532), 1, - anon_sym_LBRACK, - ACTIONS(3530), 11, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3628), 1, anon_sym_LPAREN2, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3708), 1, + anon_sym_LBRACK, + ACTIONS(3768), 1, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [53710] = 9, + STATE(1607), 1, + sym_parameter_list, + STATE(1620), 1, + aux_sym_type_definition_repeat2, + STATE(1580), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(1732), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [55469] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2510), 1, + ACTIONS(2738), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(3078), 1, anon_sym_LPAREN2, - ACTIONS(2892), 1, + ACTIONS(3080), 1, anon_sym_STAR, - STATE(1383), 1, + STATE(1495), 1, sym__declarator, - STATE(1693), 1, + STATE(1821), 1, sym_init_declarator, - STATE(1823), 1, + STATE(2180), 1, sym_ms_based_modifier, - STATE(1415), 5, + STATE(1570), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [53742] = 9, + [55501] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2510), 1, + ACTIONS(2738), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(3078), 1, anon_sym_LPAREN2, - ACTIONS(2892), 1, + ACTIONS(3080), 1, anon_sym_STAR, - STATE(1372), 1, + STATE(1487), 1, sym__declarator, - STATE(1584), 1, + STATE(1790), 1, sym_init_declarator, - STATE(1823), 1, + STATE(2180), 1, sym_ms_based_modifier, - STATE(1415), 5, + STATE(1570), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [53774] = 10, + [55533] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 1, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(3458), 1, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3708), 1, anon_sym_LBRACK, - ACTIONS(3460), 1, - anon_sym_EQ, - STATE(1363), 1, + ACTIONS(3770), 1, + anon_sym_SEMI, + STATE(1607), 1, sym_parameter_list, - STATE(1680), 1, - sym_gnu_asm_expression, - ACTIONS(3462), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(3534), 2, + STATE(1645), 1, + aux_sym_type_definition_repeat2, + STATE(1580), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(1779), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [55569] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3628), 1, + anon_sym_LPAREN2, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3708), 1, + anon_sym_LBRACK, + ACTIONS(3772), 1, + anon_sym_SEMI, + STATE(1607), 1, + sym_parameter_list, + STATE(1647), 1, + aux_sym_type_definition_repeat2, + STATE(1580), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(1706), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [55605] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3628), 1, + anon_sym_LPAREN2, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3708), 1, + anon_sym_LBRACK, + ACTIONS(3774), 1, + anon_sym_SEMI, + STATE(1607), 1, + sym_parameter_list, + STATE(1650), 1, + aux_sym_type_definition_repeat2, + STATE(1580), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(1752), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [55641] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3628), 1, + anon_sym_LPAREN2, + ACTIONS(3704), 1, anon_sym_COMMA, + ACTIONS(3708), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, anon_sym_SEMI, - STATE(1379), 2, + STATE(1607), 1, + sym_parameter_list, + STATE(1636), 1, + aux_sym_type_definition_repeat2, + STATE(1580), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53808] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1879), 1, - anon_sym___based, - ACTIONS(2510), 1, - sym_identifier, - ACTIONS(2890), 1, - anon_sym_LPAREN2, - ACTIONS(2892), 1, - anon_sym_STAR, - STATE(1365), 1, - sym__declarator, - STATE(1653), 1, - sym_init_declarator, - STATE(1823), 1, - sym_ms_based_modifier, - STATE(1415), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [53840] = 3, + STATE(1712), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [55677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3538), 1, + ACTIONS(3780), 1, anon_sym_LBRACK, - ACTIONS(3536), 11, + ACTIONS(3778), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -110106,523 +129006,364 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [53860] = 9, + [55697] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2510), 1, + ACTIONS(2738), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(3078), 1, anon_sym_LPAREN2, - ACTIONS(2892), 1, + ACTIONS(3080), 1, anon_sym_STAR, - STATE(1352), 1, + STATE(1493), 1, sym__declarator, - STATE(1584), 1, + STATE(1808), 1, sym_init_declarator, - STATE(1823), 1, + STATE(2180), 1, sym_ms_based_modifier, - STATE(1415), 5, + STATE(1570), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [53892] = 9, + [55729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, - anon_sym___based, - ACTIONS(2510), 1, - sym_identifier, - ACTIONS(2890), 1, + ACTIONS(3784), 1, + anon_sym_LBRACK, + ACTIONS(3782), 11, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2892), 1, - anon_sym_STAR, - STATE(1351), 1, - sym__declarator, - STATE(1670), 1, - sym_init_declarator, - STATE(1823), 1, - sym_ms_based_modifier, - STATE(1415), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [53924] = 9, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [55749] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2510), 1, + ACTIONS(2738), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(3078), 1, anon_sym_LPAREN2, - ACTIONS(2892), 1, + ACTIONS(3080), 1, anon_sym_STAR, - STATE(1375), 1, + STATE(1476), 1, sym__declarator, - STATE(1598), 1, + STATE(1790), 1, sym_init_declarator, - STATE(1823), 1, + STATE(2180), 1, sym_ms_based_modifier, - STATE(1415), 5, + STATE(1570), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [53956] = 9, + [55781] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, - anon_sym___based, - ACTIONS(2510), 1, - sym_identifier, - ACTIONS(2890), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(2892), 1, - anon_sym_STAR, - STATE(1353), 1, - sym__declarator, - STATE(1653), 1, - sym_init_declarator, - STATE(1823), 1, - sym_ms_based_modifier, - STATE(1415), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [53988] = 9, + ACTIONS(3673), 1, + anon_sym_LBRACK, + STATE(1594), 1, + sym_parameter_list, + STATE(1575), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3786), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [55808] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2510), 1, + ACTIONS(2738), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(3078), 1, anon_sym_LPAREN2, - ACTIONS(2892), 1, + ACTIONS(3080), 1, anon_sym_STAR, - STATE(1370), 1, + STATE(1597), 1, sym__declarator, - STATE(1607), 1, - sym_init_declarator, - STATE(1823), 1, + STATE(2180), 1, sym_ms_based_modifier, - STATE(1415), 5, + STATE(1570), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [54020] = 9, + [55837] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2510), 1, + ACTIONS(2738), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(3078), 1, anon_sym_LPAREN2, - ACTIONS(2892), 1, + ACTIONS(3080), 1, anon_sym_STAR, - STATE(1354), 1, + STATE(1592), 1, sym__declarator, - STATE(1646), 1, - sym_init_declarator, - STATE(1823), 1, + STATE(2180), 1, sym_ms_based_modifier, - STATE(1415), 5, + STATE(1570), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [54052] = 9, + [55866] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2510), 1, + ACTIONS(2738), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(3078), 1, anon_sym_LPAREN2, - ACTIONS(2892), 1, + ACTIONS(3080), 1, anon_sym_STAR, - STATE(1376), 1, + STATE(1588), 1, sym__declarator, - STATE(1646), 1, - sym_init_declarator, - STATE(1823), 1, + STATE(2180), 1, sym_ms_based_modifier, - STATE(1415), 5, + STATE(1570), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [54084] = 3, + [55895] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3542), 1, - anon_sym_LBRACK, - ACTIONS(3540), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [54104] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1879), 1, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2510), 1, + ACTIONS(3082), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(3084), 1, anon_sym_LPAREN2, - ACTIONS(2892), 1, + ACTIONS(3086), 1, anon_sym_STAR, - STATE(1355), 1, - sym__declarator, - STATE(1598), 1, - sym_init_declarator, - STATE(1823), 1, + STATE(1558), 1, + sym__field_declarator, + STATE(2075), 1, sym_ms_based_modifier, - STATE(1415), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [54136] = 7, + STATE(1587), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [55924] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 1, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(3499), 1, + ACTIONS(3673), 1, anon_sym_LBRACK, - STATE(1466), 1, + STATE(1594), 1, sym_parameter_list, - STATE(1417), 2, + STATE(1575), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3544), 5, + ACTIONS(3788), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [54163] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 1, - anon_sym_LPAREN2, - ACTIONS(3499), 1, - anon_sym_LBRACK, - ACTIONS(3501), 1, - anon_sym_COLON, - STATE(1466), 1, - sym_parameter_list, - STATE(1650), 1, - sym_bitfield_clause, - STATE(1417), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3546), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [54194] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1879), 1, - anon_sym___based, - ACTIONS(2884), 1, - sym_identifier, - ACTIONS(2886), 1, - anon_sym_LPAREN2, - ACTIONS(2888), 1, - anon_sym_STAR, - STATE(1396), 1, - sym__field_declarator, - STATE(1936), 1, - sym_ms_based_modifier, - STATE(1450), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [54223] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1879), 1, - anon_sym___based, - ACTIONS(2510), 1, - sym_identifier, - ACTIONS(2890), 1, - anon_sym_LPAREN2, - ACTIONS(2892), 1, - anon_sym_STAR, - STATE(1470), 1, - sym__declarator, - STATE(1823), 1, - sym_ms_based_modifier, - STATE(1415), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [54252] = 7, + [55951] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 1, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(3499), 1, + ACTIONS(3673), 1, anon_sym_LBRACK, - STATE(1466), 1, + STATE(1594), 1, sym_parameter_list, - STATE(1417), 2, + STATE(1575), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3548), 5, + ACTIONS(3790), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [54279] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2240), 1, - sym_identifier, - ACTIONS(3550), 1, - anon_sym_RPAREN, - ACTIONS(3552), 1, - anon_sym_COLON, - STATE(1671), 1, - sym_gnu_asm_output_operand_list, - STATE(764), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [54306] = 8, + [55978] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2510), 1, + ACTIONS(2738), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(3078), 1, anon_sym_LPAREN2, - ACTIONS(2892), 1, + ACTIONS(3080), 1, anon_sym_STAR, - STATE(1448), 1, + STATE(1600), 1, sym__declarator, - STATE(1823), 1, + STATE(2180), 1, sym_ms_based_modifier, - STATE(1415), 5, + STATE(1570), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [54335] = 7, + [56007] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 1, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(3499), 1, + ACTIONS(3673), 1, anon_sym_LBRACK, - STATE(1466), 1, + ACTIONS(3675), 1, + anon_sym_COLON, + STATE(1594), 1, sym_parameter_list, - STATE(1417), 2, + STATE(1863), 1, + sym_bitfield_clause, + STATE(1575), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3554), 5, + ACTIONS(3792), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - [54362] = 7, + [56038] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 1, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(3499), 1, + ACTIONS(3673), 1, anon_sym_LBRACK, - STATE(1466), 1, + STATE(1594), 1, sym_parameter_list, - STATE(1417), 2, + STATE(1575), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3556), 5, + ACTIONS(3794), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [54389] = 8, + [56065] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2510), 1, + ACTIONS(2738), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(3078), 1, anon_sym_LPAREN2, - ACTIONS(2892), 1, + ACTIONS(3080), 1, anon_sym_STAR, - STATE(1451), 1, + STATE(1603), 1, sym__declarator, - STATE(1823), 1, + STATE(2180), 1, sym_ms_based_modifier, - STATE(1415), 5, + STATE(1570), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [54418] = 7, + [56094] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2240), 1, - sym_identifier, - ACTIONS(3552), 1, - anon_sym_COLON, - ACTIONS(3558), 1, - anon_sym_RPAREN, - STATE(1654), 1, - sym_gnu_asm_output_operand_list, - STATE(764), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [54445] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1879), 1, - anon_sym___based, - ACTIONS(2884), 1, - sym_identifier, - ACTIONS(2886), 1, - anon_sym_LPAREN2, - ACTIONS(2888), 1, - anon_sym_STAR, - STATE(1471), 1, - sym__field_declarator, - STATE(1936), 1, - sym_ms_based_modifier, - STATE(1450), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [54474] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1879), 1, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2510), 1, + ACTIONS(2738), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(3078), 1, anon_sym_LPAREN2, - ACTIONS(2892), 1, + ACTIONS(3080), 1, anon_sym_STAR, - STATE(1457), 1, + STATE(1606), 1, sym__declarator, - STATE(1823), 1, + STATE(2180), 1, sym_ms_based_modifier, - STATE(1415), 5, + STATE(1570), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [54503] = 8, + [56123] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(2057), 1, anon_sym___based, - ACTIONS(2510), 1, + ACTIONS(3082), 1, sym_identifier, - ACTIONS(2890), 1, + ACTIONS(3084), 1, anon_sym_LPAREN2, - ACTIONS(2892), 1, + ACTIONS(3086), 1, anon_sym_STAR, - STATE(1452), 1, - sym__declarator, - STATE(1823), 1, + STATE(1604), 1, + sym__field_declarator, + STATE(2075), 1, sym_ms_based_modifier, - STATE(1415), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [54532] = 8, + STATE(1587), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [56152] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, - anon_sym___based, - ACTIONS(2510), 1, - sym_identifier, - ACTIONS(2890), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(2892), 1, - anon_sym_STAR, - STATE(1462), 1, - sym__declarator, - STATE(1823), 1, - sym_ms_based_modifier, - STATE(1415), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [54561] = 3, + ACTIONS(3708), 1, + anon_sym_LBRACK, + STATE(1607), 1, + sym_parameter_list, + STATE(1580), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3796), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + [56178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3562), 1, + ACTIONS(3800), 1, anon_sym_LBRACK, - ACTIONS(3560), 9, + ACTIONS(3798), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -110632,12 +129373,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [54579] = 3, + [56196] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3566), 1, + ACTIONS(3804), 1, anon_sym_LBRACK, - ACTIONS(3564), 9, + ACTIONS(3802), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -110647,63 +129388,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [54597] = 3, + [56214] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3570), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3628), 1, + anon_sym_LPAREN2, + ACTIONS(3708), 1, anon_sym_LBRACK, - ACTIONS(3568), 9, + STATE(1607), 1, + sym_parameter_list, + STATE(1580), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3806), 4, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [54615] = 6, + anon_sym___attribute__, + [56240] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3574), 1, + ACTIONS(3810), 1, anon_sym_LBRACK, - STATE(1534), 1, - sym_gnu_asm_output_operand, - STATE(1995), 1, + STATE(1747), 1, + sym_gnu_asm_input_operand, + STATE(2107), 1, sym_string_literal, - ACTIONS(3572), 2, + ACTIONS(3808), 2, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [54639] = 6, + [56264] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3578), 1, + ACTIONS(3814), 1, anon_sym_LBRACK, - STATE(1535), 1, - sym_gnu_asm_input_operand, - STATE(2003), 1, + STATE(1760), 1, + sym_gnu_asm_output_operand, + STATE(2000), 1, sym_string_literal, - ACTIONS(3576), 2, + ACTIONS(3812), 2, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [54663] = 3, + [56288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3582), 1, + ACTIONS(3818), 1, anon_sym_LBRACK, - ACTIONS(3580), 9, + ACTIONS(3816), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -110713,12 +129458,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [54681] = 3, + [56306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3586), 1, + ACTIONS(3822), 1, anon_sym_LBRACK, - ACTIONS(3584), 9, + ACTIONS(3820), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -110728,29 +129473,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [54699] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3590), 1, - anon_sym_LBRACK, - STATE(1360), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3588), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - [54721] = 3, + [56324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3594), 1, + ACTIONS(3826), 1, anon_sym_LBRACK, - ACTIONS(3592), 9, + ACTIONS(3824), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -110760,582 +129488,471 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [54739] = 9, + [56342] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 1, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(3596), 1, - anon_sym_COMMA, - ACTIONS(3598), 1, - anon_sym_SEMI, - ACTIONS(3600), 1, + ACTIONS(3708), 1, anon_sym_LBRACK, - STATE(1477), 1, + STATE(1607), 1, sym_parameter_list, - STATE(1562), 1, - aux_sym_type_definition_repeat2, - STATE(1456), 2, + STATE(1580), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54768] = 9, + ACTIONS(3828), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + [56368] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 1, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(3596), 1, - anon_sym_COMMA, - ACTIONS(3600), 1, + ACTIONS(3708), 1, anon_sym_LBRACK, - ACTIONS(3602), 1, - anon_sym_SEMI, - STATE(1477), 1, + STATE(1607), 1, sym_parameter_list, - STATE(1566), 1, - aux_sym_type_definition_repeat2, - STATE(1456), 2, + STATE(1580), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54797] = 9, + ACTIONS(3830), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + [56394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 1, - anon_sym_LPAREN2, - ACTIONS(3596), 1, - anon_sym_COMMA, - ACTIONS(3600), 1, + ACTIONS(3834), 1, anon_sym_LBRACK, - ACTIONS(3604), 1, + ACTIONS(3832), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(1477), 1, - sym_parameter_list, - STATE(1596), 1, - aux_sym_type_definition_repeat2, - STATE(1456), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [54826] = 9, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [56412] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 1, - anon_sym_LPAREN2, - ACTIONS(3596), 1, - anon_sym_COMMA, - ACTIONS(3600), 1, + ACTIONS(3838), 1, anon_sym_LBRACK, - ACTIONS(3606), 1, - anon_sym_SEMI, - STATE(1477), 1, - sym_parameter_list, - STATE(1664), 1, - aux_sym_type_definition_repeat2, - STATE(1456), 2, + STATE(1479), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54855] = 9, + ACTIONS(3836), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [56434] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 1, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(3596), 1, - anon_sym_COMMA, - ACTIONS(3600), 1, + ACTIONS(3708), 1, anon_sym_LBRACK, - ACTIONS(3608), 1, - anon_sym_SEMI, - STATE(1477), 1, + STATE(1607), 1, sym_parameter_list, - STATE(1626), 1, - aux_sym_type_definition_repeat2, - STATE(1456), 2, + STATE(1580), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54884] = 5, + ACTIONS(3840), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [56459] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3610), 1, + ACTIONS(3842), 1, sym_identifier, - ACTIONS(3614), 1, + ACTIONS(3846), 1, sym_system_lib_string, - STATE(1776), 2, + STATE(2216), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(3612), 5, + ACTIONS(3844), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [54905] = 9, + [56480] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 1, - anon_sym_LPAREN2, - ACTIONS(3596), 1, - anon_sym_COMMA, - ACTIONS(3600), 1, - anon_sym_LBRACK, - ACTIONS(3616), 1, - anon_sym_SEMI, - STATE(1477), 1, - sym_parameter_list, - STATE(1556), 1, - aux_sym_type_definition_repeat2, - STATE(1456), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [54934] = 5, + ACTIONS(3848), 1, + anon_sym_RPAREN, + ACTIONS(3850), 1, + anon_sym_COLON, + STATE(850), 1, + sym_string_literal, + STATE(1812), 1, + sym_gnu_asm_output_operand_list, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [56503] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3618), 1, + ACTIONS(3852), 1, sym_identifier, - ACTIONS(3620), 1, + ACTIONS(3854), 1, sym_system_lib_string, - STATE(1880), 2, + STATE(2029), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(3612), 5, + ACTIONS(3844), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [54955] = 9, + [56524] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 1, - anon_sym_LPAREN2, - ACTIONS(3596), 1, - anon_sym_COMMA, - ACTIONS(3600), 1, - anon_sym_LBRACK, - ACTIONS(3622), 1, - anon_sym_SEMI, - STATE(1477), 1, - sym_parameter_list, - STATE(1617), 1, - aux_sym_type_definition_repeat2, - STATE(1456), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [54984] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 1, - anon_sym_LPAREN2, - ACTIONS(3600), 1, + ACTIONS(3858), 1, anon_sym_LBRACK, - STATE(1477), 1, - sym_parameter_list, - STATE(1456), 2, + STATE(1479), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3624), 3, + ACTIONS(3856), 5, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - [55009] = 5, + anon_sym___attribute__, + [56545] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3626), 1, + ACTIONS(3860), 1, sym_identifier, - ACTIONS(3628), 1, + ACTIONS(3862), 1, sym_system_lib_string, - STATE(1865), 2, + STATE(2163), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(3612), 5, + ACTIONS(3844), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [55030] = 9, + [56566] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 1, - anon_sym_LPAREN2, - ACTIONS(3596), 1, - anon_sym_COMMA, - ACTIONS(3600), 1, - anon_sym_LBRACK, - ACTIONS(3630), 1, - anon_sym_SEMI, - STATE(1477), 1, - sym_parameter_list, - STATE(1621), 1, - aux_sym_type_definition_repeat2, - STATE(1456), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [55059] = 7, + ACTIONS(3864), 1, + sym_identifier, + ACTIONS(3866), 1, + sym_system_lib_string, + STATE(2014), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(3844), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [56587] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 1, - anon_sym_LPAREN2, - ACTIONS(3600), 1, - anon_sym_LBRACK, - STATE(1477), 1, - sym_parameter_list, - STATE(1456), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3632), 3, - anon_sym_COMMA, + ACTIONS(3850), 1, + anon_sym_COLON, + ACTIONS(3868), 1, anon_sym_RPAREN, - anon_sym_SEMI, - [55084] = 9, + STATE(850), 1, + sym_string_literal, + STATE(1855), 1, + sym_gnu_asm_output_operand_list, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [56610] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 1, - anon_sym_LPAREN2, - ACTIONS(3596), 1, - anon_sym_COMMA, - ACTIONS(3600), 1, - anon_sym_LBRACK, - ACTIONS(3634), 1, - anon_sym_SEMI, - STATE(1477), 1, - sym_parameter_list, - STATE(1648), 1, - aux_sym_type_definition_repeat2, - STATE(1456), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [55113] = 9, + ACTIONS(3870), 1, + sym_identifier, + ACTIONS(3872), 1, + sym_system_lib_string, + STATE(2212), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(3844), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [56631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 1, - anon_sym_LPAREN2, - ACTIONS(3596), 1, - anon_sym_COMMA, - ACTIONS(3600), 1, + ACTIONS(3876), 1, anon_sym_LBRACK, - ACTIONS(3636), 1, + ACTIONS(3874), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(1477), 1, - sym_parameter_list, - STATE(1637), 1, - aux_sym_type_definition_repeat2, - STATE(1456), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [55142] = 9, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [56647] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 1, - anon_sym_LPAREN2, - ACTIONS(3596), 1, - anon_sym_COMMA, - ACTIONS(3600), 1, - anon_sym_LBRACK, - ACTIONS(3638), 1, - anon_sym_SEMI, - STATE(1477), 1, - sym_parameter_list, - STATE(1625), 1, - aux_sym_type_definition_repeat2, - STATE(1456), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [55171] = 7, + STATE(1723), 1, + sym_string_literal, + ACTIONS(3878), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [56665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 1, - anon_sym_LPAREN2, - ACTIONS(3600), 1, + ACTIONS(3882), 1, anon_sym_LBRACK, - STATE(1477), 1, - sym_parameter_list, - STATE(1456), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3640), 3, + ACTIONS(3880), 7, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - [55196] = 9, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [56681] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 1, + ACTIONS(550), 1, + anon_sym_LBRACE, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(3596), 1, - anon_sym_COMMA, - ACTIONS(3600), 1, + ACTIONS(3632), 1, anon_sym_LBRACK, - ACTIONS(3642), 1, - anon_sym_SEMI, - STATE(1477), 1, + STATE(467), 1, + sym_compound_statement, + STATE(1480), 1, sym_parameter_list, - STATE(1564), 1, - aux_sym_type_definition_repeat2, - STATE(1456), 2, + STATE(1511), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55225] = 7, + [56707] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 1, - anon_sym_LPAREN2, - ACTIONS(3600), 1, + ACTIONS(3814), 1, anon_sym_LBRACK, - STATE(1477), 1, - sym_parameter_list, - STATE(1456), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3644), 3, + STATE(1857), 1, + sym_gnu_asm_output_operand, + STATE(2000), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [56727] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3886), 1, + anon_sym_LBRACK, + ACTIONS(3884), 7, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - [55250] = 9, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [56743] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(3810), 1, + anon_sym_LBRACK, + STATE(1827), 1, + sym_gnu_asm_input_operand, + STATE(2107), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [56763] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 1, + ACTIONS(131), 1, + anon_sym_LBRACE, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(3596), 1, - anon_sym_COMMA, - ACTIONS(3600), 1, + ACTIONS(3632), 1, anon_sym_LBRACK, - ACTIONS(3646), 1, - anon_sym_SEMI, - STATE(1477), 1, + STATE(152), 1, + sym_compound_statement, + STATE(1480), 1, sym_parameter_list, - STATE(1610), 1, - aux_sym_type_definition_repeat2, - STATE(1456), 2, + STATE(1511), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55279] = 5, + [56789] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3648), 1, + ACTIONS(3888), 1, sym_identifier, - ACTIONS(3650), 1, - sym_system_lib_string, - STATE(2022), 2, - sym_preproc_call_expression, + STATE(1578), 1, sym_string_literal, - ACTIONS(3612), 5, + STATE(1849), 1, + sym_concatenated_string, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [55300] = 9, + [56809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 1, - anon_sym_LPAREN2, - ACTIONS(3596), 1, - anon_sym_COMMA, - ACTIONS(3600), 1, + ACTIONS(3892), 1, anon_sym_LBRACK, - ACTIONS(3652), 1, - anon_sym_SEMI, - STATE(1477), 1, - sym_parameter_list, - STATE(1604), 1, - aux_sym_type_definition_repeat2, - STATE(1456), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [55329] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 1, - anon_sym_LPAREN2, - ACTIONS(3596), 1, + ACTIONS(3890), 7, anon_sym_COMMA, - ACTIONS(3600), 1, - anon_sym_LBRACK, - ACTIONS(3654), 1, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(1477), 1, - sym_parameter_list, - STATE(1571), 1, - aux_sym_type_definition_repeat2, - STATE(1456), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [55358] = 9, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [56825] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 1, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(3596), 1, - anon_sym_COMMA, - ACTIONS(3600), 1, + ACTIONS(3632), 1, anon_sym_LBRACK, - ACTIONS(3656), 1, - anon_sym_SEMI, - STATE(1477), 1, + STATE(1480), 1, sym_parameter_list, - STATE(1638), 1, - aux_sym_type_definition_repeat2, - STATE(1456), 2, + ACTIONS(3894), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1511), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55387] = 5, + [56849] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3658), 1, + ACTIONS(3888), 1, sym_identifier, - ACTIONS(3660), 1, - sym_system_lib_string, - STATE(1806), 2, - sym_preproc_call_expression, + STATE(1583), 1, sym_string_literal, - ACTIONS(3612), 5, + STATE(1829), 1, + sym_concatenated_string, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [55408] = 9, + [56869] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 1, + ACTIONS(199), 1, + anon_sym_LBRACE, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(3596), 1, - anon_sym_COMMA, - ACTIONS(3600), 1, + ACTIONS(3632), 1, anon_sym_LBRACK, - ACTIONS(3662), 1, - anon_sym_SEMI, - STATE(1477), 1, + STATE(239), 1, + sym_compound_statement, + STATE(1480), 1, sym_parameter_list, - STATE(1555), 1, - aux_sym_type_definition_repeat2, - STATE(1456), 2, + STATE(1511), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55437] = 9, + [56895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 1, - anon_sym_LPAREN2, - ACTIONS(3596), 1, - anon_sym_COMMA, - ACTIONS(3600), 1, + ACTIONS(3898), 1, anon_sym_LBRACK, - ACTIONS(3664), 1, - anon_sym_SEMI, - STATE(1477), 1, - sym_parameter_list, - STATE(1612), 1, - aux_sym_type_definition_repeat2, - STATE(1456), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [55466] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 1, - anon_sym_LPAREN2, - ACTIONS(3596), 1, + ACTIONS(3896), 7, anon_sym_COMMA, - ACTIONS(3600), 1, - anon_sym_LBRACK, - ACTIONS(3666), 1, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(1477), 1, - sym_parameter_list, - STATE(1608), 1, - aux_sym_type_definition_repeat2, - STATE(1456), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [55495] = 9, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [56911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 1, - anon_sym_LPAREN2, - ACTIONS(3596), 1, - anon_sym_COMMA, - ACTIONS(3600), 1, + ACTIONS(3902), 1, anon_sym_LBRACK, - ACTIONS(3668), 1, + ACTIONS(3900), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(1477), 1, - sym_parameter_list, - STATE(1563), 1, - aux_sym_type_definition_repeat2, - STATE(1456), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [55524] = 8, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [56927] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(39), 1, + ACTIONS(612), 1, anon_sym_LBRACE, - ACTIONS(3454), 1, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(3458), 1, + ACTIONS(3632), 1, anon_sym_LBRACK, - STATE(514), 1, + STATE(440), 1, sym_compound_statement, - STATE(1363), 1, + STATE(1480), 1, sym_parameter_list, - STATE(1379), 2, + STATE(1511), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55550] = 3, + [56953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 1, + ACTIONS(3906), 1, anon_sym_LBRACK, - ACTIONS(3670), 7, + ACTIONS(3904), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -111343,12 +129960,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [55566] = 3, + [56969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3676), 1, + ACTIONS(3910), 1, anon_sym_LBRACK, - ACTIONS(3674), 7, + ACTIONS(3908), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -111356,5742 +129973,6474 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [55582] = 8, + [56985] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(504), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(3454), 1, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(3458), 1, + ACTIONS(3632), 1, anon_sym_LBRACK, - STATE(485), 1, + STATE(477), 1, sym_compound_statement, - STATE(1363), 1, + STATE(1480), 1, sym_parameter_list, - STATE(1379), 2, + STATE(1511), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55608] = 8, + [57011] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(189), 1, - anon_sym_LBRACE, - ACTIONS(3454), 1, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(3458), 1, + ACTIONS(3673), 1, anon_sym_LBRACK, - STATE(220), 1, - sym_compound_statement, - STATE(1363), 1, + ACTIONS(3912), 1, + anon_sym_RPAREN, + STATE(1594), 1, sym_parameter_list, - STATE(1379), 2, + STATE(1575), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55634] = 3, + [57034] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3680), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3628), 1, + anon_sym_LPAREN2, + ACTIONS(3708), 1, anon_sym_LBRACK, - ACTIONS(3678), 7, - anon_sym_COMMA, + ACTIONS(3914), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [55650] = 7, + STATE(1607), 1, + sym_parameter_list, + STATE(1580), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [57057] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 1, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(3600), 1, + ACTIONS(3632), 1, anon_sym_LBRACK, - STATE(1477), 1, + ACTIONS(3916), 1, + anon_sym_RPAREN, + STATE(1480), 1, sym_parameter_list, - ACTIONS(3682), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(1456), 2, + STATE(1511), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55674] = 5, + [57080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3578), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - STATE(1561), 1, - sym_gnu_asm_input_operand, - STATE(2003), 1, - sym_string_literal, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [55694] = 5, + ACTIONS(3918), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [57095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3686), 1, + ACTIONS(3924), 1, anon_sym_LBRACK, - STATE(1360), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3684), 4, + ACTIONS(3922), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - [55714] = 8, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [57110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(123), 1, - anon_sym_LBRACE, - ACTIONS(3454), 1, - anon_sym_LPAREN2, - ACTIONS(3458), 1, + ACTIONS(3928), 1, anon_sym_LBRACK, - STATE(155), 1, - sym_compound_statement, - STATE(1363), 1, - sym_parameter_list, - STATE(1379), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [55740] = 4, + ACTIONS(3926), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [57125] = 8, ACTIONS(3), 1, sym_comment, - STATE(1543), 1, - sym_string_literal, - ACTIONS(3688), 2, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [55758] = 3, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(2720), 1, + anon_sym_LBRACE, + ACTIONS(3930), 1, + sym_identifier, + STATE(1074), 1, + sym_field_declaration_list, + STATE(1683), 1, + sym_attribute_specifier, + STATE(1828), 1, + sym_ms_declspec_modifier, + [57150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3692), 1, + ACTIONS(3934), 1, anon_sym_LBRACK, - ACTIONS(3690), 7, + ACTIONS(3932), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [55774] = 3, + [57165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3696), 1, + ACTIONS(3938), 1, anon_sym_LBRACK, - ACTIONS(3694), 7, + ACTIONS(3936), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [55790] = 3, + [57180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3700), 1, + ACTIONS(3942), 1, anon_sym_LBRACK, - ACTIONS(3698), 7, + ACTIONS(3940), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [55806] = 8, + [57195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(462), 1, - anon_sym_LBRACE, - ACTIONS(3454), 1, - anon_sym_LPAREN2, - ACTIONS(3458), 1, + ACTIONS(3946), 1, anon_sym_LBRACK, - STATE(386), 1, - sym_compound_statement, - STATE(1363), 1, - sym_parameter_list, - STATE(1379), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [55832] = 5, + ACTIONS(3944), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [57210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3574), 1, + ACTIONS(3950), 1, anon_sym_LBRACK, - STATE(1645), 1, - sym_gnu_asm_output_operand, - STATE(1995), 1, - sym_string_literal, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [55852] = 3, + ACTIONS(3948), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [57225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3704), 1, + ACTIONS(3954), 1, anon_sym_LBRACK, - ACTIONS(3702), 7, + ACTIONS(3952), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [55868] = 7, + [57240] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 1, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(3458), 1, + ACTIONS(3958), 1, anon_sym_LBRACK, - STATE(1363), 1, + STATE(1672), 1, sym_parameter_list, - ACTIONS(3706), 2, + ACTIONS(3956), 3, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1379), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [55892] = 3, + anon_sym_COLON, + [57258] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3710), 1, - anon_sym_LBRACK, - ACTIONS(3708), 7, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3704), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(3960), 1, anon_sym_SEMI, + STATE(1749), 1, + aux_sym_type_definition_repeat2, + STATE(1724), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [57278] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [55908] = 8, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3962), 1, + anon_sym_SEMI, + STATE(1749), 1, + aux_sym_type_definition_repeat2, + STATE(1729), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [57298] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, + ACTIONS(3621), 1, anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(2596), 1, - anon_sym_LBRACE, - ACTIONS(3712), 1, - sym_identifier, - STATE(973), 1, - sym_field_declaration_list, - STATE(1521), 1, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3964), 1, + anon_sym_SEMI, + STATE(1749), 1, + aux_sym_type_definition_repeat2, + STATE(1733), 2, sym_attribute_specifier, - STATE(1597), 1, - sym_ms_declspec_modifier, - [55933] = 4, + aux_sym_type_definition_repeat3, + [57318] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3966), 1, + anon_sym_SEMI, + STATE(1749), 1, + aux_sym_type_definition_repeat2, + STATE(1731), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [57338] = 3, ACTIONS(3), 1, sym_comment, - STATE(1400), 1, + STATE(1971), 1, sym_string_literal, - STATE(1616), 1, - sym_concatenated_string, - ACTIONS(91), 5, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [55950] = 7, + [57352] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 1, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3968), 1, + anon_sym_SEMI, + STATE(1749), 1, + aux_sym_type_definition_repeat2, + STATE(1727), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [57372] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1792), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [57386] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3970), 1, + anon_sym_SEMI, + STATE(1749), 1, + aux_sym_type_definition_repeat2, + STATE(1710), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [57406] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3972), 1, + anon_sym_SEMI, + STATE(1749), 1, + aux_sym_type_definition_repeat2, + STATE(1739), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [57426] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3974), 1, + anon_sym_SEMI, + STATE(1749), 1, + aux_sym_type_definition_repeat2, + STATE(1741), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [57446] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3976), 1, + anon_sym_SEMI, + STATE(1749), 1, + aux_sym_type_definition_repeat2, + STATE(1721), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [57466] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3978), 1, + anon_sym_SEMI, + STATE(1749), 1, + aux_sym_type_definition_repeat2, + STATE(1726), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [57486] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3980), 1, + anon_sym_SEMI, + STATE(1749), 1, + aux_sym_type_definition_repeat2, + STATE(1734), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [57506] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3982), 1, anon_sym_LPAREN2, - ACTIONS(3600), 1, - anon_sym_LBRACK, - ACTIONS(3714), 1, - anon_sym_RPAREN, - STATE(1477), 1, - sym_parameter_list, - STATE(1456), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [55973] = 7, + STATE(1660), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(3984), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [57522] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 1, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3986), 1, + anon_sym_SEMI, + STATE(1749), 1, + aux_sym_type_definition_repeat2, + STATE(1754), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [57542] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3988), 1, + anon_sym_SEMI, + STATE(1749), 1, + aux_sym_type_definition_repeat2, + STATE(1762), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [57562] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3990), 1, + anon_sym_SEMI, + STATE(1749), 1, + aux_sym_type_definition_repeat2, + STATE(1691), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [57582] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3992), 1, + anon_sym_SEMI, + STATE(1749), 1, + aux_sym_type_definition_repeat2, + STATE(1717), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [57602] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3994), 1, + anon_sym_SEMI, + STATE(1749), 1, + aux_sym_type_definition_repeat2, + STATE(1750), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [57622] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3996), 1, + anon_sym_SEMI, + STATE(1749), 1, + aux_sym_type_definition_repeat2, + STATE(1725), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [57642] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(3998), 1, + anon_sym_SEMI, + STATE(1749), 1, + aux_sym_type_definition_repeat2, + STATE(1707), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [57662] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(3458), 1, + ACTIONS(3958), 1, anon_sym_LBRACK, - ACTIONS(3716), 1, - anon_sym_RPAREN, - STATE(1363), 1, + STATE(1672), 1, sym_parameter_list, - STATE(1379), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [55996] = 7, + ACTIONS(4000), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [57680] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3454), 1, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(3499), 1, + ACTIONS(3958), 1, anon_sym_LBRACK, - ACTIONS(3718), 1, - anon_sym_RPAREN, - STATE(1466), 1, + STATE(1672), 1, sym_parameter_list, - STATE(1417), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [56019] = 4, + ACTIONS(4002), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [57698] = 3, ACTIONS(3), 1, sym_comment, - STATE(1405), 1, - sym_string_literal, - STATE(1632), 1, - sym_concatenated_string, - ACTIONS(91), 5, + STATE(2113), 1, + sym_string_literal, + ACTIONS(97), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [56036] = 5, + [57712] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(4004), 1, + anon_sym_SEMI, + STATE(1749), 1, + aux_sym_type_definition_repeat2, + STATE(1744), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [57732] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(4006), 1, + anon_sym_SEMI, + STATE(1749), 1, + aux_sym_type_definition_repeat2, + STATE(1769), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [57752] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(4008), 1, + anon_sym_SEMI, + STATE(1749), 1, + aux_sym_type_definition_repeat2, + STATE(1703), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [57772] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(4010), 1, + anon_sym_SEMI, + STATE(1749), 1, + aux_sym_type_definition_repeat2, + STATE(1702), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [57792] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1889), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3720), 1, + ACTIONS(4015), 1, anon_sym_EQ, - ACTIONS(3722), 1, + ACTIONS(4017), 1, anon_sym_DOT, - STATE(1485), 3, + STATE(1646), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, - [56054] = 5, + [57810] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(4020), 1, + anon_sym_SEMI, + STATE(1749), 1, + aux_sym_type_definition_repeat2, + STATE(1697), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [57830] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3454), 1, + ACTIONS(3628), 1, anon_sym_LPAREN2, - ACTIONS(3726), 1, + ACTIONS(3958), 1, anon_sym_LBRACK, - STATE(1498), 1, + STATE(1672), 1, sym_parameter_list, - ACTIONS(3724), 3, + ACTIONS(4022), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [56072] = 3, + [57848] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3730), 1, - anon_sym_LBRACK, - ACTIONS(3728), 5, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3704), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(4024), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [56086] = 3, + STATE(1749), 1, + aux_sym_type_definition_repeat2, + STATE(1761), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [57868] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3734), 1, - anon_sym_LBRACK, - ACTIONS(3732), 5, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3704), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(4026), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [56100] = 3, + STATE(1749), 1, + aux_sym_type_definition_repeat2, + STATE(1775), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [57888] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3738), 1, + ACTIONS(3628), 1, + anon_sym_LPAREN2, + ACTIONS(3958), 1, anon_sym_LBRACK, - ACTIONS(3736), 5, + STATE(1672), 1, + sym_parameter_list, + ACTIONS(4028), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_COLON, + [57906] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(4030), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [56114] = 3, + STATE(1749), 1, + aux_sym_type_definition_repeat2, + STATE(1764), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [57926] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3742), 1, - anon_sym_LBRACK, - ACTIONS(3740), 5, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3704), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(4032), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [56128] = 3, + STATE(1749), 1, + aux_sym_type_definition_repeat2, + STATE(1730), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [57946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3746), 1, - anon_sym_LBRACK, - ACTIONS(3744), 5, + STATE(850), 1, + sym_string_literal, + ACTIONS(97), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [57960] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3704), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(4034), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [56142] = 3, + STATE(1749), 1, + aux_sym_type_definition_repeat2, + STATE(1780), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [57980] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3750), 1, + ACTIONS(3628), 1, + anon_sym_LPAREN2, + ACTIONS(3958), 1, anon_sym_LBRACK, - ACTIONS(3748), 5, + STATE(1672), 1, + sym_parameter_list, + ACTIONS(4036), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_COLON, + [57998] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1979), 1, + anon_sym_LBRACK, + ACTIONS(4038), 1, + anon_sym_EQ, + ACTIONS(4040), 1, + anon_sym_DOT, + STATE(1646), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [58016] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(4042), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [56156] = 4, + STATE(1749), 1, + aux_sym_type_definition_repeat2, + STATE(1698), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [58036] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3704), 1, + anon_sym_COMMA, + ACTIONS(4044), 1, + anon_sym_SEMI, + STATE(1749), 1, + aux_sym_type_definition_repeat2, + STATE(1705), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [58056] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4046), 1, anon_sym_LPAREN2, - STATE(1483), 2, + STATE(1660), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(3754), 3, + ACTIONS(4048), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [56172] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3454), 1, - anon_sym_LPAREN2, - ACTIONS(3726), 1, - anon_sym_LBRACK, - STATE(1498), 1, - sym_parameter_list, - ACTIONS(3756), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [56190] = 4, + [58072] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3758), 1, + ACTIONS(4051), 1, anon_sym_LPAREN2, - STATE(1483), 2, + STATE(1631), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(3760), 3, + ACTIONS(3984), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [56206] = 3, + [58088] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3765), 1, - anon_sym_LBRACK, - ACTIONS(3763), 5, + ACTIONS(4053), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [58099] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3669), 1, + anon_sym_COMMA, + ACTIONS(4055), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [56220] = 5, + STATE(1771), 1, + aux_sym_field_declaration_repeat1, + STATE(1970), 1, + sym_attribute_specifier, + [58118] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3767), 1, + ACTIONS(4057), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_LBRACK, - ACTIONS(3770), 1, - anon_sym_EQ, - ACTIONS(3772), 1, - anon_sym_DOT, - STATE(1485), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [56238] = 3, + anon_sym_COLON, + [58129] = 6, ACTIONS(3), 1, sym_comment, - STATE(1578), 1, - sym_string_literal, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [56252] = 3, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3669), 1, + anon_sym_COMMA, + ACTIONS(4059), 1, + anon_sym_SEMI, + STATE(1771), 1, + aux_sym_field_declaration_repeat1, + STATE(2166), 1, + sym_attribute_specifier, + [58148] = 6, ACTIONS(3), 1, sym_comment, - STATE(1977), 1, - sym_string_literal, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [56266] = 3, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3669), 1, + anon_sym_COMMA, + ACTIONS(4061), 1, + anon_sym_SEMI, + STATE(1678), 1, + aux_sym_field_declaration_repeat1, + STATE(1972), 1, + sym_attribute_specifier, + [58167] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3777), 1, - anon_sym_LBRACK, - ACTIONS(3775), 5, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3669), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(4063), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [56280] = 3, + STATE(1675), 1, + aux_sym_field_declaration_repeat1, + STATE(2162), 1, + sym_attribute_specifier, + [58186] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3781), 1, - anon_sym_LBRACK, - ACTIONS(3779), 5, + ACTIONS(4065), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [56294] = 5, + anon_sym_LBRACK, + anon_sym_COLON, + [58197] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3454), 1, - anon_sym_LPAREN2, - ACTIONS(3726), 1, - anon_sym_LBRACK, - STATE(1498), 1, - sym_parameter_list, - ACTIONS(3783), 3, + ACTIONS(4067), 5, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, anon_sym_COLON, - [56312] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1969), 1, - sym_string_literal, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [56326] = 5, + [58208] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3454), 1, - anon_sym_LPAREN2, - ACTIONS(3726), 1, - anon_sym_LBRACK, - STATE(1498), 1, - sym_parameter_list, - ACTIONS(3785), 3, + ACTIONS(4069), 5, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, anon_sym_COLON, - [56344] = 4, + [58219] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3787), 1, + ACTIONS(4071), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(1481), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(3754), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [56360] = 5, + anon_sym_LBRACK, + anon_sym_COLON, + [58230] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3454), 1, - anon_sym_LPAREN2, - ACTIONS(3726), 1, - anon_sym_LBRACK, - STATE(1498), 1, - sym_parameter_list, - ACTIONS(3789), 3, + ACTIONS(4073), 5, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, anon_sym_COLON, - [56378] = 5, + [58241] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3454), 1, - anon_sym_LPAREN2, - ACTIONS(3726), 1, - anon_sym_LBRACK, - STATE(1498), 1, - sym_parameter_list, - ACTIONS(3791), 3, + ACTIONS(4075), 5, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, anon_sym_COLON, - [56396] = 6, + [58252] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3447), 1, - anon_sym___attribute__, - ACTIONS(3495), 1, + ACTIONS(4077), 5, anon_sym_COMMA, - ACTIONS(3793), 1, - anon_sym_SEMI, - STATE(1533), 1, - aux_sym_field_declaration_repeat1, - STATE(1996), 1, - sym_attribute_specifier, - [56415] = 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [58263] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3447), 1, + ACTIONS(3621), 1, anon_sym___attribute__, - ACTIONS(3495), 1, + ACTIONS(3669), 1, anon_sym_COMMA, - ACTIONS(3795), 1, + ACTIONS(4079), 1, anon_sym_SEMI, - STATE(1523), 1, + STATE(1771), 1, aux_sym_field_declaration_repeat1, - STATE(1833), 1, + STATE(2195), 1, sym_attribute_specifier, - [56434] = 2, + [58282] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3797), 5, + ACTIONS(4081), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [56445] = 2, + [58293] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3799), 5, + ACTIONS(4083), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [56456] = 5, + [58304] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3454), 1, - anon_sym_LPAREN2, - ACTIONS(3726), 1, - anon_sym_LBRACK, - STATE(1498), 1, - sym_parameter_list, - ACTIONS(3706), 2, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3669), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [56473] = 6, + ACTIONS(4085), 1, + anon_sym_SEMI, + STATE(1771), 1, + aux_sym_field_declaration_repeat1, + STATE(2192), 1, + sym_attribute_specifier, + [58323] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3447), 1, + ACTIONS(3621), 1, anon_sym___attribute__, - ACTIONS(3495), 1, + ACTIONS(3669), 1, anon_sym_COMMA, - ACTIONS(3801), 1, + ACTIONS(4087), 1, anon_sym_SEMI, - STATE(1533), 1, + STATE(1682), 1, aux_sym_field_declaration_repeat1, - STATE(2021), 1, + STATE(2064), 1, sym_attribute_specifier, - [56492] = 2, + [58342] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3669), 1, + anon_sym_COMMA, + ACTIONS(4089), 1, + anon_sym_SEMI, + STATE(1771), 1, + aux_sym_field_declaration_repeat1, + STATE(2094), 1, + sym_attribute_specifier, + [58361] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3669), 1, + anon_sym_COMMA, + ACTIONS(4091), 1, + anon_sym_SEMI, + STATE(1771), 1, + aux_sym_field_declaration_repeat1, + STATE(2059), 1, + sym_attribute_specifier, + [58380] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(3669), 1, + anon_sym_COMMA, + ACTIONS(4093), 1, + anon_sym_SEMI, + STATE(1771), 1, + aux_sym_field_declaration_repeat1, + STATE(2099), 1, + sym_attribute_specifier, + [58399] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(2720), 1, + anon_sym_LBRACE, + ACTIONS(4095), 1, + sym_identifier, + STATE(1009), 1, + sym_field_declaration_list, + STATE(1802), 1, + sym_ms_declspec_modifier, + [58418] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2502), 1, + anon_sym_LPAREN2, + ACTIONS(4099), 1, + anon_sym_COLON_COLON, + STATE(1901), 1, + sym_argument_list, + ACTIONS(4097), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [58435] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3803), 5, + ACTIONS(4101), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [56503] = 6, + [58446] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3447), 1, + ACTIONS(3621), 1, anon_sym___attribute__, - ACTIONS(3495), 1, + ACTIONS(3669), 1, anon_sym_COMMA, - ACTIONS(3805), 1, + ACTIONS(4103), 1, anon_sym_SEMI, - STATE(1533), 1, + STATE(1681), 1, aux_sym_field_declaration_repeat1, - STATE(1917), 1, + STATE(2088), 1, sym_attribute_specifier, - [56522] = 6, + [58465] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3447), 1, + ACTIONS(3621), 1, anon_sym___attribute__, - ACTIONS(3495), 1, + ACTIONS(3669), 1, anon_sym_COMMA, - ACTIONS(3807), 1, + ACTIONS(4105), 1, anon_sym_SEMI, - STATE(1501), 1, + STATE(1771), 1, aux_sym_field_declaration_repeat1, - STATE(1959), 1, + STATE(2087), 1, sym_attribute_specifier, - [56541] = 2, + [58484] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(2720), 1, + anon_sym_LBRACE, + ACTIONS(4107), 1, + sym_identifier, + STATE(1066), 1, + sym_field_declaration_list, + STATE(1825), 1, + sym_ms_declspec_modifier, + [58503] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3809), 5, + ACTIONS(3628), 1, + anon_sym_LPAREN2, + ACTIONS(3958), 1, + anon_sym_LBRACK, + STATE(1672), 1, + sym_parameter_list, + ACTIONS(3894), 2, anon_sym_COMMA, anon_sym_RPAREN, + [58520] = 5, + ACTIONS(3437), 1, + sym_comment, + ACTIONS(4109), 1, + aux_sym_preproc_include_token2, + ACTIONS(4111), 1, + anon_sym_LPAREN, + ACTIONS(4113), 1, + sym_preproc_arg, + STATE(1930), 1, + sym_preproc_params, + [58536] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4115), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [58550] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4117), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [58564] = 5, + ACTIONS(3437), 1, + sym_comment, + ACTIONS(4119), 1, + anon_sym_DQUOTE, + ACTIONS(4121), 1, + aux_sym_string_literal_token1, + ACTIONS(4123), 1, + sym_escape_sequence, + STATE(1773), 1, + aux_sym_string_literal_repeat1, + [58580] = 5, + ACTIONS(3437), 1, + sym_comment, + ACTIONS(4125), 1, + anon_sym_DQUOTE, + ACTIONS(4127), 1, + aux_sym_string_literal_token1, + ACTIONS(4129), 1, + sym_escape_sequence, + STATE(1746), 1, + aux_sym_string_literal_repeat1, + [58596] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4131), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [58610] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4133), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [58624] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4135), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [58638] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4137), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [58652] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4139), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [58666] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4141), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [58680] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3628), 1, anon_sym_LPAREN2, + ACTIONS(3958), 1, anon_sym_LBRACK, - anon_sym_COLON, - [56552] = 2, + ACTIONS(4143), 1, + anon_sym_RPAREN, + STATE(1672), 1, + sym_parameter_list, + [58696] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4145), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [58710] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4147), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [58724] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4149), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [58738] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4151), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [58752] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4153), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [58766] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4155), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [58780] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4157), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [58794] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4159), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [58808] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4161), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [58822] = 5, + ACTIONS(3437), 1, + sym_comment, + ACTIONS(4111), 1, + anon_sym_LPAREN, + ACTIONS(4163), 1, + aux_sym_preproc_include_token2, + ACTIONS(4165), 1, + sym_preproc_arg, + STATE(1900), 1, + sym_preproc_params, + [58838] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4167), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [58852] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2502), 1, + anon_sym_LPAREN2, + STATE(1935), 1, + sym_argument_list, + ACTIONS(4169), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [58866] = 5, + ACTIONS(3437), 1, + sym_comment, + ACTIONS(4111), 1, + anon_sym_LPAREN, + ACTIONS(4171), 1, + aux_sym_preproc_include_token2, + ACTIONS(4173), 1, + sym_preproc_arg, + STATE(1899), 1, + sym_preproc_params, + [58882] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3811), 5, + ACTIONS(4175), 1, anon_sym_COMMA, + STATE(1715), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4178), 2, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, anon_sym_COLON, - [56563] = 6, + [58896] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4180), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [58910] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3447), 1, + ACTIONS(3621), 1, anon_sym___attribute__, - ACTIONS(3495), 1, - anon_sym_COMMA, - ACTIONS(3813), 1, + ACTIONS(4182), 1, anon_sym_SEMI, - STATE(1533), 1, - aux_sym_field_declaration_repeat1, - STATE(1832), 1, + STATE(1494), 2, sym_attribute_specifier, - [56582] = 2, - ACTIONS(3), 1, + aux_sym_type_definition_repeat3, + [58924] = 5, + ACTIONS(3437), 1, sym_comment, - ACTIONS(3815), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [56593] = 2, + ACTIONS(4111), 1, + anon_sym_LPAREN, + ACTIONS(4184), 1, + aux_sym_preproc_include_token2, + ACTIONS(4186), 1, + sym_preproc_arg, + STATE(1886), 1, + sym_preproc_params, + [58940] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3817), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [56604] = 2, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4188), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [58954] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3819), 5, + ACTIONS(4190), 1, anon_sym_COMMA, + STATE(1742), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(4192), 2, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, anon_sym_COLON, - [56615] = 2, + [58968] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3821), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [56626] = 6, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4194), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [58982] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3447), 1, + ACTIONS(3621), 1, anon_sym___attribute__, - ACTIONS(3495), 1, - anon_sym_COMMA, - ACTIONS(3823), 1, + ACTIONS(4196), 1, anon_sym_SEMI, - STATE(1533), 1, - aux_sym_field_declaration_repeat1, - STATE(2014), 1, + STATE(1494), 2, sym_attribute_specifier, - [56645] = 2, + aux_sym_type_definition_repeat3, + [58996] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3825), 5, + ACTIONS(4198), 1, anon_sym_COMMA, + STATE(1745), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(4200), 2, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, anon_sym_COLON, - [56656] = 2, + [59010] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [56667] = 6, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4202), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [59024] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(2596), 1, - anon_sym_LBRACE, - ACTIONS(3829), 1, - sym_identifier, - STATE(951), 1, - sym_field_declaration_list, - STATE(1644), 1, - sym_ms_declspec_modifier, - [56686] = 6, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4204), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [59038] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3447), 1, + ACTIONS(3621), 1, anon_sym___attribute__, - ACTIONS(3495), 1, - anon_sym_COMMA, - ACTIONS(3831), 1, + ACTIONS(4206), 1, anon_sym_SEMI, - STATE(1522), 1, - aux_sym_field_declaration_repeat1, - STATE(1773), 1, + STATE(1494), 2, sym_attribute_specifier, - [56705] = 6, + aux_sym_type_definition_repeat3, + [59052] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3447), 1, + ACTIONS(3621), 1, anon_sym___attribute__, - ACTIONS(3495), 1, - anon_sym_COMMA, - ACTIONS(3833), 1, + ACTIONS(4208), 1, anon_sym_SEMI, - STATE(1533), 1, - aux_sym_field_declaration_repeat1, - STATE(1772), 1, + STATE(1494), 2, sym_attribute_specifier, - [56724] = 5, + aux_sym_type_definition_repeat3, + [59066] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, - anon_sym_LPAREN2, - ACTIONS(3837), 1, - anon_sym_COLON_COLON, - STATE(1707), 1, - sym_argument_list, - ACTIONS(3835), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [56741] = 2, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4210), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [59080] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3839), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [56752] = 6, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4212), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [59094] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3447), 1, + ACTIONS(3621), 1, anon_sym___attribute__, - ACTIONS(3495), 1, - anon_sym_COMMA, - ACTIONS(3841), 1, + ACTIONS(4214), 1, anon_sym_SEMI, - STATE(1496), 1, - aux_sym_field_declaration_repeat1, - STATE(2015), 1, + STATE(1494), 2, sym_attribute_specifier, - [56771] = 6, + aux_sym_type_definition_repeat3, + [59108] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(2596), 1, - anon_sym_LBRACE, - ACTIONS(3843), 1, - sym_identifier, - STATE(988), 1, - sym_field_declaration_list, - STATE(1614), 1, - sym_ms_declspec_modifier, - [56790] = 6, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4216), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [59122] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3447), 1, + ACTIONS(3621), 1, anon_sym___attribute__, - ACTIONS(3495), 1, - anon_sym_COMMA, - ACTIONS(3845), 1, + ACTIONS(4218), 1, anon_sym_SEMI, - STATE(1533), 1, - aux_sym_field_declaration_repeat1, - STATE(1766), 1, + STATE(1494), 2, sym_attribute_specifier, - [56809] = 6, + aux_sym_type_definition_repeat3, + [59136] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3447), 1, + ACTIONS(3621), 1, anon_sym___attribute__, - ACTIONS(3495), 1, - anon_sym_COMMA, - ACTIONS(3847), 1, + ACTIONS(4220), 1, anon_sym_SEMI, - STATE(1533), 1, - aux_sym_field_declaration_repeat1, - STATE(1826), 1, + STATE(1494), 2, sym_attribute_specifier, - [56828] = 5, - ACTIONS(3227), 1, + aux_sym_type_definition_repeat3, + [59150] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3849), 1, - aux_sym_preproc_include_token2, - ACTIONS(3851), 1, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4222), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [59164] = 5, + ACTIONS(3437), 1, + sym_comment, + ACTIONS(4111), 1, anon_sym_LPAREN, - ACTIONS(3853), 1, + ACTIONS(4224), 1, + aux_sym_preproc_include_token2, + ACTIONS(4226), 1, sym_preproc_arg, - STATE(1740), 1, + STATE(1919), 1, sym_preproc_params, - [56844] = 4, + [59180] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3855), 1, - anon_sym_COMMA, - STATE(1525), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(3858), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [56858] = 5, - ACTIONS(3227), 1, - sym_comment, - ACTIONS(3860), 1, - anon_sym_DQUOTE, - ACTIONS(3862), 1, - aux_sym_string_literal_token1, - ACTIONS(3864), 1, - sym_escape_sequence, - STATE(1536), 1, - aux_sym_string_literal_repeat1, - [56874] = 4, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4228), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [59194] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, - anon_sym_LPAREN2, - STATE(1688), 1, - sym_argument_list, - ACTIONS(3866), 2, + ACTIONS(4230), 1, + sym_identifier, + ACTIONS(4232), 1, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [56888] = 5, - ACTIONS(3227), 1, - sym_comment, - ACTIONS(3851), 1, - anon_sym_LPAREN, - ACTIONS(3868), 1, - aux_sym_preproc_include_token2, - ACTIONS(3870), 1, - sym_preproc_arg, - STATE(1695), 1, - sym_preproc_params, - [56904] = 5, - ACTIONS(3227), 1, + ACTIONS(4234), 1, + anon_sym_RBRACE, + STATE(1784), 1, + sym_enumerator, + [59210] = 5, + ACTIONS(3437), 1, sym_comment, - ACTIONS(3872), 1, + ACTIONS(4236), 1, anon_sym_DQUOTE, - ACTIONS(3874), 1, - aux_sym_string_literal_token1, - ACTIONS(3876), 1, - sym_escape_sequence, - STATE(1526), 1, - aux_sym_string_literal_repeat1, - [56920] = 5, - ACTIONS(3227), 1, - sym_comment, - ACTIONS(3851), 1, - anon_sym_LPAREN, - ACTIONS(3878), 1, - aux_sym_preproc_include_token2, - ACTIONS(3880), 1, - sym_preproc_arg, - STATE(1735), 1, - sym_preproc_params, - [56936] = 5, - ACTIONS(3227), 1, - sym_comment, - ACTIONS(3862), 1, + ACTIONS(4238), 1, aux_sym_string_literal_token1, - ACTIONS(3864), 1, + ACTIONS(4241), 1, sym_escape_sequence, - ACTIONS(3882), 1, - anon_sym_DQUOTE, - STATE(1536), 1, + STATE(1738), 1, aux_sym_string_literal_repeat1, - [56952] = 5, + [59226] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3454), 1, - anon_sym_LPAREN2, - ACTIONS(3726), 1, - anon_sym_LBRACK, - ACTIONS(3884), 1, - anon_sym_RPAREN, - STATE(1498), 1, - sym_parameter_list, - [56968] = 4, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4244), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [59240] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3886), 1, - anon_sym_COMMA, - STATE(1533), 1, - aux_sym_field_declaration_repeat1, - ACTIONS(3889), 2, - anon_sym_SEMI, + ACTIONS(3621), 1, anon_sym___attribute__, - [56982] = 4, + ACTIONS(4246), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [59254] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3891), 1, - anon_sym_COMMA, - STATE(1546), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(3893), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [56996] = 4, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4248), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [59268] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3895), 1, + ACTIONS(4250), 1, anon_sym_COMMA, - STATE(1541), 1, + STATE(1742), 1, aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(3897), 2, + ACTIONS(4253), 2, anon_sym_RPAREN, anon_sym_COLON, - [57010] = 5, - ACTIONS(3227), 1, + [59282] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3899), 1, - anon_sym_DQUOTE, - ACTIONS(3901), 1, - aux_sym_string_literal_token1, - ACTIONS(3904), 1, - sym_escape_sequence, - STATE(1536), 1, - aux_sym_string_literal_repeat1, - [57026] = 5, - ACTIONS(3227), 1, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4255), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [59296] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3851), 1, - anon_sym_LPAREN, - ACTIONS(3907), 1, - aux_sym_preproc_include_token2, - ACTIONS(3909), 1, - sym_preproc_arg, - STATE(1715), 1, - sym_preproc_params, - [57042] = 4, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4257), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [59310] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3911), 1, + ACTIONS(4198), 1, anon_sym_COMMA, - STATE(1538), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(3914), 2, + STATE(1776), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(4259), 2, anon_sym_RPAREN, anon_sym_COLON, - [57056] = 5, - ACTIONS(3227), 1, - sym_comment, - ACTIONS(3851), 1, - anon_sym_LPAREN, - ACTIONS(3916), 1, - aux_sym_preproc_include_token2, - ACTIONS(3918), 1, - sym_preproc_arg, - STATE(1729), 1, - sym_preproc_params, - [57072] = 5, - ACTIONS(3227), 1, + [59324] = 5, + ACTIONS(3437), 1, sym_comment, - ACTIONS(3920), 1, + ACTIONS(4261), 1, anon_sym_DQUOTE, - ACTIONS(3922), 1, + ACTIONS(4263), 1, aux_sym_string_literal_token1, - ACTIONS(3924), 1, + ACTIONS(4265), 1, sym_escape_sequence, - STATE(1548), 1, + STATE(1738), 1, aux_sym_string_literal_repeat1, - [57088] = 4, + [59340] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3895), 1, + ACTIONS(4190), 1, anon_sym_COMMA, - STATE(1545), 1, + STATE(1720), 1, aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(3926), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [57102] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3928), 1, - sym_identifier, - ACTIONS(3930), 1, - anon_sym_COMMA, - ACTIONS(3932), 1, - anon_sym_RBRACE, - STATE(1609), 1, - sym_enumerator, - [57118] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3934), 1, - anon_sym_COMMA, - STATE(1549), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(3936), 2, + ACTIONS(4267), 2, anon_sym_RPAREN, anon_sym_COLON, - [57132] = 5, - ACTIONS(3227), 1, + [59354] = 5, + ACTIONS(3437), 1, sym_comment, - ACTIONS(3851), 1, + ACTIONS(4111), 1, anon_sym_LPAREN, - ACTIONS(3938), 1, + ACTIONS(4269), 1, aux_sym_preproc_include_token2, - ACTIONS(3940), 1, + ACTIONS(4271), 1, sym_preproc_arg, - STATE(1672), 1, + STATE(1941), 1, sym_preproc_params, - [57148] = 4, + [59370] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(4273), 1, anon_sym_COMMA, - STATE(1545), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(3945), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [57162] = 4, + STATE(1749), 1, + aux_sym_type_definition_repeat2, + ACTIONS(4276), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [59384] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3891), 1, - anon_sym_COMMA, - STATE(1538), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(3947), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [57176] = 5, - ACTIONS(3227), 1, - sym_comment, - ACTIONS(3949), 1, - anon_sym_DQUOTE, - ACTIONS(3951), 1, - aux_sym_string_literal_token1, - ACTIONS(3953), 1, - sym_escape_sequence, - STATE(1531), 1, - aux_sym_string_literal_repeat1, - [57192] = 5, - ACTIONS(3227), 1, - sym_comment, - ACTIONS(3862), 1, - aux_sym_string_literal_token1, - ACTIONS(3864), 1, - sym_escape_sequence, - ACTIONS(3955), 1, - anon_sym_DQUOTE, - STATE(1536), 1, - aux_sym_string_literal_repeat1, - [57208] = 4, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4278), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [59398] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3934), 1, - anon_sym_COMMA, - STATE(1525), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(3957), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [57222] = 5, - ACTIONS(3227), 1, - sym_comment, - ACTIONS(3851), 1, - anon_sym_LPAREN, - ACTIONS(3959), 1, - aux_sym_preproc_include_token2, - ACTIONS(3961), 1, - sym_preproc_arg, - STATE(1719), 1, - sym_preproc_params, - [57238] = 5, - ACTIONS(3227), 1, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4280), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [59412] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3851), 1, - anon_sym_LPAREN, - ACTIONS(3963), 1, - aux_sym_preproc_include_token2, - ACTIONS(3965), 1, - sym_preproc_arg, - STATE(1747), 1, - sym_preproc_params, - [57254] = 2, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4282), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [59426] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3967), 4, + ACTIONS(4284), 4, anon_sym_LPAREN2, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [57264] = 5, - ACTIONS(3227), 1, + [59436] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4286), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [59450] = 5, + ACTIONS(3437), 1, sym_comment, - ACTIONS(3851), 1, + ACTIONS(4111), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4288), 1, aux_sym_preproc_include_token2, - ACTIONS(3971), 1, + ACTIONS(4290), 1, sym_preproc_arg, - STATE(1746), 1, + STATE(1924), 1, sym_preproc_params, - [57280] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2876), 1, - anon_sym_LBRACE, - ACTIONS(3973), 1, - sym_identifier, - STATE(1233), 1, - sym_enumerator_list, - [57293] = 4, + [59466] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3596), 1, - anon_sym_COMMA, - ACTIONS(3975), 1, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4292), 1, anon_sym_SEMI, - STATE(1557), 1, - aux_sym_type_definition_repeat2, - [57306] = 4, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [59480] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3596), 1, - anon_sym_COMMA, - ACTIONS(3977), 1, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4294), 1, anon_sym_SEMI, - STATE(1557), 1, - aux_sym_type_definition_repeat2, - [57319] = 4, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [59494] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3979), 1, - anon_sym_COMMA, - ACTIONS(3982), 1, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4296), 1, anon_sym_SEMI, - STATE(1557), 1, - aux_sym_type_definition_repeat2, - [57332] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2909), 1, - anon_sym_COMMA, - ACTIONS(3984), 1, - anon_sym_RPAREN, - STATE(1572), 1, - aux_sym_generic_expression_repeat1, - [57345] = 4, - ACTIONS(3), 1, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [59508] = 5, + ACTIONS(3437), 1, sym_comment, - ACTIONS(2876), 1, - anon_sym_LBRACE, - ACTIONS(3986), 1, - sym_identifier, - STATE(1154), 1, - sym_enumerator_list, - [57358] = 2, + ACTIONS(4298), 1, + anon_sym_DQUOTE, + ACTIONS(4300), 1, + aux_sym_string_literal_token1, + ACTIONS(4302), 1, + sym_escape_sequence, + STATE(1774), 1, + aux_sym_string_literal_repeat1, + [59524] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3988), 3, + ACTIONS(4304), 1, anon_sym_COMMA, + STATE(1767), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4306), 2, anon_sym_RPAREN, anon_sym_COLON, - [57367] = 2, + [59538] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3990), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [57376] = 4, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4308), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [59552] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3596), 1, - anon_sym_COMMA, - ACTIONS(3992), 1, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4310), 1, anon_sym_SEMI, - STATE(1557), 1, - aux_sym_type_definition_repeat2, - [57389] = 4, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [59566] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3596), 1, - anon_sym_COMMA, - ACTIONS(3994), 1, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4312), 1, anon_sym_SEMI, - STATE(1557), 1, - aux_sym_type_definition_repeat2, - [57402] = 4, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [59580] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3596), 1, - anon_sym_COMMA, - ACTIONS(3996), 1, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4314), 1, anon_sym_SEMI, - STATE(1557), 1, - aux_sym_type_definition_repeat2, - [57415] = 4, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [59594] = 5, + ACTIONS(3437), 1, + sym_comment, + ACTIONS(4111), 1, + anon_sym_LPAREN, + ACTIONS(4316), 1, + aux_sym_preproc_include_token2, + ACTIONS(4318), 1, + sym_preproc_arg, + STATE(1936), 1, + sym_preproc_params, + [59610] = 5, + ACTIONS(3437), 1, + sym_comment, + ACTIONS(4111), 1, + anon_sym_LPAREN, + ACTIONS(4320), 1, + aux_sym_preproc_include_token2, + ACTIONS(4322), 1, + sym_preproc_arg, + STATE(1942), 1, + sym_preproc_params, + [59626] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3998), 1, + ACTIONS(4304), 1, anon_sym_COMMA, - ACTIONS(4000), 1, - anon_sym_RBRACK_RBRACK, - STATE(1605), 1, - aux_sym_attribute_declaration_repeat1, - [57428] = 4, + STATE(1715), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4324), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [59640] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3596), 1, - anon_sym_COMMA, - ACTIONS(4002), 1, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4326), 1, anon_sym_SEMI, - STATE(1557), 1, - aux_sym_type_definition_repeat2, - [57441] = 4, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [59654] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, - anon_sym_COMMA, - ACTIONS(4004), 1, - anon_sym_RPAREN, - STATE(1657), 1, - aux_sym_preproc_argument_list_repeat1, - [57454] = 4, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4328), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [59668] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2896), 1, - anon_sym_COMMA, - ACTIONS(4006), 1, - anon_sym_RPAREN, - STATE(1667), 1, - aux_sym_argument_list_repeat1, - [57467] = 4, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4330), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [59682] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(4332), 1, anon_sym_COMMA, - ACTIONS(4008), 1, + STATE(1771), 1, + aux_sym_field_declaration_repeat1, + ACTIONS(4335), 2, anon_sym_SEMI, - STATE(1660), 1, - aux_sym_declaration_repeat1, - [57480] = 4, + anon_sym___attribute__, + [59696] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4010), 1, - anon_sym_COMMA, - ACTIONS(4012), 1, - anon_sym_RPAREN, - STATE(1583), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [57493] = 4, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4337), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [59710] = 5, + ACTIONS(3437), 1, + sym_comment, + ACTIONS(4263), 1, + aux_sym_string_literal_token1, + ACTIONS(4265), 1, + sym_escape_sequence, + ACTIONS(4339), 1, + anon_sym_DQUOTE, + STATE(1738), 1, + aux_sym_string_literal_repeat1, + [59726] = 5, + ACTIONS(3437), 1, + sym_comment, + ACTIONS(4263), 1, + aux_sym_string_literal_token1, + ACTIONS(4265), 1, + sym_escape_sequence, + ACTIONS(4341), 1, + anon_sym_DQUOTE, + STATE(1738), 1, + aux_sym_string_literal_repeat1, + [59742] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3596), 1, - anon_sym_COMMA, - ACTIONS(4014), 1, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4343), 1, anon_sym_SEMI, - STATE(1557), 1, - aux_sym_type_definition_repeat2, - [57506] = 4, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [59756] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4016), 1, + ACTIONS(4345), 1, anon_sym_COMMA, - ACTIONS(4019), 1, + STATE(1776), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(4348), 2, anon_sym_RPAREN, - STATE(1572), 1, - aux_sym_generic_expression_repeat1, - [57519] = 2, + anon_sym_COLON, + [59770] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4021), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [57528] = 4, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4350), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [59784] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2896), 1, - anon_sym_COMMA, - ACTIONS(2898), 1, - anon_sym_RPAREN, - STATE(1568), 1, - aux_sym_argument_list_repeat1, - [57541] = 4, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4352), 1, + anon_sym_SEMI, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [59798] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, - anon_sym_COMMA, - ACTIONS(4023), 1, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4354), 1, anon_sym_SEMI, - STATE(1660), 1, - aux_sym_declaration_repeat1, - [57554] = 4, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [59812] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, - anon_sym_COMMA, - ACTIONS(4025), 1, + ACTIONS(3621), 1, + anon_sym___attribute__, + ACTIONS(4356), 1, anon_sym_SEMI, - STATE(1660), 1, - aux_sym_declaration_repeat1, - [57567] = 4, + STATE(1494), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat3, + [59826] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(3626), 1, anon_sym_COMMA, - ACTIONS(4027), 1, + ACTIONS(4358), 1, anon_sym_SEMI, - STATE(1569), 1, + STATE(1847), 1, aux_sym_declaration_repeat1, - [57580] = 2, + [59839] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4029), 3, + ACTIONS(3098), 1, anon_sym_COMMA, + ACTIONS(4360), 1, anon_sym_RPAREN, - anon_sym_COLON, - [57589] = 4, + STATE(1809), 1, + aux_sym_argument_list_repeat1, + [59852] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3998), 1, + ACTIONS(4362), 1, anon_sym_COMMA, - ACTIONS(4031), 1, - anon_sym_RBRACK_RBRACK, - STATE(1669), 1, - aux_sym_attribute_declaration_repeat1, - [57602] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4035), 1, + ACTIONS(4365), 1, anon_sym_RPAREN, - ACTIONS(4033), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [57613] = 4, + STATE(1783), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [59865] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1895), 1, - anon_sym_RBRACE, - ACTIONS(4037), 1, + ACTIONS(4367), 1, anon_sym_COMMA, - STATE(1662), 1, - aux_sym_initializer_list_repeat1, - [57626] = 2, + ACTIONS(4369), 1, + anon_sym_RBRACE, + STATE(1856), 1, + aux_sym_enumerator_list_repeat1, + [59878] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4039), 3, - anon_sym_LBRACK, + ACTIONS(4373), 1, anon_sym_EQ, - anon_sym_DOT, - [57635] = 4, + ACTIONS(4371), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [59889] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4010), 1, + ACTIONS(3626), 1, anon_sym_COMMA, - ACTIONS(4041), 1, - anon_sym_RPAREN, - STATE(1585), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [57648] = 4, + ACTIONS(4375), 1, + anon_sym_SEMI, + STATE(1846), 1, + aux_sym_declaration_repeat1, + [59902] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(3626), 1, anon_sym_COMMA, - ACTIONS(4043), 1, + ACTIONS(4377), 1, anon_sym_SEMI, - STATE(1575), 1, + STATE(1846), 1, aux_sym_declaration_repeat1, - [57661] = 4, + [59915] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4045), 1, + ACTIONS(4379), 1, anon_sym_COMMA, - ACTIONS(4048), 1, + ACTIONS(4381), 1, anon_sym_RPAREN, - STATE(1585), 1, + STATE(1783), 1, aux_sym_gnu_asm_goto_list_repeat1, - [57674] = 2, + [59928] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4050), 3, + ACTIONS(4383), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [57683] = 4, + ACTIONS(4385), 1, + anon_sym_RBRACK_RBRACK, + STATE(1859), 1, + aux_sym_attribute_declaration_repeat1, + [59941] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3998), 1, + ACTIONS(3626), 1, anon_sym_COMMA, - ACTIONS(4052), 1, - anon_sym_RBRACK_RBRACK, - STATE(1579), 1, - aux_sym_attribute_declaration_repeat1, - [57696] = 4, + ACTIONS(4387), 1, + anon_sym_SEMI, + STATE(1834), 1, + aux_sym_declaration_repeat1, + [59954] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(3626), 1, anon_sym_COMMA, - ACTIONS(4054), 1, + ACTIONS(4389), 1, anon_sym_SEMI, - STATE(1660), 1, + STATE(1846), 1, aux_sym_declaration_repeat1, - [57709] = 2, + [59967] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4056), 3, + ACTIONS(4391), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [57718] = 4, + [59976] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(3626), 1, anon_sym_COMMA, - ACTIONS(4058), 1, + ACTIONS(4393), 1, anon_sym_SEMI, - STATE(1660), 1, + STATE(1794), 1, aux_sym_declaration_repeat1, - [57731] = 4, - ACTIONS(3227), 1, - sym_comment, - ACTIONS(4060), 1, - aux_sym_preproc_include_token2, - ACTIONS(4062), 1, - anon_sym_LPAREN2, - STATE(1858), 1, - sym_preproc_argument_list, - [57744] = 4, + [59989] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(3626), 1, anon_sym_COMMA, - ACTIONS(4064), 1, + ACTIONS(4395), 1, anon_sym_SEMI, - STATE(1660), 1, + STATE(1846), 1, aux_sym_declaration_repeat1, - [57757] = 4, + [60002] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4066), 1, + ACTIONS(4397), 3, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(4068), 1, anon_sym_COLON, - STATE(1613), 1, - sym_gnu_asm_clobber_list, - [57770] = 4, - ACTIONS(3227), 1, - sym_comment, - ACTIONS(4062), 1, - anon_sym_LPAREN2, - ACTIONS(4070), 1, - aux_sym_preproc_include_token2, - STATE(1858), 1, - sym_preproc_argument_list, - [57783] = 4, + [60011] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(4383), 1, anon_sym_COMMA, - ACTIONS(4072), 1, - anon_sym_SEMI, - STATE(1588), 1, - aux_sym_declaration_repeat1, - [57796] = 4, + ACTIONS(4399), 1, + anon_sym_RBRACK_RBRACK, + STATE(1859), 1, + aux_sym_attribute_declaration_repeat1, + [60024] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3596), 1, + ACTIONS(2019), 1, + anon_sym_RBRACE, + ACTIONS(4401), 1, anon_sym_COMMA, - ACTIONS(4074), 1, - anon_sym_SEMI, - STATE(1557), 1, - aux_sym_type_definition_repeat2, - [57809] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2596), 1, - anon_sym_LBRACE, - ACTIONS(4076), 1, - sym_identifier, - STATE(988), 1, - sym_field_declaration_list, - [57822] = 4, + STATE(1873), 1, + aux_sym_initializer_list_repeat1, + [60037] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(4403), 3, anon_sym_COMMA, - ACTIONS(4078), 1, - anon_sym_SEMI, - STATE(1590), 1, - aux_sym_declaration_repeat1, - [57835] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4080), 1, anon_sym_RPAREN, - ACTIONS(4082), 1, anon_sym_COLON, - STATE(1981), 1, - sym_gnu_asm_goto_list, - [57848] = 4, + [60046] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2880), 1, + ACTIONS(3525), 1, + anon_sym_RPAREN, + ACTIONS(4405), 1, anon_sym_COMMA, - ACTIONS(2882), 1, - anon_sym_RBRACE, - STATE(1581), 1, - aux_sym_initializer_list_repeat1, - [57861] = 4, + STATE(1799), 1, + aux_sym_preproc_argument_list_repeat1, + [60059] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2876), 1, + ACTIONS(2994), 1, anon_sym_LBRACE, - ACTIONS(4084), 1, + ACTIONS(4408), 1, sym_identifier, - STATE(1233), 1, + STATE(1357), 1, sym_enumerator_list, - [57874] = 4, + [60072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, - anon_sym_COMMA, - ACTIONS(4086), 1, - anon_sym_SEMI, - STATE(1660), 1, - aux_sym_declaration_repeat1, - [57887] = 4, + ACTIONS(4412), 1, + anon_sym_RPAREN, + ACTIONS(4410), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [60083] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2720), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, + sym_identifier, + STATE(1067), 1, + sym_field_declaration_list, + [60096] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(3626), 1, anon_sym_COMMA, - ACTIONS(4088), 1, + ACTIONS(4416), 1, anon_sym_SEMI, - STATE(1660), 1, + STATE(1786), 1, aux_sym_declaration_repeat1, - [57900] = 4, + [60109] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3596), 1, + ACTIONS(4418), 1, anon_sym_COMMA, - ACTIONS(4090), 1, - anon_sym_SEMI, - STATE(1557), 1, - aux_sym_type_definition_repeat2, - [57913] = 4, + ACTIONS(4421), 1, + anon_sym_RPAREN, + STATE(1804), 1, + aux_sym_parameter_list_repeat1, + [60122] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3998), 1, + ACTIONS(4423), 1, anon_sym_COMMA, - ACTIONS(4092), 1, - anon_sym_RBRACK_RBRACK, - STATE(1669), 1, - aux_sym_attribute_declaration_repeat1, - [57926] = 3, + ACTIONS(4426), 1, + anon_sym_RPAREN, + STATE(1805), 1, + aux_sym_generic_expression_repeat1, + [60135] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4096), 1, - anon_sym_EQ, - ACTIONS(4094), 2, + ACTIONS(4428), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [57937] = 4, + ACTIONS(4431), 1, + anon_sym_RPAREN, + STATE(1806), 1, + aux_sym_preproc_params_repeat1, + [60148] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(3626), 1, anon_sym_COMMA, - ACTIONS(4098), 1, + ACTIONS(4433), 1, anon_sym_SEMI, - STATE(1620), 1, + STATE(1860), 1, aux_sym_declaration_repeat1, - [57950] = 4, + [60161] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3596), 1, + ACTIONS(3626), 1, anon_sym_COMMA, - ACTIONS(4100), 1, + ACTIONS(4435), 1, anon_sym_SEMI, - STATE(1557), 1, - aux_sym_type_definition_repeat2, - [57963] = 4, + STATE(1787), 1, + aux_sym_declaration_repeat1, + [60174] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4102), 1, + ACTIONS(3204), 1, + anon_sym_RPAREN, + ACTIONS(4437), 1, anon_sym_COMMA, - ACTIONS(4104), 1, - anon_sym_RBRACE, - STATE(1668), 1, - aux_sym_enumerator_list_repeat1, - [57976] = 4, + STATE(1809), 1, + aux_sym_argument_list_repeat1, + [60187] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3596), 1, + ACTIONS(3626), 1, anon_sym_COMMA, - ACTIONS(4106), 1, + ACTIONS(4440), 1, anon_sym_SEMI, - STATE(1557), 1, - aux_sym_type_definition_repeat2, - [57989] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4108), 1, - anon_sym_COMMA, - ACTIONS(4111), 1, - anon_sym_RBRACE, - STATE(1611), 1, - aux_sym_enumerator_list_repeat1, - [58002] = 4, + STATE(1846), 1, + aux_sym_declaration_repeat1, + [60200] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3596), 1, + ACTIONS(3098), 1, anon_sym_COMMA, - ACTIONS(4113), 1, - anon_sym_SEMI, - STATE(1557), 1, - aux_sym_type_definition_repeat2, - [58015] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4082), 1, - anon_sym_COLON, - ACTIONS(4115), 1, + ACTIONS(4442), 1, anon_sym_RPAREN, - STATE(1975), 1, - sym_gnu_asm_goto_list, - [58028] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2596), 1, - anon_sym_LBRACE, - ACTIONS(4117), 1, - sym_identifier, - STATE(950), 1, - sym_field_declaration_list, - [58041] = 4, - ACTIONS(3227), 1, - sym_comment, - ACTIONS(4062), 1, - anon_sym_LPAREN2, - ACTIONS(4119), 1, - aux_sym_preproc_include_token2, - STATE(1858), 1, - sym_preproc_argument_list, - [58054] = 4, + STATE(1809), 1, + aux_sym_argument_list_repeat1, + [60213] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3550), 1, + ACTIONS(4444), 1, anon_sym_RPAREN, - ACTIONS(3552), 1, + ACTIONS(4446), 1, anon_sym_COLON, - STATE(1671), 1, - sym_gnu_asm_output_operand_list, - [58067] = 4, + STATE(1861), 1, + sym_gnu_asm_input_operand_list, + [60226] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3596), 1, - anon_sym_COMMA, - ACTIONS(4121), 1, - anon_sym_SEMI, - STATE(1557), 1, - aux_sym_type_definition_repeat2, - [58080] = 4, + ACTIONS(4448), 1, + anon_sym_RPAREN, + ACTIONS(4450), 1, + anon_sym_COLON, + STATE(1845), 1, + sym_gnu_asm_clobber_list, + [60239] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(3626), 1, anon_sym_COMMA, - ACTIONS(4123), 1, + ACTIONS(4452), 1, anon_sym_SEMI, - STATE(1635), 1, + STATE(1846), 1, aux_sym_declaration_repeat1, - [58093] = 4, - ACTIONS(3), 1, + [60252] = 4, + ACTIONS(3437), 1, sym_comment, - ACTIONS(3452), 1, - anon_sym_COMMA, - ACTIONS(4125), 1, - anon_sym_SEMI, - STATE(1660), 1, - aux_sym_declaration_repeat1, - [58106] = 4, + ACTIONS(4454), 1, + aux_sym_preproc_include_token2, + ACTIONS(4456), 1, + anon_sym_LPAREN2, + STATE(2175), 1, + sym_preproc_argument_list, + [60265] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(3626), 1, anon_sym_COMMA, - ACTIONS(4127), 1, + ACTIONS(4458), 1, anon_sym_SEMI, - STATE(1660), 1, + STATE(1846), 1, aux_sym_declaration_repeat1, - [58119] = 4, + [60278] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3596), 1, - anon_sym_COMMA, - ACTIONS(4129), 1, - anon_sym_SEMI, - STATE(1557), 1, - aux_sym_type_definition_repeat2, - [58132] = 4, + ACTIONS(2994), 1, + anon_sym_LBRACE, + ACTIONS(4460), 1, + sym_identifier, + STATE(1150), 1, + sym_enumerator_list, + [60291] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(3626), 1, anon_sym_COMMA, - ACTIONS(4131), 1, + ACTIONS(4462), 1, anon_sym_SEMI, - STATE(1660), 1, + STATE(1846), 1, aux_sym_declaration_repeat1, - [58145] = 4, + [60304] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(4379), 1, anon_sym_COMMA, - ACTIONS(4133), 1, + ACTIONS(4464), 1, anon_sym_RPAREN, - STATE(1657), 1, - aux_sym_preproc_argument_list_repeat1, - [58158] = 4, + STATE(1788), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [60317] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(3626), 1, anon_sym_COMMA, - ACTIONS(4135), 1, + ACTIONS(4466), 1, anon_sym_SEMI, - STATE(1663), 1, + STATE(1810), 1, aux_sym_declaration_repeat1, - [58171] = 4, + [60330] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3596), 1, + ACTIONS(3626), 1, anon_sym_COMMA, - ACTIONS(4137), 1, + ACTIONS(4468), 1, anon_sym_SEMI, - STATE(1557), 1, - aux_sym_type_definition_repeat2, - [58184] = 4, + STATE(1816), 1, + aux_sym_declaration_repeat1, + [60343] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3596), 1, + ACTIONS(4470), 1, anon_sym_COMMA, - ACTIONS(4139), 1, - anon_sym_SEMI, - STATE(1557), 1, - aux_sym_type_definition_repeat2, - [58197] = 4, + ACTIONS(4473), 1, + anon_sym_RBRACE, + STATE(1822), 1, + aux_sym_enumerator_list_repeat1, + [60356] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3928), 1, + ACTIONS(4230), 1, sym_identifier, - ACTIONS(4141), 1, + ACTIONS(4475), 1, anon_sym_RBRACE, - STATE(1687), 1, + STATE(1937), 1, sym_enumerator, - [58210] = 4, + [60369] = 4, + ACTIONS(3437), 1, + sym_comment, + ACTIONS(4456), 1, + anon_sym_LPAREN2, + ACTIONS(4477), 1, + aux_sym_preproc_include_token2, + STATE(2175), 1, + sym_preproc_argument_list, + [60382] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, - anon_sym_COMMA, - ACTIONS(4143), 1, - anon_sym_SEMI, - STATE(1660), 1, - aux_sym_declaration_repeat1, - [58223] = 4, + ACTIONS(2720), 1, + anon_sym_LBRACE, + ACTIONS(4479), 1, + sym_identifier, + STATE(1020), 1, + sym_field_declaration_list, + [60395] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(4383), 1, anon_sym_COMMA, - ACTIONS(4145), 1, - anon_sym_SEMI, - STATE(1660), 1, - aux_sym_declaration_repeat1, - [58236] = 4, + ACTIONS(4481), 1, + anon_sym_RBRACK_RBRACK, + STATE(1840), 1, + aux_sym_attribute_declaration_repeat1, + [60408] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4147), 1, + ACTIONS(4483), 3, anon_sym_COMMA, - ACTIONS(4150), 1, anon_sym_RPAREN, - STATE(1630), 1, - aux_sym_parameter_list_repeat1, - [58249] = 4, + anon_sym_COLON, + [60417] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2896), 1, - anon_sym_COMMA, - ACTIONS(2907), 1, - anon_sym_RPAREN, - STATE(1659), 1, - aux_sym_argument_list_repeat1, - [58262] = 4, + ACTIONS(2720), 1, + anon_sym_LBRACE, + ACTIONS(4485), 1, + sym_identifier, + STATE(1009), 1, + sym_field_declaration_list, + [60430] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, + ACTIONS(3850), 1, anon_sym_COLON, - ACTIONS(3558), 1, + ACTIONS(3868), 1, anon_sym_RPAREN, - STATE(1654), 1, + STATE(1855), 1, sym_gnu_asm_output_operand_list, - [58275] = 4, + [60443] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(4487), 3, anon_sym_COMMA, - ACTIONS(4152), 1, - anon_sym_SEMI, - STATE(1639), 1, - aux_sym_declaration_repeat1, - [58288] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [60452] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4154), 1, + ACTIONS(3108), 1, anon_sym_COMMA, - ACTIONS(4156), 1, - anon_sym_RPAREN, - STATE(1656), 1, - aux_sym_preproc_params_repeat1, - [58301] = 4, + ACTIONS(3110), 1, + anon_sym_RBRACE, + STATE(1797), 1, + aux_sym_initializer_list_repeat1, + [60465] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(3098), 1, anon_sym_COMMA, - ACTIONS(4158), 1, - anon_sym_SEMI, - STATE(1660), 1, - aux_sym_declaration_repeat1, - [58314] = 4, + ACTIONS(3102), 1, + anon_sym_RPAREN, + STATE(1844), 1, + aux_sym_argument_list_repeat1, + [60478] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(3626), 1, anon_sym_COMMA, - ACTIONS(4160), 1, + ACTIONS(4489), 1, anon_sym_SEMI, - STATE(1660), 1, + STATE(1846), 1, aux_sym_declaration_repeat1, - [58327] = 4, + [60491] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3596), 1, + ACTIONS(3626), 1, anon_sym_COMMA, - ACTIONS(4162), 1, + ACTIONS(4491), 1, anon_sym_SEMI, - STATE(1557), 1, - aux_sym_type_definition_repeat2, - [58340] = 4, + STATE(1846), 1, + aux_sym_declaration_repeat1, + [60504] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3596), 1, + ACTIONS(4493), 3, anon_sym_COMMA, - ACTIONS(4164), 1, - anon_sym_SEMI, - STATE(1557), 1, - aux_sym_type_definition_repeat2, - [58353] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [60513] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(3626), 1, anon_sym_COMMA, - ACTIONS(4166), 1, + ACTIONS(4495), 1, anon_sym_SEMI, - STATE(1660), 1, + STATE(1853), 1, aux_sym_declaration_repeat1, - [58366] = 4, + [60526] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3998), 1, + ACTIONS(3112), 1, anon_sym_COMMA, - ACTIONS(4168), 1, - anon_sym_RBRACK_RBRACK, - STATE(1669), 1, - aux_sym_attribute_declaration_repeat1, - [58379] = 4, + ACTIONS(4497), 1, + anon_sym_RPAREN, + STATE(1805), 1, + aux_sym_generic_expression_repeat1, + [60539] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(4383), 1, anon_sym_COMMA, - ACTIONS(4170), 1, - anon_sym_SEMI, - STATE(1660), 1, - aux_sym_declaration_repeat1, - [58392] = 4, + ACTIONS(4499), 1, + anon_sym_RBRACK_RBRACK, + STATE(1796), 1, + aux_sym_attribute_declaration_repeat1, + [60552] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4172), 1, + ACTIONS(4501), 1, anon_sym_COMMA, - ACTIONS(4174), 1, + ACTIONS(4503), 1, anon_sym_RPAREN, - STATE(1630), 1, + STATE(1804), 1, aux_sym_parameter_list_repeat1, - [58405] = 4, + [60565] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(4383), 1, anon_sym_COMMA, - ACTIONS(4176), 1, - anon_sym_SEMI, - STATE(1622), 1, - aux_sym_declaration_repeat1, - [58418] = 4, + ACTIONS(4505), 1, + anon_sym_RBRACK_RBRACK, + STATE(1859), 1, + aux_sym_attribute_declaration_repeat1, + [60578] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2596), 1, - anon_sym_LBRACE, - ACTIONS(4178), 1, - sym_identifier, - STATE(986), 1, - sym_field_declaration_list, - [58431] = 2, + ACTIONS(4507), 1, + anon_sym_RPAREN, + ACTIONS(4509), 1, + anon_sym_COLON, + STATE(2051), 1, + sym_gnu_asm_goto_list, + [60591] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4180), 3, + ACTIONS(4511), 1, anon_sym_COMMA, + ACTIONS(4513), 1, anon_sym_RPAREN, - anon_sym_COLON, - [58440] = 4, + STATE(1806), 1, + aux_sym_preproc_params_repeat1, + [60604] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(3385), 1, anon_sym_COMMA, - ACTIONS(4182), 1, - anon_sym_SEMI, - STATE(1602), 1, - aux_sym_declaration_repeat1, - [58453] = 4, + ACTIONS(4515), 1, + anon_sym_RPAREN, + STATE(1799), 1, + aux_sym_preproc_argument_list_repeat1, + [60617] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3098), 1, + anon_sym_COMMA, + ACTIONS(3100), 1, + anon_sym_RPAREN, + STATE(1809), 1, + aux_sym_argument_list_repeat1, + [60630] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4068), 1, + ACTIONS(4509), 1, anon_sym_COLON, - ACTIONS(4184), 1, + ACTIONS(4517), 1, anon_sym_RPAREN, - STATE(1599), 1, - sym_gnu_asm_clobber_list, - [58466] = 4, + STATE(2019), 1, + sym_gnu_asm_goto_list, + [60643] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3596), 1, + ACTIONS(4519), 1, anon_sym_COMMA, - ACTIONS(4186), 1, + ACTIONS(4522), 1, anon_sym_SEMI, - STATE(1557), 1, - aux_sym_type_definition_repeat2, - [58479] = 4, + STATE(1846), 1, + aux_sym_declaration_repeat1, + [60656] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4172), 1, + ACTIONS(3626), 1, anon_sym_COMMA, - ACTIONS(4188), 1, - anon_sym_RPAREN, - STATE(1642), 1, - aux_sym_parameter_list_repeat1, - [58492] = 2, + ACTIONS(4524), 1, + anon_sym_SEMI, + STATE(1846), 1, + aux_sym_declaration_repeat1, + [60669] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4190), 3, + ACTIONS(3626), 1, anon_sym_COMMA, + ACTIONS(4526), 1, anon_sym_SEMI, - anon_sym___attribute__, - [58501] = 4, + STATE(1866), 1, + aux_sym_declaration_repeat1, + [60682] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4192), 1, - anon_sym_COMMA, - ACTIONS(4195), 1, + ACTIONS(3848), 1, anon_sym_RPAREN, - STATE(1651), 1, - aux_sym_preproc_params_repeat1, - [58514] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3998), 1, - anon_sym_COMMA, - ACTIONS(4197), 1, - anon_sym_RBRACK_RBRACK, - STATE(1640), 1, - aux_sym_attribute_declaration_repeat1, - [58527] = 4, + ACTIONS(3850), 1, + anon_sym_COLON, + STATE(1812), 1, + sym_gnu_asm_output_operand_list, + [60695] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(3626), 1, anon_sym_COMMA, - ACTIONS(4199), 1, + ACTIONS(4528), 1, anon_sym_SEMI, - STATE(1629), 1, + STATE(1846), 1, aux_sym_declaration_repeat1, - [58540] = 4, + [60708] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4201), 1, - anon_sym_RPAREN, - ACTIONS(4203), 1, - anon_sym_COLON, - STATE(1593), 1, - sym_gnu_asm_input_operand_list, - [58553] = 4, - ACTIONS(3227), 1, + ACTIONS(4383), 1, + anon_sym_COMMA, + ACTIONS(4530), 1, + anon_sym_RBRACK_RBRACK, + STATE(1789), 1, + aux_sym_attribute_declaration_repeat1, + [60721] = 4, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4062), 1, + ACTIONS(4456), 1, anon_sym_LPAREN2, - ACTIONS(4205), 1, + ACTIONS(4532), 1, aux_sym_preproc_include_token2, - STATE(1858), 1, + STATE(2175), 1, sym_preproc_argument_list, - [58566] = 4, + [60734] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4154), 1, + ACTIONS(3626), 1, anon_sym_COMMA, - ACTIONS(4207), 1, - anon_sym_RPAREN, - STATE(1651), 1, - aux_sym_preproc_params_repeat1, - [58579] = 4, + ACTIONS(4534), 1, + anon_sym_SEMI, + STATE(1846), 1, + aux_sym_declaration_repeat1, + [60747] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3381), 1, - anon_sym_RPAREN, - ACTIONS(4209), 1, + ACTIONS(3098), 1, anon_sym_COMMA, - STATE(1657), 1, - aux_sym_preproc_argument_list_repeat1, - [58592] = 4, + ACTIONS(3116), 1, + anon_sym_RPAREN, + STATE(1868), 1, + aux_sym_argument_list_repeat1, + [60760] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, - anon_sym_COMMA, - ACTIONS(4212), 1, + ACTIONS(4446), 1, + anon_sym_COLON, + ACTIONS(4536), 1, anon_sym_RPAREN, - STATE(1657), 1, - aux_sym_preproc_argument_list_repeat1, - [58605] = 4, + STATE(1813), 1, + sym_gnu_asm_input_operand_list, + [60773] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2896), 1, + ACTIONS(4538), 1, anon_sym_COMMA, - ACTIONS(4214), 1, - anon_sym_RPAREN, - STATE(1667), 1, - aux_sym_argument_list_repeat1, - [58618] = 4, + ACTIONS(4540), 1, + anon_sym_RBRACE, + STATE(1822), 1, + aux_sym_enumerator_list_repeat1, + [60786] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4216), 1, + ACTIONS(4542), 3, anon_sym_COMMA, - ACTIONS(4219), 1, - anon_sym_SEMI, - STATE(1660), 1, - aux_sym_declaration_repeat1, - [58631] = 4, - ACTIONS(3227), 1, - sym_comment, - ACTIONS(4062), 1, - anon_sym_LPAREN2, - ACTIONS(4221), 1, - aux_sym_preproc_include_token2, - STATE(1858), 1, - sym_preproc_argument_list, - [58644] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [60795] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2935), 1, + ACTIONS(4230), 1, + sym_identifier, + ACTIONS(4540), 1, anon_sym_RBRACE, - ACTIONS(4223), 1, + STATE(1937), 1, + sym_enumerator, + [60808] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4544), 1, anon_sym_COMMA, - STATE(1662), 1, - aux_sym_initializer_list_repeat1, - [58657] = 4, + ACTIONS(4547), 1, + anon_sym_RBRACK_RBRACK, + STATE(1859), 1, + aux_sym_attribute_declaration_repeat1, + [60821] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(3626), 1, anon_sym_COMMA, - ACTIONS(4226), 1, + ACTIONS(4549), 1, anon_sym_SEMI, - STATE(1660), 1, + STATE(1846), 1, aux_sym_declaration_repeat1, - [58670] = 4, + [60834] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3596), 1, - anon_sym_COMMA, - ACTIONS(4228), 1, - anon_sym_SEMI, - STATE(1557), 1, - aux_sym_type_definition_repeat2, - [58683] = 2, + ACTIONS(4450), 1, + anon_sym_COLON, + ACTIONS(4551), 1, + anon_sym_RPAREN, + STATE(1841), 1, + sym_gnu_asm_clobber_list, + [60847] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4230), 3, + ACTIONS(4553), 3, anon_sym_LBRACK, anon_sym_EQ, anon_sym_DOT, - [58692] = 4, + [60856] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3928), 1, - sym_identifier, - ACTIONS(4232), 1, - anon_sym_RBRACE, - STATE(1687), 1, - sym_enumerator, - [58705] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, - anon_sym_RPAREN, - ACTIONS(4234), 1, + ACTIONS(4555), 3, anon_sym_COMMA, - STATE(1667), 1, - aux_sym_argument_list_repeat1, - [58718] = 4, + anon_sym_SEMI, + anon_sym___attribute__, + [60865] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4232), 1, - anon_sym_RBRACE, - ACTIONS(4237), 1, + ACTIONS(3626), 1, anon_sym_COMMA, - STATE(1611), 1, - aux_sym_enumerator_list_repeat1, - [58731] = 4, - ACTIONS(3), 1, + ACTIONS(4557), 1, + anon_sym_SEMI, + STATE(1872), 1, + aux_sym_declaration_repeat1, + [60878] = 4, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4239), 1, - anon_sym_COMMA, - ACTIONS(4242), 1, - anon_sym_RBRACK_RBRACK, - STATE(1669), 1, - aux_sym_attribute_declaration_repeat1, - [58744] = 4, + ACTIONS(4456), 1, + anon_sym_LPAREN2, + ACTIONS(4559), 1, + aux_sym_preproc_include_token2, + STATE(2175), 1, + sym_preproc_argument_list, + [60891] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(3626), 1, anon_sym_COMMA, - ACTIONS(4244), 1, + ACTIONS(4561), 1, anon_sym_SEMI, - STATE(1636), 1, + STATE(1846), 1, aux_sym_declaration_repeat1, - [58757] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4203), 1, - anon_sym_COLON, - ACTIONS(4246), 1, - anon_sym_RPAREN, - STATE(1647), 1, - sym_gnu_asm_input_operand_list, - [58770] = 3, - ACTIONS(3227), 1, + [60904] = 4, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4248), 1, + ACTIONS(4456), 1, + anon_sym_LPAREN2, + ACTIONS(4563), 1, aux_sym_preproc_include_token2, - ACTIONS(4250), 1, - sym_preproc_arg, - [58780] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4252), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [58788] = 2, + STATE(2175), 1, + sym_preproc_argument_list, + [60917] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4195), 2, + ACTIONS(3098), 1, anon_sym_COMMA, + ACTIONS(3104), 1, anon_sym_RPAREN, - [58796] = 3, - ACTIONS(3227), 1, - sym_comment, - ACTIONS(4254), 1, - aux_sym_preproc_include_token2, - ACTIONS(4256), 1, - sym_preproc_arg, - [58806] = 3, - ACTIONS(3227), 1, - sym_comment, - ACTIONS(4258), 1, - aux_sym_preproc_include_token2, - ACTIONS(4260), 1, - sym_preproc_arg, - [58816] = 2, + STATE(1809), 1, + aux_sym_argument_list_repeat1, + [60930] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4150), 2, + ACTIONS(3385), 1, anon_sym_COMMA, + ACTIONS(4565), 1, anon_sym_RPAREN, - [58824] = 3, + STATE(1799), 1, + aux_sym_preproc_argument_list_repeat1, + [60943] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3928), 1, - sym_identifier, - STATE(1687), 1, - sym_enumerator, - [58834] = 2, - ACTIONS(3227), 1, - sym_comment, - ACTIONS(4262), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [58842] = 2, + ACTIONS(3626), 1, + anon_sym_COMMA, + ACTIONS(4567), 1, + anon_sym_SEMI, + STATE(1878), 1, + aux_sym_declaration_repeat1, + [60956] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4264), 2, + ACTIONS(3626), 1, anon_sym_COMMA, + ACTIONS(4569), 1, anon_sym_SEMI, - [58850] = 2, + STATE(1846), 1, + aux_sym_declaration_repeat1, + [60969] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2935), 2, + ACTIONS(3626), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [58858] = 2, + ACTIONS(4571), 1, + anon_sym_SEMI, + STATE(1846), 1, + aux_sym_declaration_repeat1, + [60982] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2941), 2, - anon_sym_COMMA, + ACTIONS(3130), 1, anon_sym_RBRACE, - [58866] = 3, + ACTIONS(4573), 1, + anon_sym_COMMA, + STATE(1873), 1, + aux_sym_initializer_list_repeat1, + [60995] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4266), 1, + ACTIONS(2994), 1, + anon_sym_LBRACE, + ACTIONS(4576), 1, sym_identifier, - ACTIONS(4268), 1, - anon_sym_RPAREN, - [58876] = 2, + STATE(1357), 1, + sym_enumerator_list, + [61008] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4270), 2, + ACTIONS(4501), 1, anon_sym_COMMA, + ACTIONS(4578), 1, anon_sym_RPAREN, - [58884] = 3, + STATE(1839), 1, + aux_sym_parameter_list_repeat1, + [61021] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4272), 1, - sym_identifier, - STATE(1565), 1, - sym_attribute, - [58894] = 3, + ACTIONS(4580), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [61030] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(462), 1, - anon_sym_LBRACE, - STATE(266), 1, - sym_compound_statement, - [58904] = 2, + ACTIONS(4511), 1, + anon_sym_COMMA, + ACTIONS(4582), 1, + anon_sym_RPAREN, + STATE(1842), 1, + aux_sym_preproc_params_repeat1, + [61043] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 2, + ACTIONS(3626), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [58912] = 2, + ACTIONS(4584), 1, + anon_sym_SEMI, + STATE(1846), 1, + aux_sym_declaration_repeat1, + [61056] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4274), 2, + ACTIONS(3385), 1, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [58920] = 3, - ACTIONS(3227), 1, + ACTIONS(4586), 1, + anon_sym_RPAREN, + STATE(1799), 1, + aux_sym_preproc_argument_list_repeat1, + [61069] = 3, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4276), 1, + ACTIONS(4588), 1, aux_sym_preproc_include_token2, - ACTIONS(4278), 1, + ACTIONS(4590), 1, sym_preproc_arg, - [58930] = 3, + [61079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4280), 1, + ACTIONS(4592), 1, anon_sym_LPAREN2, - STATE(1863), 1, + STATE(590), 1, sym_parenthesized_expression, - [58940] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2927), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [58948] = 3, - ACTIONS(3227), 1, + [61089] = 3, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4282), 1, + ACTIONS(4594), 1, aux_sym_preproc_include_token2, - ACTIONS(4284), 1, + ACTIONS(4596), 1, sym_preproc_arg, - [58958] = 2, + [61099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3534), 2, + ACTIONS(4598), 1, + sym_identifier, + STATE(1851), 1, + sym_attribute, + [61109] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3130), 2, anon_sym_COMMA, - anon_sym_SEMI, - [58966] = 3, + anon_sym_RBRACE, + [61117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4280), 1, + ACTIONS(4592), 1, anon_sym_LPAREN2, - STATE(1686), 1, + STATE(577), 1, sym_parenthesized_expression, - [58976] = 3, - ACTIONS(3227), 1, + [61127] = 3, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4286), 1, + ACTIONS(4600), 1, aux_sym_preproc_include_token2, - ACTIONS(4288), 1, + ACTIONS(4602), 1, sym_preproc_arg, - [58986] = 2, + [61137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4242), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [58994] = 2, + ACTIONS(4604), 1, + anon_sym_LPAREN2, + STATE(1896), 1, + sym_parenthesized_expression, + [61147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2915), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [59002] = 3, + ACTIONS(4592), 1, + anon_sym_LPAREN2, + STATE(576), 1, + sym_parenthesized_expression, + [61157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4290), 1, + ACTIONS(4592), 1, anon_sym_LPAREN2, - STATE(376), 1, + STATE(565), 1, sym_parenthesized_expression, - [59012] = 2, - ACTIONS(3), 1, + [61167] = 2, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4292), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [59020] = 3, - ACTIONS(3227), 1, + ACTIONS(4606), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [61175] = 3, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4294), 1, + ACTIONS(4608), 1, aux_sym_preproc_include_token2, - ACTIONS(4296), 1, + ACTIONS(4610), 1, sym_preproc_arg, - [59030] = 3, + [61185] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4280), 1, + ACTIONS(3138), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [61193] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4612), 1, + sym_identifier, + ACTIONS(4614), 1, anon_sym_LPAREN2, - STATE(1938), 1, - sym_parenthesized_expression, - [59040] = 3, + [61203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4280), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - STATE(1888), 1, - sym_parenthesized_expression, - [59050] = 3, + STATE(2158), 1, + sym_argument_list, + [61213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4272), 1, - sym_identifier, - STATE(1696), 1, - sym_attribute, - [59060] = 3, + ACTIONS(131), 1, + anon_sym_LBRACE, + STATE(103), 1, + sym_compound_statement, + [61223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4290), 1, - anon_sym_LPAREN2, - STATE(349), 1, - sym_parenthesized_expression, - [59070] = 3, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(261), 1, + sym_compound_statement, + [61233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4280), 1, - anon_sym_LPAREN2, - STATE(1730), 1, - sym_parenthesized_expression, - [59080] = 3, + ACTIONS(612), 1, + anon_sym_LBRACE, + STATE(427), 1, + sym_compound_statement, + [61243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4290), 1, + ACTIONS(2502), 1, anon_sym_LPAREN2, - STATE(409), 1, - sym_parenthesized_expression, - [59090] = 2, + STATE(2123), 1, + sym_argument_list, + [61253] = 3, + ACTIONS(3437), 1, + sym_comment, + ACTIONS(4616), 1, + aux_sym_preproc_include_token2, + ACTIONS(4618), 1, + sym_preproc_arg, + [61263] = 3, + ACTIONS(3437), 1, + sym_comment, + ACTIONS(4620), 1, + aux_sym_preproc_include_token2, + ACTIONS(4622), 1, + sym_preproc_arg, + [61273] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4298), 2, + ACTIONS(4624), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [59098] = 3, + [61281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4290), 1, - anon_sym_LPAREN2, - STATE(442), 1, - sym_parenthesized_expression, - [59108] = 3, + ACTIONS(4598), 1, + sym_identifier, + STATE(1917), 1, + sym_attribute, + [61291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4290), 1, + ACTIONS(4604), 1, anon_sym_LPAREN2, - STATE(445), 1, + STATE(2230), 1, sym_parenthesized_expression, - [59118] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4300), 1, - sym_identifier, - ACTIONS(4302), 1, - anon_sym_LPAREN2, - [59128] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(504), 1, - anon_sym_LBRACE, - STATE(295), 1, - sym_compound_statement, - [59138] = 3, + [61301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4280), 1, + ACTIONS(4604), 1, anon_sym_LPAREN2, - STATE(1783), 1, + STATE(1897), 1, sym_parenthesized_expression, - [59148] = 3, + [61311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4280), 1, + ACTIONS(4604), 1, anon_sym_LPAREN2, - STATE(1733), 1, + STATE(2074), 1, sym_parenthesized_expression, - [59158] = 2, + [61321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3053), 2, - anon_sym_COMMA, + ACTIONS(4626), 1, + sym_identifier, + ACTIONS(4628), 1, anon_sym_RPAREN, - [59166] = 3, - ACTIONS(3227), 1, + [61331] = 3, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4304), 1, + ACTIONS(4630), 1, aux_sym_preproc_include_token2, - ACTIONS(4306), 1, + ACTIONS(4632), 1, sym_preproc_arg, - [59176] = 2, - ACTIONS(3227), 1, - sym_comment, - ACTIONS(4308), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [59184] = 3, + [61341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4290), 1, + ACTIONS(4592), 1, anon_sym_LPAREN2, - STATE(379), 1, + STATE(563), 1, sym_parenthesized_expression, - [59194] = 3, + [61351] = 3, + ACTIONS(3437), 1, + sym_comment, + ACTIONS(4634), 1, + aux_sym_preproc_include_token2, + ACTIONS(4636), 1, + sym_preproc_arg, + [61361] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4280), 1, - anon_sym_LPAREN2, - STATE(1732), 1, - sym_parenthesized_expression, - [59204] = 3, - ACTIONS(3227), 1, + ACTIONS(4638), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [61369] = 3, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4310), 1, + ACTIONS(4640), 1, aux_sym_preproc_include_token2, - ACTIONS(4312), 1, + ACTIONS(4642), 1, sym_preproc_arg, - [59214] = 3, + [61379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4290), 1, + ACTIONS(4604), 1, anon_sym_LPAREN2, - STATE(377), 1, + STATE(1976), 1, sym_parenthesized_expression, - [59224] = 3, - ACTIONS(3227), 1, - sym_comment, - ACTIONS(4314), 1, - aux_sym_preproc_include_token2, - ACTIONS(4316), 1, - sym_preproc_arg, - [59234] = 3, + [61389] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4272), 1, - sym_identifier, - STATE(1652), 1, - sym_attribute, - [59244] = 3, + ACTIONS(3120), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [61397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4290), 1, + ACTIONS(4592), 1, anon_sym_LPAREN2, - STATE(378), 1, + STATE(500), 1, sym_parenthesized_expression, - [59254] = 3, + [61407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4318), 1, - sym_identifier, - ACTIONS(4320), 1, + ACTIONS(4604), 1, anon_sym_LPAREN2, - [59264] = 3, - ACTIONS(3227), 1, - sym_comment, - ACTIONS(4322), 1, - aux_sym_preproc_include_token2, - ACTIONS(4324), 1, - sym_preproc_arg, - [59274] = 3, + STATE(1940), 1, + sym_parenthesized_expression, + [61417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 1, + ACTIONS(4592), 1, anon_sym_LPAREN2, - STATE(1916), 1, - sym_argument_list, - [59284] = 3, - ACTIONS(3227), 1, + STATE(504), 1, + sym_parenthesized_expression, + [61427] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4326), 1, - aux_sym_preproc_include_token2, - ACTIONS(4328), 1, - sym_preproc_arg, - [59294] = 3, + ACTIONS(4547), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [61435] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4290), 1, - anon_sym_LPAREN2, - STATE(389), 1, - sym_parenthesized_expression, - [59304] = 3, - ACTIONS(3227), 1, + ACTIONS(3758), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [61443] = 3, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4330), 1, + ACTIONS(4644), 1, aux_sym_preproc_include_token2, - ACTIONS(4332), 1, + ACTIONS(4646), 1, sym_preproc_arg, - [59314] = 3, + [61453] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(189), 1, - anon_sym_LBRACE, - STATE(177), 1, - sym_compound_statement, - [59324] = 3, + ACTIONS(3222), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [61461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4290), 1, + ACTIONS(4604), 1, anon_sym_LPAREN2, - STATE(372), 1, + STATE(2121), 1, sym_parenthesized_expression, - [59334] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(123), 1, - anon_sym_LBRACE, - STATE(107), 1, - sym_compound_statement, - [59344] = 3, + [61471] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACE, - STATE(256), 1, - sym_compound_statement, - [59354] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4280), 1, - anon_sym_LPAREN2, - STATE(1842), 1, - sym_parenthesized_expression, - [59364] = 3, - ACTIONS(3227), 1, + ACTIONS(4648), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [61479] = 3, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4334), 1, + ACTIONS(4650), 1, aux_sym_preproc_include_token2, - ACTIONS(4336), 1, + ACTIONS(4652), 1, sym_preproc_arg, - [59374] = 3, - ACTIONS(3227), 1, + [61489] = 3, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4338), 1, + ACTIONS(4654), 1, aux_sym_preproc_include_token2, - ACTIONS(4340), 1, + ACTIONS(4656), 1, sym_preproc_arg, - [59384] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2276), 1, - anon_sym_LPAREN2, - STATE(1898), 1, - sym_argument_list, - [59394] = 2, - ACTIONS(3227), 1, + [61499] = 2, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4342), 2, + ACTIONS(4658), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [59402] = 3, + [61507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4290), 1, + ACTIONS(4592), 1, anon_sym_LPAREN2, - STATE(496), 1, + STATE(596), 1, sym_parenthesized_expression, - [59412] = 3, - ACTIONS(3227), 1, - sym_comment, - ACTIONS(4344), 1, - aux_sym_preproc_include_token2, - ACTIONS(4346), 1, - sym_preproc_arg, - [59422] = 3, + [61517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4280), 1, + ACTIONS(4604), 1, anon_sym_LPAREN2, - STATE(1711), 1, + STATE(1895), 1, sym_parenthesized_expression, - [59432] = 3, - ACTIONS(3227), 1, - sym_comment, - ACTIONS(4348), 1, - aux_sym_preproc_include_token2, - ACTIONS(4350), 1, - sym_preproc_arg, - [59442] = 3, + [61527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4290), 1, + ACTIONS(4592), 1, anon_sym_LPAREN2, - STATE(497), 1, + STATE(598), 1, sym_parenthesized_expression, - [59452] = 3, + [61537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4272), 1, + ACTIONS(4598), 1, sym_identifier, - STATE(1587), 1, + STATE(1838), 1, sym_attribute, - [59462] = 3, - ACTIONS(3227), 1, + [61547] = 3, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4352), 1, + ACTIONS(4660), 1, aux_sym_preproc_include_token2, - ACTIONS(4354), 1, + ACTIONS(4662), 1, sym_preproc_arg, - [59472] = 3, - ACTIONS(3227), 1, + [61557] = 3, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4356), 1, + ACTIONS(4664), 1, aux_sym_preproc_include_token2, - ACTIONS(4358), 1, + ACTIONS(4666), 1, sym_preproc_arg, - [59482] = 3, - ACTIONS(3227), 1, + [61567] = 3, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4360), 1, + ACTIONS(4668), 1, aux_sym_preproc_include_token2, - ACTIONS(4362), 1, + ACTIONS(4670), 1, sym_preproc_arg, - [59492] = 3, - ACTIONS(3227), 1, + [61577] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(550), 1, + anon_sym_LBRACE, + STATE(305), 1, + sym_compound_statement, + [61587] = 3, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4364), 1, + ACTIONS(4672), 1, aux_sym_preproc_include_token2, - ACTIONS(4366), 1, + ACTIONS(4674), 1, sym_preproc_arg, - [59502] = 2, + [61597] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4368), 1, - anon_sym_COLON, - [59509] = 2, - ACTIONS(3227), 1, + ACTIONS(4676), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [61605] = 3, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4370), 1, + ACTIONS(4678), 1, aux_sym_preproc_include_token2, - [59516] = 2, - ACTIONS(3227), 1, + ACTIONS(4680), 1, + sym_preproc_arg, + [61615] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4473), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [61623] = 3, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4372), 1, + ACTIONS(4682), 1, aux_sym_preproc_include_token2, - [59523] = 2, - ACTIONS(3227), 1, + ACTIONS(4684), 1, + sym_preproc_arg, + [61633] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4686), 1, + sym_identifier, + ACTIONS(4688), 1, + anon_sym_LPAREN2, + [61643] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(199), 1, + anon_sym_LBRACE, + STATE(186), 1, + sym_compound_statement, + [61653] = 3, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4374), 1, + ACTIONS(4690), 1, aux_sym_preproc_include_token2, - [59530] = 2, - ACTIONS(3227), 1, + ACTIONS(4692), 1, + sym_preproc_arg, + [61663] = 3, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4376), 1, + ACTIONS(4694), 1, aux_sym_preproc_include_token2, - [59537] = 2, - ACTIONS(3227), 1, + ACTIONS(4696), 1, + sym_preproc_arg, + [61673] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4698), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [61681] = 3, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4378), 1, + ACTIONS(4700), 1, aux_sym_preproc_include_token2, - [59544] = 2, + ACTIONS(4702), 1, + sym_preproc_arg, + [61691] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4421), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [61699] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4704), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [61707] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4431), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [61715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4380), 1, + ACTIONS(4230), 1, sym_identifier, - [59551] = 2, + STATE(1937), 1, + sym_enumerator, + [61725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4382), 1, + ACTIONS(4598), 1, sym_identifier, - [59558] = 2, + STATE(1826), 1, + sym_attribute, + [61735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2975), 1, - anon_sym_RPAREN, - [59565] = 2, + ACTIONS(4592), 1, + anon_sym_LPAREN2, + STATE(510), 1, + sym_parenthesized_expression, + [61745] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4604), 1, + anon_sym_LPAREN2, + STATE(1933), 1, + sym_parenthesized_expression, + [61755] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4384), 1, + ACTIONS(3204), 2, + anon_sym_COMMA, anon_sym_RPAREN, - [59572] = 2, - ACTIONS(3227), 1, + [61763] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4386), 1, - aux_sym_preproc_include_token2, - [59579] = 2, + ACTIONS(4592), 1, + anon_sym_LPAREN2, + STATE(511), 1, + sym_parenthesized_expression, + [61773] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4388), 1, - anon_sym_SEMI, - [59586] = 2, - ACTIONS(3227), 1, + ACTIONS(4604), 1, + anon_sym_LPAREN2, + STATE(1958), 1, + sym_parenthesized_expression, + [61783] = 2, + ACTIONS(3437), 1, + sym_comment, + ACTIONS(4706), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [61791] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4592), 1, + anon_sym_LPAREN2, + STATE(588), 1, + sym_parenthesized_expression, + [61801] = 2, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4390), 1, + ACTIONS(4708), 1, aux_sym_preproc_include_token2, - [59593] = 2, + [61808] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3011), 1, - anon_sym_RPAREN, - [59600] = 2, - ACTIONS(3227), 1, + ACTIONS(4710), 1, + anon_sym_SEMI, + [61815] = 2, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4392), 1, + ACTIONS(4712), 1, aux_sym_preproc_include_token2, - [59607] = 2, + [61822] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4394), 1, + ACTIONS(4714), 1, sym_identifier, - [59614] = 2, - ACTIONS(3227), 1, + [61829] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4396), 1, - aux_sym_preproc_include_token2, - [59621] = 2, + ACTIONS(4716), 1, + sym_identifier, + [61836] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4398), 1, - anon_sym_SEMI, - [59628] = 2, + ACTIONS(4718), 1, + sym_identifier, + [61843] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4400), 1, + ACTIONS(4720), 1, aux_sym_preproc_if_token2, - [59635] = 2, + [61850] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3039), 1, + ACTIONS(4722), 1, + anon_sym_RBRACK, + [61857] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3168), 1, anon_sym_RPAREN, - [59642] = 2, + [61864] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3045), 1, + ACTIONS(4724), 1, + sym_identifier, + [61871] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3146), 1, anon_sym_RPAREN, - [59649] = 2, + [61878] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3071), 1, + ACTIONS(3236), 1, anon_sym_RPAREN, - [59656] = 2, + [61885] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4402), 1, - anon_sym_SEMI, - [59663] = 2, + ACTIONS(4726), 1, + sym_identifier, + [61892] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4404), 1, + ACTIONS(4728), 1, anon_sym_SEMI, - [59670] = 2, + [61899] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4406), 1, - anon_sym_SEMI, - [59677] = 2, + ACTIONS(4730), 1, + anon_sym_LPAREN2, + [61906] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4408), 1, - aux_sym_preproc_if_token2, - [59684] = 2, + ACTIONS(4732), 1, + anon_sym_SEMI, + [61913] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4410), 1, + ACTIONS(4734), 1, aux_sym_preproc_if_token2, - [59691] = 2, - ACTIONS(3227), 1, - sym_comment, - ACTIONS(4060), 1, - aux_sym_preproc_include_token2, - [59698] = 2, + [61920] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4412), 1, - sym_identifier, - [59705] = 2, + ACTIONS(4736), 1, + aux_sym_preproc_if_token2, + [61927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3035), 1, - anon_sym_RPAREN, - [59712] = 2, + ACTIONS(4738), 1, + aux_sym_preproc_if_token2, + [61934] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4414), 1, + ACTIONS(4740), 1, anon_sym_SEMI, - [59719] = 2, + [61941] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3019), 1, + ACTIONS(4742), 1, anon_sym_SEMI, - [59726] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4416), 1, - aux_sym_preproc_if_token2, - [59733] = 2, + [61948] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4418), 1, - aux_sym_preproc_if_token2, - [59740] = 2, + ACTIONS(4744), 1, + sym_identifier, + [61955] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4420), 1, - anon_sym_SEMI, - [59747] = 2, + ACTIONS(4746), 1, + anon_sym_RPAREN, + [61962] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4422), 1, - anon_sym_SEMI, - [59754] = 2, + ACTIONS(4748), 1, + aux_sym_preproc_if_token2, + [61969] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4424), 1, + ACTIONS(4750), 1, aux_sym_preproc_if_token2, - [59761] = 2, + [61976] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4426), 1, + ACTIONS(4752), 1, aux_sym_preproc_if_token2, - [59768] = 2, - ACTIONS(3227), 1, - sym_comment, - ACTIONS(4428), 1, + [61983] = 2, + ACTIONS(2408), 1, aux_sym_preproc_include_token2, - [59775] = 2, + ACTIONS(3437), 1, + sym_comment, + [61990] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4430), 1, + ACTIONS(3248), 1, anon_sym_RPAREN, - [59782] = 2, + [61997] = 2, + ACTIONS(2412), 1, + aux_sym_preproc_include_token2, + ACTIONS(3437), 1, + sym_comment, + [62004] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4432), 1, + ACTIONS(4754), 1, aux_sym_preproc_if_token2, - [59789] = 2, + [62011] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4434), 1, + ACTIONS(4756), 1, sym_identifier, - [59796] = 2, + [62018] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4436), 1, + ACTIONS(4758), 1, aux_sym_preproc_if_token2, - [59803] = 2, - ACTIONS(3227), 1, - sym_comment, - ACTIONS(4438), 1, - aux_sym_preproc_include_token2, - [59810] = 2, + [62025] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4440), 1, - anon_sym_SQUOTE, - [59817] = 2, + ACTIONS(4760), 1, + aux_sym_preproc_if_token2, + [62032] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4442), 1, + ACTIONS(4762), 1, sym_identifier, - [59824] = 2, - ACTIONS(3227), 1, + [62039] = 2, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4444), 1, + ACTIONS(4764), 1, aux_sym_preproc_include_token2, - [59831] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4446), 1, - anon_sym_SEMI, - [59838] = 2, + [62046] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2973), 1, - anon_sym_SEMI, - [59845] = 2, + ACTIONS(4766), 1, + anon_sym_RPAREN, + [62053] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4448), 1, - anon_sym_RPAREN, - [59852] = 2, - ACTIONS(3227), 1, + ACTIONS(3110), 1, + anon_sym_RBRACE, + [62060] = 2, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4450), 1, + ACTIONS(3521), 1, aux_sym_preproc_include_token2, - [59859] = 2, + [62067] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2939), 1, - anon_sym_SEMI, - [59866] = 2, + ACTIONS(4768), 1, + anon_sym_COLON, + [62074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3027), 1, + ACTIONS(3126), 1, anon_sym_SEMI, - [59873] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4452), 1, - anon_sym_RPAREN, - [59880] = 2, - ACTIONS(3227), 1, - sym_comment, - ACTIONS(4454), 1, - aux_sym_preproc_include_token2, - [59887] = 2, + [62081] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2919), 1, + ACTIONS(4770), 1, anon_sym_SEMI, - [59894] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4456), 1, - anon_sym_while, - [59901] = 2, - ACTIONS(3227), 1, - sym_comment, - ACTIONS(4205), 1, - aux_sym_preproc_include_token2, - [59908] = 2, + [62088] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3059), 1, + ACTIONS(4772), 1, anon_sym_SEMI, - [59915] = 2, + [62095] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4458), 1, + ACTIONS(3232), 1, anon_sym_SEMI, - [59922] = 2, + [62102] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4460), 1, - anon_sym_SEMI, - [59929] = 2, - ACTIONS(3227), 1, + ACTIONS(4774), 1, + anon_sym_LPAREN2, + [62109] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, - aux_sym_preproc_include_token2, - [59936] = 2, + ACTIONS(3128), 1, + anon_sym_SEMI, + [62116] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3049), 1, - anon_sym_RPAREN, - [59943] = 2, + ACTIONS(4776), 1, + sym_identifier, + [62123] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4464), 1, + ACTIONS(4778), 1, anon_sym_COLON, - [59950] = 2, - ACTIONS(3227), 1, - sym_comment, - ACTIONS(4466), 1, - aux_sym_preproc_include_token2, - [59957] = 2, + [62130] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3043), 1, + ACTIONS(3132), 1, anon_sym_RPAREN, - [59964] = 2, + [62137] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3063), 1, - anon_sym_SEMI, - [59971] = 2, + ACTIONS(4780), 1, + anon_sym_RPAREN, + [62144] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2947), 1, - anon_sym_SEMI, - [59978] = 2, + ACTIONS(4782), 1, + anon_sym_RPAREN, + [62151] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4468), 1, - anon_sym_SEMI, - [59985] = 2, + ACTIONS(3252), 1, + anon_sym_RPAREN, + [62158] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2929), 1, + ACTIONS(3258), 1, anon_sym_SEMI, - [59992] = 2, + [62165] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4470), 1, - anon_sym_SQUOTE, - [59999] = 2, + ACTIONS(3226), 1, + anon_sym_RPAREN, + [62172] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2937), 1, + ACTIONS(3206), 1, anon_sym_RPAREN, - [60006] = 2, + [62179] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4472), 1, + ACTIONS(3134), 1, anon_sym_SEMI, - [60013] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2953), 1, - anon_sym_RPAREN, - [60020] = 2, + [62186] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4474), 1, - anon_sym_STAR, - [60027] = 2, + ACTIONS(4784), 1, + anon_sym_SEMI, + [62193] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2963), 1, + ACTIONS(3240), 1, anon_sym_RPAREN, - [60034] = 2, + [62200] = 2, + ACTIONS(3437), 1, + sym_comment, + ACTIONS(4454), 1, + aux_sym_preproc_include_token2, + [62207] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(3250), 1, anon_sym_RPAREN, - [60041] = 2, + [62214] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4476), 1, + ACTIONS(4786), 1, anon_sym_SEMI, - [60048] = 2, + [62221] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2989), 1, + ACTIONS(3246), 1, anon_sym_RPAREN, - [60055] = 2, + [62228] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4478), 1, + ACTIONS(4788), 1, aux_sym_preproc_if_token2, - [60062] = 2, + [62235] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2995), 1, + ACTIONS(4790), 1, anon_sym_RPAREN, - [60069] = 2, + [62242] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2997), 1, + ACTIONS(3230), 1, anon_sym_RPAREN, - [60076] = 2, - ACTIONS(3), 1, + [62249] = 2, + ACTIONS(3437), 1, sym_comment, - ACTIONS(3001), 1, - anon_sym_RPAREN, - [60083] = 2, + ACTIONS(4792), 1, + aux_sym_preproc_include_token2, + [62256] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4480), 1, + ACTIONS(4794), 1, anon_sym_SEMI, - [60090] = 2, + [62263] = 2, + ACTIONS(3437), 1, + sym_comment, + ACTIONS(4796), 1, + aux_sym_preproc_include_token2, + [62270] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4482), 1, + ACTIONS(3254), 1, anon_sym_SEMI, - [60097] = 2, - ACTIONS(3), 1, + [62277] = 2, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4484), 1, - aux_sym_preproc_if_token2, - [60104] = 2, + ACTIONS(4798), 1, + aux_sym_preproc_include_token2, + [62284] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4486), 1, - aux_sym_preproc_if_token2, - [60111] = 2, + ACTIONS(3264), 1, + anon_sym_RPAREN, + [62291] = 2, + ACTIONS(3437), 1, + sym_comment, + ACTIONS(4800), 1, + aux_sym_preproc_include_token2, + [62298] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3017), 1, + ACTIONS(4802), 1, anon_sym_RPAREN, - [60118] = 2, - ACTIONS(3), 1, + [62305] = 2, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4488), 1, - sym_identifier, - [60125] = 2, + ACTIONS(4477), 1, + aux_sym_preproc_include_token2, + [62312] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3033), 1, - anon_sym_RPAREN, - [60132] = 2, + ACTIONS(3274), 1, + anon_sym_SEMI, + [62319] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4490), 1, + ACTIONS(4804), 1, anon_sym_SEMI, - [60139] = 2, + [62326] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4492), 1, - aux_sym_preproc_if_token2, - [60146] = 2, - ACTIONS(3227), 1, + ACTIONS(4806), 1, + anon_sym_SEMI, + [62333] = 2, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4494), 1, + ACTIONS(4808), 1, aux_sym_preproc_include_token2, - [60153] = 2, + [62340] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, - anon_sym_SEMI, - [60160] = 2, + ACTIONS(4810), 1, + anon_sym_COLON, + [62347] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4498), 1, + ACTIONS(4812), 1, + sym_identifier, + [62354] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3262), 1, anon_sym_SEMI, - [60167] = 2, + [62361] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4500), 1, - aux_sym_preproc_if_token2, - [60174] = 2, + ACTIONS(4814), 1, + anon_sym_COLON, + [62368] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4502), 1, + ACTIONS(4816), 1, sym_identifier, - [60181] = 2, + [62375] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4504), 1, + ACTIONS(4818), 1, sym_identifier, - [60188] = 2, + [62382] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4506), 1, - anon_sym_LPAREN2, - [60195] = 2, + ACTIONS(4820), 1, + anon_sym_SEMI, + [62389] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4508), 1, - aux_sym_preproc_if_token2, - [60202] = 2, - ACTIONS(3), 1, + ACTIONS(4822), 1, + anon_sym_SQUOTE, + [62396] = 2, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4510), 1, - anon_sym_COLON, - [60209] = 2, - ACTIONS(3227), 1, + ACTIONS(4824), 1, + aux_sym_preproc_include_token2, + [62403] = 2, + ACTIONS(3437), 1, + sym_comment, + ACTIONS(4826), 1, + aux_sym_preproc_include_token2, + [62410] = 2, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4512), 1, + ACTIONS(4828), 1, aux_sym_preproc_include_token2, - [60216] = 2, + [62417] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4514), 1, + ACTIONS(4830), 1, aux_sym_preproc_if_token2, - [60223] = 2, + [62424] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4516), 1, - anon_sym_RPAREN, - [60230] = 2, - ACTIONS(3227), 1, - sym_comment, - ACTIONS(4518), 1, - aux_sym_preproc_include_token2, - [60237] = 2, + ACTIONS(4832), 1, + aux_sym_preproc_if_token2, + [62431] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4520), 1, + ACTIONS(4834), 1, sym_identifier, - [60244] = 2, + [62438] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4522), 1, - aux_sym_preproc_if_token2, - [60251] = 2, - ACTIONS(3227), 1, - sym_comment, - ACTIONS(4524), 1, - aux_sym_preproc_include_token2, - [60258] = 2, + ACTIONS(4836), 1, + anon_sym_COLON, + [62445] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4526), 1, + ACTIONS(3148), 1, anon_sym_RPAREN, - [60265] = 2, - ACTIONS(3227), 1, + [62452] = 2, + ACTIONS(3437), 1, sym_comment, - ACTIONS(3303), 1, + ACTIONS(4838), 1, aux_sym_preproc_include_token2, - [60272] = 2, + [62459] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4528), 1, - sym_primitive_type, - [60279] = 2, - ACTIONS(3227), 1, + ACTIONS(4840), 1, + anon_sym_RPAREN, + [62466] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4530), 1, - aux_sym_preproc_include_token2, - [60286] = 2, + ACTIONS(4842), 1, + aux_sym_preproc_if_token2, + [62473] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4532), 1, + ACTIONS(4844), 1, aux_sym_preproc_if_token2, - [60293] = 2, + [62480] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4534), 1, + ACTIONS(4846), 1, aux_sym_preproc_if_token2, - [60300] = 2, + [62487] = 2, + ACTIONS(3437), 1, + sym_comment, + ACTIONS(4848), 1, + aux_sym_preproc_include_token2, + [62494] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4536), 1, - anon_sym_SEMI, - [60307] = 2, + ACTIONS(4850), 1, + aux_sym_preproc_if_token2, + [62501] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4538), 1, + ACTIONS(4852), 1, sym_identifier, - [60314] = 2, - ACTIONS(3227), 1, + [62508] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4119), 1, - aux_sym_preproc_include_token2, - [60321] = 2, - ACTIONS(3227), 1, + ACTIONS(4854), 1, + aux_sym_preproc_if_token2, + [62515] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4540), 1, + ACTIONS(4856), 1, + anon_sym_SEMI, + [62522] = 2, + ACTIONS(3437), 1, + sym_comment, + ACTIONS(3503), 1, aux_sym_preproc_include_token2, - [60328] = 2, + [62529] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4542), 1, - sym_identifier, - [60335] = 2, + ACTIONS(4858), 1, + aux_sym_preproc_if_token2, + [62536] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4544), 1, - anon_sym_SQUOTE, - [60342] = 2, + ACTIONS(4860), 1, + sym_primitive_type, + [62543] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4546), 1, - anon_sym_SEMI, - [60349] = 2, + ACTIONS(3170), 1, + anon_sym_RPAREN, + [62550] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3005), 1, + ACTIONS(4862), 1, anon_sym_SEMI, - [60356] = 2, + [62557] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4548), 1, - aux_sym_preproc_if_token2, - [60363] = 2, + ACTIONS(4864), 1, + sym_identifier, + [62564] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 1, + ACTIONS(3176), 1, anon_sym_SEMI, - [60370] = 2, + [62571] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2981), 1, - anon_sym_SEMI, - [60377] = 2, + ACTIONS(4866), 1, + anon_sym_RPAREN, + [62578] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4550), 1, + ACTIONS(3188), 1, anon_sym_RPAREN, - [60384] = 2, + [62585] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2961), 1, + ACTIONS(3270), 1, anon_sym_SEMI, - [60391] = 2, + [62592] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2959), 1, - anon_sym_RPAREN, - [60398] = 2, - ACTIONS(3227), 1, + ACTIONS(4868), 1, + sym_identifier, + [62599] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4552), 1, - aux_sym_preproc_include_token2, - [60405] = 2, + ACTIONS(3242), 1, + anon_sym_SEMI, + [62606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2955), 1, - anon_sym_RPAREN, - [60412] = 2, + ACTIONS(3238), 1, + anon_sym_SEMI, + [62613] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3057), 1, + ACTIONS(3234), 1, anon_sym_RPAREN, - [60419] = 2, - ACTIONS(3227), 1, + [62620] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4070), 1, - aux_sym_preproc_include_token2, - [60426] = 2, + ACTIONS(4870), 1, + anon_sym_SEMI, + [62627] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2931), 1, - anon_sym_RPAREN, - [60433] = 2, + ACTIONS(4872), 1, + anon_sym_STAR, + [62634] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4554), 1, - anon_sym_SEMI, - [60440] = 2, + ACTIONS(3202), 1, + anon_sym_RPAREN, + [62641] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4556), 1, + ACTIONS(4874), 1, anon_sym_SEMI, - [60447] = 2, + [62648] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4558), 1, - aux_sym_preproc_if_token2, - [60454] = 2, + ACTIONS(3122), 1, + anon_sym_RPAREN, + [62655] = 2, + ACTIONS(3437), 1, + sym_comment, + ACTIONS(4876), 1, + aux_sym_preproc_include_token2, + [62662] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3041), 1, + ACTIONS(3184), 1, anon_sym_SEMI, - [60461] = 2, + [62669] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4560), 1, - anon_sym_COLON, - [60468] = 2, + ACTIONS(4878), 1, + anon_sym_RPAREN, + [62676] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, + ACTIONS(3180), 1, anon_sym_RPAREN, - [60475] = 2, - ACTIONS(3), 1, + [62683] = 2, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4562), 1, - anon_sym_SEMI, - [60482] = 2, + ACTIONS(4880), 1, + aux_sym_preproc_include_token2, + [62690] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2923), 1, + ACTIONS(3178), 1, anon_sym_RPAREN, - [60489] = 2, + [62697] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4564), 1, + ACTIONS(4882), 1, aux_sym_preproc_if_token2, - [60496] = 2, + [62704] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2945), 1, + ACTIONS(3158), 1, anon_sym_RPAREN, - [60503] = 2, + [62711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4566), 1, - sym_identifier, - [60510] = 2, + ACTIONS(4884), 1, + anon_sym_SEMI, + [62718] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4568), 1, - aux_sym_preproc_if_token2, - [60517] = 2, + ACTIONS(4886), 1, + anon_sym_SEMI, + [62725] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2977), 1, + ACTIONS(3150), 1, anon_sym_RPAREN, - [60524] = 2, + [62732] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4570), 1, - anon_sym_STAR, - [60531] = 2, + ACTIONS(4888), 1, + aux_sym_preproc_if_token2, + [62739] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4572), 1, + ACTIONS(4890), 1, sym_identifier, - [60538] = 2, + [62746] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4574), 1, + ACTIONS(4892), 1, sym_identifier, - [60545] = 2, + [62753] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4576), 1, - anon_sym_RPAREN, - [60552] = 2, - ACTIONS(3227), 1, - sym_comment, - ACTIONS(4578), 1, - aux_sym_preproc_include_token2, - [60559] = 2, + ACTIONS(4894), 1, + aux_sym_preproc_if_token2, + [62760] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4580), 1, - aux_sym_preproc_if_token2, - [60566] = 2, + ACTIONS(4896), 1, + anon_sym_SEMI, + [62767] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4582), 1, - sym_identifier, - [60573] = 2, + ACTIONS(4898), 1, + aux_sym_preproc_if_token2, + [62774] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4584), 1, + ACTIONS(4900), 1, aux_sym_preproc_if_token2, - [60580] = 2, + [62781] = 2, + ACTIONS(3437), 1, + sym_comment, + ACTIONS(4902), 1, + aux_sym_preproc_include_token2, + [62788] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, + ACTIONS(4904), 1, sym_identifier, - [60587] = 2, - ACTIONS(3227), 1, + [62795] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3333), 1, - aux_sym_preproc_include_token2, - [60594] = 2, + ACTIONS(4906), 1, + anon_sym_SEMI, + [62802] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4588), 1, + ACTIONS(4908), 1, anon_sym_SEMI, - [60601] = 2, + [62809] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4590), 1, + ACTIONS(3244), 1, anon_sym_RPAREN, - [60608] = 2, - ACTIONS(3), 1, + [62816] = 2, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4104), 1, - anon_sym_RBRACE, - [60615] = 2, + ACTIONS(4910), 1, + aux_sym_preproc_include_token2, + [62823] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4592), 1, - sym_primitive_type, - [60622] = 2, + ACTIONS(3276), 1, + anon_sym_RPAREN, + [62830] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4594), 1, - sym_identifier, - [60629] = 2, + ACTIONS(4912), 1, + aux_sym_preproc_if_token2, + [62837] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3037), 1, + ACTIONS(4914), 1, anon_sym_SEMI, - [60636] = 2, + [62844] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4596), 1, + ACTIONS(4916), 1, sym_identifier, - [60643] = 2, + [62851] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4598), 1, - anon_sym_SEMI, - [60650] = 2, + ACTIONS(4918), 1, + anon_sym_LPAREN2, + [62858] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4600), 1, - anon_sym_RPAREN, - [60657] = 2, + ACTIONS(4920), 1, + anon_sym_COLON, + [62865] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4602), 1, - anon_sym_COMMA, - [60664] = 2, + ACTIONS(4922), 1, + aux_sym_preproc_if_token2, + [62872] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4604), 1, + ACTIONS(4924), 1, + aux_sym_preproc_if_token2, + [62879] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 1, anon_sym_RPAREN, - [60671] = 2, + [62886] = 2, + ACTIONS(3437), 1, + sym_comment, + ACTIONS(4928), 1, + aux_sym_preproc_include_token2, + [62893] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4606), 1, - anon_sym_STAR, - [60678] = 2, + ACTIONS(4930), 1, + anon_sym_LPAREN2, + [62900] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4608), 1, - anon_sym_SEMI, - [60685] = 2, + ACTIONS(4932), 1, + aux_sym_preproc_if_token2, + [62907] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3029), 1, + ACTIONS(3156), 1, anon_sym_RPAREN, - [60692] = 2, - ACTIONS(3), 1, + [62914] = 2, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4610), 1, - sym_identifier, - [60699] = 2, + ACTIONS(3489), 1, + aux_sym_preproc_include_token2, + [62921] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4612), 1, - anon_sym_COLON, - [60706] = 2, + ACTIONS(4934), 1, + aux_sym_preproc_if_token2, + [62928] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3021), 1, + ACTIONS(3268), 1, anon_sym_RPAREN, - [60713] = 2, - ACTIONS(3227), 1, - sym_comment, - ACTIONS(4614), 1, - aux_sym_preproc_include_token2, - [60720] = 2, + [62935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4616), 1, - anon_sym_RPAREN, - [60727] = 2, + ACTIONS(3186), 1, + anon_sym_SEMI, + [62942] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4618), 1, + ACTIONS(4936), 1, aux_sym_preproc_if_token2, - [60734] = 2, + [62949] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4938), 1, + anon_sym_SEMI, + [62956] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2993), 1, + ACTIONS(3216), 1, anon_sym_RPAREN, - [60741] = 2, + [62963] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4620), 1, - aux_sym_preproc_if_token2, - [60748] = 2, + ACTIONS(4940), 1, + anon_sym_STAR, + [62970] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2991), 1, + ACTIONS(3164), 1, anon_sym_RPAREN, - [60755] = 2, + [62977] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4622), 1, - anon_sym_COLON, - [60762] = 2, + ACTIONS(4942), 1, + anon_sym_SEMI, + [62984] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2965), 1, + ACTIONS(3152), 1, anon_sym_RPAREN, - [60769] = 2, + [62991] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4624), 1, - aux_sym_preproc_if_token2, - [60776] = 2, + ACTIONS(4944), 1, + anon_sym_RPAREN, + [62998] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4626), 1, - anon_sym_LPAREN2, - [60783] = 2, + ACTIONS(4946), 1, + anon_sym_SEMI, + [63005] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3061), 1, + ACTIONS(3144), 1, anon_sym_RPAREN, - [60790] = 2, + [63012] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4628), 1, - anon_sym_SEMI, - [60797] = 2, + ACTIONS(3190), 1, + anon_sym_RPAREN, + [63019] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4630), 1, + ACTIONS(4948), 1, sym_identifier, - [60804] = 2, + [63026] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4632), 1, + ACTIONS(4950), 1, sym_identifier, - [60811] = 2, + [63033] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4634), 1, - anon_sym_STAR, - [60818] = 2, - ACTIONS(3227), 1, + ACTIONS(3278), 1, + anon_sym_RPAREN, + [63040] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4636), 1, - aux_sym_preproc_include_token2, - [60825] = 2, + ACTIONS(4952), 1, + anon_sym_COLON, + [63047] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4638), 1, - anon_sym_SEMI, - [60832] = 2, + ACTIONS(4954), 1, + aux_sym_preproc_if_token2, + [63054] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4640), 1, + ACTIONS(4956), 1, sym_identifier, - [60839] = 2, + [63061] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2943), 1, - anon_sym_SEMI, - [60846] = 2, + ACTIONS(4958), 1, + anon_sym_COMMA, + [63068] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2925), 1, - anon_sym_SEMI, - [60853] = 2, - ACTIONS(2260), 1, - aux_sym_preproc_include_token2, - ACTIONS(3227), 1, - sym_comment, - [60860] = 2, + ACTIONS(4960), 1, + anon_sym_RPAREN, + [63075] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4642), 1, - sym_identifier, - [60867] = 2, + ACTIONS(4962), 1, + anon_sym_RPAREN, + [63082] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4644), 1, + ACTIONS(3272), 1, anon_sym_SEMI, - [60874] = 2, - ACTIONS(3227), 1, + [63089] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4964), 1, + aux_sym_preproc_if_token2, + [63096] = 2, + ACTIONS(3437), 1, sym_comment, - ACTIONS(3351), 1, + ACTIONS(4966), 1, aux_sym_preproc_include_token2, - [60881] = 2, + [63103] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2917), 1, + ACTIONS(4968), 1, anon_sym_SEMI, - [60888] = 2, + [63110] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4646), 1, - anon_sym_SEMI, - [60895] = 2, + ACTIONS(4970), 1, + sym_identifier, + [63117] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4972), 1, + sym_primitive_type, + [63124] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4974), 1, + anon_sym_RPAREN, + [63131] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4648), 1, + ACTIONS(4976), 1, sym_identifier, - [60902] = 2, + [63138] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4650), 1, + ACTIONS(4978), 1, aux_sym_preproc_if_token2, - [60909] = 2, + [63145] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4652), 1, + ACTIONS(4980), 1, sym_identifier, - [60916] = 2, + [63152] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4654), 1, + ACTIONS(4982), 1, sym_identifier, - [60923] = 2, + [63159] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4656), 1, + ACTIONS(4984), 1, sym_identifier, - [60930] = 2, + [63166] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4658), 1, - aux_sym_preproc_if_token2, - [60937] = 2, + ACTIONS(4369), 1, + anon_sym_RBRACE, + [63173] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4660), 1, + ACTIONS(4986), 1, + anon_sym_RPAREN, + [63180] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4988), 1, aux_sym_preproc_if_token2, - [60944] = 2, + [63187] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2882), 1, - anon_sym_RBRACE, - [60951] = 2, + ACTIONS(4990), 1, + anon_sym_SEMI, + [63194] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4662), 1, + ACTIONS(4992), 1, + anon_sym_RBRACK, + [63201] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4994), 1, sym_identifier, - [60958] = 2, + [63208] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4664), 1, + ACTIONS(4996), 1, anon_sym_RPAREN, - [60965] = 2, + [63215] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4666), 1, - ts_builtin_sym_end, - [60972] = 2, + ACTIONS(4998), 1, + anon_sym_STAR, + [63222] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4668), 1, - anon_sym_SEMI, - [60979] = 2, + ACTIONS(5000), 1, + anon_sym_RPAREN, + [63229] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4670), 1, + ACTIONS(5002), 1, aux_sym_preproc_if_token2, - [60986] = 2, + [63236] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4672), 1, - anon_sym_RPAREN, - [60993] = 2, - ACTIONS(2264), 1, - aux_sym_preproc_include_token2, - ACTIONS(3227), 1, + ACTIONS(5004), 1, + anon_sym_SEMI, + [63243] = 2, + ACTIONS(3437), 1, sym_comment, - [61000] = 2, + ACTIONS(4532), 1, + aux_sym_preproc_include_token2, + [63250] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4674), 1, + ACTIONS(5006), 1, anon_sym_while, - [61007] = 2, + [63257] = 2, + ACTIONS(3437), 1, + sym_comment, + ACTIONS(5008), 1, + aux_sym_preproc_include_token2, + [63264] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, + ACTIONS(5010), 1, anon_sym_SEMI, - [61014] = 2, + [63271] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4678), 1, - anon_sym_LPAREN2, - [61021] = 2, + ACTIONS(3220), 1, + anon_sym_RPAREN, + [63278] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3009), 1, - anon_sym_SEMI, - [61028] = 2, + ACTIONS(5012), 1, + aux_sym_preproc_if_token2, + [63285] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4680), 1, - anon_sym_RPAREN, - [61035] = 2, + ACTIONS(5014), 1, + sym_identifier, + [63292] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4682), 1, + ACTIONS(5016), 1, sym_identifier, - [61042] = 2, + [63299] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4684), 1, - anon_sym_LPAREN2, - [61049] = 2, - ACTIONS(3), 1, + ACTIONS(5018), 1, + anon_sym_RPAREN, + [63306] = 2, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4686), 1, - sym_identifier, - [61056] = 2, + ACTIONS(5020), 1, + aux_sym_preproc_include_token2, + [63313] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3069), 1, + ACTIONS(3256), 1, anon_sym_SEMI, - [61063] = 2, + [63320] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4688), 1, - anon_sym_COLON, - [61070] = 2, - ACTIONS(3), 1, + ACTIONS(5022), 1, + anon_sym_SQUOTE, + [63327] = 2, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4690), 1, - aux_sym_preproc_if_token2, - [61077] = 2, + ACTIONS(3527), 1, + aux_sym_preproc_include_token2, + [63334] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3051), 1, + ACTIONS(3214), 1, anon_sym_SEMI, - [61084] = 2, + [63341] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4692), 1, - anon_sym_RPAREN, - [61091] = 2, + ACTIONS(5024), 1, + sym_identifier, + [63348] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3055), 1, + ACTIONS(3136), 1, anon_sym_SEMI, - [61098] = 2, + [63355] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4694), 1, - anon_sym_LPAREN2, - [61105] = 2, + ACTIONS(3198), 1, + anon_sym_RPAREN, + [63362] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3067), 1, - anon_sym_RPAREN, - [61112] = 2, + ACTIONS(5026), 1, + anon_sym_STAR, + [63369] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3015), 1, + ACTIONS(3142), 1, anon_sym_SEMI, - [61119] = 2, + [63376] = 2, + ACTIONS(3437), 1, + sym_comment, + ACTIONS(5028), 1, + aux_sym_preproc_include_token2, + [63383] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4696), 1, - aux_sym_preproc_if_token2, - [61126] = 2, + ACTIONS(5030), 1, + sym_identifier, + [63390] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4698), 1, - anon_sym_RPAREN, - [61133] = 2, + ACTIONS(5032), 1, + anon_sym_SQUOTE, + [63397] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4700), 1, - anon_sym_LPAREN2, - [61140] = 2, + ACTIONS(5034), 1, + anon_sym_SEMI, + [63404] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4702), 1, - anon_sym_RBRACK, - [61147] = 2, + ACTIONS(3192), 1, + anon_sym_SEMI, + [63411] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4704), 1, + ACTIONS(5036), 1, anon_sym_while, - [61154] = 2, + [63418] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4706), 1, - anon_sym_LPAREN2, - [61161] = 2, - ACTIONS(3227), 1, + ACTIONS(5038), 1, + anon_sym_SEMI, + [63425] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3377), 1, - aux_sym_preproc_include_token2, - [61168] = 2, + ACTIONS(3174), 1, + anon_sym_SEMI, + [63432] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2957), 1, - anon_sym_RPAREN, - [61175] = 2, + ACTIONS(5040), 1, + anon_sym_while, + [63439] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3007), 1, + ACTIONS(3260), 1, anon_sym_SEMI, - [61182] = 2, + [63446] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4708), 1, - anon_sym_RPAREN, - [61189] = 2, + ACTIONS(5042), 1, + anon_sym_SEMI, + [63453] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2987), 1, - anon_sym_SEMI, - [61196] = 2, + ACTIONS(5044), 1, + aux_sym_preproc_if_token2, + [63460] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4710), 1, - anon_sym_COLON, - [61203] = 2, + ACTIONS(3196), 1, + anon_sym_SEMI, + [63467] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2979), 1, + ACTIONS(5046), 1, anon_sym_SEMI, - [61210] = 2, + [63474] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4712), 1, - sym_identifier, - [61217] = 2, + ACTIONS(3210), 1, + anon_sym_SEMI, + [63481] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2969), 1, + ACTIONS(3172), 1, anon_sym_SEMI, - [61224] = 2, + [63488] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4714), 1, - anon_sym_LPAREN2, - [61231] = 2, + ACTIONS(3212), 1, + anon_sym_SEMI, + [63495] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4716), 1, + ACTIONS(3154), 1, anon_sym_SEMI, - [61238] = 2, + [63502] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5048), 1, + sym_identifier, + [63509] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 1, + ACTIONS(3218), 1, anon_sym_SEMI, - [61245] = 2, + [63516] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4718), 1, - aux_sym_preproc_if_token2, - [61252] = 2, + ACTIONS(3160), 1, + anon_sym_RPAREN, + [63523] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4720), 1, - aux_sym_preproc_if_token2, - [61259] = 2, - ACTIONS(3227), 1, + ACTIONS(5050), 1, + anon_sym_RPAREN, + [63530] = 2, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4722), 1, + ACTIONS(5052), 1, aux_sym_preproc_include_token2, - [61266] = 2, + [63537] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 1, - aux_sym_preproc_if_token2, - [61273] = 2, + ACTIONS(5054), 1, + anon_sym_RPAREN, + [63544] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4726), 1, - anon_sym_while, - [61280] = 2, + ACTIONS(3266), 1, + anon_sym_RPAREN, + [63551] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4728), 1, - anon_sym_LPAREN2, - [61287] = 2, - ACTIONS(3), 1, + ACTIONS(5056), 1, + anon_sym_while, + [63558] = 2, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4730), 1, - sym_identifier, - [61294] = 2, + ACTIONS(5058), 1, + aux_sym_preproc_include_token2, + [63565] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4732), 1, - sym_identifier, - [61301] = 2, - ACTIONS(3), 1, + ACTIONS(5060), 1, + aux_sym_preproc_if_token2, + [63572] = 2, + ACTIONS(3437), 1, sym_comment, - ACTIONS(4734), 1, - anon_sym_RBRACK, - [61308] = 2, + ACTIONS(5062), 1, + aux_sym_preproc_include_token2, + [63579] = 2, + ACTIONS(3437), 1, + sym_comment, + ACTIONS(5064), 1, + aux_sym_preproc_include_token2, + [63586] = 2, + ACTIONS(3437), 1, + sym_comment, + ACTIONS(4563), 1, + aux_sym_preproc_include_token2, + [63593] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3065), 1, + ACTIONS(3228), 1, anon_sym_SEMI, - [61315] = 2, + [63600] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3047), 1, - anon_sym_RPAREN, - [61322] = 2, + ACTIONS(5066), 1, + ts_builtin_sym_end, + [63607] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3025), 1, + ACTIONS(3224), 1, anon_sym_SEMI, - [61329] = 2, + [63614] = 2, + ACTIONS(3437), 1, + sym_comment, + ACTIONS(4559), 1, + aux_sym_preproc_include_token2, + [63621] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3013), 1, - anon_sym_RPAREN, - [61336] = 2, + ACTIONS(5068), 1, + aux_sym_preproc_if_token2, + [63628] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4736), 1, + ACTIONS(3208), 1, anon_sym_SEMI, - [61343] = 2, + [63635] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2999), 1, - anon_sym_SEMI, - [61350] = 2, + ACTIONS(5070), 1, + aux_sym_preproc_if_token2, + [63642] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2949), 1, - anon_sym_RPAREN, - [61357] = 2, + ACTIONS(5072), 1, + anon_sym_LPAREN2, + [63649] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4738), 1, - anon_sym_SEMI, - [61364] = 2, + ACTIONS(5074), 1, + anon_sym_LPAREN2, + [63656] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4740), 1, - anon_sym_SEMI, - [61371] = 2, + ACTIONS(5076), 1, + anon_sym_LPAREN2, + [63663] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3023), 1, - anon_sym_RPAREN, - [61378] = 2, + ACTIONS(5078), 1, + anon_sym_LPAREN2, + [63670] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4742), 1, + ACTIONS(5080), 1, anon_sym_while, - [61385] = 2, + [63677] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4744), 1, - aux_sym_preproc_if_token2, - [61392] = 2, + ACTIONS(5082), 1, + sym_identifier, + [63684] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4746), 1, - aux_sym_preproc_if_token2, - [61399] = 2, + ACTIONS(5084), 1, + anon_sym_SEMI, + [63691] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, + ACTIONS(5086), 1, + anon_sym_SEMI, + [63698] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5088), 1, anon_sym_LPAREN2, - [61406] = 2, + [63705] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4750), 1, + ACTIONS(5090), 1, + anon_sym_LPAREN2, + [63712] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5092), 1, anon_sym_SEMI, - [61413] = 2, - ACTIONS(3227), 1, + [63719] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - aux_sym_preproc_include_token2, - [61420] = 2, + ACTIONS(5094), 1, + anon_sym_COLON, + [63726] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 1, + ACTIONS(3194), 1, anon_sym_SEMI, - [61427] = 2, + [63733] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4752), 1, + ACTIONS(5096), 1, aux_sym_preproc_if_token2, - [61434] = 2, + [63740] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4754), 1, + ACTIONS(5098), 1, + anon_sym_SEMI, + [63747] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5100), 1, anon_sym_LPAREN2, - [61441] = 2, + [63754] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4756), 1, + ACTIONS(5102), 1, anon_sym_SEMI, - [61448] = 2, + [63761] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4758), 1, - aux_sym_preproc_if_token2, - [61455] = 2, + ACTIONS(5104), 1, + anon_sym_SEMI, + [63768] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2971), 1, + ACTIONS(3162), 1, anon_sym_SEMI, - [61462] = 2, + [63775] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4760), 1, - sym_identifier, - [61469] = 2, + ACTIONS(3124), 1, + anon_sym_RPAREN, + [63782] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4762), 1, - aux_sym_preproc_if_token2, - [61476] = 2, + ACTIONS(5106), 1, + anon_sym_LPAREN2, + [63789] = 2, + ACTIONS(3437), 1, + sym_comment, + ACTIONS(5108), 1, + aux_sym_preproc_include_token2, + [63796] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4764), 1, - anon_sym_SEMI, - [61483] = 2, + ACTIONS(5110), 1, + anon_sym_LPAREN2, + [63803] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2933), 1, + ACTIONS(3140), 1, anon_sym_SEMI, - [61490] = 2, + [63810] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4766), 1, + ACTIONS(5112), 1, + aux_sym_preproc_if_token2, + [63817] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5114), 1, sym_identifier, - [61497] = 2, + [63824] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4768), 1, + ACTIONS(5116), 1, anon_sym_LPAREN2, - [61504] = 2, + [63831] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4770), 1, + ACTIONS(5118), 1, anon_sym_LPAREN2, - [61511] = 2, + [63838] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4772), 1, + ACTIONS(5120), 1, anon_sym_LPAREN2, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(540)] = 0, - [SMALL_STATE(541)] = 113, - [SMALL_STATE(542)] = 232, - [SMALL_STATE(543)] = 351, - [SMALL_STATE(544)] = 464, - [SMALL_STATE(545)] = 577, - [SMALL_STATE(546)] = 690, - [SMALL_STATE(547)] = 809, - [SMALL_STATE(548)] = 922, - [SMALL_STATE(549)] = 1035, - [SMALL_STATE(550)] = 1148, - [SMALL_STATE(551)] = 1261, - [SMALL_STATE(552)] = 1374, - [SMALL_STATE(553)] = 1493, - [SMALL_STATE(554)] = 1606, - [SMALL_STATE(555)] = 1725, - [SMALL_STATE(556)] = 1844, - [SMALL_STATE(557)] = 1963, - [SMALL_STATE(558)] = 2088, - [SMALL_STATE(559)] = 2207, - [SMALL_STATE(560)] = 2325, - [SMALL_STATE(561)] = 2440, - [SMALL_STATE(562)] = 2555, - [SMALL_STATE(563)] = 2669, - [SMALL_STATE(564)] = 2783, - [SMALL_STATE(565)] = 2895, - [SMALL_STATE(566)] = 3009, - [SMALL_STATE(567)] = 3123, - [SMALL_STATE(568)] = 3237, - [SMALL_STATE(569)] = 3351, - [SMALL_STATE(570)] = 3465, - [SMALL_STATE(571)] = 3579, - [SMALL_STATE(572)] = 3693, - [SMALL_STATE(573)] = 3801, - [SMALL_STATE(574)] = 3915, - [SMALL_STATE(575)] = 3996, - [SMALL_STATE(576)] = 4077, - [SMALL_STATE(577)] = 4158, - [SMALL_STATE(578)] = 4239, - [SMALL_STATE(579)] = 4320, - [SMALL_STATE(580)] = 4403, - [SMALL_STATE(581)] = 4484, - [SMALL_STATE(582)] = 4567, - [SMALL_STATE(583)] = 4650, - [SMALL_STATE(584)] = 4733, - [SMALL_STATE(585)] = 4815, - [SMALL_STATE(586)] = 4893, - [SMALL_STATE(587)] = 4999, - [SMALL_STATE(588)] = 5103, - [SMALL_STATE(589)] = 5207, - [SMALL_STATE(590)] = 5311, - [SMALL_STATE(591)] = 5415, - [SMALL_STATE(592)] = 5519, - [SMALL_STATE(593)] = 5623, - [SMALL_STATE(594)] = 5726, - [SMALL_STATE(595)] = 5835, - [SMALL_STATE(596)] = 5938, - [SMALL_STATE(597)] = 6038, - [SMALL_STATE(598)] = 6138, - [SMALL_STATE(599)] = 6238, - [SMALL_STATE(600)] = 6338, - [SMALL_STATE(601)] = 6438, - [SMALL_STATE(602)] = 6538, - [SMALL_STATE(603)] = 6638, - [SMALL_STATE(604)] = 6738, - [SMALL_STATE(605)] = 6838, - [SMALL_STATE(606)] = 6938, - [SMALL_STATE(607)] = 7038, - [SMALL_STATE(608)] = 7134, - [SMALL_STATE(609)] = 7234, - [SMALL_STATE(610)] = 7334, - [SMALL_STATE(611)] = 7434, - [SMALL_STATE(612)] = 7534, - [SMALL_STATE(613)] = 7634, - [SMALL_STATE(614)] = 7734, - [SMALL_STATE(615)] = 7834, - [SMALL_STATE(616)] = 7934, - [SMALL_STATE(617)] = 8034, - [SMALL_STATE(618)] = 8134, - [SMALL_STATE(619)] = 8234, - [SMALL_STATE(620)] = 8334, - [SMALL_STATE(621)] = 8434, - [SMALL_STATE(622)] = 8534, - [SMALL_STATE(623)] = 8634, - [SMALL_STATE(624)] = 8734, - [SMALL_STATE(625)] = 8834, - [SMALL_STATE(626)] = 8934, - [SMALL_STATE(627)] = 9034, - [SMALL_STATE(628)] = 9134, - [SMALL_STATE(629)] = 9234, - [SMALL_STATE(630)] = 9334, - [SMALL_STATE(631)] = 9434, - [SMALL_STATE(632)] = 9534, - [SMALL_STATE(633)] = 9634, - [SMALL_STATE(634)] = 9734, - [SMALL_STATE(635)] = 9834, - [SMALL_STATE(636)] = 9934, - [SMALL_STATE(637)] = 10030, - [SMALL_STATE(638)] = 10130, - [SMALL_STATE(639)] = 10230, - [SMALL_STATE(640)] = 10330, - [SMALL_STATE(641)] = 10430, - [SMALL_STATE(642)] = 10530, - [SMALL_STATE(643)] = 10630, - [SMALL_STATE(644)] = 10730, - [SMALL_STATE(645)] = 10830, - [SMALL_STATE(646)] = 10930, - [SMALL_STATE(647)] = 11030, - [SMALL_STATE(648)] = 11130, - [SMALL_STATE(649)] = 11230, - [SMALL_STATE(650)] = 11330, - [SMALL_STATE(651)] = 11430, - [SMALL_STATE(652)] = 11530, - [SMALL_STATE(653)] = 11630, - [SMALL_STATE(654)] = 11730, - [SMALL_STATE(655)] = 11830, - [SMALL_STATE(656)] = 11930, - [SMALL_STATE(657)] = 12030, - [SMALL_STATE(658)] = 12130, - [SMALL_STATE(659)] = 12230, - [SMALL_STATE(660)] = 12330, - [SMALL_STATE(661)] = 12430, - [SMALL_STATE(662)] = 12530, - [SMALL_STATE(663)] = 12623, - [SMALL_STATE(664)] = 12716, - [SMALL_STATE(665)] = 12813, - [SMALL_STATE(666)] = 12910, - [SMALL_STATE(667)] = 13007, - [SMALL_STATE(668)] = 13104, - [SMALL_STATE(669)] = 13201, - [SMALL_STATE(670)] = 13298, - [SMALL_STATE(671)] = 13391, - [SMALL_STATE(672)] = 13484, - [SMALL_STATE(673)] = 13581, - [SMALL_STATE(674)] = 13674, - [SMALL_STATE(675)] = 13771, - [SMALL_STATE(676)] = 13868, - [SMALL_STATE(677)] = 13961, - [SMALL_STATE(678)] = 14054, - [SMALL_STATE(679)] = 14151, - [SMALL_STATE(680)] = 14248, - [SMALL_STATE(681)] = 14345, - [SMALL_STATE(682)] = 14438, - [SMALL_STATE(683)] = 14531, - [SMALL_STATE(684)] = 14624, - [SMALL_STATE(685)] = 14718, - [SMALL_STATE(686)] = 14808, - [SMALL_STATE(687)] = 14902, - [SMALL_STATE(688)] = 14996, - [SMALL_STATE(689)] = 15090, - [SMALL_STATE(690)] = 15184, - [SMALL_STATE(691)] = 15278, - [SMALL_STATE(692)] = 15368, - [SMALL_STATE(693)] = 15462, - [SMALL_STATE(694)] = 15556, - [SMALL_STATE(695)] = 15650, - [SMALL_STATE(696)] = 15744, - [SMALL_STATE(697)] = 15838, - [SMALL_STATE(698)] = 15928, - [SMALL_STATE(699)] = 16022, - [SMALL_STATE(700)] = 16116, - [SMALL_STATE(701)] = 16210, - [SMALL_STATE(702)] = 16304, - [SMALL_STATE(703)] = 16398, - [SMALL_STATE(704)] = 16488, - [SMALL_STATE(705)] = 16578, - [SMALL_STATE(706)] = 16672, - [SMALL_STATE(707)] = 16766, - [SMALL_STATE(708)] = 16860, - [SMALL_STATE(709)] = 16950, - [SMALL_STATE(710)] = 17044, - [SMALL_STATE(711)] = 17134, - [SMALL_STATE(712)] = 17224, - [SMALL_STATE(713)] = 17318, - [SMALL_STATE(714)] = 17412, - [SMALL_STATE(715)] = 17506, - [SMALL_STATE(716)] = 17600, - [SMALL_STATE(717)] = 17694, - [SMALL_STATE(718)] = 17784, - [SMALL_STATE(719)] = 17874, - [SMALL_STATE(720)] = 17968, - [SMALL_STATE(721)] = 18062, - [SMALL_STATE(722)] = 18156, - [SMALL_STATE(723)] = 18250, - [SMALL_STATE(724)] = 18344, - [SMALL_STATE(725)] = 18438, - [SMALL_STATE(726)] = 18532, - [SMALL_STATE(727)] = 18626, - [SMALL_STATE(728)] = 18716, - [SMALL_STATE(729)] = 18806, - [SMALL_STATE(730)] = 18900, - [SMALL_STATE(731)] = 18990, - [SMALL_STATE(732)] = 19084, - [SMALL_STATE(733)] = 19178, - [SMALL_STATE(734)] = 19268, - [SMALL_STATE(735)] = 19362, - [SMALL_STATE(736)] = 19452, - [SMALL_STATE(737)] = 19546, - [SMALL_STATE(738)] = 19636, - [SMALL_STATE(739)] = 19726, - [SMALL_STATE(740)] = 19816, - [SMALL_STATE(741)] = 19906, - [SMALL_STATE(742)] = 20000, - [SMALL_STATE(743)] = 20090, - [SMALL_STATE(744)] = 20184, - [SMALL_STATE(745)] = 20274, - [SMALL_STATE(746)] = 20364, - [SMALL_STATE(747)] = 20458, - [SMALL_STATE(748)] = 20552, - [SMALL_STATE(749)] = 20642, - [SMALL_STATE(750)] = 20732, - [SMALL_STATE(751)] = 20822, - [SMALL_STATE(752)] = 20912, - [SMALL_STATE(753)] = 21002, - [SMALL_STATE(754)] = 21092, - [SMALL_STATE(755)] = 21186, - [SMALL_STATE(756)] = 21276, - [SMALL_STATE(757)] = 21370, - [SMALL_STATE(758)] = 21464, - [SMALL_STATE(759)] = 21554, - [SMALL_STATE(760)] = 21644, - [SMALL_STATE(761)] = 21734, - [SMALL_STATE(762)] = 21828, - [SMALL_STATE(763)] = 21922, - [SMALL_STATE(764)] = 21987, - [SMALL_STATE(765)] = 22052, - [SMALL_STATE(766)] = 22117, - [SMALL_STATE(767)] = 22174, - [SMALL_STATE(768)] = 22231, - [SMALL_STATE(769)] = 22299, - [SMALL_STATE(770)] = 22387, - [SMALL_STATE(771)] = 22472, - [SMALL_STATE(772)] = 22524, - [SMALL_STATE(773)] = 22576, - [SMALL_STATE(774)] = 22628, - [SMALL_STATE(775)] = 22680, - [SMALL_STATE(776)] = 22731, - [SMALL_STATE(777)] = 22792, - [SMALL_STATE(778)] = 22863, - [SMALL_STATE(779)] = 22914, - [SMALL_STATE(780)] = 22965, - [SMALL_STATE(781)] = 23038, - [SMALL_STATE(782)] = 23113, - [SMALL_STATE(783)] = 23164, - [SMALL_STATE(784)] = 23215, - [SMALL_STATE(785)] = 23266, - [SMALL_STATE(786)] = 23317, - [SMALL_STATE(787)] = 23368, - [SMALL_STATE(788)] = 23419, - [SMALL_STATE(789)] = 23470, - [SMALL_STATE(790)] = 23537, - [SMALL_STATE(791)] = 23618, - [SMALL_STATE(792)] = 23669, - [SMALL_STATE(793)] = 23720, - [SMALL_STATE(794)] = 23787, - [SMALL_STATE(795)] = 23848, - [SMALL_STATE(796)] = 23899, - [SMALL_STATE(797)] = 23950, - [SMALL_STATE(798)] = 24001, - [SMALL_STATE(799)] = 24052, - [SMALL_STATE(800)] = 24137, - [SMALL_STATE(801)] = 24214, - [SMALL_STATE(802)] = 24265, - [SMALL_STATE(803)] = 24326, - [SMALL_STATE(804)] = 24377, - [SMALL_STATE(805)] = 24462, - [SMALL_STATE(806)] = 24513, - [SMALL_STATE(807)] = 24564, - [SMALL_STATE(808)] = 24629, - [SMALL_STATE(809)] = 24692, - [SMALL_STATE(810)] = 24771, - [SMALL_STATE(811)] = 24822, - [SMALL_STATE(812)] = 24873, - [SMALL_STATE(813)] = 24924, - [SMALL_STATE(814)] = 24975, - [SMALL_STATE(815)] = 25060, - [SMALL_STATE(816)] = 25111, - [SMALL_STATE(817)] = 25162, - [SMALL_STATE(818)] = 25213, - [SMALL_STATE(819)] = 25272, - [SMALL_STATE(820)] = 25333, - [SMALL_STATE(821)] = 25384, - [SMALL_STATE(822)] = 25462, - [SMALL_STATE(823)] = 25540, - [SMALL_STATE(824)] = 25618, - [SMALL_STATE(825)] = 25672, - [SMALL_STATE(826)] = 25750, - [SMALL_STATE(827)] = 25828, - [SMALL_STATE(828)] = 25903, - [SMALL_STATE(829)] = 25956, - [SMALL_STATE(830)] = 26017, - [SMALL_STATE(831)] = 26070, - [SMALL_STATE(832)] = 26117, - [SMALL_STATE(833)] = 26170, - [SMALL_STATE(834)] = 26223, - [SMALL_STATE(835)] = 26276, - [SMALL_STATE(836)] = 26329, - [SMALL_STATE(837)] = 26376, - [SMALL_STATE(838)] = 26429, - [SMALL_STATE(839)] = 26495, - [SMALL_STATE(840)] = 26551, - [SMALL_STATE(841)] = 26607, - [SMALL_STATE(842)] = 26663, - [SMALL_STATE(843)] = 26725, - [SMALL_STATE(844)] = 26785, - [SMALL_STATE(845)] = 26853, - [SMALL_STATE(846)] = 26923, - [SMALL_STATE(847)] = 26985, - [SMALL_STATE(848)] = 27065, - [SMALL_STATE(849)] = 27143, - [SMALL_STATE(850)] = 27223, - [SMALL_STATE(851)] = 27281, - [SMALL_STATE(852)] = 27357, - [SMALL_STATE(853)] = 27429, - [SMALL_STATE(854)] = 27503, - [SMALL_STATE(855)] = 27559, - [SMALL_STATE(856)] = 27613, - [SMALL_STATE(857)] = 27693, - [SMALL_STATE(858)] = 27738, - [SMALL_STATE(859)] = 27783, - [SMALL_STATE(860)] = 27828, - [SMALL_STATE(861)] = 27873, - [SMALL_STATE(862)] = 27918, - [SMALL_STATE(863)] = 27963, - [SMALL_STATE(864)] = 28008, - [SMALL_STATE(865)] = 28053, - [SMALL_STATE(866)] = 28102, - [SMALL_STATE(867)] = 28147, - [SMALL_STATE(868)] = 28192, - [SMALL_STATE(869)] = 28237, - [SMALL_STATE(870)] = 28282, - [SMALL_STATE(871)] = 28327, - [SMALL_STATE(872)] = 28372, - [SMALL_STATE(873)] = 28417, - [SMALL_STATE(874)] = 28462, - [SMALL_STATE(875)] = 28507, - [SMALL_STATE(876)] = 28552, - [SMALL_STATE(877)] = 28597, - [SMALL_STATE(878)] = 28642, - [SMALL_STATE(879)] = 28687, - [SMALL_STATE(880)] = 28732, - [SMALL_STATE(881)] = 28777, - [SMALL_STATE(882)] = 28822, - [SMALL_STATE(883)] = 28867, - [SMALL_STATE(884)] = 28912, - [SMALL_STATE(885)] = 28957, - [SMALL_STATE(886)] = 29000, - [SMALL_STATE(887)] = 29043, - [SMALL_STATE(888)] = 29086, - [SMALL_STATE(889)] = 29129, - [SMALL_STATE(890)] = 29172, - [SMALL_STATE(891)] = 29215, - [SMALL_STATE(892)] = 29258, - [SMALL_STATE(893)] = 29301, - [SMALL_STATE(894)] = 29344, - [SMALL_STATE(895)] = 29387, - [SMALL_STATE(896)] = 29430, - [SMALL_STATE(897)] = 29473, - [SMALL_STATE(898)] = 29516, - [SMALL_STATE(899)] = 29559, - [SMALL_STATE(900)] = 29602, - [SMALL_STATE(901)] = 29645, - [SMALL_STATE(902)] = 29688, - [SMALL_STATE(903)] = 29731, - [SMALL_STATE(904)] = 29774, - [SMALL_STATE(905)] = 29825, - [SMALL_STATE(906)] = 29868, - [SMALL_STATE(907)] = 29911, - [SMALL_STATE(908)] = 29954, - [SMALL_STATE(909)] = 29997, - [SMALL_STATE(910)] = 30040, - [SMALL_STATE(911)] = 30083, - [SMALL_STATE(912)] = 30134, - [SMALL_STATE(913)] = 30177, - [SMALL_STATE(914)] = 30228, - [SMALL_STATE(915)] = 30279, - [SMALL_STATE(916)] = 30330, - [SMALL_STATE(917)] = 30372, - [SMALL_STATE(918)] = 30414, - [SMALL_STATE(919)] = 30482, - [SMALL_STATE(920)] = 30524, - [SMALL_STATE(921)] = 30566, - [SMALL_STATE(922)] = 30608, - [SMALL_STATE(923)] = 30676, - [SMALL_STATE(924)] = 30744, - [SMALL_STATE(925)] = 30812, - [SMALL_STATE(926)] = 30857, - [SMALL_STATE(927)] = 30898, - [SMALL_STATE(928)] = 30939, - [SMALL_STATE(929)] = 30984, - [SMALL_STATE(930)] = 31025, - [SMALL_STATE(931)] = 31066, - [SMALL_STATE(932)] = 31107, - [SMALL_STATE(933)] = 31152, - [SMALL_STATE(934)] = 31193, - [SMALL_STATE(935)] = 31246, - [SMALL_STATE(936)] = 31287, - [SMALL_STATE(937)] = 31328, - [SMALL_STATE(938)] = 31369, - [SMALL_STATE(939)] = 31410, - [SMALL_STATE(940)] = 31463, - [SMALL_STATE(941)] = 31516, - [SMALL_STATE(942)] = 31557, - [SMALL_STATE(943)] = 31598, - [SMALL_STATE(944)] = 31639, - [SMALL_STATE(945)] = 31680, - [SMALL_STATE(946)] = 31721, - [SMALL_STATE(947)] = 31762, - [SMALL_STATE(948)] = 31807, - [SMALL_STATE(949)] = 31848, - [SMALL_STATE(950)] = 31889, - [SMALL_STATE(951)] = 31934, - [SMALL_STATE(952)] = 31979, - [SMALL_STATE(953)] = 32020, - [SMALL_STATE(954)] = 32061, - [SMALL_STATE(955)] = 32102, - [SMALL_STATE(956)] = 32143, - [SMALL_STATE(957)] = 32184, - [SMALL_STATE(958)] = 32225, - [SMALL_STATE(959)] = 32266, - [SMALL_STATE(960)] = 32307, - [SMALL_STATE(961)] = 32348, - [SMALL_STATE(962)] = 32389, - [SMALL_STATE(963)] = 32430, - [SMALL_STATE(964)] = 32471, - [SMALL_STATE(965)] = 32512, - [SMALL_STATE(966)] = 32565, - [SMALL_STATE(967)] = 32606, - [SMALL_STATE(968)] = 32647, - [SMALL_STATE(969)] = 32688, - [SMALL_STATE(970)] = 32733, - [SMALL_STATE(971)] = 32778, - [SMALL_STATE(972)] = 32819, - [SMALL_STATE(973)] = 32860, - [SMALL_STATE(974)] = 32905, - [SMALL_STATE(975)] = 32946, - [SMALL_STATE(976)] = 32987, - [SMALL_STATE(977)] = 33028, - [SMALL_STATE(978)] = 33069, - [SMALL_STATE(979)] = 33110, - [SMALL_STATE(980)] = 33151, - [SMALL_STATE(981)] = 33192, - [SMALL_STATE(982)] = 33233, - [SMALL_STATE(983)] = 33274, - [SMALL_STATE(984)] = 33319, - [SMALL_STATE(985)] = 33360, - [SMALL_STATE(986)] = 33401, - [SMALL_STATE(987)] = 33446, - [SMALL_STATE(988)] = 33491, - [SMALL_STATE(989)] = 33536, - [SMALL_STATE(990)] = 33581, - [SMALL_STATE(991)] = 33626, - [SMALL_STATE(992)] = 33671, - [SMALL_STATE(993)] = 33712, - [SMALL_STATE(994)] = 33776, - [SMALL_STATE(995)] = 33816, - [SMALL_STATE(996)] = 33856, - [SMALL_STATE(997)] = 33896, - [SMALL_STATE(998)] = 33936, - [SMALL_STATE(999)] = 33976, - [SMALL_STATE(1000)] = 34050, - [SMALL_STATE(1001)] = 34108, - [SMALL_STATE(1002)] = 34148, - [SMALL_STATE(1003)] = 34188, - [SMALL_STATE(1004)] = 34228, - [SMALL_STATE(1005)] = 34268, - [SMALL_STATE(1006)] = 34308, - [SMALL_STATE(1007)] = 34348, - [SMALL_STATE(1008)] = 34388, - [SMALL_STATE(1009)] = 34428, - [SMALL_STATE(1010)] = 34468, - [SMALL_STATE(1011)] = 34508, - [SMALL_STATE(1012)] = 34548, - [SMALL_STATE(1013)] = 34588, - [SMALL_STATE(1014)] = 34628, - [SMALL_STATE(1015)] = 34668, - [SMALL_STATE(1016)] = 34708, - [SMALL_STATE(1017)] = 34748, - [SMALL_STATE(1018)] = 34788, - [SMALL_STATE(1019)] = 34828, - [SMALL_STATE(1020)] = 34870, - [SMALL_STATE(1021)] = 34944, - [SMALL_STATE(1022)] = 34984, - [SMALL_STATE(1023)] = 35024, - [SMALL_STATE(1024)] = 35072, - [SMALL_STATE(1025)] = 35126, - [SMALL_STATE(1026)] = 35166, - [SMALL_STATE(1027)] = 35234, - [SMALL_STATE(1028)] = 35302, - [SMALL_STATE(1029)] = 35342, - [SMALL_STATE(1030)] = 35382, - [SMALL_STATE(1031)] = 35438, - [SMALL_STATE(1032)] = 35478, - [SMALL_STATE(1033)] = 35544, - [SMALL_STATE(1034)] = 35618, - [SMALL_STATE(1035)] = 35680, - [SMALL_STATE(1036)] = 35720, - [SMALL_STATE(1037)] = 35778, - [SMALL_STATE(1038)] = 35848, - [SMALL_STATE(1039)] = 35887, - [SMALL_STATE(1040)] = 35926, - [SMALL_STATE(1041)] = 35965, - [SMALL_STATE(1042)] = 36004, - [SMALL_STATE(1043)] = 36043, - [SMALL_STATE(1044)] = 36082, - [SMALL_STATE(1045)] = 36134, - [SMALL_STATE(1046)] = 36186, - [SMALL_STATE(1047)] = 36248, - [SMALL_STATE(1048)] = 36300, - [SMALL_STATE(1049)] = 36352, - [SMALL_STATE(1050)] = 36404, - [SMALL_STATE(1051)] = 36452, - [SMALL_STATE(1052)] = 36527, - [SMALL_STATE(1053)] = 36586, - [SMALL_STATE(1054)] = 36645, - [SMALL_STATE(1055)] = 36704, - [SMALL_STATE(1056)] = 36763, - [SMALL_STATE(1057)] = 36834, - [SMALL_STATE(1058)] = 36909, - [SMALL_STATE(1059)] = 36968, - [SMALL_STATE(1060)] = 37027, - [SMALL_STATE(1061)] = 37072, - [SMALL_STATE(1062)] = 37131, - [SMALL_STATE(1063)] = 37206, - [SMALL_STATE(1064)] = 37281, - [SMALL_STATE(1065)] = 37354, - [SMALL_STATE(1066)] = 37413, - [SMALL_STATE(1067)] = 37485, - [SMALL_STATE(1068)] = 37557, - [SMALL_STATE(1069)] = 37629, - [SMALL_STATE(1070)] = 37701, - [SMALL_STATE(1071)] = 37773, - [SMALL_STATE(1072)] = 37843, - [SMALL_STATE(1073)] = 37915, - [SMALL_STATE(1074)] = 37987, - [SMALL_STATE(1075)] = 38059, - [SMALL_STATE(1076)] = 38129, - [SMALL_STATE(1077)] = 38201, - [SMALL_STATE(1078)] = 38273, - [SMALL_STATE(1079)] = 38343, - [SMALL_STATE(1080)] = 38415, - [SMALL_STATE(1081)] = 38487, - [SMALL_STATE(1082)] = 38559, - [SMALL_STATE(1083)] = 38631, - [SMALL_STATE(1084)] = 38703, - [SMALL_STATE(1085)] = 38775, - [SMALL_STATE(1086)] = 38847, - [SMALL_STATE(1087)] = 38919, - [SMALL_STATE(1088)] = 38991, - [SMALL_STATE(1089)] = 39063, - [SMALL_STATE(1090)] = 39135, - [SMALL_STATE(1091)] = 39207, - [SMALL_STATE(1092)] = 39279, - [SMALL_STATE(1093)] = 39351, - [SMALL_STATE(1094)] = 39423, - [SMALL_STATE(1095)] = 39495, - [SMALL_STATE(1096)] = 39567, - [SMALL_STATE(1097)] = 39639, - [SMALL_STATE(1098)] = 39711, - [SMALL_STATE(1099)] = 39783, - [SMALL_STATE(1100)] = 39855, - [SMALL_STATE(1101)] = 39927, - [SMALL_STATE(1102)] = 39999, - [SMALL_STATE(1103)] = 40071, - [SMALL_STATE(1104)] = 40143, - [SMALL_STATE(1105)] = 40215, - [SMALL_STATE(1106)] = 40287, - [SMALL_STATE(1107)] = 40359, - [SMALL_STATE(1108)] = 40431, - [SMALL_STATE(1109)] = 40503, - [SMALL_STATE(1110)] = 40573, - [SMALL_STATE(1111)] = 40645, - [SMALL_STATE(1112)] = 40717, - [SMALL_STATE(1113)] = 40789, - [SMALL_STATE(1114)] = 40861, - [SMALL_STATE(1115)] = 40933, - [SMALL_STATE(1116)] = 41005, - [SMALL_STATE(1117)] = 41077, - [SMALL_STATE(1118)] = 41149, - [SMALL_STATE(1119)] = 41221, - [SMALL_STATE(1120)] = 41293, - [SMALL_STATE(1121)] = 41365, - [SMALL_STATE(1122)] = 41437, - [SMALL_STATE(1123)] = 41509, - [SMALL_STATE(1124)] = 41579, - [SMALL_STATE(1125)] = 41651, - [SMALL_STATE(1126)] = 41723, - [SMALL_STATE(1127)] = 41795, - [SMALL_STATE(1128)] = 41867, - [SMALL_STATE(1129)] = 41939, - [SMALL_STATE(1130)] = 42011, - [SMALL_STATE(1131)] = 42083, - [SMALL_STATE(1132)] = 42155, - [SMALL_STATE(1133)] = 42227, - [SMALL_STATE(1134)] = 42299, - [SMALL_STATE(1135)] = 42369, - [SMALL_STATE(1136)] = 42441, - [SMALL_STATE(1137)] = 42513, - [SMALL_STATE(1138)] = 42585, - [SMALL_STATE(1139)] = 42657, - [SMALL_STATE(1140)] = 42729, - [SMALL_STATE(1141)] = 42801, - [SMALL_STATE(1142)] = 42873, - [SMALL_STATE(1143)] = 42945, - [SMALL_STATE(1144)] = 43017, - [SMALL_STATE(1145)] = 43056, - [SMALL_STATE(1146)] = 43111, - [SMALL_STATE(1147)] = 43180, - [SMALL_STATE(1148)] = 43249, - [SMALL_STATE(1149)] = 43318, - [SMALL_STATE(1150)] = 43387, - [SMALL_STATE(1151)] = 43456, - [SMALL_STATE(1152)] = 43511, - [SMALL_STATE(1153)] = 43580, - [SMALL_STATE(1154)] = 43649, - [SMALL_STATE(1155)] = 43688, - [SMALL_STATE(1156)] = 43757, - [SMALL_STATE(1157)] = 43826, - [SMALL_STATE(1158)] = 43895, - [SMALL_STATE(1159)] = 43964, - [SMALL_STATE(1160)] = 44033, - [SMALL_STATE(1161)] = 44072, - [SMALL_STATE(1162)] = 44123, - [SMALL_STATE(1163)] = 44188, - [SMALL_STATE(1164)] = 44223, - [SMALL_STATE(1165)] = 44292, - [SMALL_STATE(1166)] = 44345, - [SMALL_STATE(1167)] = 44402, - [SMALL_STATE(1168)] = 44471, - [SMALL_STATE(1169)] = 44530, - [SMALL_STATE(1170)] = 44599, - [SMALL_STATE(1171)] = 44668, - [SMALL_STATE(1172)] = 44729, - [SMALL_STATE(1173)] = 44798, - [SMALL_STATE(1174)] = 44867, - [SMALL_STATE(1175)] = 44930, - [SMALL_STATE(1176)] = 44985, - [SMALL_STATE(1177)] = 45048, - [SMALL_STATE(1178)] = 45117, - [SMALL_STATE(1179)] = 45172, - [SMALL_STATE(1180)] = 45221, - [SMALL_STATE(1181)] = 45290, - [SMALL_STATE(1182)] = 45359, - [SMALL_STATE(1183)] = 45428, - [SMALL_STATE(1184)] = 45497, - [SMALL_STATE(1185)] = 45566, - [SMALL_STATE(1186)] = 45635, - [SMALL_STATE(1187)] = 45704, - [SMALL_STATE(1188)] = 45757, - [SMALL_STATE(1189)] = 45826, - [SMALL_STATE(1190)] = 45895, - [SMALL_STATE(1191)] = 45947, - [SMALL_STATE(1192)] = 45999, - [SMALL_STATE(1193)] = 46051, - [SMALL_STATE(1194)] = 46103, - [SMALL_STATE(1195)] = 46155, - [SMALL_STATE(1196)] = 46207, - [SMALL_STATE(1197)] = 46259, - [SMALL_STATE(1198)] = 46311, - [SMALL_STATE(1199)] = 46363, - [SMALL_STATE(1200)] = 46415, - [SMALL_STATE(1201)] = 46467, - [SMALL_STATE(1202)] = 46519, - [SMALL_STATE(1203)] = 46571, - [SMALL_STATE(1204)] = 46623, - [SMALL_STATE(1205)] = 46675, - [SMALL_STATE(1206)] = 46727, - [SMALL_STATE(1207)] = 46779, - [SMALL_STATE(1208)] = 46831, - [SMALL_STATE(1209)] = 46883, - [SMALL_STATE(1210)] = 46935, - [SMALL_STATE(1211)] = 46987, - [SMALL_STATE(1212)] = 47039, - [SMALL_STATE(1213)] = 47091, - [SMALL_STATE(1214)] = 47143, - [SMALL_STATE(1215)] = 47195, - [SMALL_STATE(1216)] = 47247, - [SMALL_STATE(1217)] = 47299, - [SMALL_STATE(1218)] = 47351, - [SMALL_STATE(1219)] = 47403, - [SMALL_STATE(1220)] = 47455, - [SMALL_STATE(1221)] = 47507, - [SMALL_STATE(1222)] = 47559, - [SMALL_STATE(1223)] = 47611, - [SMALL_STATE(1224)] = 47663, - [SMALL_STATE(1225)] = 47699, - [SMALL_STATE(1226)] = 47765, - [SMALL_STATE(1227)] = 47803, - [SMALL_STATE(1228)] = 47855, - [SMALL_STATE(1229)] = 47896, - [SMALL_STATE(1230)] = 47935, - [SMALL_STATE(1231)] = 47978, - [SMALL_STATE(1232)] = 48019, - [SMALL_STATE(1233)] = 48054, - [SMALL_STATE(1234)] = 48089, - [SMALL_STATE(1235)] = 48124, - [SMALL_STATE(1236)] = 48170, - [SMALL_STATE(1237)] = 48200, - [SMALL_STATE(1238)] = 48246, - [SMALL_STATE(1239)] = 48292, - [SMALL_STATE(1240)] = 48338, - [SMALL_STATE(1241)] = 48384, - [SMALL_STATE(1242)] = 48418, - [SMALL_STATE(1243)] = 48464, - [SMALL_STATE(1244)] = 48494, - [SMALL_STATE(1245)] = 48537, - [SMALL_STATE(1246)] = 48570, - [SMALL_STATE(1247)] = 48613, - [SMALL_STATE(1248)] = 48656, - [SMALL_STATE(1249)] = 48699, - [SMALL_STATE(1250)] = 48754, - [SMALL_STATE(1251)] = 48797, - [SMALL_STATE(1252)] = 48840, - [SMALL_STATE(1253)] = 48895, - [SMALL_STATE(1254)] = 48938, - [SMALL_STATE(1255)] = 48975, - [SMALL_STATE(1256)] = 49030, - [SMALL_STATE(1257)] = 49073, - [SMALL_STATE(1258)] = 49116, - [SMALL_STATE(1259)] = 49156, - [SMALL_STATE(1260)] = 49196, - [SMALL_STATE(1261)] = 49236, - [SMALL_STATE(1262)] = 49276, - [SMALL_STATE(1263)] = 49324, - [SMALL_STATE(1264)] = 49364, - [SMALL_STATE(1265)] = 49404, - [SMALL_STATE(1266)] = 49432, - [SMALL_STATE(1267)] = 49460, - [SMALL_STATE(1268)] = 49488, - [SMALL_STATE(1269)] = 49520, - [SMALL_STATE(1270)] = 49548, - [SMALL_STATE(1271)] = 49576, - [SMALL_STATE(1272)] = 49616, - [SMALL_STATE(1273)] = 49660, - [SMALL_STATE(1274)] = 49700, - [SMALL_STATE(1275)] = 49740, - [SMALL_STATE(1276)] = 49780, - [SMALL_STATE(1277)] = 49820, - [SMALL_STATE(1278)] = 49860, - [SMALL_STATE(1279)] = 49900, - [SMALL_STATE(1280)] = 49940, - [SMALL_STATE(1281)] = 49982, - [SMALL_STATE(1282)] = 50022, - [SMALL_STATE(1283)] = 50062, - [SMALL_STATE(1284)] = 50102, - [SMALL_STATE(1285)] = 50130, - [SMALL_STATE(1286)] = 50170, - [SMALL_STATE(1287)] = 50210, - [SMALL_STATE(1288)] = 50250, - [SMALL_STATE(1289)] = 50290, - [SMALL_STATE(1290)] = 50324, - [SMALL_STATE(1291)] = 50364, - [SMALL_STATE(1292)] = 50404, - [SMALL_STATE(1293)] = 50450, - [SMALL_STATE(1294)] = 50496, - [SMALL_STATE(1295)] = 50524, - [SMALL_STATE(1296)] = 50552, - [SMALL_STATE(1297)] = 50592, - [SMALL_STATE(1298)] = 50620, - [SMALL_STATE(1299)] = 50660, - [SMALL_STATE(1300)] = 50700, - [SMALL_STATE(1301)] = 50740, - [SMALL_STATE(1302)] = 50780, - [SMALL_STATE(1303)] = 50820, - [SMALL_STATE(1304)] = 50860, - [SMALL_STATE(1305)] = 50908, - [SMALL_STATE(1306)] = 50948, - [SMALL_STATE(1307)] = 50976, - [SMALL_STATE(1308)] = 51026, - [SMALL_STATE(1309)] = 51066, - [SMALL_STATE(1310)] = 51102, - [SMALL_STATE(1311)] = 51142, - [SMALL_STATE(1312)] = 51182, - [SMALL_STATE(1313)] = 51222, - [SMALL_STATE(1314)] = 51262, - [SMALL_STATE(1315)] = 51302, - [SMALL_STATE(1316)] = 51329, - [SMALL_STATE(1317)] = 51356, - [SMALL_STATE(1318)] = 51383, - [SMALL_STATE(1319)] = 51432, - [SMALL_STATE(1320)] = 51477, - [SMALL_STATE(1321)] = 51504, - [SMALL_STATE(1322)] = 51553, - [SMALL_STATE(1323)] = 51598, - [SMALL_STATE(1324)] = 51643, - [SMALL_STATE(1325)] = 51688, - [SMALL_STATE(1326)] = 51733, - [SMALL_STATE(1327)] = 51778, - [SMALL_STATE(1328)] = 51805, - [SMALL_STATE(1329)] = 51832, - [SMALL_STATE(1330)] = 51859, - [SMALL_STATE(1331)] = 51904, - [SMALL_STATE(1332)] = 51949, - [SMALL_STATE(1333)] = 51994, - [SMALL_STATE(1334)] = 52025, - [SMALL_STATE(1335)] = 52058, - [SMALL_STATE(1336)] = 52103, - [SMALL_STATE(1337)] = 52138, - [SMALL_STATE(1338)] = 52175, - [SMALL_STATE(1339)] = 52204, - [SMALL_STATE(1340)] = 52243, - [SMALL_STATE(1341)] = 52284, - [SMALL_STATE(1342)] = 52329, - [SMALL_STATE(1343)] = 52372, - [SMALL_STATE(1344)] = 52417, - [SMALL_STATE(1345)] = 52444, - [SMALL_STATE(1346)] = 52471, - [SMALL_STATE(1347)] = 52498, - [SMALL_STATE(1348)] = 52532, - [SMALL_STATE(1349)] = 52570, - [SMALL_STATE(1350)] = 52604, - [SMALL_STATE(1351)] = 52642, - [SMALL_STATE(1352)] = 52687, - [SMALL_STATE(1353)] = 52732, - [SMALL_STATE(1354)] = 52777, - [SMALL_STATE(1355)] = 52822, - [SMALL_STATE(1356)] = 52867, - [SMALL_STATE(1357)] = 52905, - [SMALL_STATE(1358)] = 52943, - [SMALL_STATE(1359)] = 52981, - [SMALL_STATE(1360)] = 53019, - [SMALL_STATE(1361)] = 53045, - [SMALL_STATE(1362)] = 53074, - [SMALL_STATE(1363)] = 53103, - [SMALL_STATE(1364)] = 53128, - [SMALL_STATE(1365)] = 53169, - [SMALL_STATE(1366)] = 53208, - [SMALL_STATE(1367)] = 53237, - [SMALL_STATE(1368)] = 53262, - [SMALL_STATE(1369)] = 53303, - [SMALL_STATE(1370)] = 53344, - [SMALL_STATE(1371)] = 53383, - [SMALL_STATE(1372)] = 53412, - [SMALL_STATE(1373)] = 53451, - [SMALL_STATE(1374)] = 53490, - [SMALL_STATE(1375)] = 53531, - [SMALL_STATE(1376)] = 53570, - [SMALL_STATE(1377)] = 53609, - [SMALL_STATE(1378)] = 53634, - [SMALL_STATE(1379)] = 53666, - [SMALL_STATE(1380)] = 53690, - [SMALL_STATE(1381)] = 53710, - [SMALL_STATE(1382)] = 53742, - [SMALL_STATE(1383)] = 53774, - [SMALL_STATE(1384)] = 53808, - [SMALL_STATE(1385)] = 53840, - [SMALL_STATE(1386)] = 53860, - [SMALL_STATE(1387)] = 53892, - [SMALL_STATE(1388)] = 53924, - [SMALL_STATE(1389)] = 53956, - [SMALL_STATE(1390)] = 53988, - [SMALL_STATE(1391)] = 54020, - [SMALL_STATE(1392)] = 54052, - [SMALL_STATE(1393)] = 54084, - [SMALL_STATE(1394)] = 54104, - [SMALL_STATE(1395)] = 54136, - [SMALL_STATE(1396)] = 54163, - [SMALL_STATE(1397)] = 54194, - [SMALL_STATE(1398)] = 54223, - [SMALL_STATE(1399)] = 54252, - [SMALL_STATE(1400)] = 54279, - [SMALL_STATE(1401)] = 54306, - [SMALL_STATE(1402)] = 54335, - [SMALL_STATE(1403)] = 54362, - [SMALL_STATE(1404)] = 54389, - [SMALL_STATE(1405)] = 54418, - [SMALL_STATE(1406)] = 54445, - [SMALL_STATE(1407)] = 54474, - [SMALL_STATE(1408)] = 54503, - [SMALL_STATE(1409)] = 54532, - [SMALL_STATE(1410)] = 54561, - [SMALL_STATE(1411)] = 54579, - [SMALL_STATE(1412)] = 54597, - [SMALL_STATE(1413)] = 54615, - [SMALL_STATE(1414)] = 54639, - [SMALL_STATE(1415)] = 54663, - [SMALL_STATE(1416)] = 54681, - [SMALL_STATE(1417)] = 54699, - [SMALL_STATE(1418)] = 54721, - [SMALL_STATE(1419)] = 54739, - [SMALL_STATE(1420)] = 54768, - [SMALL_STATE(1421)] = 54797, - [SMALL_STATE(1422)] = 54826, - [SMALL_STATE(1423)] = 54855, - [SMALL_STATE(1424)] = 54884, - [SMALL_STATE(1425)] = 54905, - [SMALL_STATE(1426)] = 54934, - [SMALL_STATE(1427)] = 54955, - [SMALL_STATE(1428)] = 54984, - [SMALL_STATE(1429)] = 55009, - [SMALL_STATE(1430)] = 55030, - [SMALL_STATE(1431)] = 55059, - [SMALL_STATE(1432)] = 55084, - [SMALL_STATE(1433)] = 55113, - [SMALL_STATE(1434)] = 55142, - [SMALL_STATE(1435)] = 55171, - [SMALL_STATE(1436)] = 55196, - [SMALL_STATE(1437)] = 55225, - [SMALL_STATE(1438)] = 55250, - [SMALL_STATE(1439)] = 55279, - [SMALL_STATE(1440)] = 55300, - [SMALL_STATE(1441)] = 55329, - [SMALL_STATE(1442)] = 55358, - [SMALL_STATE(1443)] = 55387, - [SMALL_STATE(1444)] = 55408, - [SMALL_STATE(1445)] = 55437, - [SMALL_STATE(1446)] = 55466, - [SMALL_STATE(1447)] = 55495, - [SMALL_STATE(1448)] = 55524, - [SMALL_STATE(1449)] = 55550, - [SMALL_STATE(1450)] = 55566, - [SMALL_STATE(1451)] = 55582, - [SMALL_STATE(1452)] = 55608, - [SMALL_STATE(1453)] = 55634, - [SMALL_STATE(1454)] = 55650, - [SMALL_STATE(1455)] = 55674, - [SMALL_STATE(1456)] = 55694, - [SMALL_STATE(1457)] = 55714, - [SMALL_STATE(1458)] = 55740, - [SMALL_STATE(1459)] = 55758, - [SMALL_STATE(1460)] = 55774, - [SMALL_STATE(1461)] = 55790, - [SMALL_STATE(1462)] = 55806, - [SMALL_STATE(1463)] = 55832, - [SMALL_STATE(1464)] = 55852, - [SMALL_STATE(1465)] = 55868, - [SMALL_STATE(1466)] = 55892, - [SMALL_STATE(1467)] = 55908, - [SMALL_STATE(1468)] = 55933, - [SMALL_STATE(1469)] = 55950, - [SMALL_STATE(1470)] = 55973, - [SMALL_STATE(1471)] = 55996, - [SMALL_STATE(1472)] = 56019, - [SMALL_STATE(1473)] = 56036, - [SMALL_STATE(1474)] = 56054, - [SMALL_STATE(1475)] = 56072, - [SMALL_STATE(1476)] = 56086, - [SMALL_STATE(1477)] = 56100, - [SMALL_STATE(1478)] = 56114, - [SMALL_STATE(1479)] = 56128, - [SMALL_STATE(1480)] = 56142, - [SMALL_STATE(1481)] = 56156, - [SMALL_STATE(1482)] = 56172, - [SMALL_STATE(1483)] = 56190, - [SMALL_STATE(1484)] = 56206, - [SMALL_STATE(1485)] = 56220, - [SMALL_STATE(1486)] = 56238, - [SMALL_STATE(1487)] = 56252, - [SMALL_STATE(1488)] = 56266, - [SMALL_STATE(1489)] = 56280, - [SMALL_STATE(1490)] = 56294, - [SMALL_STATE(1491)] = 56312, - [SMALL_STATE(1492)] = 56326, - [SMALL_STATE(1493)] = 56344, - [SMALL_STATE(1494)] = 56360, - [SMALL_STATE(1495)] = 56378, - [SMALL_STATE(1496)] = 56396, - [SMALL_STATE(1497)] = 56415, - [SMALL_STATE(1498)] = 56434, - [SMALL_STATE(1499)] = 56445, - [SMALL_STATE(1500)] = 56456, - [SMALL_STATE(1501)] = 56473, - [SMALL_STATE(1502)] = 56492, - [SMALL_STATE(1503)] = 56503, - [SMALL_STATE(1504)] = 56522, - [SMALL_STATE(1505)] = 56541, - [SMALL_STATE(1506)] = 56552, - [SMALL_STATE(1507)] = 56563, - [SMALL_STATE(1508)] = 56582, - [SMALL_STATE(1509)] = 56593, - [SMALL_STATE(1510)] = 56604, - [SMALL_STATE(1511)] = 56615, - [SMALL_STATE(1512)] = 56626, - [SMALL_STATE(1513)] = 56645, - [SMALL_STATE(1514)] = 56656, - [SMALL_STATE(1515)] = 56667, - [SMALL_STATE(1516)] = 56686, - [SMALL_STATE(1517)] = 56705, - [SMALL_STATE(1518)] = 56724, - [SMALL_STATE(1519)] = 56741, - [SMALL_STATE(1520)] = 56752, - [SMALL_STATE(1521)] = 56771, - [SMALL_STATE(1522)] = 56790, - [SMALL_STATE(1523)] = 56809, - [SMALL_STATE(1524)] = 56828, - [SMALL_STATE(1525)] = 56844, - [SMALL_STATE(1526)] = 56858, - [SMALL_STATE(1527)] = 56874, - [SMALL_STATE(1528)] = 56888, - [SMALL_STATE(1529)] = 56904, - [SMALL_STATE(1530)] = 56920, - [SMALL_STATE(1531)] = 56936, - [SMALL_STATE(1532)] = 56952, - [SMALL_STATE(1533)] = 56968, - [SMALL_STATE(1534)] = 56982, - [SMALL_STATE(1535)] = 56996, - [SMALL_STATE(1536)] = 57010, - [SMALL_STATE(1537)] = 57026, - [SMALL_STATE(1538)] = 57042, - [SMALL_STATE(1539)] = 57056, - [SMALL_STATE(1540)] = 57072, - [SMALL_STATE(1541)] = 57088, - [SMALL_STATE(1542)] = 57102, - [SMALL_STATE(1543)] = 57118, - [SMALL_STATE(1544)] = 57132, - [SMALL_STATE(1545)] = 57148, - [SMALL_STATE(1546)] = 57162, - [SMALL_STATE(1547)] = 57176, - [SMALL_STATE(1548)] = 57192, - [SMALL_STATE(1549)] = 57208, - [SMALL_STATE(1550)] = 57222, - [SMALL_STATE(1551)] = 57238, - [SMALL_STATE(1552)] = 57254, - [SMALL_STATE(1553)] = 57264, - [SMALL_STATE(1554)] = 57280, - [SMALL_STATE(1555)] = 57293, - [SMALL_STATE(1556)] = 57306, - [SMALL_STATE(1557)] = 57319, - [SMALL_STATE(1558)] = 57332, - [SMALL_STATE(1559)] = 57345, - [SMALL_STATE(1560)] = 57358, - [SMALL_STATE(1561)] = 57367, - [SMALL_STATE(1562)] = 57376, - [SMALL_STATE(1563)] = 57389, - [SMALL_STATE(1564)] = 57402, - [SMALL_STATE(1565)] = 57415, - [SMALL_STATE(1566)] = 57428, - [SMALL_STATE(1567)] = 57441, - [SMALL_STATE(1568)] = 57454, - [SMALL_STATE(1569)] = 57467, - [SMALL_STATE(1570)] = 57480, - [SMALL_STATE(1571)] = 57493, - [SMALL_STATE(1572)] = 57506, - [SMALL_STATE(1573)] = 57519, - [SMALL_STATE(1574)] = 57528, - [SMALL_STATE(1575)] = 57541, - [SMALL_STATE(1576)] = 57554, - [SMALL_STATE(1577)] = 57567, - [SMALL_STATE(1578)] = 57580, - [SMALL_STATE(1579)] = 57589, - [SMALL_STATE(1580)] = 57602, - [SMALL_STATE(1581)] = 57613, - [SMALL_STATE(1582)] = 57626, - [SMALL_STATE(1583)] = 57635, - [SMALL_STATE(1584)] = 57648, - [SMALL_STATE(1585)] = 57661, - [SMALL_STATE(1586)] = 57674, - [SMALL_STATE(1587)] = 57683, - [SMALL_STATE(1588)] = 57696, - [SMALL_STATE(1589)] = 57709, - [SMALL_STATE(1590)] = 57718, - [SMALL_STATE(1591)] = 57731, - [SMALL_STATE(1592)] = 57744, - [SMALL_STATE(1593)] = 57757, - [SMALL_STATE(1594)] = 57770, - [SMALL_STATE(1595)] = 57783, - [SMALL_STATE(1596)] = 57796, - [SMALL_STATE(1597)] = 57809, - [SMALL_STATE(1598)] = 57822, - [SMALL_STATE(1599)] = 57835, - [SMALL_STATE(1600)] = 57848, - [SMALL_STATE(1601)] = 57861, - [SMALL_STATE(1602)] = 57874, - [SMALL_STATE(1603)] = 57887, - [SMALL_STATE(1604)] = 57900, - [SMALL_STATE(1605)] = 57913, - [SMALL_STATE(1606)] = 57926, - [SMALL_STATE(1607)] = 57937, - [SMALL_STATE(1608)] = 57950, - [SMALL_STATE(1609)] = 57963, - [SMALL_STATE(1610)] = 57976, - [SMALL_STATE(1611)] = 57989, - [SMALL_STATE(1612)] = 58002, - [SMALL_STATE(1613)] = 58015, - [SMALL_STATE(1614)] = 58028, - [SMALL_STATE(1615)] = 58041, - [SMALL_STATE(1616)] = 58054, - [SMALL_STATE(1617)] = 58067, - [SMALL_STATE(1618)] = 58080, - [SMALL_STATE(1619)] = 58093, - [SMALL_STATE(1620)] = 58106, - [SMALL_STATE(1621)] = 58119, - [SMALL_STATE(1622)] = 58132, - [SMALL_STATE(1623)] = 58145, - [SMALL_STATE(1624)] = 58158, - [SMALL_STATE(1625)] = 58171, - [SMALL_STATE(1626)] = 58184, - [SMALL_STATE(1627)] = 58197, - [SMALL_STATE(1628)] = 58210, - [SMALL_STATE(1629)] = 58223, - [SMALL_STATE(1630)] = 58236, - [SMALL_STATE(1631)] = 58249, - [SMALL_STATE(1632)] = 58262, - [SMALL_STATE(1633)] = 58275, - [SMALL_STATE(1634)] = 58288, - [SMALL_STATE(1635)] = 58301, - [SMALL_STATE(1636)] = 58314, - [SMALL_STATE(1637)] = 58327, - [SMALL_STATE(1638)] = 58340, - [SMALL_STATE(1639)] = 58353, - [SMALL_STATE(1640)] = 58366, - [SMALL_STATE(1641)] = 58379, - [SMALL_STATE(1642)] = 58392, - [SMALL_STATE(1643)] = 58405, - [SMALL_STATE(1644)] = 58418, - [SMALL_STATE(1645)] = 58431, - [SMALL_STATE(1646)] = 58440, - [SMALL_STATE(1647)] = 58453, - [SMALL_STATE(1648)] = 58466, - [SMALL_STATE(1649)] = 58479, - [SMALL_STATE(1650)] = 58492, - [SMALL_STATE(1651)] = 58501, - [SMALL_STATE(1652)] = 58514, - [SMALL_STATE(1653)] = 58527, - [SMALL_STATE(1654)] = 58540, - [SMALL_STATE(1655)] = 58553, - [SMALL_STATE(1656)] = 58566, - [SMALL_STATE(1657)] = 58579, - [SMALL_STATE(1658)] = 58592, - [SMALL_STATE(1659)] = 58605, - [SMALL_STATE(1660)] = 58618, - [SMALL_STATE(1661)] = 58631, - [SMALL_STATE(1662)] = 58644, - [SMALL_STATE(1663)] = 58657, - [SMALL_STATE(1664)] = 58670, - [SMALL_STATE(1665)] = 58683, - [SMALL_STATE(1666)] = 58692, - [SMALL_STATE(1667)] = 58705, - [SMALL_STATE(1668)] = 58718, - [SMALL_STATE(1669)] = 58731, - [SMALL_STATE(1670)] = 58744, - [SMALL_STATE(1671)] = 58757, - [SMALL_STATE(1672)] = 58770, - [SMALL_STATE(1673)] = 58780, - [SMALL_STATE(1674)] = 58788, - [SMALL_STATE(1675)] = 58796, - [SMALL_STATE(1676)] = 58806, - [SMALL_STATE(1677)] = 58816, - [SMALL_STATE(1678)] = 58824, - [SMALL_STATE(1679)] = 58834, - [SMALL_STATE(1680)] = 58842, - [SMALL_STATE(1681)] = 58850, - [SMALL_STATE(1682)] = 58858, - [SMALL_STATE(1683)] = 58866, - [SMALL_STATE(1684)] = 58876, - [SMALL_STATE(1685)] = 58884, - [SMALL_STATE(1686)] = 58894, - [SMALL_STATE(1687)] = 58904, - [SMALL_STATE(1688)] = 58912, - [SMALL_STATE(1689)] = 58920, - [SMALL_STATE(1690)] = 58930, - [SMALL_STATE(1691)] = 58940, - [SMALL_STATE(1692)] = 58948, - [SMALL_STATE(1693)] = 58958, - [SMALL_STATE(1694)] = 58966, - [SMALL_STATE(1695)] = 58976, - [SMALL_STATE(1696)] = 58986, - [SMALL_STATE(1697)] = 58994, - [SMALL_STATE(1698)] = 59002, - [SMALL_STATE(1699)] = 59012, - [SMALL_STATE(1700)] = 59020, - [SMALL_STATE(1701)] = 59030, - [SMALL_STATE(1702)] = 59040, - [SMALL_STATE(1703)] = 59050, - [SMALL_STATE(1704)] = 59060, - [SMALL_STATE(1705)] = 59070, - [SMALL_STATE(1706)] = 59080, - [SMALL_STATE(1707)] = 59090, - [SMALL_STATE(1708)] = 59098, - [SMALL_STATE(1709)] = 59108, - [SMALL_STATE(1710)] = 59118, - [SMALL_STATE(1711)] = 59128, - [SMALL_STATE(1712)] = 59138, - [SMALL_STATE(1713)] = 59148, - [SMALL_STATE(1714)] = 59158, - [SMALL_STATE(1715)] = 59166, - [SMALL_STATE(1716)] = 59176, - [SMALL_STATE(1717)] = 59184, - [SMALL_STATE(1718)] = 59194, - [SMALL_STATE(1719)] = 59204, - [SMALL_STATE(1720)] = 59214, - [SMALL_STATE(1721)] = 59224, - [SMALL_STATE(1722)] = 59234, - [SMALL_STATE(1723)] = 59244, - [SMALL_STATE(1724)] = 59254, - [SMALL_STATE(1725)] = 59264, - [SMALL_STATE(1726)] = 59274, - [SMALL_STATE(1727)] = 59284, - [SMALL_STATE(1728)] = 59294, - [SMALL_STATE(1729)] = 59304, - [SMALL_STATE(1730)] = 59314, - [SMALL_STATE(1731)] = 59324, - [SMALL_STATE(1732)] = 59334, - [SMALL_STATE(1733)] = 59344, - [SMALL_STATE(1734)] = 59354, - [SMALL_STATE(1735)] = 59364, - [SMALL_STATE(1736)] = 59374, - [SMALL_STATE(1737)] = 59384, - [SMALL_STATE(1738)] = 59394, - [SMALL_STATE(1739)] = 59402, - [SMALL_STATE(1740)] = 59412, - [SMALL_STATE(1741)] = 59422, - [SMALL_STATE(1742)] = 59432, - [SMALL_STATE(1743)] = 59442, - [SMALL_STATE(1744)] = 59452, - [SMALL_STATE(1745)] = 59462, - [SMALL_STATE(1746)] = 59472, - [SMALL_STATE(1747)] = 59482, - [SMALL_STATE(1748)] = 59492, - [SMALL_STATE(1749)] = 59502, - [SMALL_STATE(1750)] = 59509, - [SMALL_STATE(1751)] = 59516, - [SMALL_STATE(1752)] = 59523, - [SMALL_STATE(1753)] = 59530, - [SMALL_STATE(1754)] = 59537, - [SMALL_STATE(1755)] = 59544, - [SMALL_STATE(1756)] = 59551, - [SMALL_STATE(1757)] = 59558, - [SMALL_STATE(1758)] = 59565, - [SMALL_STATE(1759)] = 59572, - [SMALL_STATE(1760)] = 59579, - [SMALL_STATE(1761)] = 59586, - [SMALL_STATE(1762)] = 59593, - [SMALL_STATE(1763)] = 59600, - [SMALL_STATE(1764)] = 59607, - [SMALL_STATE(1765)] = 59614, - [SMALL_STATE(1766)] = 59621, - [SMALL_STATE(1767)] = 59628, - [SMALL_STATE(1768)] = 59635, - [SMALL_STATE(1769)] = 59642, - [SMALL_STATE(1770)] = 59649, - [SMALL_STATE(1771)] = 59656, - [SMALL_STATE(1772)] = 59663, - [SMALL_STATE(1773)] = 59670, - [SMALL_STATE(1774)] = 59677, - [SMALL_STATE(1775)] = 59684, - [SMALL_STATE(1776)] = 59691, - [SMALL_STATE(1777)] = 59698, - [SMALL_STATE(1778)] = 59705, - [SMALL_STATE(1779)] = 59712, - [SMALL_STATE(1780)] = 59719, - [SMALL_STATE(1781)] = 59726, - [SMALL_STATE(1782)] = 59733, - [SMALL_STATE(1783)] = 59740, - [SMALL_STATE(1784)] = 59747, - [SMALL_STATE(1785)] = 59754, - [SMALL_STATE(1786)] = 59761, - [SMALL_STATE(1787)] = 59768, - [SMALL_STATE(1788)] = 59775, - [SMALL_STATE(1789)] = 59782, - [SMALL_STATE(1790)] = 59789, - [SMALL_STATE(1791)] = 59796, - [SMALL_STATE(1792)] = 59803, - [SMALL_STATE(1793)] = 59810, - [SMALL_STATE(1794)] = 59817, - [SMALL_STATE(1795)] = 59824, - [SMALL_STATE(1796)] = 59831, - [SMALL_STATE(1797)] = 59838, - [SMALL_STATE(1798)] = 59845, - [SMALL_STATE(1799)] = 59852, - [SMALL_STATE(1800)] = 59859, - [SMALL_STATE(1801)] = 59866, - [SMALL_STATE(1802)] = 59873, - [SMALL_STATE(1803)] = 59880, - [SMALL_STATE(1804)] = 59887, - [SMALL_STATE(1805)] = 59894, - [SMALL_STATE(1806)] = 59901, - [SMALL_STATE(1807)] = 59908, - [SMALL_STATE(1808)] = 59915, - [SMALL_STATE(1809)] = 59922, - [SMALL_STATE(1810)] = 59929, - [SMALL_STATE(1811)] = 59936, - [SMALL_STATE(1812)] = 59943, - [SMALL_STATE(1813)] = 59950, - [SMALL_STATE(1814)] = 59957, - [SMALL_STATE(1815)] = 59964, - [SMALL_STATE(1816)] = 59971, - [SMALL_STATE(1817)] = 59978, - [SMALL_STATE(1818)] = 59985, - [SMALL_STATE(1819)] = 59992, - [SMALL_STATE(1820)] = 59999, - [SMALL_STATE(1821)] = 60006, - [SMALL_STATE(1822)] = 60013, - [SMALL_STATE(1823)] = 60020, - [SMALL_STATE(1824)] = 60027, - [SMALL_STATE(1825)] = 60034, - [SMALL_STATE(1826)] = 60041, - [SMALL_STATE(1827)] = 60048, - [SMALL_STATE(1828)] = 60055, - [SMALL_STATE(1829)] = 60062, - [SMALL_STATE(1830)] = 60069, - [SMALL_STATE(1831)] = 60076, - [SMALL_STATE(1832)] = 60083, - [SMALL_STATE(1833)] = 60090, - [SMALL_STATE(1834)] = 60097, - [SMALL_STATE(1835)] = 60104, - [SMALL_STATE(1836)] = 60111, - [SMALL_STATE(1837)] = 60118, - [SMALL_STATE(1838)] = 60125, - [SMALL_STATE(1839)] = 60132, - [SMALL_STATE(1840)] = 60139, - [SMALL_STATE(1841)] = 60146, - [SMALL_STATE(1842)] = 60153, - [SMALL_STATE(1843)] = 60160, - [SMALL_STATE(1844)] = 60167, - [SMALL_STATE(1845)] = 60174, - [SMALL_STATE(1846)] = 60181, - [SMALL_STATE(1847)] = 60188, - [SMALL_STATE(1848)] = 60195, - [SMALL_STATE(1849)] = 60202, - [SMALL_STATE(1850)] = 60209, - [SMALL_STATE(1851)] = 60216, - [SMALL_STATE(1852)] = 60223, - [SMALL_STATE(1853)] = 60230, - [SMALL_STATE(1854)] = 60237, - [SMALL_STATE(1855)] = 60244, - [SMALL_STATE(1856)] = 60251, - [SMALL_STATE(1857)] = 60258, - [SMALL_STATE(1858)] = 60265, - [SMALL_STATE(1859)] = 60272, - [SMALL_STATE(1860)] = 60279, - [SMALL_STATE(1861)] = 60286, - [SMALL_STATE(1862)] = 60293, - [SMALL_STATE(1863)] = 60300, - [SMALL_STATE(1864)] = 60307, - [SMALL_STATE(1865)] = 60314, - [SMALL_STATE(1866)] = 60321, - [SMALL_STATE(1867)] = 60328, - [SMALL_STATE(1868)] = 60335, - [SMALL_STATE(1869)] = 60342, - [SMALL_STATE(1870)] = 60349, - [SMALL_STATE(1871)] = 60356, - [SMALL_STATE(1872)] = 60363, - [SMALL_STATE(1873)] = 60370, - [SMALL_STATE(1874)] = 60377, - [SMALL_STATE(1875)] = 60384, - [SMALL_STATE(1876)] = 60391, - [SMALL_STATE(1877)] = 60398, - [SMALL_STATE(1878)] = 60405, - [SMALL_STATE(1879)] = 60412, - [SMALL_STATE(1880)] = 60419, - [SMALL_STATE(1881)] = 60426, - [SMALL_STATE(1882)] = 60433, - [SMALL_STATE(1883)] = 60440, - [SMALL_STATE(1884)] = 60447, - [SMALL_STATE(1885)] = 60454, - [SMALL_STATE(1886)] = 60461, - [SMALL_STATE(1887)] = 60468, - [SMALL_STATE(1888)] = 60475, - [SMALL_STATE(1889)] = 60482, - [SMALL_STATE(1890)] = 60489, - [SMALL_STATE(1891)] = 60496, - [SMALL_STATE(1892)] = 60503, - [SMALL_STATE(1893)] = 60510, - [SMALL_STATE(1894)] = 60517, - [SMALL_STATE(1895)] = 60524, - [SMALL_STATE(1896)] = 60531, - [SMALL_STATE(1897)] = 60538, - [SMALL_STATE(1898)] = 60545, - [SMALL_STATE(1899)] = 60552, - [SMALL_STATE(1900)] = 60559, - [SMALL_STATE(1901)] = 60566, - [SMALL_STATE(1902)] = 60573, - [SMALL_STATE(1903)] = 60580, - [SMALL_STATE(1904)] = 60587, - [SMALL_STATE(1905)] = 60594, - [SMALL_STATE(1906)] = 60601, - [SMALL_STATE(1907)] = 60608, - [SMALL_STATE(1908)] = 60615, - [SMALL_STATE(1909)] = 60622, - [SMALL_STATE(1910)] = 60629, - [SMALL_STATE(1911)] = 60636, - [SMALL_STATE(1912)] = 60643, - [SMALL_STATE(1913)] = 60650, - [SMALL_STATE(1914)] = 60657, - [SMALL_STATE(1915)] = 60664, - [SMALL_STATE(1916)] = 60671, - [SMALL_STATE(1917)] = 60678, - [SMALL_STATE(1918)] = 60685, - [SMALL_STATE(1919)] = 60692, - [SMALL_STATE(1920)] = 60699, - [SMALL_STATE(1921)] = 60706, - [SMALL_STATE(1922)] = 60713, - [SMALL_STATE(1923)] = 60720, - [SMALL_STATE(1924)] = 60727, - [SMALL_STATE(1925)] = 60734, - [SMALL_STATE(1926)] = 60741, - [SMALL_STATE(1927)] = 60748, - [SMALL_STATE(1928)] = 60755, - [SMALL_STATE(1929)] = 60762, - [SMALL_STATE(1930)] = 60769, - [SMALL_STATE(1931)] = 60776, - [SMALL_STATE(1932)] = 60783, - [SMALL_STATE(1933)] = 60790, - [SMALL_STATE(1934)] = 60797, - [SMALL_STATE(1935)] = 60804, - [SMALL_STATE(1936)] = 60811, - [SMALL_STATE(1937)] = 60818, - [SMALL_STATE(1938)] = 60825, - [SMALL_STATE(1939)] = 60832, - [SMALL_STATE(1940)] = 60839, - [SMALL_STATE(1941)] = 60846, - [SMALL_STATE(1942)] = 60853, - [SMALL_STATE(1943)] = 60860, - [SMALL_STATE(1944)] = 60867, - [SMALL_STATE(1945)] = 60874, - [SMALL_STATE(1946)] = 60881, - [SMALL_STATE(1947)] = 60888, - [SMALL_STATE(1948)] = 60895, - [SMALL_STATE(1949)] = 60902, - [SMALL_STATE(1950)] = 60909, - [SMALL_STATE(1951)] = 60916, - [SMALL_STATE(1952)] = 60923, - [SMALL_STATE(1953)] = 60930, - [SMALL_STATE(1954)] = 60937, - [SMALL_STATE(1955)] = 60944, - [SMALL_STATE(1956)] = 60951, - [SMALL_STATE(1957)] = 60958, - [SMALL_STATE(1958)] = 60965, - [SMALL_STATE(1959)] = 60972, - [SMALL_STATE(1960)] = 60979, - [SMALL_STATE(1961)] = 60986, - [SMALL_STATE(1962)] = 60993, - [SMALL_STATE(1963)] = 61000, - [SMALL_STATE(1964)] = 61007, - [SMALL_STATE(1965)] = 61014, - [SMALL_STATE(1966)] = 61021, - [SMALL_STATE(1967)] = 61028, - [SMALL_STATE(1968)] = 61035, - [SMALL_STATE(1969)] = 61042, - [SMALL_STATE(1970)] = 61049, - [SMALL_STATE(1971)] = 61056, - [SMALL_STATE(1972)] = 61063, - [SMALL_STATE(1973)] = 61070, - [SMALL_STATE(1974)] = 61077, - [SMALL_STATE(1975)] = 61084, - [SMALL_STATE(1976)] = 61091, - [SMALL_STATE(1977)] = 61098, - [SMALL_STATE(1978)] = 61105, - [SMALL_STATE(1979)] = 61112, - [SMALL_STATE(1980)] = 61119, - [SMALL_STATE(1981)] = 61126, - [SMALL_STATE(1982)] = 61133, - [SMALL_STATE(1983)] = 61140, - [SMALL_STATE(1984)] = 61147, - [SMALL_STATE(1985)] = 61154, - [SMALL_STATE(1986)] = 61161, - [SMALL_STATE(1987)] = 61168, - [SMALL_STATE(1988)] = 61175, - [SMALL_STATE(1989)] = 61182, - [SMALL_STATE(1990)] = 61189, - [SMALL_STATE(1991)] = 61196, - [SMALL_STATE(1992)] = 61203, - [SMALL_STATE(1993)] = 61210, - [SMALL_STATE(1994)] = 61217, - [SMALL_STATE(1995)] = 61224, - [SMALL_STATE(1996)] = 61231, - [SMALL_STATE(1997)] = 61238, - [SMALL_STATE(1998)] = 61245, - [SMALL_STATE(1999)] = 61252, - [SMALL_STATE(2000)] = 61259, - [SMALL_STATE(2001)] = 61266, - [SMALL_STATE(2002)] = 61273, - [SMALL_STATE(2003)] = 61280, - [SMALL_STATE(2004)] = 61287, - [SMALL_STATE(2005)] = 61294, - [SMALL_STATE(2006)] = 61301, - [SMALL_STATE(2007)] = 61308, - [SMALL_STATE(2008)] = 61315, - [SMALL_STATE(2009)] = 61322, - [SMALL_STATE(2010)] = 61329, - [SMALL_STATE(2011)] = 61336, - [SMALL_STATE(2012)] = 61343, - [SMALL_STATE(2013)] = 61350, - [SMALL_STATE(2014)] = 61357, - [SMALL_STATE(2015)] = 61364, - [SMALL_STATE(2016)] = 61371, - [SMALL_STATE(2017)] = 61378, - [SMALL_STATE(2018)] = 61385, - [SMALL_STATE(2019)] = 61392, - [SMALL_STATE(2020)] = 61399, - [SMALL_STATE(2021)] = 61406, - [SMALL_STATE(2022)] = 61413, - [SMALL_STATE(2023)] = 61420, - [SMALL_STATE(2024)] = 61427, - [SMALL_STATE(2025)] = 61434, - [SMALL_STATE(2026)] = 61441, - [SMALL_STATE(2027)] = 61448, - [SMALL_STATE(2028)] = 61455, - [SMALL_STATE(2029)] = 61462, - [SMALL_STATE(2030)] = 61469, - [SMALL_STATE(2031)] = 61476, - [SMALL_STATE(2032)] = 61483, - [SMALL_STATE(2033)] = 61490, - [SMALL_STATE(2034)] = 61497, - [SMALL_STATE(2035)] = 61504, - [SMALL_STATE(2036)] = 61511, + [SMALL_STATE(668)] = 0, + [SMALL_STATE(669)] = 115, + [SMALL_STATE(670)] = 227, + [SMALL_STATE(671)] = 339, + [SMALL_STATE(672)] = 451, + [SMALL_STATE(673)] = 563, + [SMALL_STATE(674)] = 675, + [SMALL_STATE(675)] = 785, + [SMALL_STATE(676)] = 897, + [SMALL_STATE(677)] = 1009, + [SMALL_STATE(678)] = 1121, + [SMALL_STATE(679)] = 1233, + [SMALL_STATE(680)] = 1345, + [SMALL_STATE(681)] = 1457, + [SMALL_STATE(682)] = 1569, + [SMALL_STATE(683)] = 1679, + [SMALL_STATE(684)] = 1791, + [SMALL_STATE(685)] = 1903, + [SMALL_STATE(686)] = 2015, + [SMALL_STATE(687)] = 2127, + [SMALL_STATE(688)] = 2239, + [SMALL_STATE(689)] = 2351, + [SMALL_STATE(690)] = 2463, + [SMALL_STATE(691)] = 2575, + [SMALL_STATE(692)] = 2687, + [SMALL_STATE(693)] = 2799, + [SMALL_STATE(694)] = 2911, + [SMALL_STATE(695)] = 3023, + [SMALL_STATE(696)] = 3135, + [SMALL_STATE(697)] = 3247, + [SMALL_STATE(698)] = 3359, + [SMALL_STATE(699)] = 3471, + [SMALL_STATE(700)] = 3583, + [SMALL_STATE(701)] = 3695, + [SMALL_STATE(702)] = 3807, + [SMALL_STATE(703)] = 3919, + [SMALL_STATE(704)] = 4031, + [SMALL_STATE(705)] = 4143, + [SMALL_STATE(706)] = 4255, + [SMALL_STATE(707)] = 4367, + [SMALL_STATE(708)] = 4479, + [SMALL_STATE(709)] = 4591, + [SMALL_STATE(710)] = 4703, + [SMALL_STATE(711)] = 4815, + [SMALL_STATE(712)] = 4927, + [SMALL_STATE(713)] = 5039, + [SMALL_STATE(714)] = 5151, + [SMALL_STATE(715)] = 5263, + [SMALL_STATE(716)] = 5375, + [SMALL_STATE(717)] = 5487, + [SMALL_STATE(718)] = 5599, + [SMALL_STATE(719)] = 5711, + [SMALL_STATE(720)] = 5823, + [SMALL_STATE(721)] = 5935, + [SMALL_STATE(722)] = 6047, + [SMALL_STATE(723)] = 6159, + [SMALL_STATE(724)] = 6271, + [SMALL_STATE(725)] = 6383, + [SMALL_STATE(726)] = 6495, + [SMALL_STATE(727)] = 6607, + [SMALL_STATE(728)] = 6719, + [SMALL_STATE(729)] = 6831, + [SMALL_STATE(730)] = 6943, + [SMALL_STATE(731)] = 7055, + [SMALL_STATE(732)] = 7167, + [SMALL_STATE(733)] = 7279, + [SMALL_STATE(734)] = 7389, + [SMALL_STATE(735)] = 7501, + [SMALL_STATE(736)] = 7608, + [SMALL_STATE(737)] = 7715, + [SMALL_STATE(738)] = 7822, + [SMALL_STATE(739)] = 7931, + [SMALL_STATE(740)] = 8040, + [SMALL_STATE(741)] = 8147, + [SMALL_STATE(742)] = 8254, + [SMALL_STATE(743)] = 8361, + [SMALL_STATE(744)] = 8470, + [SMALL_STATE(745)] = 8579, + [SMALL_STATE(746)] = 8688, + [SMALL_STATE(747)] = 8795, + [SMALL_STATE(748)] = 8904, + [SMALL_STATE(749)] = 9013, + [SMALL_STATE(750)] = 9120, + [SMALL_STATE(751)] = 9227, + [SMALL_STATE(752)] = 9334, + [SMALL_STATE(753)] = 9440, + [SMALL_STATE(754)] = 9546, + [SMALL_STATE(755)] = 9652, + [SMALL_STATE(756)] = 9758, + [SMALL_STATE(757)] = 9862, + [SMALL_STATE(758)] = 9966, + [SMALL_STATE(759)] = 10072, + [SMALL_STATE(760)] = 10178, + [SMALL_STATE(761)] = 10284, + [SMALL_STATE(762)] = 10388, + [SMALL_STATE(763)] = 10494, + [SMALL_STATE(764)] = 10600, + [SMALL_STATE(765)] = 10706, + [SMALL_STATE(766)] = 10812, + [SMALL_STATE(767)] = 10916, + [SMALL_STATE(768)] = 11022, + [SMALL_STATE(769)] = 11126, + [SMALL_STATE(770)] = 11234, + [SMALL_STATE(771)] = 11340, + [SMALL_STATE(772)] = 11446, + [SMALL_STATE(773)] = 11552, + [SMALL_STATE(774)] = 11656, + [SMALL_STATE(775)] = 11762, + [SMALL_STATE(776)] = 11866, + [SMALL_STATE(777)] = 11972, + [SMALL_STATE(778)] = 12076, + [SMALL_STATE(779)] = 12180, + [SMALL_STATE(780)] = 12286, + [SMALL_STATE(781)] = 12390, + [SMALL_STATE(782)] = 12494, + [SMALL_STATE(783)] = 12598, + [SMALL_STATE(784)] = 12702, + [SMALL_STATE(785)] = 12806, + [SMALL_STATE(786)] = 12910, + [SMALL_STATE(787)] = 13014, + [SMALL_STATE(788)] = 13118, + [SMALL_STATE(789)] = 13222, + [SMALL_STATE(790)] = 13328, + [SMALL_STATE(791)] = 13434, + [SMALL_STATE(792)] = 13538, + [SMALL_STATE(793)] = 13642, + [SMALL_STATE(794)] = 13746, + [SMALL_STATE(795)] = 13854, + [SMALL_STATE(796)] = 13960, + [SMALL_STATE(797)] = 14064, + [SMALL_STATE(798)] = 14170, + [SMALL_STATE(799)] = 14274, + [SMALL_STATE(800)] = 14380, + [SMALL_STATE(801)] = 14486, + [SMALL_STATE(802)] = 14592, + [SMALL_STATE(803)] = 14698, + [SMALL_STATE(804)] = 14802, + [SMALL_STATE(805)] = 14910, + [SMALL_STATE(806)] = 15018, + [SMALL_STATE(807)] = 15126, + [SMALL_STATE(808)] = 15232, + [SMALL_STATE(809)] = 15338, + [SMALL_STATE(810)] = 15446, + [SMALL_STATE(811)] = 15550, + [SMALL_STATE(812)] = 15654, + [SMALL_STATE(813)] = 15760, + [SMALL_STATE(814)] = 15866, + [SMALL_STATE(815)] = 15972, + [SMALL_STATE(816)] = 16078, + [SMALL_STATE(817)] = 16184, + [SMALL_STATE(818)] = 16290, + [SMALL_STATE(819)] = 16394, + [SMALL_STATE(820)] = 16500, + [SMALL_STATE(821)] = 16604, + [SMALL_STATE(822)] = 16710, + [SMALL_STATE(823)] = 16814, + [SMALL_STATE(824)] = 16918, + [SMALL_STATE(825)] = 17022, + [SMALL_STATE(826)] = 17128, + [SMALL_STATE(827)] = 17234, + [SMALL_STATE(828)] = 17340, + [SMALL_STATE(829)] = 17446, + [SMALL_STATE(830)] = 17552, + [SMALL_STATE(831)] = 17658, + [SMALL_STATE(832)] = 17764, + [SMALL_STATE(833)] = 17870, + [SMALL_STATE(834)] = 17976, + [SMALL_STATE(835)] = 18080, + [SMALL_STATE(836)] = 18186, + [SMALL_STATE(837)] = 18292, + [SMALL_STATE(838)] = 18398, + [SMALL_STATE(839)] = 18504, + [SMALL_STATE(840)] = 18610, + [SMALL_STATE(841)] = 18716, + [SMALL_STATE(842)] = 18829, + [SMALL_STATE(843)] = 18930, + [SMALL_STATE(844)] = 19031, + [SMALL_STATE(845)] = 19132, + [SMALL_STATE(846)] = 19233, + [SMALL_STATE(847)] = 19334, + [SMALL_STATE(848)] = 19413, + [SMALL_STATE(849)] = 19478, + [SMALL_STATE(850)] = 19543, + [SMALL_STATE(851)] = 19608, + [SMALL_STATE(852)] = 19700, + [SMALL_STATE(853)] = 19758, + [SMALL_STATE(854)] = 19816, + [SMALL_STATE(855)] = 19874, + [SMALL_STATE(856)] = 19931, + [SMALL_STATE(857)] = 20020, + [SMALL_STATE(858)] = 20081, + [SMALL_STATE(859)] = 20142, + [SMALL_STATE(860)] = 20199, + [SMALL_STATE(861)] = 20263, + [SMALL_STATE(862)] = 20323, + [SMALL_STATE(863)] = 20378, + [SMALL_STATE(864)] = 20433, + [SMALL_STATE(865)] = 20488, + [SMALL_STATE(866)] = 20543, + [SMALL_STATE(867)] = 20598, + [SMALL_STATE(868)] = 20653, + [SMALL_STATE(869)] = 20708, + [SMALL_STATE(870)] = 20763, + [SMALL_STATE(871)] = 20818, + [SMALL_STATE(872)] = 20873, + [SMALL_STATE(873)] = 20955, + [SMALL_STATE(874)] = 21009, + [SMALL_STATE(875)] = 21091, + [SMALL_STATE(876)] = 21173, + [SMALL_STATE(877)] = 21255, + [SMALL_STATE(878)] = 21337, + [SMALL_STATE(879)] = 21400, + [SMALL_STATE(880)] = 21463, + [SMALL_STATE(881)] = 21528, + [SMALL_STATE(882)] = 21591, + [SMALL_STATE(883)] = 21654, + [SMALL_STATE(884)] = 21717, + [SMALL_STATE(885)] = 21780, + [SMALL_STATE(886)] = 21859, + [SMALL_STATE(887)] = 21911, + [SMALL_STATE(888)] = 21962, + [SMALL_STATE(889)] = 22013, + [SMALL_STATE(890)] = 22064, + [SMALL_STATE(891)] = 22115, + [SMALL_STATE(892)] = 22176, + [SMALL_STATE(893)] = 22227, + [SMALL_STATE(894)] = 22278, + [SMALL_STATE(895)] = 22329, + [SMALL_STATE(896)] = 22390, + [SMALL_STATE(897)] = 22441, + [SMALL_STATE(898)] = 22526, + [SMALL_STATE(899)] = 22577, + [SMALL_STATE(900)] = 22628, + [SMALL_STATE(901)] = 22679, + [SMALL_STATE(902)] = 22730, + [SMALL_STATE(903)] = 22791, + [SMALL_STATE(904)] = 22850, + [SMALL_STATE(905)] = 22901, + [SMALL_STATE(906)] = 22974, + [SMALL_STATE(907)] = 23025, + [SMALL_STATE(908)] = 23076, + [SMALL_STATE(909)] = 23147, + [SMALL_STATE(910)] = 23214, + [SMALL_STATE(911)] = 23273, + [SMALL_STATE(912)] = 23324, + [SMALL_STATE(913)] = 23375, + [SMALL_STATE(914)] = 23426, + [SMALL_STATE(915)] = 23477, + [SMALL_STATE(916)] = 23528, + [SMALL_STATE(917)] = 23579, + [SMALL_STATE(918)] = 23640, + [SMALL_STATE(919)] = 23691, + [SMALL_STATE(920)] = 23756, + [SMALL_STATE(921)] = 23823, + [SMALL_STATE(922)] = 23902, + [SMALL_STATE(923)] = 23987, + [SMALL_STATE(924)] = 24050, + [SMALL_STATE(925)] = 24131, + [SMALL_STATE(926)] = 24216, + [SMALL_STATE(927)] = 24293, + [SMALL_STATE(928)] = 24368, + [SMALL_STATE(929)] = 24422, + [SMALL_STATE(930)] = 24471, + [SMALL_STATE(931)] = 24520, + [SMALL_STATE(932)] = 24569, + [SMALL_STATE(933)] = 24618, + [SMALL_STATE(934)] = 24667, + [SMALL_STATE(935)] = 24716, + [SMALL_STATE(936)] = 24765, + [SMALL_STATE(937)] = 24814, + [SMALL_STATE(938)] = 24863, + [SMALL_STATE(939)] = 24912, + [SMALL_STATE(940)] = 24961, + [SMALL_STATE(941)] = 25010, + [SMALL_STATE(942)] = 25059, + [SMALL_STATE(943)] = 25108, + [SMALL_STATE(944)] = 25157, + [SMALL_STATE(945)] = 25206, + [SMALL_STATE(946)] = 25255, + [SMALL_STATE(947)] = 25304, + [SMALL_STATE(948)] = 25353, + [SMALL_STATE(949)] = 25402, + [SMALL_STATE(950)] = 25451, + [SMALL_STATE(951)] = 25500, + [SMALL_STATE(952)] = 25549, + [SMALL_STATE(953)] = 25598, + [SMALL_STATE(954)] = 25645, + [SMALL_STATE(955)] = 25692, + [SMALL_STATE(956)] = 25739, + [SMALL_STATE(957)] = 25794, + [SMALL_STATE(958)] = 25849, + [SMALL_STATE(959)] = 25904, + [SMALL_STATE(960)] = 25959, + [SMALL_STATE(961)] = 26014, + [SMALL_STATE(962)] = 26061, + [SMALL_STATE(963)] = 26108, + [SMALL_STATE(964)] = 26155, + [SMALL_STATE(965)] = 26202, + [SMALL_STATE(966)] = 26249, + [SMALL_STATE(967)] = 26296, + [SMALL_STATE(968)] = 26343, + [SMALL_STATE(969)] = 26390, + [SMALL_STATE(970)] = 26437, + [SMALL_STATE(971)] = 26484, + [SMALL_STATE(972)] = 26563, + [SMALL_STATE(973)] = 26610, + [SMALL_STATE(974)] = 26657, + [SMALL_STATE(975)] = 26704, + [SMALL_STATE(976)] = 26751, + [SMALL_STATE(977)] = 26798, + [SMALL_STATE(978)] = 26845, + [SMALL_STATE(979)] = 26892, + [SMALL_STATE(980)] = 26939, + [SMALL_STATE(981)] = 26986, + [SMALL_STATE(982)] = 27033, + [SMALL_STATE(983)] = 27080, + [SMALL_STATE(984)] = 27127, + [SMALL_STATE(985)] = 27174, + [SMALL_STATE(986)] = 27248, + [SMALL_STATE(987)] = 27294, + [SMALL_STATE(988)] = 27340, + [SMALL_STATE(989)] = 27394, + [SMALL_STATE(990)] = 27456, + [SMALL_STATE(991)] = 27512, + [SMALL_STATE(992)] = 27558, + [SMALL_STATE(993)] = 27604, + [SMALL_STATE(994)] = 27684, + [SMALL_STATE(995)] = 27764, + [SMALL_STATE(996)] = 27824, + [SMALL_STATE(997)] = 27886, + [SMALL_STATE(998)] = 27952, + [SMALL_STATE(999)] = 28008, + [SMALL_STATE(1000)] = 28088, + [SMALL_STATE(1001)] = 28134, + [SMALL_STATE(1002)] = 28190, + [SMALL_STATE(1003)] = 28262, + [SMALL_STATE(1004)] = 28320, + [SMALL_STATE(1005)] = 28396, + [SMALL_STATE(1006)] = 28466, + [SMALL_STATE(1007)] = 28534, + [SMALL_STATE(1008)] = 28590, + [SMALL_STATE(1009)] = 28635, + [SMALL_STATE(1010)] = 28684, + [SMALL_STATE(1011)] = 28729, + [SMALL_STATE(1012)] = 28774, + [SMALL_STATE(1013)] = 28819, + [SMALL_STATE(1014)] = 28864, + [SMALL_STATE(1015)] = 28909, + [SMALL_STATE(1016)] = 28954, + [SMALL_STATE(1017)] = 28999, + [SMALL_STATE(1018)] = 29044, + [SMALL_STATE(1019)] = 29089, + [SMALL_STATE(1020)] = 29134, + [SMALL_STATE(1021)] = 29183, + [SMALL_STATE(1022)] = 29228, + [SMALL_STATE(1023)] = 29277, + [SMALL_STATE(1024)] = 29322, + [SMALL_STATE(1025)] = 29371, + [SMALL_STATE(1026)] = 29428, + [SMALL_STATE(1027)] = 29473, + [SMALL_STATE(1028)] = 29518, + [SMALL_STATE(1029)] = 29563, + [SMALL_STATE(1030)] = 29608, + [SMALL_STATE(1031)] = 29665, + [SMALL_STATE(1032)] = 29710, + [SMALL_STATE(1033)] = 29755, + [SMALL_STATE(1034)] = 29800, + [SMALL_STATE(1035)] = 29845, + [SMALL_STATE(1036)] = 29890, + [SMALL_STATE(1037)] = 29935, + [SMALL_STATE(1038)] = 29980, + [SMALL_STATE(1039)] = 30025, + [SMALL_STATE(1040)] = 30070, + [SMALL_STATE(1041)] = 30115, + [SMALL_STATE(1042)] = 30160, + [SMALL_STATE(1043)] = 30217, + [SMALL_STATE(1044)] = 30266, + [SMALL_STATE(1045)] = 30323, + [SMALL_STATE(1046)] = 30372, + [SMALL_STATE(1047)] = 30417, + [SMALL_STATE(1048)] = 30462, + [SMALL_STATE(1049)] = 30511, + [SMALL_STATE(1050)] = 30556, + [SMALL_STATE(1051)] = 30605, + [SMALL_STATE(1052)] = 30650, + [SMALL_STATE(1053)] = 30699, + [SMALL_STATE(1054)] = 30744, + [SMALL_STATE(1055)] = 30789, + [SMALL_STATE(1056)] = 30834, + [SMALL_STATE(1057)] = 30883, + [SMALL_STATE(1058)] = 30928, + [SMALL_STATE(1059)] = 30977, + [SMALL_STATE(1060)] = 31022, + [SMALL_STATE(1061)] = 31067, + [SMALL_STATE(1062)] = 31112, + [SMALL_STATE(1063)] = 31157, + [SMALL_STATE(1064)] = 31202, + [SMALL_STATE(1065)] = 31247, + [SMALL_STATE(1066)] = 31296, + [SMALL_STATE(1067)] = 31345, + [SMALL_STATE(1068)] = 31394, + [SMALL_STATE(1069)] = 31443, + [SMALL_STATE(1070)] = 31492, + [SMALL_STATE(1071)] = 31537, + [SMALL_STATE(1072)] = 31582, + [SMALL_STATE(1073)] = 31627, + [SMALL_STATE(1074)] = 31672, + [SMALL_STATE(1075)] = 31721, + [SMALL_STATE(1076)] = 31766, + [SMALL_STATE(1077)] = 31811, + [SMALL_STATE(1078)] = 31856, + [SMALL_STATE(1079)] = 31901, + [SMALL_STATE(1080)] = 31946, + [SMALL_STATE(1081)] = 31991, + [SMALL_STATE(1082)] = 32036, + [SMALL_STATE(1083)] = 32081, + [SMALL_STATE(1084)] = 32126, + [SMALL_STATE(1085)] = 32171, + [SMALL_STATE(1086)] = 32216, + [SMALL_STATE(1087)] = 32261, + [SMALL_STATE(1088)] = 32305, + [SMALL_STATE(1089)] = 32349, + [SMALL_STATE(1090)] = 32393, + [SMALL_STATE(1091)] = 32437, + [SMALL_STATE(1092)] = 32489, + [SMALL_STATE(1093)] = 32533, + [SMALL_STATE(1094)] = 32577, + [SMALL_STATE(1095)] = 32621, + [SMALL_STATE(1096)] = 32665, + [SMALL_STATE(1097)] = 32709, + [SMALL_STATE(1098)] = 32753, + [SMALL_STATE(1099)] = 32797, + [SMALL_STATE(1100)] = 32841, + [SMALL_STATE(1101)] = 32885, + [SMALL_STATE(1102)] = 32929, + [SMALL_STATE(1103)] = 32973, + [SMALL_STATE(1104)] = 33017, + [SMALL_STATE(1105)] = 33061, + [SMALL_STATE(1106)] = 33105, + [SMALL_STATE(1107)] = 33149, + [SMALL_STATE(1108)] = 33193, + [SMALL_STATE(1109)] = 33237, + [SMALL_STATE(1110)] = 33281, + [SMALL_STATE(1111)] = 33327, + [SMALL_STATE(1112)] = 33371, + [SMALL_STATE(1113)] = 33415, + [SMALL_STATE(1114)] = 33459, + [SMALL_STATE(1115)] = 33503, + [SMALL_STATE(1116)] = 33547, + [SMALL_STATE(1117)] = 33591, + [SMALL_STATE(1118)] = 33635, + [SMALL_STATE(1119)] = 33679, + [SMALL_STATE(1120)] = 33748, + [SMALL_STATE(1121)] = 33817, + [SMALL_STATE(1122)] = 33886, + [SMALL_STATE(1123)] = 33955, + [SMALL_STATE(1124)] = 34007, + [SMALL_STATE(1125)] = 34063, + [SMALL_STATE(1126)] = 34119, + [SMALL_STATE(1127)] = 34175, + [SMALL_STATE(1128)] = 34231, + [SMALL_STATE(1129)] = 34287, + [SMALL_STATE(1130)] = 34336, + [SMALL_STATE(1131)] = 34390, + [SMALL_STATE(1132)] = 34456, + [SMALL_STATE(1133)] = 34514, + [SMALL_STATE(1134)] = 34576, + [SMALL_STATE(1135)] = 34640, + [SMALL_STATE(1136)] = 34708, + [SMALL_STATE(1137)] = 34776, + [SMALL_STATE(1138)] = 34846, + [SMALL_STATE(1139)] = 34904, + [SMALL_STATE(1140)] = 34946, + [SMALL_STATE(1141)] = 35020, + [SMALL_STATE(1142)] = 35062, + [SMALL_STATE(1143)] = 35104, + [SMALL_STATE(1144)] = 35160, + [SMALL_STATE(1145)] = 35234, + [SMALL_STATE(1146)] = 35308, + [SMALL_STATE(1147)] = 35350, + [SMALL_STATE(1148)] = 35392, + [SMALL_STATE(1149)] = 35435, + [SMALL_STATE(1150)] = 35474, + [SMALL_STATE(1151)] = 35517, + [SMALL_STATE(1152)] = 35580, + [SMALL_STATE(1153)] = 35623, + [SMALL_STATE(1154)] = 35683, + [SMALL_STATE(1155)] = 35743, + [SMALL_STATE(1156)] = 35803, + [SMALL_STATE(1157)] = 35863, + [SMALL_STATE(1158)] = 35923, + [SMALL_STATE(1159)] = 35983, + [SMALL_STATE(1160)] = 36043, + [SMALL_STATE(1161)] = 36103, + [SMALL_STATE(1162)] = 36146, + [SMALL_STATE(1163)] = 36221, + [SMALL_STATE(1164)] = 36296, + [SMALL_STATE(1165)] = 36371, + [SMALL_STATE(1166)] = 36442, + [SMALL_STATE(1167)] = 36517, + [SMALL_STATE(1168)] = 36592, + [SMALL_STATE(1169)] = 36667, + [SMALL_STATE(1170)] = 36740, + [SMALL_STATE(1171)] = 36812, + [SMALL_STATE(1172)] = 36884, + [SMALL_STATE(1173)] = 36956, + [SMALL_STATE(1174)] = 37028, + [SMALL_STATE(1175)] = 37098, + [SMALL_STATE(1176)] = 37170, + [SMALL_STATE(1177)] = 37242, + [SMALL_STATE(1178)] = 37314, + [SMALL_STATE(1179)] = 37384, + [SMALL_STATE(1180)] = 37456, + [SMALL_STATE(1181)] = 37528, + [SMALL_STATE(1182)] = 37600, + [SMALL_STATE(1183)] = 37672, + [SMALL_STATE(1184)] = 37744, + [SMALL_STATE(1185)] = 37800, + [SMALL_STATE(1186)] = 37872, + [SMALL_STATE(1187)] = 37944, + [SMALL_STATE(1188)] = 38016, + [SMALL_STATE(1189)] = 38088, + [SMALL_STATE(1190)] = 38160, + [SMALL_STATE(1191)] = 38232, + [SMALL_STATE(1192)] = 38304, + [SMALL_STATE(1193)] = 38376, + [SMALL_STATE(1194)] = 38432, + [SMALL_STATE(1195)] = 38488, + [SMALL_STATE(1196)] = 38544, + [SMALL_STATE(1197)] = 38616, + [SMALL_STATE(1198)] = 38688, + [SMALL_STATE(1199)] = 38760, + [SMALL_STATE(1200)] = 38832, + [SMALL_STATE(1201)] = 38904, + [SMALL_STATE(1202)] = 38976, + [SMALL_STATE(1203)] = 39048, + [SMALL_STATE(1204)] = 39118, + [SMALL_STATE(1205)] = 39190, + [SMALL_STATE(1206)] = 39262, + [SMALL_STATE(1207)] = 39334, + [SMALL_STATE(1208)] = 39406, + [SMALL_STATE(1209)] = 39478, + [SMALL_STATE(1210)] = 39550, + [SMALL_STATE(1211)] = 39622, + [SMALL_STATE(1212)] = 39694, + [SMALL_STATE(1213)] = 39764, + [SMALL_STATE(1214)] = 39836, + [SMALL_STATE(1215)] = 39906, + [SMALL_STATE(1216)] = 39978, + [SMALL_STATE(1217)] = 40050, + [SMALL_STATE(1218)] = 40122, + [SMALL_STATE(1219)] = 40194, + [SMALL_STATE(1220)] = 40266, + [SMALL_STATE(1221)] = 40322, + [SMALL_STATE(1222)] = 40394, + [SMALL_STATE(1223)] = 40466, + [SMALL_STATE(1224)] = 40538, + [SMALL_STATE(1225)] = 40608, + [SMALL_STATE(1226)] = 40680, + [SMALL_STATE(1227)] = 40752, + [SMALL_STATE(1228)] = 40824, + [SMALL_STATE(1229)] = 40896, + [SMALL_STATE(1230)] = 40968, + [SMALL_STATE(1231)] = 41040, + [SMALL_STATE(1232)] = 41112, + [SMALL_STATE(1233)] = 41184, + [SMALL_STATE(1234)] = 41256, + [SMALL_STATE(1235)] = 41328, + [SMALL_STATE(1236)] = 41400, + [SMALL_STATE(1237)] = 41472, + [SMALL_STATE(1238)] = 41544, + [SMALL_STATE(1239)] = 41616, + [SMALL_STATE(1240)] = 41688, + [SMALL_STATE(1241)] = 41760, + [SMALL_STATE(1242)] = 41832, + [SMALL_STATE(1243)] = 41904, + [SMALL_STATE(1244)] = 41976, + [SMALL_STATE(1245)] = 42048, + [SMALL_STATE(1246)] = 42120, + [SMALL_STATE(1247)] = 42192, + [SMALL_STATE(1248)] = 42264, + [SMALL_STATE(1249)] = 42336, + [SMALL_STATE(1250)] = 42408, + [SMALL_STATE(1251)] = 42464, + [SMALL_STATE(1252)] = 42536, + [SMALL_STATE(1253)] = 42608, + [SMALL_STATE(1254)] = 42680, + [SMALL_STATE(1255)] = 42750, + [SMALL_STATE(1256)] = 42803, + [SMALL_STATE(1257)] = 42872, + [SMALL_STATE(1258)] = 42941, + [SMALL_STATE(1259)] = 42994, + [SMALL_STATE(1260)] = 43047, + [SMALL_STATE(1261)] = 43116, + [SMALL_STATE(1262)] = 43185, + [SMALL_STATE(1263)] = 43254, + [SMALL_STATE(1264)] = 43307, + [SMALL_STATE(1265)] = 43360, + [SMALL_STATE(1266)] = 43413, + [SMALL_STATE(1267)] = 43466, + [SMALL_STATE(1268)] = 43535, + [SMALL_STATE(1269)] = 43588, + [SMALL_STATE(1270)] = 43641, + [SMALL_STATE(1271)] = 43694, + [SMALL_STATE(1272)] = 43763, + [SMALL_STATE(1273)] = 43816, + [SMALL_STATE(1274)] = 43885, + [SMALL_STATE(1275)] = 43954, + [SMALL_STATE(1276)] = 44007, + [SMALL_STATE(1277)] = 44060, + [SMALL_STATE(1278)] = 44129, + [SMALL_STATE(1279)] = 44198, + [SMALL_STATE(1280)] = 44251, + [SMALL_STATE(1281)] = 44304, + [SMALL_STATE(1282)] = 44357, + [SMALL_STATE(1283)] = 44410, + [SMALL_STATE(1284)] = 44463, + [SMALL_STATE(1285)] = 44516, + [SMALL_STATE(1286)] = 44569, + [SMALL_STATE(1287)] = 44622, + [SMALL_STATE(1288)] = 44675, + [SMALL_STATE(1289)] = 44728, + [SMALL_STATE(1290)] = 44781, + [SMALL_STATE(1291)] = 44850, + [SMALL_STATE(1292)] = 44903, + [SMALL_STATE(1293)] = 44954, + [SMALL_STATE(1294)] = 45007, + [SMALL_STATE(1295)] = 45076, + [SMALL_STATE(1296)] = 45129, + [SMALL_STATE(1297)] = 45198, + [SMALL_STATE(1298)] = 45251, + [SMALL_STATE(1299)] = 45304, + [SMALL_STATE(1300)] = 45373, + [SMALL_STATE(1301)] = 45442, + [SMALL_STATE(1302)] = 45499, + [SMALL_STATE(1303)] = 45568, + [SMALL_STATE(1304)] = 45627, + [SMALL_STATE(1305)] = 45680, + [SMALL_STATE(1306)] = 45749, + [SMALL_STATE(1307)] = 45818, + [SMALL_STATE(1308)] = 45871, + [SMALL_STATE(1309)] = 45932, + [SMALL_STATE(1310)] = 45995, + [SMALL_STATE(1311)] = 46048, + [SMALL_STATE(1312)] = 46117, + [SMALL_STATE(1313)] = 46170, + [SMALL_STATE(1314)] = 46233, + [SMALL_STATE(1315)] = 46298, + [SMALL_STATE(1316)] = 46351, + [SMALL_STATE(1317)] = 46404, + [SMALL_STATE(1318)] = 46457, + [SMALL_STATE(1319)] = 46506, + [SMALL_STATE(1320)] = 46559, + [SMALL_STATE(1321)] = 46598, + [SMALL_STATE(1322)] = 46651, + [SMALL_STATE(1323)] = 46704, + [SMALL_STATE(1324)] = 46757, + [SMALL_STATE(1325)] = 46810, + [SMALL_STATE(1326)] = 46879, + [SMALL_STATE(1327)] = 46948, + [SMALL_STATE(1328)] = 47001, + [SMALL_STATE(1329)] = 47070, + [SMALL_STATE(1330)] = 47123, + [SMALL_STATE(1331)] = 47192, + [SMALL_STATE(1332)] = 47245, + [SMALL_STATE(1333)] = 47314, + [SMALL_STATE(1334)] = 47367, + [SMALL_STATE(1335)] = 47420, + [SMALL_STATE(1336)] = 47473, + [SMALL_STATE(1337)] = 47526, + [SMALL_STATE(1338)] = 47595, + [SMALL_STATE(1339)] = 47664, + [SMALL_STATE(1340)] = 47717, + [SMALL_STATE(1341)] = 47786, + [SMALL_STATE(1342)] = 47839, + [SMALL_STATE(1343)] = 47892, + [SMALL_STATE(1344)] = 47961, + [SMALL_STATE(1345)] = 48014, + [SMALL_STATE(1346)] = 48067, + [SMALL_STATE(1347)] = 48120, + [SMALL_STATE(1348)] = 48173, + [SMALL_STATE(1349)] = 48226, + [SMALL_STATE(1350)] = 48279, + [SMALL_STATE(1351)] = 48321, + [SMALL_STATE(1352)] = 48365, + [SMALL_STATE(1353)] = 48401, + [SMALL_STATE(1354)] = 48443, + [SMALL_STATE(1355)] = 48509, + [SMALL_STATE(1356)] = 48545, + [SMALL_STATE(1357)] = 48581, + [SMALL_STATE(1358)] = 48617, + [SMALL_STATE(1359)] = 48664, + [SMALL_STATE(1360)] = 48711, + [SMALL_STATE(1361)] = 48742, + [SMALL_STATE(1362)] = 48789, + [SMALL_STATE(1363)] = 48820, + [SMALL_STATE(1364)] = 48867, + [SMALL_STATE(1365)] = 48914, + [SMALL_STATE(1366)] = 48961, + [SMALL_STATE(1367)] = 48999, + [SMALL_STATE(1368)] = 49033, + [SMALL_STATE(1369)] = 49077, + [SMALL_STATE(1370)] = 49121, + [SMALL_STATE(1371)] = 49165, + [SMALL_STATE(1372)] = 49209, + [SMALL_STATE(1373)] = 49253, + [SMALL_STATE(1374)] = 49297, + [SMALL_STATE(1375)] = 49352, + [SMALL_STATE(1376)] = 49395, + [SMALL_STATE(1377)] = 49450, + [SMALL_STATE(1378)] = 49493, + [SMALL_STATE(1379)] = 49526, + [SMALL_STATE(1380)] = 49581, + [SMALL_STATE(1381)] = 49624, + [SMALL_STATE(1382)] = 49664, + [SMALL_STATE(1383)] = 49704, + [SMALL_STATE(1384)] = 49744, + [SMALL_STATE(1385)] = 49784, + [SMALL_STATE(1386)] = 49824, + [SMALL_STATE(1387)] = 49864, + [SMALL_STATE(1388)] = 49904, + [SMALL_STATE(1389)] = 49938, + [SMALL_STATE(1390)] = 49978, + [SMALL_STATE(1391)] = 50018, + [SMALL_STATE(1392)] = 50058, + [SMALL_STATE(1393)] = 50098, + [SMALL_STATE(1394)] = 50138, + [SMALL_STATE(1395)] = 50178, + [SMALL_STATE(1396)] = 50218, + [SMALL_STATE(1397)] = 50246, + [SMALL_STATE(1398)] = 50286, + [SMALL_STATE(1399)] = 50326, + [SMALL_STATE(1400)] = 50366, + [SMALL_STATE(1401)] = 50406, + [SMALL_STATE(1402)] = 50446, + [SMALL_STATE(1403)] = 50474, + [SMALL_STATE(1404)] = 50514, + [SMALL_STATE(1405)] = 50554, + [SMALL_STATE(1406)] = 50582, + [SMALL_STATE(1407)] = 50622, + [SMALL_STATE(1408)] = 50662, + [SMALL_STATE(1409)] = 50702, + [SMALL_STATE(1410)] = 50742, + [SMALL_STATE(1411)] = 50782, + [SMALL_STATE(1412)] = 50810, + [SMALL_STATE(1413)] = 50860, + [SMALL_STATE(1414)] = 50888, + [SMALL_STATE(1415)] = 50928, + [SMALL_STATE(1416)] = 50968, + [SMALL_STATE(1417)] = 51004, + [SMALL_STATE(1418)] = 51044, + [SMALL_STATE(1419)] = 51084, + [SMALL_STATE(1420)] = 51124, + [SMALL_STATE(1421)] = 51152, + [SMALL_STATE(1422)] = 51194, + [SMALL_STATE(1423)] = 51238, + [SMALL_STATE(1424)] = 51278, + [SMALL_STATE(1425)] = 51326, + [SMALL_STATE(1426)] = 51354, + [SMALL_STATE(1427)] = 51382, + [SMALL_STATE(1428)] = 51422, + [SMALL_STATE(1429)] = 51454, + [SMALL_STATE(1430)] = 51494, + [SMALL_STATE(1431)] = 51522, + [SMALL_STATE(1432)] = 51562, + [SMALL_STATE(1433)] = 51602, + [SMALL_STATE(1434)] = 51648, + [SMALL_STATE(1435)] = 51688, + [SMALL_STATE(1436)] = 51716, + [SMALL_STATE(1437)] = 51762, + [SMALL_STATE(1438)] = 51810, + [SMALL_STATE(1439)] = 51843, + [SMALL_STATE(1440)] = 51888, + [SMALL_STATE(1441)] = 51933, + [SMALL_STATE(1442)] = 51960, + [SMALL_STATE(1443)] = 52009, + [SMALL_STATE(1444)] = 52036, + [SMALL_STATE(1445)] = 52063, + [SMALL_STATE(1446)] = 52090, + [SMALL_STATE(1447)] = 52135, + [SMALL_STATE(1448)] = 52180, + [SMALL_STATE(1449)] = 52225, + [SMALL_STATE(1450)] = 52260, + [SMALL_STATE(1451)] = 52287, + [SMALL_STATE(1452)] = 52332, + [SMALL_STATE(1453)] = 52377, + [SMALL_STATE(1454)] = 52414, + [SMALL_STATE(1455)] = 52459, + [SMALL_STATE(1456)] = 52498, + [SMALL_STATE(1457)] = 52543, + [SMALL_STATE(1458)] = 52572, + [SMALL_STATE(1459)] = 52599, + [SMALL_STATE(1460)] = 52644, + [SMALL_STATE(1461)] = 52679, + [SMALL_STATE(1462)] = 52706, + [SMALL_STATE(1463)] = 52733, + [SMALL_STATE(1464)] = 52764, + [SMALL_STATE(1465)] = 52791, + [SMALL_STATE(1466)] = 52818, + [SMALL_STATE(1467)] = 52867, + [SMALL_STATE(1468)] = 52912, + [SMALL_STATE(1469)] = 52955, + [SMALL_STATE(1470)] = 53000, + [SMALL_STATE(1471)] = 53041, + [SMALL_STATE(1472)] = 53076, + [SMALL_STATE(1473)] = 53114, + [SMALL_STATE(1474)] = 53152, + [SMALL_STATE(1475)] = 53197, + [SMALL_STATE(1476)] = 53242, + [SMALL_STATE(1477)] = 53287, + [SMALL_STATE(1478)] = 53332, + [SMALL_STATE(1479)] = 53377, + [SMALL_STATE(1480)] = 53403, + [SMALL_STATE(1481)] = 53433, + [SMALL_STATE(1482)] = 53471, + [SMALL_STATE(1483)] = 53509, + [SMALL_STATE(1484)] = 53547, + [SMALL_STATE(1485)] = 53585, + [SMALL_STATE(1486)] = 53610, + [SMALL_STATE(1487)] = 53651, + [SMALL_STATE(1488)] = 53690, + [SMALL_STATE(1489)] = 53731, + [SMALL_STATE(1490)] = 53760, + [SMALL_STATE(1491)] = 53789, + [SMALL_STATE(1492)] = 53818, + [SMALL_STATE(1493)] = 53857, + [SMALL_STATE(1494)] = 53896, + [SMALL_STATE(1495)] = 53921, + [SMALL_STATE(1496)] = 53960, + [SMALL_STATE(1497)] = 53999, + [SMALL_STATE(1498)] = 54040, + [SMALL_STATE(1499)] = 54069, + [SMALL_STATE(1500)] = 54094, + [SMALL_STATE(1501)] = 54119, + [SMALL_STATE(1502)] = 54158, + [SMALL_STATE(1503)] = 54199, + [SMALL_STATE(1504)] = 54235, + [SMALL_STATE(1505)] = 54271, + [SMALL_STATE(1506)] = 54307, + [SMALL_STATE(1507)] = 54343, + [SMALL_STATE(1508)] = 54379, + [SMALL_STATE(1509)] = 54415, + [SMALL_STATE(1510)] = 54451, + [SMALL_STATE(1511)] = 54487, + [SMALL_STATE(1512)] = 54511, + [SMALL_STATE(1513)] = 54543, + [SMALL_STATE(1514)] = 54579, + [SMALL_STATE(1515)] = 54611, + [SMALL_STATE(1516)] = 54647, + [SMALL_STATE(1517)] = 54667, + [SMALL_STATE(1518)] = 54703, + [SMALL_STATE(1519)] = 54739, + [SMALL_STATE(1520)] = 54775, + [SMALL_STATE(1521)] = 54811, + [SMALL_STATE(1522)] = 54847, + [SMALL_STATE(1523)] = 54879, + [SMALL_STATE(1524)] = 54915, + [SMALL_STATE(1525)] = 54947, + [SMALL_STATE(1526)] = 54983, + [SMALL_STATE(1527)] = 55015, + [SMALL_STATE(1528)] = 55051, + [SMALL_STATE(1529)] = 55087, + [SMALL_STATE(1530)] = 55123, + [SMALL_STATE(1531)] = 55159, + [SMALL_STATE(1532)] = 55191, + [SMALL_STATE(1533)] = 55225, + [SMALL_STATE(1534)] = 55261, + [SMALL_STATE(1535)] = 55297, + [SMALL_STATE(1536)] = 55333, + [SMALL_STATE(1537)] = 55365, + [SMALL_STATE(1538)] = 55397, + [SMALL_STATE(1539)] = 55433, + [SMALL_STATE(1540)] = 55469, + [SMALL_STATE(1541)] = 55501, + [SMALL_STATE(1542)] = 55533, + [SMALL_STATE(1543)] = 55569, + [SMALL_STATE(1544)] = 55605, + [SMALL_STATE(1545)] = 55641, + [SMALL_STATE(1546)] = 55677, + [SMALL_STATE(1547)] = 55697, + [SMALL_STATE(1548)] = 55729, + [SMALL_STATE(1549)] = 55749, + [SMALL_STATE(1550)] = 55781, + [SMALL_STATE(1551)] = 55808, + [SMALL_STATE(1552)] = 55837, + [SMALL_STATE(1553)] = 55866, + [SMALL_STATE(1554)] = 55895, + [SMALL_STATE(1555)] = 55924, + [SMALL_STATE(1556)] = 55951, + [SMALL_STATE(1557)] = 55978, + [SMALL_STATE(1558)] = 56007, + [SMALL_STATE(1559)] = 56038, + [SMALL_STATE(1560)] = 56065, + [SMALL_STATE(1561)] = 56094, + [SMALL_STATE(1562)] = 56123, + [SMALL_STATE(1563)] = 56152, + [SMALL_STATE(1564)] = 56178, + [SMALL_STATE(1565)] = 56196, + [SMALL_STATE(1566)] = 56214, + [SMALL_STATE(1567)] = 56240, + [SMALL_STATE(1568)] = 56264, + [SMALL_STATE(1569)] = 56288, + [SMALL_STATE(1570)] = 56306, + [SMALL_STATE(1571)] = 56324, + [SMALL_STATE(1572)] = 56342, + [SMALL_STATE(1573)] = 56368, + [SMALL_STATE(1574)] = 56394, + [SMALL_STATE(1575)] = 56412, + [SMALL_STATE(1576)] = 56434, + [SMALL_STATE(1577)] = 56459, + [SMALL_STATE(1578)] = 56480, + [SMALL_STATE(1579)] = 56503, + [SMALL_STATE(1580)] = 56524, + [SMALL_STATE(1581)] = 56545, + [SMALL_STATE(1582)] = 56566, + [SMALL_STATE(1583)] = 56587, + [SMALL_STATE(1584)] = 56610, + [SMALL_STATE(1585)] = 56631, + [SMALL_STATE(1586)] = 56647, + [SMALL_STATE(1587)] = 56665, + [SMALL_STATE(1588)] = 56681, + [SMALL_STATE(1589)] = 56707, + [SMALL_STATE(1590)] = 56727, + [SMALL_STATE(1591)] = 56743, + [SMALL_STATE(1592)] = 56763, + [SMALL_STATE(1593)] = 56789, + [SMALL_STATE(1594)] = 56809, + [SMALL_STATE(1595)] = 56825, + [SMALL_STATE(1596)] = 56849, + [SMALL_STATE(1597)] = 56869, + [SMALL_STATE(1598)] = 56895, + [SMALL_STATE(1599)] = 56911, + [SMALL_STATE(1600)] = 56927, + [SMALL_STATE(1601)] = 56953, + [SMALL_STATE(1602)] = 56969, + [SMALL_STATE(1603)] = 56985, + [SMALL_STATE(1604)] = 57011, + [SMALL_STATE(1605)] = 57034, + [SMALL_STATE(1606)] = 57057, + [SMALL_STATE(1607)] = 57080, + [SMALL_STATE(1608)] = 57095, + [SMALL_STATE(1609)] = 57110, + [SMALL_STATE(1610)] = 57125, + [SMALL_STATE(1611)] = 57150, + [SMALL_STATE(1612)] = 57165, + [SMALL_STATE(1613)] = 57180, + [SMALL_STATE(1614)] = 57195, + [SMALL_STATE(1615)] = 57210, + [SMALL_STATE(1616)] = 57225, + [SMALL_STATE(1617)] = 57240, + [SMALL_STATE(1618)] = 57258, + [SMALL_STATE(1619)] = 57278, + [SMALL_STATE(1620)] = 57298, + [SMALL_STATE(1621)] = 57318, + [SMALL_STATE(1622)] = 57338, + [SMALL_STATE(1623)] = 57352, + [SMALL_STATE(1624)] = 57372, + [SMALL_STATE(1625)] = 57386, + [SMALL_STATE(1626)] = 57406, + [SMALL_STATE(1627)] = 57426, + [SMALL_STATE(1628)] = 57446, + [SMALL_STATE(1629)] = 57466, + [SMALL_STATE(1630)] = 57486, + [SMALL_STATE(1631)] = 57506, + [SMALL_STATE(1632)] = 57522, + [SMALL_STATE(1633)] = 57542, + [SMALL_STATE(1634)] = 57562, + [SMALL_STATE(1635)] = 57582, + [SMALL_STATE(1636)] = 57602, + [SMALL_STATE(1637)] = 57622, + [SMALL_STATE(1638)] = 57642, + [SMALL_STATE(1639)] = 57662, + [SMALL_STATE(1640)] = 57680, + [SMALL_STATE(1641)] = 57698, + [SMALL_STATE(1642)] = 57712, + [SMALL_STATE(1643)] = 57732, + [SMALL_STATE(1644)] = 57752, + [SMALL_STATE(1645)] = 57772, + [SMALL_STATE(1646)] = 57792, + [SMALL_STATE(1647)] = 57810, + [SMALL_STATE(1648)] = 57830, + [SMALL_STATE(1649)] = 57848, + [SMALL_STATE(1650)] = 57868, + [SMALL_STATE(1651)] = 57888, + [SMALL_STATE(1652)] = 57906, + [SMALL_STATE(1653)] = 57926, + [SMALL_STATE(1654)] = 57946, + [SMALL_STATE(1655)] = 57960, + [SMALL_STATE(1656)] = 57980, + [SMALL_STATE(1657)] = 57998, + [SMALL_STATE(1658)] = 58016, + [SMALL_STATE(1659)] = 58036, + [SMALL_STATE(1660)] = 58056, + [SMALL_STATE(1661)] = 58072, + [SMALL_STATE(1662)] = 58088, + [SMALL_STATE(1663)] = 58099, + [SMALL_STATE(1664)] = 58118, + [SMALL_STATE(1665)] = 58129, + [SMALL_STATE(1666)] = 58148, + [SMALL_STATE(1667)] = 58167, + [SMALL_STATE(1668)] = 58186, + [SMALL_STATE(1669)] = 58197, + [SMALL_STATE(1670)] = 58208, + [SMALL_STATE(1671)] = 58219, + [SMALL_STATE(1672)] = 58230, + [SMALL_STATE(1673)] = 58241, + [SMALL_STATE(1674)] = 58252, + [SMALL_STATE(1675)] = 58263, + [SMALL_STATE(1676)] = 58282, + [SMALL_STATE(1677)] = 58293, + [SMALL_STATE(1678)] = 58304, + [SMALL_STATE(1679)] = 58323, + [SMALL_STATE(1680)] = 58342, + [SMALL_STATE(1681)] = 58361, + [SMALL_STATE(1682)] = 58380, + [SMALL_STATE(1683)] = 58399, + [SMALL_STATE(1684)] = 58418, + [SMALL_STATE(1685)] = 58435, + [SMALL_STATE(1686)] = 58446, + [SMALL_STATE(1687)] = 58465, + [SMALL_STATE(1688)] = 58484, + [SMALL_STATE(1689)] = 58503, + [SMALL_STATE(1690)] = 58520, + [SMALL_STATE(1691)] = 58536, + [SMALL_STATE(1692)] = 58550, + [SMALL_STATE(1693)] = 58564, + [SMALL_STATE(1694)] = 58580, + [SMALL_STATE(1695)] = 58596, + [SMALL_STATE(1696)] = 58610, + [SMALL_STATE(1697)] = 58624, + [SMALL_STATE(1698)] = 58638, + [SMALL_STATE(1699)] = 58652, + [SMALL_STATE(1700)] = 58666, + [SMALL_STATE(1701)] = 58680, + [SMALL_STATE(1702)] = 58696, + [SMALL_STATE(1703)] = 58710, + [SMALL_STATE(1704)] = 58724, + [SMALL_STATE(1705)] = 58738, + [SMALL_STATE(1706)] = 58752, + [SMALL_STATE(1707)] = 58766, + [SMALL_STATE(1708)] = 58780, + [SMALL_STATE(1709)] = 58794, + [SMALL_STATE(1710)] = 58808, + [SMALL_STATE(1711)] = 58822, + [SMALL_STATE(1712)] = 58838, + [SMALL_STATE(1713)] = 58852, + [SMALL_STATE(1714)] = 58866, + [SMALL_STATE(1715)] = 58882, + [SMALL_STATE(1716)] = 58896, + [SMALL_STATE(1717)] = 58910, + [SMALL_STATE(1718)] = 58924, + [SMALL_STATE(1719)] = 58940, + [SMALL_STATE(1720)] = 58954, + [SMALL_STATE(1721)] = 58968, + [SMALL_STATE(1722)] = 58982, + [SMALL_STATE(1723)] = 58996, + [SMALL_STATE(1724)] = 59010, + [SMALL_STATE(1725)] = 59024, + [SMALL_STATE(1726)] = 59038, + [SMALL_STATE(1727)] = 59052, + [SMALL_STATE(1728)] = 59066, + [SMALL_STATE(1729)] = 59080, + [SMALL_STATE(1730)] = 59094, + [SMALL_STATE(1731)] = 59108, + [SMALL_STATE(1732)] = 59122, + [SMALL_STATE(1733)] = 59136, + [SMALL_STATE(1734)] = 59150, + [SMALL_STATE(1735)] = 59164, + [SMALL_STATE(1736)] = 59180, + [SMALL_STATE(1737)] = 59194, + [SMALL_STATE(1738)] = 59210, + [SMALL_STATE(1739)] = 59226, + [SMALL_STATE(1740)] = 59240, + [SMALL_STATE(1741)] = 59254, + [SMALL_STATE(1742)] = 59268, + [SMALL_STATE(1743)] = 59282, + [SMALL_STATE(1744)] = 59296, + [SMALL_STATE(1745)] = 59310, + [SMALL_STATE(1746)] = 59324, + [SMALL_STATE(1747)] = 59340, + [SMALL_STATE(1748)] = 59354, + [SMALL_STATE(1749)] = 59370, + [SMALL_STATE(1750)] = 59384, + [SMALL_STATE(1751)] = 59398, + [SMALL_STATE(1752)] = 59412, + [SMALL_STATE(1753)] = 59426, + [SMALL_STATE(1754)] = 59436, + [SMALL_STATE(1755)] = 59450, + [SMALL_STATE(1756)] = 59466, + [SMALL_STATE(1757)] = 59480, + [SMALL_STATE(1758)] = 59494, + [SMALL_STATE(1759)] = 59508, + [SMALL_STATE(1760)] = 59524, + [SMALL_STATE(1761)] = 59538, + [SMALL_STATE(1762)] = 59552, + [SMALL_STATE(1763)] = 59566, + [SMALL_STATE(1764)] = 59580, + [SMALL_STATE(1765)] = 59594, + [SMALL_STATE(1766)] = 59610, + [SMALL_STATE(1767)] = 59626, + [SMALL_STATE(1768)] = 59640, + [SMALL_STATE(1769)] = 59654, + [SMALL_STATE(1770)] = 59668, + [SMALL_STATE(1771)] = 59682, + [SMALL_STATE(1772)] = 59696, + [SMALL_STATE(1773)] = 59710, + [SMALL_STATE(1774)] = 59726, + [SMALL_STATE(1775)] = 59742, + [SMALL_STATE(1776)] = 59756, + [SMALL_STATE(1777)] = 59770, + [SMALL_STATE(1778)] = 59784, + [SMALL_STATE(1779)] = 59798, + [SMALL_STATE(1780)] = 59812, + [SMALL_STATE(1781)] = 59826, + [SMALL_STATE(1782)] = 59839, + [SMALL_STATE(1783)] = 59852, + [SMALL_STATE(1784)] = 59865, + [SMALL_STATE(1785)] = 59878, + [SMALL_STATE(1786)] = 59889, + [SMALL_STATE(1787)] = 59902, + [SMALL_STATE(1788)] = 59915, + [SMALL_STATE(1789)] = 59928, + [SMALL_STATE(1790)] = 59941, + [SMALL_STATE(1791)] = 59954, + [SMALL_STATE(1792)] = 59967, + [SMALL_STATE(1793)] = 59976, + [SMALL_STATE(1794)] = 59989, + [SMALL_STATE(1795)] = 60002, + [SMALL_STATE(1796)] = 60011, + [SMALL_STATE(1797)] = 60024, + [SMALL_STATE(1798)] = 60037, + [SMALL_STATE(1799)] = 60046, + [SMALL_STATE(1800)] = 60059, + [SMALL_STATE(1801)] = 60072, + [SMALL_STATE(1802)] = 60083, + [SMALL_STATE(1803)] = 60096, + [SMALL_STATE(1804)] = 60109, + [SMALL_STATE(1805)] = 60122, + [SMALL_STATE(1806)] = 60135, + [SMALL_STATE(1807)] = 60148, + [SMALL_STATE(1808)] = 60161, + [SMALL_STATE(1809)] = 60174, + [SMALL_STATE(1810)] = 60187, + [SMALL_STATE(1811)] = 60200, + [SMALL_STATE(1812)] = 60213, + [SMALL_STATE(1813)] = 60226, + [SMALL_STATE(1814)] = 60239, + [SMALL_STATE(1815)] = 60252, + [SMALL_STATE(1816)] = 60265, + [SMALL_STATE(1817)] = 60278, + [SMALL_STATE(1818)] = 60291, + [SMALL_STATE(1819)] = 60304, + [SMALL_STATE(1820)] = 60317, + [SMALL_STATE(1821)] = 60330, + [SMALL_STATE(1822)] = 60343, + [SMALL_STATE(1823)] = 60356, + [SMALL_STATE(1824)] = 60369, + [SMALL_STATE(1825)] = 60382, + [SMALL_STATE(1826)] = 60395, + [SMALL_STATE(1827)] = 60408, + [SMALL_STATE(1828)] = 60417, + [SMALL_STATE(1829)] = 60430, + [SMALL_STATE(1830)] = 60443, + [SMALL_STATE(1831)] = 60452, + [SMALL_STATE(1832)] = 60465, + [SMALL_STATE(1833)] = 60478, + [SMALL_STATE(1834)] = 60491, + [SMALL_STATE(1835)] = 60504, + [SMALL_STATE(1836)] = 60513, + [SMALL_STATE(1837)] = 60526, + [SMALL_STATE(1838)] = 60539, + [SMALL_STATE(1839)] = 60552, + [SMALL_STATE(1840)] = 60565, + [SMALL_STATE(1841)] = 60578, + [SMALL_STATE(1842)] = 60591, + [SMALL_STATE(1843)] = 60604, + [SMALL_STATE(1844)] = 60617, + [SMALL_STATE(1845)] = 60630, + [SMALL_STATE(1846)] = 60643, + [SMALL_STATE(1847)] = 60656, + [SMALL_STATE(1848)] = 60669, + [SMALL_STATE(1849)] = 60682, + [SMALL_STATE(1850)] = 60695, + [SMALL_STATE(1851)] = 60708, + [SMALL_STATE(1852)] = 60721, + [SMALL_STATE(1853)] = 60734, + [SMALL_STATE(1854)] = 60747, + [SMALL_STATE(1855)] = 60760, + [SMALL_STATE(1856)] = 60773, + [SMALL_STATE(1857)] = 60786, + [SMALL_STATE(1858)] = 60795, + [SMALL_STATE(1859)] = 60808, + [SMALL_STATE(1860)] = 60821, + [SMALL_STATE(1861)] = 60834, + [SMALL_STATE(1862)] = 60847, + [SMALL_STATE(1863)] = 60856, + [SMALL_STATE(1864)] = 60865, + [SMALL_STATE(1865)] = 60878, + [SMALL_STATE(1866)] = 60891, + [SMALL_STATE(1867)] = 60904, + [SMALL_STATE(1868)] = 60917, + [SMALL_STATE(1869)] = 60930, + [SMALL_STATE(1870)] = 60943, + [SMALL_STATE(1871)] = 60956, + [SMALL_STATE(1872)] = 60969, + [SMALL_STATE(1873)] = 60982, + [SMALL_STATE(1874)] = 60995, + [SMALL_STATE(1875)] = 61008, + [SMALL_STATE(1876)] = 61021, + [SMALL_STATE(1877)] = 61030, + [SMALL_STATE(1878)] = 61043, + [SMALL_STATE(1879)] = 61056, + [SMALL_STATE(1880)] = 61069, + [SMALL_STATE(1881)] = 61079, + [SMALL_STATE(1882)] = 61089, + [SMALL_STATE(1883)] = 61099, + [SMALL_STATE(1884)] = 61109, + [SMALL_STATE(1885)] = 61117, + [SMALL_STATE(1886)] = 61127, + [SMALL_STATE(1887)] = 61137, + [SMALL_STATE(1888)] = 61147, + [SMALL_STATE(1889)] = 61157, + [SMALL_STATE(1890)] = 61167, + [SMALL_STATE(1891)] = 61175, + [SMALL_STATE(1892)] = 61185, + [SMALL_STATE(1893)] = 61193, + [SMALL_STATE(1894)] = 61203, + [SMALL_STATE(1895)] = 61213, + [SMALL_STATE(1896)] = 61223, + [SMALL_STATE(1897)] = 61233, + [SMALL_STATE(1898)] = 61243, + [SMALL_STATE(1899)] = 61253, + [SMALL_STATE(1900)] = 61263, + [SMALL_STATE(1901)] = 61273, + [SMALL_STATE(1902)] = 61281, + [SMALL_STATE(1903)] = 61291, + [SMALL_STATE(1904)] = 61301, + [SMALL_STATE(1905)] = 61311, + [SMALL_STATE(1906)] = 61321, + [SMALL_STATE(1907)] = 61331, + [SMALL_STATE(1908)] = 61341, + [SMALL_STATE(1909)] = 61351, + [SMALL_STATE(1910)] = 61361, + [SMALL_STATE(1911)] = 61369, + [SMALL_STATE(1912)] = 61379, + [SMALL_STATE(1913)] = 61389, + [SMALL_STATE(1914)] = 61397, + [SMALL_STATE(1915)] = 61407, + [SMALL_STATE(1916)] = 61417, + [SMALL_STATE(1917)] = 61427, + [SMALL_STATE(1918)] = 61435, + [SMALL_STATE(1919)] = 61443, + [SMALL_STATE(1920)] = 61453, + [SMALL_STATE(1921)] = 61461, + [SMALL_STATE(1922)] = 61471, + [SMALL_STATE(1923)] = 61479, + [SMALL_STATE(1924)] = 61489, + [SMALL_STATE(1925)] = 61499, + [SMALL_STATE(1926)] = 61507, + [SMALL_STATE(1927)] = 61517, + [SMALL_STATE(1928)] = 61527, + [SMALL_STATE(1929)] = 61537, + [SMALL_STATE(1930)] = 61547, + [SMALL_STATE(1931)] = 61557, + [SMALL_STATE(1932)] = 61567, + [SMALL_STATE(1933)] = 61577, + [SMALL_STATE(1934)] = 61587, + [SMALL_STATE(1935)] = 61597, + [SMALL_STATE(1936)] = 61605, + [SMALL_STATE(1937)] = 61615, + [SMALL_STATE(1938)] = 61623, + [SMALL_STATE(1939)] = 61633, + [SMALL_STATE(1940)] = 61643, + [SMALL_STATE(1941)] = 61653, + [SMALL_STATE(1942)] = 61663, + [SMALL_STATE(1943)] = 61673, + [SMALL_STATE(1944)] = 61681, + [SMALL_STATE(1945)] = 61691, + [SMALL_STATE(1946)] = 61699, + [SMALL_STATE(1947)] = 61707, + [SMALL_STATE(1948)] = 61715, + [SMALL_STATE(1949)] = 61725, + [SMALL_STATE(1950)] = 61735, + [SMALL_STATE(1951)] = 61745, + [SMALL_STATE(1952)] = 61755, + [SMALL_STATE(1953)] = 61763, + [SMALL_STATE(1954)] = 61773, + [SMALL_STATE(1955)] = 61783, + [SMALL_STATE(1956)] = 61791, + [SMALL_STATE(1957)] = 61801, + [SMALL_STATE(1958)] = 61808, + [SMALL_STATE(1959)] = 61815, + [SMALL_STATE(1960)] = 61822, + [SMALL_STATE(1961)] = 61829, + [SMALL_STATE(1962)] = 61836, + [SMALL_STATE(1963)] = 61843, + [SMALL_STATE(1964)] = 61850, + [SMALL_STATE(1965)] = 61857, + [SMALL_STATE(1966)] = 61864, + [SMALL_STATE(1967)] = 61871, + [SMALL_STATE(1968)] = 61878, + [SMALL_STATE(1969)] = 61885, + [SMALL_STATE(1970)] = 61892, + [SMALL_STATE(1971)] = 61899, + [SMALL_STATE(1972)] = 61906, + [SMALL_STATE(1973)] = 61913, + [SMALL_STATE(1974)] = 61920, + [SMALL_STATE(1975)] = 61927, + [SMALL_STATE(1976)] = 61934, + [SMALL_STATE(1977)] = 61941, + [SMALL_STATE(1978)] = 61948, + [SMALL_STATE(1979)] = 61955, + [SMALL_STATE(1980)] = 61962, + [SMALL_STATE(1981)] = 61969, + [SMALL_STATE(1982)] = 61976, + [SMALL_STATE(1983)] = 61983, + [SMALL_STATE(1984)] = 61990, + [SMALL_STATE(1985)] = 61997, + [SMALL_STATE(1986)] = 62004, + [SMALL_STATE(1987)] = 62011, + [SMALL_STATE(1988)] = 62018, + [SMALL_STATE(1989)] = 62025, + [SMALL_STATE(1990)] = 62032, + [SMALL_STATE(1991)] = 62039, + [SMALL_STATE(1992)] = 62046, + [SMALL_STATE(1993)] = 62053, + [SMALL_STATE(1994)] = 62060, + [SMALL_STATE(1995)] = 62067, + [SMALL_STATE(1996)] = 62074, + [SMALL_STATE(1997)] = 62081, + [SMALL_STATE(1998)] = 62088, + [SMALL_STATE(1999)] = 62095, + [SMALL_STATE(2000)] = 62102, + [SMALL_STATE(2001)] = 62109, + [SMALL_STATE(2002)] = 62116, + [SMALL_STATE(2003)] = 62123, + [SMALL_STATE(2004)] = 62130, + [SMALL_STATE(2005)] = 62137, + [SMALL_STATE(2006)] = 62144, + [SMALL_STATE(2007)] = 62151, + [SMALL_STATE(2008)] = 62158, + [SMALL_STATE(2009)] = 62165, + [SMALL_STATE(2010)] = 62172, + [SMALL_STATE(2011)] = 62179, + [SMALL_STATE(2012)] = 62186, + [SMALL_STATE(2013)] = 62193, + [SMALL_STATE(2014)] = 62200, + [SMALL_STATE(2015)] = 62207, + [SMALL_STATE(2016)] = 62214, + [SMALL_STATE(2017)] = 62221, + [SMALL_STATE(2018)] = 62228, + [SMALL_STATE(2019)] = 62235, + [SMALL_STATE(2020)] = 62242, + [SMALL_STATE(2021)] = 62249, + [SMALL_STATE(2022)] = 62256, + [SMALL_STATE(2023)] = 62263, + [SMALL_STATE(2024)] = 62270, + [SMALL_STATE(2025)] = 62277, + [SMALL_STATE(2026)] = 62284, + [SMALL_STATE(2027)] = 62291, + [SMALL_STATE(2028)] = 62298, + [SMALL_STATE(2029)] = 62305, + [SMALL_STATE(2030)] = 62312, + [SMALL_STATE(2031)] = 62319, + [SMALL_STATE(2032)] = 62326, + [SMALL_STATE(2033)] = 62333, + [SMALL_STATE(2034)] = 62340, + [SMALL_STATE(2035)] = 62347, + [SMALL_STATE(2036)] = 62354, + [SMALL_STATE(2037)] = 62361, + [SMALL_STATE(2038)] = 62368, + [SMALL_STATE(2039)] = 62375, + [SMALL_STATE(2040)] = 62382, + [SMALL_STATE(2041)] = 62389, + [SMALL_STATE(2042)] = 62396, + [SMALL_STATE(2043)] = 62403, + [SMALL_STATE(2044)] = 62410, + [SMALL_STATE(2045)] = 62417, + [SMALL_STATE(2046)] = 62424, + [SMALL_STATE(2047)] = 62431, + [SMALL_STATE(2048)] = 62438, + [SMALL_STATE(2049)] = 62445, + [SMALL_STATE(2050)] = 62452, + [SMALL_STATE(2051)] = 62459, + [SMALL_STATE(2052)] = 62466, + [SMALL_STATE(2053)] = 62473, + [SMALL_STATE(2054)] = 62480, + [SMALL_STATE(2055)] = 62487, + [SMALL_STATE(2056)] = 62494, + [SMALL_STATE(2057)] = 62501, + [SMALL_STATE(2058)] = 62508, + [SMALL_STATE(2059)] = 62515, + [SMALL_STATE(2060)] = 62522, + [SMALL_STATE(2061)] = 62529, + [SMALL_STATE(2062)] = 62536, + [SMALL_STATE(2063)] = 62543, + [SMALL_STATE(2064)] = 62550, + [SMALL_STATE(2065)] = 62557, + [SMALL_STATE(2066)] = 62564, + [SMALL_STATE(2067)] = 62571, + [SMALL_STATE(2068)] = 62578, + [SMALL_STATE(2069)] = 62585, + [SMALL_STATE(2070)] = 62592, + [SMALL_STATE(2071)] = 62599, + [SMALL_STATE(2072)] = 62606, + [SMALL_STATE(2073)] = 62613, + [SMALL_STATE(2074)] = 62620, + [SMALL_STATE(2075)] = 62627, + [SMALL_STATE(2076)] = 62634, + [SMALL_STATE(2077)] = 62641, + [SMALL_STATE(2078)] = 62648, + [SMALL_STATE(2079)] = 62655, + [SMALL_STATE(2080)] = 62662, + [SMALL_STATE(2081)] = 62669, + [SMALL_STATE(2082)] = 62676, + [SMALL_STATE(2083)] = 62683, + [SMALL_STATE(2084)] = 62690, + [SMALL_STATE(2085)] = 62697, + [SMALL_STATE(2086)] = 62704, + [SMALL_STATE(2087)] = 62711, + [SMALL_STATE(2088)] = 62718, + [SMALL_STATE(2089)] = 62725, + [SMALL_STATE(2090)] = 62732, + [SMALL_STATE(2091)] = 62739, + [SMALL_STATE(2092)] = 62746, + [SMALL_STATE(2093)] = 62753, + [SMALL_STATE(2094)] = 62760, + [SMALL_STATE(2095)] = 62767, + [SMALL_STATE(2096)] = 62774, + [SMALL_STATE(2097)] = 62781, + [SMALL_STATE(2098)] = 62788, + [SMALL_STATE(2099)] = 62795, + [SMALL_STATE(2100)] = 62802, + [SMALL_STATE(2101)] = 62809, + [SMALL_STATE(2102)] = 62816, + [SMALL_STATE(2103)] = 62823, + [SMALL_STATE(2104)] = 62830, + [SMALL_STATE(2105)] = 62837, + [SMALL_STATE(2106)] = 62844, + [SMALL_STATE(2107)] = 62851, + [SMALL_STATE(2108)] = 62858, + [SMALL_STATE(2109)] = 62865, + [SMALL_STATE(2110)] = 62872, + [SMALL_STATE(2111)] = 62879, + [SMALL_STATE(2112)] = 62886, + [SMALL_STATE(2113)] = 62893, + [SMALL_STATE(2114)] = 62900, + [SMALL_STATE(2115)] = 62907, + [SMALL_STATE(2116)] = 62914, + [SMALL_STATE(2117)] = 62921, + [SMALL_STATE(2118)] = 62928, + [SMALL_STATE(2119)] = 62935, + [SMALL_STATE(2120)] = 62942, + [SMALL_STATE(2121)] = 62949, + [SMALL_STATE(2122)] = 62956, + [SMALL_STATE(2123)] = 62963, + [SMALL_STATE(2124)] = 62970, + [SMALL_STATE(2125)] = 62977, + [SMALL_STATE(2126)] = 62984, + [SMALL_STATE(2127)] = 62991, + [SMALL_STATE(2128)] = 62998, + [SMALL_STATE(2129)] = 63005, + [SMALL_STATE(2130)] = 63012, + [SMALL_STATE(2131)] = 63019, + [SMALL_STATE(2132)] = 63026, + [SMALL_STATE(2133)] = 63033, + [SMALL_STATE(2134)] = 63040, + [SMALL_STATE(2135)] = 63047, + [SMALL_STATE(2136)] = 63054, + [SMALL_STATE(2137)] = 63061, + [SMALL_STATE(2138)] = 63068, + [SMALL_STATE(2139)] = 63075, + [SMALL_STATE(2140)] = 63082, + [SMALL_STATE(2141)] = 63089, + [SMALL_STATE(2142)] = 63096, + [SMALL_STATE(2143)] = 63103, + [SMALL_STATE(2144)] = 63110, + [SMALL_STATE(2145)] = 63117, + [SMALL_STATE(2146)] = 63124, + [SMALL_STATE(2147)] = 63131, + [SMALL_STATE(2148)] = 63138, + [SMALL_STATE(2149)] = 63145, + [SMALL_STATE(2150)] = 63152, + [SMALL_STATE(2151)] = 63159, + [SMALL_STATE(2152)] = 63166, + [SMALL_STATE(2153)] = 63173, + [SMALL_STATE(2154)] = 63180, + [SMALL_STATE(2155)] = 63187, + [SMALL_STATE(2156)] = 63194, + [SMALL_STATE(2157)] = 63201, + [SMALL_STATE(2158)] = 63208, + [SMALL_STATE(2159)] = 63215, + [SMALL_STATE(2160)] = 63222, + [SMALL_STATE(2161)] = 63229, + [SMALL_STATE(2162)] = 63236, + [SMALL_STATE(2163)] = 63243, + [SMALL_STATE(2164)] = 63250, + [SMALL_STATE(2165)] = 63257, + [SMALL_STATE(2166)] = 63264, + [SMALL_STATE(2167)] = 63271, + [SMALL_STATE(2168)] = 63278, + [SMALL_STATE(2169)] = 63285, + [SMALL_STATE(2170)] = 63292, + [SMALL_STATE(2171)] = 63299, + [SMALL_STATE(2172)] = 63306, + [SMALL_STATE(2173)] = 63313, + [SMALL_STATE(2174)] = 63320, + [SMALL_STATE(2175)] = 63327, + [SMALL_STATE(2176)] = 63334, + [SMALL_STATE(2177)] = 63341, + [SMALL_STATE(2178)] = 63348, + [SMALL_STATE(2179)] = 63355, + [SMALL_STATE(2180)] = 63362, + [SMALL_STATE(2181)] = 63369, + [SMALL_STATE(2182)] = 63376, + [SMALL_STATE(2183)] = 63383, + [SMALL_STATE(2184)] = 63390, + [SMALL_STATE(2185)] = 63397, + [SMALL_STATE(2186)] = 63404, + [SMALL_STATE(2187)] = 63411, + [SMALL_STATE(2188)] = 63418, + [SMALL_STATE(2189)] = 63425, + [SMALL_STATE(2190)] = 63432, + [SMALL_STATE(2191)] = 63439, + [SMALL_STATE(2192)] = 63446, + [SMALL_STATE(2193)] = 63453, + [SMALL_STATE(2194)] = 63460, + [SMALL_STATE(2195)] = 63467, + [SMALL_STATE(2196)] = 63474, + [SMALL_STATE(2197)] = 63481, + [SMALL_STATE(2198)] = 63488, + [SMALL_STATE(2199)] = 63495, + [SMALL_STATE(2200)] = 63502, + [SMALL_STATE(2201)] = 63509, + [SMALL_STATE(2202)] = 63516, + [SMALL_STATE(2203)] = 63523, + [SMALL_STATE(2204)] = 63530, + [SMALL_STATE(2205)] = 63537, + [SMALL_STATE(2206)] = 63544, + [SMALL_STATE(2207)] = 63551, + [SMALL_STATE(2208)] = 63558, + [SMALL_STATE(2209)] = 63565, + [SMALL_STATE(2210)] = 63572, + [SMALL_STATE(2211)] = 63579, + [SMALL_STATE(2212)] = 63586, + [SMALL_STATE(2213)] = 63593, + [SMALL_STATE(2214)] = 63600, + [SMALL_STATE(2215)] = 63607, + [SMALL_STATE(2216)] = 63614, + [SMALL_STATE(2217)] = 63621, + [SMALL_STATE(2218)] = 63628, + [SMALL_STATE(2219)] = 63635, + [SMALL_STATE(2220)] = 63642, + [SMALL_STATE(2221)] = 63649, + [SMALL_STATE(2222)] = 63656, + [SMALL_STATE(2223)] = 63663, + [SMALL_STATE(2224)] = 63670, + [SMALL_STATE(2225)] = 63677, + [SMALL_STATE(2226)] = 63684, + [SMALL_STATE(2227)] = 63691, + [SMALL_STATE(2228)] = 63698, + [SMALL_STATE(2229)] = 63705, + [SMALL_STATE(2230)] = 63712, + [SMALL_STATE(2231)] = 63719, + [SMALL_STATE(2232)] = 63726, + [SMALL_STATE(2233)] = 63733, + [SMALL_STATE(2234)] = 63740, + [SMALL_STATE(2235)] = 63747, + [SMALL_STATE(2236)] = 63754, + [SMALL_STATE(2237)] = 63761, + [SMALL_STATE(2238)] = 63768, + [SMALL_STATE(2239)] = 63775, + [SMALL_STATE(2240)] = 63782, + [SMALL_STATE(2241)] = 63789, + [SMALL_STATE(2242)] = 63796, + [SMALL_STATE(2243)] = 63803, + [SMALL_STATE(2244)] = 63810, + [SMALL_STATE(2245)] = 63817, + [SMALL_STATE(2246)] = 63824, + [SMALL_STATE(2247)] = 63831, + [SMALL_STATE(2248)] = 63838, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -117099,2180 +136448,2345 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, .production_id = 14), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 35), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 14), - [223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 35), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(583), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1443), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1845), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1299), - [249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), - [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1846), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1727), - [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(528), - [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(757), - [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(757), - [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(750), - [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(93), - [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1213), - [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(969), - [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1985), - [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1685), - [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1847), - [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1163), - [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(39), - [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1023), - [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(921), - [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(901), - [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1028), - [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1559), - [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1467), - [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1515), - [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1743), - [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1718), - [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(690), - [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1749), - [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1739), - [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(443), - [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2034), - [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(649), - [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1809), - [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1808), - [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1854), - [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(746), - [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(756), - [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1965), - [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1982), - [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1493), - [362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(795), - [365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1679), - [368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1529), - [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(795), - [374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(786), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(581), - [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1424), - [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1934), - [388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1310), - [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1897), - [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1692), - [397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(164), - [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1209), - [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(928), - [406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(47), - [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1720), - [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1705), - [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(724), - [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1928), - [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1717), - [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(351), - [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2035), - [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(618), - [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1760), - [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1771), - [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1903), - [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), - [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(579), - [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1426), - [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1755), - [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1305), - [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1756), - [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1725), - [558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(344), - [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1193), - [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(947), - [567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(42), - [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), - [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1708), - [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1741), - [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(726), - [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1886), - [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1709), - [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(502), - [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2020), - [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(645), - [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1883), - [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1882), - [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1764), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(582), - [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1439), - [629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1948), - [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1288), - [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1935), - [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1721), - [641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(283), - [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1220), - [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(989), - [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(38), - [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1706), - [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1694), - [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(725), - [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1849), - [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1704), - [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(474), - [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2036), - [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(602), - [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1947), - [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2031), - [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1939), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), - [700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(584), - [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1429), - [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2033), - [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1287), - [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2029), - [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1676), - [720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(528), - [723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(757), - [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(757), - [729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(750), - [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1202), - [735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(983), - [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1985), - [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1685), - [744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1847), - [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1163), - [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(49), - [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1023), - [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(921), - [759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(901), - [762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1028), - [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1559), - [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1467), - [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1515), - [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1723), - [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1713), - [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(754), - [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1920), - [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1698), - [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(438), - [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1931), - [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(600), - [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2011), - [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2026), - [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1943), - [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(746), - [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(756), - [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1965), - [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1982), - [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1493), - [822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1224), - [825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1679), - [828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1529), - [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1224), - [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(786), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 8), - [841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), - [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(574), - [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(528), - [851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(757), - [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(757), - [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(750), - [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(93), - [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1213), - [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(921), - [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1985), - [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1685), - [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1847), - [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(39), - [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1023), - [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(901), - [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1028), - [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1559), - [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1467), - [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1515), - [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1743), - [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1718), - [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1739), - [908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(443), - [911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2034), - [914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(649), - [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1809), - [920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1808), - [923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1854), - [926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(746), - [929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(756), - [932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1965), - [935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1982), - [938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1493), - [941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(795), - [944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1679), - [947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1529), - [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(795), - [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(786), - [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 8), - [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), - [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(580), - [963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(164), - [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1209), - [969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(47), - [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1720), - [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1705), - [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1717), - [981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(351), - [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2035), - [987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(618), - [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1760), - [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1771), - [996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1903), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(576), - [1004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(344), - [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1193), - [1010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(42), - [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1708), - [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1741), - [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1709), - [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(502), - [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2020), - [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(645), - [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1883), - [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1882), - [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1764), - [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(577), - [1045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(276), - [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1202), - [1051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(49), - [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1723), - [1057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1713), - [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1698), - [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(438), - [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1931), - [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(600), - [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2011), - [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2026), - [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1943), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [1085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), - [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 8), - [1095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(578), - [1098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(283), - [1101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1220), - [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(38), - [1107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1706), - [1110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1694), - [1113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1704), - [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(474), - [1119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2036), - [1122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(602), - [1125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1947), - [1128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2031), - [1131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1939), - [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 8), - [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(575), - [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1728), - [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1731), - [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2025), - [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 23), - [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 23), - [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 49), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 49), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 95), - [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 95), - [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 56), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 56), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 29), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 29), - [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 27), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 27), - [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 25), - [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 25), - [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 66), - [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 66), - [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 65), - [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 65), - [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 67), - [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 67), - [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 24), - [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 24), - [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 71), - [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 71), - [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, .production_id = 78), - [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, .production_id = 78), - [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 24), - [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 24), - [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 83), - [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 83), - [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 84), - [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 84), - [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 85), - [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 85), - [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 86), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 86), - [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 87), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 87), - [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 97), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 97), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 98), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 98), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 99), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 99), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 100), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 100), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 101), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 101), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 106), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 106), - [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 107), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 107), - [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 108), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 108), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 109), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 109), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 115), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 115), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 55), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 55), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 48), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 48), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 41), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 41), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 13), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 13), - [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 14), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 14), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 15), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 15), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), - [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 19), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 19), - [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), - [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), - [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 35), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 35), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 30), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 30), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), - [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 33), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 33), - [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 80), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 80), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 3), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 3), - [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 63), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 63), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 35), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 35), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 62), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 62), - [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 61), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 61), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 58), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 58), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [1476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(835), - [1479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(528), - [1482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(757), - [1485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(757), - [1488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(750), - [1491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(164), - [1494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1744), - [1497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(47), - [1500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1720), - [1503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1705), - [1506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(724), - [1509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1928), - [1512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1717), - [1515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(351), - [1518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2035), - [1521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(618), - [1524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1760), - [1527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1771), - [1530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1903), - [1533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(746), - [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(756), - [1539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1965), - [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1982), - [1545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1493), - [1548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(795), - [1551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1679), - [1554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1529), - [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(795), - [1560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(786), - [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(837), - [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(283), - [1569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(38), - [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1706), - [1575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1694), - [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(725), - [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1849), - [1584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1704), - [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(474), - [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2036), - [1593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(602), - [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1947), - [1599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2031), - [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1939), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [1607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(830), - [1610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(344), - [1613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(42), - [1616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1708), - [1619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1741), - [1622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(726), - [1625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1886), - [1628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1709), - [1631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(502), - [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2020), - [1637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(645), - [1640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1883), - [1643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1882), - [1646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1764), - [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(833), - [1652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(49), - [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1728), - [1658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1713), - [1661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(761), - [1664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1812), - [1667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1731), - [1670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(438), - [1673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2025), - [1676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(600), - [1679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2011), - [1682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2026), - [1685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1943), - [1688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(834), - [1691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(276), - [1694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1723), - [1697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(754), - [1700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1920), - [1703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1698), - [1706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1931), - [1709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(832), - [1712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(93), - [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(39), - [1718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1743), - [1721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1718), - [1724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(690), - [1727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1749), - [1730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1739), - [1733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(443), - [1736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2034), - [1739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(649), - [1742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1809), - [1745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1808), - [1748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1854), - [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2), - [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), - [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), - [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), - [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [1787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), - [1796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 35), - [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 35), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [1923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1019), - [1926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1950), - [1929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1311), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [1934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1794), - [1937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1736), - [1940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(921), - [1943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1985), - [1946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1722), - [1949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1847), - [1952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1023), - [1955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(901), - [1958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1028), - [1961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1559), - [1964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1467), - [1967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1515), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_not_binary, 1), - [1976] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), SHIFT(1151), - [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), - [1982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), - [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [2006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1951), - [2009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1302), - [2012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1864), - [2015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1742), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [2028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1952), - [2031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1300), - [2034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1911), - [2037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1748), - [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), - [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [2052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1896), - [2055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1308), - [2058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1909), - [2061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1745), - [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), - [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), - [2248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(765), - [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [2255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1529), - [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [2262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 91), - [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 91), - [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 4), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 4), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 26), - [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 26), - [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [2298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 104), - [2302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 104), - [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 73), - [2306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 73), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 9), - [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 9), - [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 105), - [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 105), - [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 118), - [2326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 118), - [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), - [2330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), - [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8), - [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8), - [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), - [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 113), - [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 113), - [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 114), - [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 114), - [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 32), - [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 32), - [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 74), - [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 74), - [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), - [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), - [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 60), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 60), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), - [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), - [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 40), - [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 40), - [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 79), - [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 79), - [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9), - [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9), - [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), - [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), - [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 90), - [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 90), - [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, .production_id = 88), - [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, .production_id = 88), - [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), - [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), - [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), - [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), - [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 26), - [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 26), - [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 40), - [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 40), - [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 59), - [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 59), - [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), - [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), - [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 50), - [2448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 50), - [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [2454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(836), - [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [2461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(921), - [2464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1985), - [2467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1722), - [2470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1847), - [2473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(901), - [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), - [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), - [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), - [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), - [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), - [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 63), - [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 63), - [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), - [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), - [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), - [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 37), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 37), - [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, .production_id = 96), - [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, .production_id = 96), - [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 29), - [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 29), - [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 80), - [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 80), - [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), - [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), - [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 56), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 56), - [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 37), - [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 37), - [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 62), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 62), - [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), - [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 29), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 29), - [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 56), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 56), - [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 96), - [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 96), - [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 29), - [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 29), - [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 6), - [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 6), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), - [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), - [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), - [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 46), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 46), - [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 21), - [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 21), - [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), - [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), - [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(925), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 45), - [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 45), - [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), - [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), - [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [2653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [2657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 47), - [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 47), - [2661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), - [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), - [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 70), - [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 70), - [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 22), - [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 22), - [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 20), - [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 20), - [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 22), - [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 22), - [2689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 45), - [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 45), - [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), - [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), - [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), - [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), - [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 46), - [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 46), - [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 47), - [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 47), - [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 45), - [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 45), - [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 51), - [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 51), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, .production_id = 69), - [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, .production_id = 69), - [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), - [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), - [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 22), - [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 22), - [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 6), - [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 6), - [2759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 21), - [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 21), - [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), - [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), - [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 20), - [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 20), - [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 22), - [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 22), - [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 6), - [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 6), - [2783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 43), - [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 43), - [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), - [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), - [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 6), - [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 6), - [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 21), - [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 21), - [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 20), - [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 20), - [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), - [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), - [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 7), - [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 7), - [2815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1151), - [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), - [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), - [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 45), - [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 45), - [2826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1021), - [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), - [2831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 5), - [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 5), - [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), - [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), - [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 20), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 20), - [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 70), - [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 70), - [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), - [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), - [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), - [2873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), SHIFT(1985), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 43), - [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 43), - [2904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 43), SHIFT(1985), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 39), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 54), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 94), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 68), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [3073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 20), - [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 20), - [3077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 20), SHIFT(1985), - [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [3112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [3116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(1985), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 69), - [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 69), - [3129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 69), SHIFT(1985), - [3132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), - [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [3160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(901), - [3163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [3166] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1151), - [3170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [3175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [3179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1243), - [3182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1236), - [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 11), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [3189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 2), - [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), - [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [3201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), - [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 11), - [3205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), - [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), - [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 26), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [3297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 26), - [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), - [3301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), - [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), - [3305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), - [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), - [3309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), - [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), - [3349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), - [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), - [3353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [3359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 37), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), - [3379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), - [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [3441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(925), - [3444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(994), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [3449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), SHIFT(1859), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [3482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1685), - [3485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [3487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 75), - [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 92), - [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 31), - [3493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 31), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 28), - [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [3507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1985), - [3510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 52), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 31), - [3524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 31), - [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), - [3528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), - [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), - [3532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), - [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 28), - [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), - [3538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), - [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), - [3542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), - [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 75), - [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 28), - [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 92), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 52), - [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 28), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 93), - [3562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 93), - [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 53), - [3566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 53), - [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 77), - [3570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 77), - [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), - [3582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), - [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 53), - [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 53), - [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), - [3590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), - [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [3594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 75), - [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 52), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 28), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 92), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 53), - [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 53), - [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), - [3676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), - [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 44), - [3680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 44), - [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 28), - [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), - [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), - [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1), - [3690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [3692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 77), - [3696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 77), - [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 53), - [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 53), - [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 93), - [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 93), - [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 29), - [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 31), - [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 31), - [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 16), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 53), - [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 53), - [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 31), - [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 31), - [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), - [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), - [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 18), - [3746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 18), - [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 77), - [3750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 77), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 65), - [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), - [3760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), SHIFT_REPEAT(1552), - [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [3765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [3767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(706), - [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [3772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1956), - [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 93), - [3777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 93), - [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 53), - [3781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 53), - [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 52), - [3785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 41), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 38), - [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 28), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [3797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 31), - [3799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [3803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 64), - [3811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [3815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 53), - [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 17), - [3819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), - [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 81), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [3825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 77), - [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 53), - [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 5), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 93), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [3855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 116), SHIFT_REPEAT(1486), - [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 116), - [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), - [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 42), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [3886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 57), SHIFT_REPEAT(1397), - [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 57), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, .production_id = 72), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, .production_id = 72), - [3899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [3901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1536), - [3904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1536), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [3911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 102), SHIFT_REPEAT(1463), - [3914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 102), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, .production_id = 89), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, .production_id = 103), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [3942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 102), SHIFT_REPEAT(1455), - [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 102), - [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, .production_id = 89), - [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, .production_id = 111), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [3967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 57), SHIFT_REPEAT(1350), - [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 57), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, .production_id = 110), - [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 72), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [4012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, .production_id = 112), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [4016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), SHIFT_REPEAT(1145), - [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), - [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, .production_id = 110), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 103), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 82), - [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, .production_id = 117), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [4045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 119), SHIFT_REPEAT(1968), - [4048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 119), - [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, .production_id = 120), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, .production_id = 120), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 5), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [4108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1678), - [4111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(770), - [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 72), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, .production_id = 28), - [4192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1673), - [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [4209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(1313), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [4216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 57), SHIFT_REPEAT(1381), - [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 57), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(564), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [4234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(652), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [4239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(1703), - [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4), - [4256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, .production_id = 76), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1), - [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 112), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 42), - [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3), - [4278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [4294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2), - [4296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), - [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 5), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [4312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [4606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [4660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 36), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [4666] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [4690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 80), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [4696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 62), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [4724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 80), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [4752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, .production_id = 63), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [4758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 62), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(633), + [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1577), + [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2038), + [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1429), + [239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2039), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1891), + [247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(607), + [250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(799), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(799), + [256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(803), + [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(128), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1139), + [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1268), + [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1022), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2242), + [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1883), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2240), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1149), + [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(36), + [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1091), + [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1000), + [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(970), + [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1104), + [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1817), + [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1610), + [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1688), + [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1950), + [310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1927), + [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(759), + [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2034), + [319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1953), + [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(527), + [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2246), + [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(725), + [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2237), + [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2236), + [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2047), + [340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(765), + [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(767), + [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2223), + [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2222), + [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2221), + [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2220), + [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1661), + [361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(904), + [364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1890), + [367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1694), + [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(904), + [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(907), + [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 35), + [384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 14), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 35), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, .production_id = 14), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(638), + [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1579), + [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2131), + [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1408), + [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2092), + [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1907), + [416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(174), + [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1147), + [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1297), + [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1048), + [428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(30), + [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1928), + [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1915), + [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(770), + [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2134), + [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1926), + [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(570), + [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2247), + [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(724), + [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2032), + [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2031), + [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2098), + [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(631), + [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1581), + [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2147), + [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1407), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2132), + [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1911), + [482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(412), + [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1141), + [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1310), + [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1043), + [494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(45), + [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1916), + [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1904), + [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(789), + [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2108), + [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1914), + [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(502), + [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2248), + [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(731), + [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2143), + [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2155), + [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2136), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(632), + [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1582), + [654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1961), + [657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1406), + [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1962), + [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1934), + [666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(410), + [669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1142), + [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1266), + [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1024), + [678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(34), + [681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), + [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1881), + [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1951), + [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(831), + [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1995), + [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1956), + [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(507), + [701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2229), + [704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(734), + [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1997), + [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2012), + [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1966), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), + [730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(643), + [735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1584), + [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2183), + [741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1409), + [744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2245), + [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1882), + [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(607), + [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(799), + [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(799), + [759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(803), + [762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1146), + [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1291), + [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1045), + [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2242), + [774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1883), + [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2240), + [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1149), + [783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(47), + [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1091), + [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1000), + [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(970), + [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1104), + [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1817), + [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1610), + [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1688), + [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1885), + [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1887), + [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(802), + [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2231), + [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1888), + [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(506), + [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2228), + [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(730), + [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2227), + [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2226), + [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2225), + [840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(765), + [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(767), + [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2223), + [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2222), + [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2221), + [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2220), + [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1661), + [861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1352), + [864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1890), + [867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1694), + [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1352), + [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(907), + [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 8), + [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(639), + [885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(607), + [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(799), + [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(799), + [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(803), + [899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(128), + [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1139), + [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1268), + [908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1000), + [911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2242), + [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1883), + [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2240), + [920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(36), + [923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1091), + [926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(970), + [929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1104), + [932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1817), + [935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1610), + [938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1688), + [941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1950), + [944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1927), + [947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1953), + [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(527), + [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2246), + [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(725), + [959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2237), + [962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2236), + [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2047), + [968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(765), + [971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(767), + [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2223), + [977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2222), + [980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2221), + [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2220), + [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1661), + [989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(904), + [992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1890), + [995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1694), + [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(904), + [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(907), + [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 8), + [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), + [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(640), + [1015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(174), + [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1147), + [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1297), + [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(30), + [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1928), + [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1915), + [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1926), + [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(570), + [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2247), + [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(724), + [1045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2032), + [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2031), + [1051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2098), + [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 8), + [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(637), + [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(410), + [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1142), + [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1266), + [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(34), + [1081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1881), + [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1951), + [1089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1956), + [1092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(507), + [1095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2229), + [1098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(734), + [1101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1997), + [1104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2012), + [1107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1966), + [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 8), + [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), + [1114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(635), + [1117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(294), + [1120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1146), + [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1291), + [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(47), + [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1885), + [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1887), + [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1888), + [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(506), + [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2228), + [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(730), + [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2227), + [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2226), + [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2225), + [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(634), + [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(412), + [1162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1141), + [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1310), + [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(45), + [1171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1916), + [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1904), + [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1914), + [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(502), + [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2248), + [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(731), + [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2143), + [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2155), + [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2136), + [1198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(636), + [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1889), + [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1908), + [1207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2235), + [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 23), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 23), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 83), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 83), + [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 66), + [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 66), + [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), + [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 67), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 67), + [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 41), + [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 41), + [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 65), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 65), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 71), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 71), + [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, .production_id = 78), + [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, .production_id = 78), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 24), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 24), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 24), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 24), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 25), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 25), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 27), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 27), + [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 29), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 29), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 83), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 83), + [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 66), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 66), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 84), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 84), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 85), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 85), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 67), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 67), + [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 86), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 86), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 41), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 41), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 65), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 65), + [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 87), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 87), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 88), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 88), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 48), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 48), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 55), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 55), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 56), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 56), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 97), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 97), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 84), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 84), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 98), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 98), + [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 120), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 120), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 9, .production_id = 110), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 9, .production_id = 110), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 114), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 114), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 113), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 113), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 112), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 112), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 111), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 111), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 8, .production_id = 99), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 8, .production_id = 99), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 8, .production_id = 110), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 8, .production_id = 110), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 8, .production_id = 98), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 8, .production_id = 98), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 8, .production_id = 97), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 8, .production_id = 97), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 105), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 105), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 104), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 104), + [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 103), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 103), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 102), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 102), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 101), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 101), + [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 86), + [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 86), + [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 99), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 99), + [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 85), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 85), + [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 35), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 35), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 62), + [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 62), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 61), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 61), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 58), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 58), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 49), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 49), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), + [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), + [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), + [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), + [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 35), + [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 35), + [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), + [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), + [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 33), + [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 33), + [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 30), + [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 30), + [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 80), + [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 80), + [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 63), + [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 63), + [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 19), + [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 19), + [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 3), + [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 3), + [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 15), + [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 15), + [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), + [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), + [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 14), + [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 14), + [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 13), + [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 13), + [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), + [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2), + [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [1598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(879), + [1601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(607), + [1604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(799), + [1607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(799), + [1610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(803), + [1613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(412), + [1616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1949), + [1619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(45), + [1622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1916), + [1625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1904), + [1628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(789), + [1631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2108), + [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1914), + [1637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(502), + [1640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2248), + [1643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(731), + [1646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2143), + [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2155), + [1652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2136), + [1655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(765), + [1658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(767), + [1661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2223), + [1664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2222), + [1667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2221), + [1670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2220), + [1673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1661), + [1676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(904), + [1679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1890), + [1682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1694), + [1685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(904), + [1688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(907), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [1703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(882), + [1706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(128), + [1709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(36), + [1712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1950), + [1715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1927), + [1718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(759), + [1721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2034), + [1724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1953), + [1727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(527), + [1730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2246), + [1733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(725), + [1736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2237), + [1739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2236), + [1742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2047), + [1745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(878), + [1748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(410), + [1751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(47), + [1754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1889), + [1757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1887), + [1760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(797), + [1763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2048), + [1766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1908), + [1769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(506), + [1772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2235), + [1775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(730), + [1778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2227), + [1781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2226), + [1784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2225), + [1787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(883), + [1790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(294), + [1793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1885), + [1796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(802), + [1799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2231), + [1802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1888), + [1805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2228), + [1808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(881), + [1811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(34), + [1814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1881), + [1817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1951), + [1820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(831), + [1823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1995), + [1826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1956), + [1829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(507), + [1832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2229), + [1835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(734), + [1838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1997), + [1841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2012), + [1844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1966), + [1847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(884), + [1850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(174), + [1853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(30), + [1856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1928), + [1859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1915), + [1862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(770), + [1865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2134), + [1868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1926), + [1871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(570), + [1874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2247), + [1877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(724), + [1880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2032), + [1883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2031), + [1886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2098), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), + [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [1921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), + [1930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_not_binary, 1), + [1987] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), SHIFT(1184), + [1991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), + [1993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), + [1996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [2085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1110), + [2088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2149), + [2091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1399), + [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [2096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1990), + [2099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1880), + [2102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(970), + [2105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1000), + [2108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2242), + [2111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1929), + [2114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2240), + [2117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1091), + [2120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1104), + [2123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1817), + [2126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1610), + [2129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1688), + [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 35), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 35), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2150), + [2175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1419), + [2178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2057), + [2181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1932), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2091), + [2315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1391), + [2318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2144), + [2321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1931), + [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [2330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), + [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), + [2350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2151), + [2353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1385), + [2356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2106), + [2359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1938), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [2380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3), + [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3), + [2386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(849), + [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [2393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1694), + [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), + [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), + [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [2418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(873), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 93), + [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 93), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 73), + [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 73), + [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 123), + [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 123), + [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 109), + [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 109), + [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 108), + [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 108), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 92), + [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 92), + [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 50), + [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 50), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 118), + [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 118), + [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 119), + [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 119), + [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 74), + [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 74), + [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), + [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [2469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(970), + [2472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1000), + [2475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2242), + [2478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1929), + [2481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2240), + [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), + [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), + [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_builtin_va_arg, 6, .production_id = 90), + [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_builtin_va_arg, 6, .production_id = 90), + [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 9), + [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 9), + [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 59), + [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 59), + [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 4), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 4), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8), + [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8), + [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 26), + [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 26), + [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 32), + [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 32), + [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 60), + [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 60), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, .production_id = 89), + [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, .production_id = 89), + [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), + [2570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), + [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), + [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), + [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), + [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), + [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, .production_id = 49), + [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, .production_id = 49), + [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), + [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), + [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), + [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), + [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), + [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9), + [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 40), + [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 40), + [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), + [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), + [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 40), + [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 40), + [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), + [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), + [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 79), + [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 79), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 26), + [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 26), + [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 80), + [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 80), + [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, .production_id = 100), + [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, .production_id = 100), + [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 29), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 29), + [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), + [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), + [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 37), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 37), + [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), + [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), + [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), + [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), + [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), + [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 29), + [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 29), + [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 56), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 56), + [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 62), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 62), + [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), + [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), + [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 63), + [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 63), + [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 29), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 29), + [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 100), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 100), + [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 37), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 37), + [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 56), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 56), + [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), + [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 21), + [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 21), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 6), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 6), + [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), + [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 46), + [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 46), + [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), + [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), + [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), + [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), + [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 22), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 22), + [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 22), + [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 22), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), + [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), + [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1050), + [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 20), + [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 20), + [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 70), + [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 70), + [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 45), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 45), + [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 47), + [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 47), + [2831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 45), + [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 45), + [2835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), + [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), + [2839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 70), + [2845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 70), + [2847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 20), + [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 20), + [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 21), + [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 21), + [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 7), + [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 7), + [2859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1113), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), + [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), + [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), + [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), + [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), + [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), + [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [2882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), + [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), + [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 22), + [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 22), + [2890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 20), + [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 20), + [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 6), + [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 6), + [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 21), + [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 21), + [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 47), + [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 47), + [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 22), + [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 22), + [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 45), + [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 45), + [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), + [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), + [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), + [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), + [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 6), + [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 6), + [2926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 20), + [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 20), + [2930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 5), + [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 5), + [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 43), + [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 43), + [2938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, .production_id = 69), + [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, .production_id = 69), + [2942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1184), + [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), + [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), + [2949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 46), + [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 46), + [2953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), + [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), + [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), + [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), + [2961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 51), + [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 51), + [2965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 6), + [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 6), + [2969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [2973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 45), + [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 45), + [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [2987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), + [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), + [2991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), SHIFT(2242), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 43), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 43), + [3012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 43), SHIFT(2242), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 20), + [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 20), + [3055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 20), SHIFT(2242), + [3058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), + [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), + [3062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [3066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(2242), + [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), + [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 69), + [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 69), + [3075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 69), SHIFT(2242), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [3088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [3091] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1184), + [3095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 39), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 96), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 3), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [3222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 54), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 68), + [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [3332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(970), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [3349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [3353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1360), + [3356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1362), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), + [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), + [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), + [3367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 11), + [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 2), + [3375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 11), + [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 26), + [3473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 26), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), + [3491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), + [3505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), + [3523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), + [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), + [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), + [3529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [3541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 37), + [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), + [3549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), + [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [3553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), + [3567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), + [3569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [3577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [3581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [3583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [3585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [3587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [3601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1050), + [3604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1114), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [3623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), SHIFT(2062), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [3648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1883), + [3651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 31), + [3655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 31), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 31), + [3667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 31), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [3679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 75), + [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 28), + [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 94), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), + [3689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat3, 2), SHIFT_REPEAT(2242), + [3692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat3, 2), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 52), + [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, .production_id = 31), + [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, .production_id = 31), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), + [3726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), + [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 28), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [3778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), + [3780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), + [3782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [3784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 52), + [3788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 75), + [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 94), + [3792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 28), + [3794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 28), + [3796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 28), + [3798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 53), + [3800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 53), + [3802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [3804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 52), + [3808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [3812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 77), + [3818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 77), + [3820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), + [3822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), + [3824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 53), + [3826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 53), + [3828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 75), + [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 94), + [3832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 95), + [3834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 95), + [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), + [3838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), + [3840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 28), + [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [3856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), + [3858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), + [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [3876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1), + [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), + [3882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), + [3884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 77), + [3886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 77), + [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 31), + [3892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 31), + [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 29), + [3896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 53), + [3898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 53), + [3900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 44), + [3902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 44), + [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 95), + [3906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 95), + [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 53), + [3910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 53), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [3918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 31), + [3920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 31), + [3922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [3924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 53), + [3928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 53), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [3934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), + [3938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), + [3940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 95), + [3942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 95), + [3944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 18), + [3946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 18), + [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 77), + [3950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 77), + [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 53), + [3954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 53), + [3956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 16), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 41), + [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 52), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [4012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(758), + [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [4017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(2035), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 38), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 28), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [4036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 65), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), + [4048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), SHIFT_REPEAT(1753), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 53), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 53), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), + [4067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 64), + [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 81), + [4071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), + [4073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 31), + [4075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), + [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 77), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 17), + [4083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 5), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 95), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [4169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 42), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [4175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 106), SHIFT_REPEAT(1589), + [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 106), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, .production_id = 91), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, .production_id = 107), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [4236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [4238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1738), + [4241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1738), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 106), SHIFT_REPEAT(1591), + [4253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 106), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, .production_id = 116), + [4261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [4265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, .production_id = 72), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [4271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [4273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 57), SHIFT_REPEAT(1473), + [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 57), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, .production_id = 72), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, .production_id = 91), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [4332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 57), SHIFT_REPEAT(1554), + [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 57), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [4339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [4345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 121), SHIFT_REPEAT(1624), + [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 121), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [4362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 124), SHIFT_REPEAT(1978), + [4365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 124), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 5), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [4381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, .production_id = 122), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [4391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 107), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, .production_id = 125), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [4403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, .production_id = 115), + [4405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(1381), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(856), + [4421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [4423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), SHIFT_REPEAT(1195), + [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), + [4428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1922), + [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [4437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(668), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, .production_id = 117), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [4470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1948), + [4473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [4483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 72), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, .production_id = 125), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, .production_id = 115), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [4519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 57), SHIFT_REPEAT(1536), + [4522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 57), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [4542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 72), + [4544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(1902), + [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 82), + [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, .production_id = 28), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [4573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(644), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [4580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [4624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 5), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [4628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [4634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2), + [4636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), + [4638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [4650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3), + [4652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [4662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [4676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 42), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [4698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 117), + [4700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4), + [4702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), + [4704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, .production_id = 76), + [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [4758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, .production_id = 63), + [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 62), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [4832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 80), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 36), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [4932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 62), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [4940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [5060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 80), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [5066] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), }; #ifdef __cplusplus diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 2b14ac1..17b4fde 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -13,9 +13,8 @@ extern "C" { #define ts_builtin_sym_end 0 #define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 -typedef uint16_t TSStateId; - #ifndef TREE_SITTER_API_H_ +typedef uint16_t TSStateId; typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; @@ -130,9 +129,16 @@ struct TSLanguage { * Lexer Macros */ +#ifdef _MSC_VER +#define UNUSED __pragma(warning(suppress : 4101)) +#else +#define UNUSED __attribute__((unused)) +#endif + #define START_LEXER() \ bool result = false; \ bool skip = false; \ + UNUSED \ bool eof = false; \ int32_t lookahead; \ goto start; \ @@ -166,7 +172,7 @@ struct TSLanguage { * Parse Table Macros */ -#define SMALL_STATE(id) id - LARGE_STATE_COUNT +#define SMALL_STATE(id) ((id) - LARGE_STATE_COUNT) #define STATE(id) id @@ -176,7 +182,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = state_value \ + .state = (state_value) \ } \ }} @@ -184,7 +190,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = state_value, \ + .state = (state_value), \ .repetition = true \ } \ }}